diff --git a/.github/workflows/auto-close-duplicates.yml b/.github/workflows/auto-close-duplicates.yml index 6612c98a03..21f95896b8 100644 --- a/.github/workflows/auto-close-duplicates.yml +++ b/.github/workflows/auto-close-duplicates.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Bun uses: oven-sh/setup-bun@v2 diff --git a/.github/workflows/backfill-duplicate-comments.yml b/.github/workflows/backfill-duplicate-comments.yml index a4253e8ae0..118e619369 100644 --- a/.github/workflows/backfill-duplicate-comments.yml +++ b/.github/workflows/backfill-duplicate-comments.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Bun uses: oven-sh/setup-bun@v2 diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 3fafbb1c2c..49e6f58fd6 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -5,6 +5,7 @@ on: branches: - main - release/* + - belt-printer paths: - 'deps/**' - 'src/**' @@ -29,6 +30,7 @@ on: - 'version.inc' - ".github/workflows/build_*.yml" - 'build_linux.sh' + - 'build_release_vs.bat' - 'build_release_vs2022.bat' - 'build_release_macos.sh' - 'scripts/flatpak/**' @@ -75,11 +77,22 @@ jobs: build-deps-only: ${{ inputs.build-deps-only || false }} secrets: inherit build_windows: + name: Build Windows ${{ matrix.arch }} + strategy: + fail-fast: false + matrix: + include: + - arch: x64 + os: windows-latest + - arch: arm64 + os: windows-11-arm # Don't run scheduled builds on forks: if: ${{ !cancelled() && (github.event_name != 'schedule' || github.repository == 'OrcaSlicer/OrcaSlicer') }} uses: ./.github/workflows/build_check_cache.yml with: - os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }} + # Self-hosted runner is x64-only; ARM64 always uses the GitHub-hosted runner. + os: ${{ (matrix.arch == 'x64' && vars.SELF_HOSTED) && 'orca-win-server' || matrix.os }} + arch: ${{ matrix.arch }} build-deps-only: ${{ inputs.build-deps-only || false }} force-build: ${{ github.event_name == 'schedule' }} secrets: inherit @@ -109,54 +122,73 @@ jobs: arch: universal macos-combine-only: true secrets: inherit - unit_tests: - name: Unit Tests - # Tests are built on the aarch64 leg by default (faster GitHub arm runner), - # so run them there; self-hosted builds them on the amd64 server instead. - runs-on: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04-arm' }} + # One test job per built arch, on the runner that built it. + unit_tests_linux_x86_64: + name: Linux x86_64 needs: build_linux if: ${{ !cancelled() && success() }} + uses: ./.github/workflows/unit_tests.yml + with: + os: ${{ vars.SELF_HOSTED && 'orca-lnx-server' || 'ubuntu-24.04' }} + artifact: ${{ github.sha }}-tests-linux-x86_64 + unit_tests_linux_aarch64: + name: Linux aarch64 + needs: build_linux + if: ${{ !cancelled() && success() }} + uses: ./.github/workflows/unit_tests.yml + with: + os: ubuntu-24.04-arm + artifact: ${{ github.sha }}-tests-linux-aarch64 + unit_tests_windows_x64: + name: Windows x64 + needs: build_windows + if: ${{ !cancelled() && success() }} + uses: ./.github/workflows/unit_tests.yml + with: + os: ${{ vars.SELF_HOSTED && 'orca-win-server' || 'windows-latest' }} + artifact: ${{ github.sha }}-tests-windows-x64 + unit_tests_windows_arm64: + name: Windows arm64 + needs: build_windows + if: ${{ !cancelled() && success() }} + uses: ./.github/workflows/unit_tests.yml + with: + os: windows-11-arm + artifact: ${{ github.sha }}-tests-windows-arm64 + test-dir: build-arm64/tests + unit_tests_macos_arm64: + name: macOS arm64 + needs: build_macos_arch + if: ${{ !cancelled() && success() }} + uses: ./.github/workflows/unit_tests.yml + with: + os: ${{ vars.SELF_HOSTED && 'orca-macos-arm64' || 'macos-14' }} + artifact: ${{ github.sha }}-tests-macos-arm64 + test-dir: build/arm64/tests + publish_test_results: + name: Publish Test Results + needs: [unit_tests_linux_x86_64, unit_tests_linux_aarch64, unit_tests_windows_x64, unit_tests_windows_arm64, unit_tests_macos_arm64] + if: ${{ !cancelled() }} + runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v6 - with: - sparse-checkout: | - .github - scripts - tests - - name: Apt-Install Dependencies - if: ${{ !vars.SELF_HOSTED }} - uses: ./.github/actions/apt-install-deps - - name: Restore Test Artifact + - name: Download Test Results uses: actions/download-artifact@v8 with: - name: ${{ github.sha }}-tests - - uses: lukka/get-cmake@latest - with: - cmakeVersion: "~4.3.0" # use most recent 4.3.x version - useLocalCache: true # <--= Use the local cache (default is 'false'). - useCloudCache: true - - name: Unpackage and Run Unit Tests - timeout-minutes: 20 - run: | - tar -xvf build_tests.tar - scripts/run_unit_tests.sh - - name: Upload Test Logs - uses: actions/upload-artifact@v7 - if: ${{ failure() }} - with: - name: unit-test-logs - path: build/tests/**/*.log + pattern: test-results-* + path: test-results + # Best-effort: a read-only token (e.g. fork PRs) can't write the check, so + # don't let a publish failure fail the run. The test jobs gate correctness. - name: Publish Test Results - if: always() + continue-on-error: true uses: EnricoMi/publish-unit-test-result-action@v2 with: - files: "ctest_results.xml" - - name: Delete Test Artifact + files: "test-results/**/*.xml" + - name: Delete Test Results if: success() uses: geekyeggo/delete-artifact@v6 with: - name: ${{ github.sha }}-tests + name: test-results-* + failOnError: false flatpak: name: "Flatpak" container: @@ -184,11 +216,14 @@ jobs: date: ver: ver_pure: + # Belt-printer nightlies share the main nightly release but carry a `_belt` + # suffix so they never overwrite the main assets. + nightly_suffix: ${{ github.ref == 'refs/heads/belt-printer' && '_belt' || '' }} steps: - name: "Remove unneeded stuff to free disk space" run: rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*" /opt/hostedtoolcache1/* - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Get the version and date run: | ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2) @@ -207,14 +242,14 @@ jobs: # Manage flatpak-builder cache externally so PRs restore but never upload - name: Restore flatpak-builder cache if: github.event_name == 'pull_request' - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: path: .flatpak-builder key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.event.pull_request.base.sha }} restore-keys: flatpak-builder-${{ matrix.variant.arch }}- - name: Save/restore flatpak-builder cache if: github.event_name != 'pull_request' - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .flatpak-builder key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }} @@ -242,12 +277,12 @@ jobs: name: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak path: '/__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak' - name: Deploy Flatpak to nightly release - if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' + if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/belt-printer') uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 asset_path: /__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak - asset_name: OrcaSlicer-Linux-flatpak_nightly_${{ matrix.variant.arch }}.flatpak + asset_name: OrcaSlicer-Linux-flatpak_nightly${{ env.nightly_suffix }}_${{ matrix.variant.arch }}.flatpak asset_content_type: application/octet-stream max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted diff --git a/.github/workflows/build_check_cache.yml b/.github/workflows/build_check_cache.yml index 8d14fb325d..b5c5b28b95 100644 --- a/.github/workflows/build_check_cache.yml +++ b/.github/workflows/build_check_cache.yml @@ -26,18 +26,19 @@ jobs: valid-cache: ${{ steps.cache_deps.outputs.cache-hit }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' - name: set outputs id: set_outputs env: - # Keep macOS/Linux cache keys architecture-specific. amd64 Linux passes + # Keep macOS/Windows cache keys architecture-specific. amd64 Linux passes # no arch (key stays 'linux-clang', preserving the existing cache); # aarch64 gets its own 'linux-clang-aarch64' key. - cache-os: ${{ runner.os == 'macOS' && format('macos-{0}', inputs.arch) || (runner.os == 'Windows' && 'windows' || format('linux-clang{0}', inputs.arch && format('-{0}', inputs.arch) || '')) }} - dep-folder-name: ${{ runner.os == 'macOS' && format('/{0}', inputs.arch) || '/OrcaSlicer_dep' }} + cache-os: ${{ runner.os == 'macOS' && format('macos-{0}', inputs.arch) || (runner.os == 'Windows' && format('windows-{0}', inputs.arch) || format('linux-clang{0}', inputs.arch && format('-{0}', inputs.arch) || '')) }} + # ARM64 builds use the build-arm64 tree (see build_release_vs.bat); x64/other use build. + dep-folder-name: ${{ runner.os == 'macOS' && format('/{0}', inputs.arch) || (runner.os == 'Windows' && inputs.arch == 'arm64') && '-arm64/OrcaSlicer_dep' || '/OrcaSlicer_dep' }} output-cmd: ${{ runner.os == 'Windows' && '$env:GITHUB_OUTPUT' || '"$GITHUB_OUTPUT"'}} run: | echo cache-key=${{ env.cache-os }}-cache-orcaslicer_deps-build-${{ hashFiles('deps/**') }} >> ${{ env.output-cmd }} @@ -45,7 +46,7 @@ jobs: - name: load cache id: cache_deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.set_outputs.outputs.cache-path }} key: ${{ steps.set_outputs.outputs.cache-key }} diff --git a/.github/workflows/build_deps.yml b/.github/workflows/build_deps.yml index 978d6f5d66..9927f5bef6 100644 --- a/.github/workflows/build_deps.yml +++ b/.github/workflows/build_deps.yml @@ -34,22 +34,39 @@ jobs: # Setup the environment - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' - name: load cached deps - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }} - uses: lukka/get-cmake@latest + # The windows-11-arm runner needs CMake <= 3.31 (handled in the next step). + if: ${{ !(runner.os == 'Windows' && inputs.arch == 'arm64') }} with: cmakeVersion: "~4.3.0" # use most recent 4.3.x version useLocalCache: true # <--= Use the local cache (default is 'false'). useCloudCache: true + - name: Install CMake 3.31.x (Windows ARM64) + # windows-11-arm ships CMake 4.x, which removed pre-3.5 policy + # compatibility AND has incomplete ASM_ARMASM linker modules + # (breaks Boost.Context on ARM64). Pin to the last 3.x release. + if: runner.os == 'Windows' && inputs.arch == 'arm64' + shell: pwsh + run: | + $ver = "3.31.6" + $url = "https://github.com/Kitware/CMake/releases/download/v$ver/cmake-$ver-windows-arm64.zip" + Invoke-WebRequest -Uri $url -OutFile "$env:RUNNER_TEMP\cmake.zip" + Expand-Archive -Path "$env:RUNNER_TEMP\cmake.zip" -DestinationPath "$env:RUNNER_TEMP\cmake" -Force + $cmakeBin = "$env:RUNNER_TEMP\cmake\cmake-$ver-windows-arm64\bin" + if (-not (Test-Path "$cmakeBin\cmake.exe")) { throw "cmake.exe not found at $cmakeBin" } + Add-Content -Path $env:GITHUB_PATH -Value $cmakeBin + - name: setup dev on Windows if: runner.os == 'Windows' uses: microsoft/setup-msbuild@v3 @@ -65,6 +82,50 @@ jobs: shell: pwsh + - name: Install MSYS2 (clangarm64) with GMP/MPFR and LLVM tools + if: runner.os == 'Windows' && inputs.arch == 'arm64' + uses: msys2/setup-msys2@v2 + with: + msystem: CLANGARM64 + update: true + install: >- + mingw-w64-clang-aarch64-gmp + mingw-w64-clang-aarch64-mpfr + mingw-w64-clang-aarch64-llvm + + - name: Stage ARM64 GMP/MPFR (no prebuilt blobs exist for win-arm64) + # GMP/MPFR ship prebuilt x64/x86 blobs in-tree but none for ARM64. + # Pull them from MSYS2 clangarm64 and generate MSVC import libs via + # llvm-dlltool, then stage into deps/{GMP,MPFR}/.../win-arm64 where the + # MSVC branch of GMP.cmake/MPFR.cmake copies them into the dep prefix. + if: runner.os == 'Windows' && inputs.arch == 'arm64' + shell: msys2 {0} + run: | + set -euo pipefail + BIN=/clangarm64/bin + REPO=$(cygpath -u "$GITHUB_WORKSPACE") + + make_import_lib() { + local dll="$1"; local lib="$2"; local def="/tmp/${dll%.dll}.def" + echo "EXPORTS" > "$def" + llvm-readobj --coff-exports "$BIN/$dll" | awk '/Name: /{print $2}' >> "$def" + llvm-dlltool -m arm64 -D "$dll" -d "$def" -l "$BIN/$lib" + } + + make_import_lib libgmp-10.dll libgmp-10.lib + + # MPFR 4.x ships as libmpfr-6.dll; rename to libmpfr-4 BEFORE generating + # the import lib so the baked-in runtime DLL name is correct. + MPFR_DLL=$(ls $BIN/libmpfr-*.dll | head -1 | xargs basename) + if [ "$MPFR_DLL" != "libmpfr-4.dll" ]; then cp "$BIN/$MPFR_DLL" "$BIN/libmpfr-4.dll"; fi + make_import_lib libmpfr-4.dll libmpfr-4.lib + + mkdir -p $REPO/deps/GMP/gmp/lib/win-arm64 $REPO/deps/MPFR/mpfr/lib/win-arm64 + cp $BIN/libgmp-10.dll $BIN/libgmp-10.lib $REPO/deps/GMP/gmp/lib/win-arm64/ + cp $BIN/libmpfr-4.dll $BIN/libmpfr-4.lib $REPO/deps/MPFR/mpfr/lib/win-arm64/ + cp /clangarm64/include/gmp.h $REPO/deps/GMP/gmp/include/ + cp /clangarm64/include/mpfr.h $REPO/deps/MPFR/mpfr/include/ || true + # Build Dependencies - name: Build on Windows if: runner.os == 'Windows' @@ -73,8 +134,14 @@ jobs: if (-not "${{ vars.SELF_HOSTED }}") { choco install strawberryperl } - .\build_release_vs.bat deps - .\build_release_vs.bat pack + $arch = "${{ inputs.arch }}" + if ($arch -eq "arm64") { + .\build_release_vs.bat deps arm64 + .\build_release_vs.bat pack arm64 + } else { + .\build_release_vs.bat deps + .\build_release_vs.bat pack + } shell: pwsh - name: Build on Mac ${{ inputs.arch }} diff --git a/.github/workflows/build_orca.yml b/.github/workflows/build_orca.yml index fa53d5916b..21c65283a9 100644 --- a/.github/workflows/build_orca.yml +++ b/.github/workflows/build_orca.yml @@ -29,27 +29,49 @@ jobs: ubuntu-ver: '2404' ubuntu-ver-str: '_Ubuntu2404' ORCA_UPDATER_SIG_KEY: ${{ secrets.ORCA_UPDATER_SIG_KEY }} + # Branches whose builds are published to the nightly release. The + # belt-printer branch ships alongside main but its assets carry a `_belt` + # suffix (nightly_suffix) so they never overwrite the main nightly assets. + deploy_nightly: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/belt-printer' }} + nightly_suffix: ${{ github.ref == 'refs/heads/belt-printer' && '_belt' || '' }} steps: - name: Checkout - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: lfs: 'false' - name: load cached deps if: ${{ !(runner.os == 'macOS' && inputs.macos-combine-only) }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ inputs.cache-path }} key: ${{ inputs.cache-key }} fail-on-cache-miss: true - uses: lukka/get-cmake@latest + # The windows-11-arm runner needs CMake <= 3.31 (handled in the next step). + if: ${{ !(runner.os == 'Windows' && inputs.arch == 'arm64') }} with: cmakeVersion: "~4.3.0" # use most recent 4.3.x version useLocalCache: true # <--= Use the local cache (default is 'false'). useCloudCache: true + - name: Install CMake 3.31.x (Windows ARM64) + # windows-11-arm ships CMake 4.x, which removed pre-3.5 policy + # compatibility AND has incomplete ASM_ARMASM linker modules + # (breaks Boost.Context on ARM64). Pin to the last 3.x release. + if: runner.os == 'Windows' && inputs.arch == 'arm64' + shell: pwsh + run: | + $ver = "3.31.6" + $url = "https://github.com/Kitware/CMake/releases/download/v$ver/cmake-$ver-windows-arm64.zip" + Invoke-WebRequest -Uri $url -OutFile "$env:RUNNER_TEMP\cmake.zip" + Expand-Archive -Path "$env:RUNNER_TEMP\cmake.zip" -DestinationPath "$env:RUNNER_TEMP\cmake" -Force + $cmakeBin = "$env:RUNNER_TEMP\cmake\cmake-$ver-windows-arm64\bin" + if (-not (Test-Path "$cmakeBin\cmake.exe")) { throw "cmake.exe not found at $cmakeBin" } + Add-Content -Path $env:GITHUB_PATH -Value $cmakeBin + - name: Get the version and date on Ubuntu and macOS if: runner.os != 'Windows' run: | @@ -119,8 +141,26 @@ jobs: - name: Build slicer mac if: runner.os == 'macOS' && !inputs.macos-combine-only working-directory: ${{ github.workspace }} + # arm64 only: build the tests here; the unit_tests_macos job runs them. + env: + ORCA_TESTS_BUILD_ONLY: ${{ inputs.arch == 'arm64' && '1' || '' }} run: | - ./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15 + ./build_release_macos.sh -s -n -x ${{ !vars.SELF_HOSTED && '-1' || '' }} -a ${{ inputs.arch }} -t 10.15 ${{ inputs.arch == 'arm64' && '-T' || '' }} + + - name: Pack unit tests mac + if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64' + working-directory: ${{ github.workspace }} + run: tar -cvf build_tests.tar build/arm64/tests + + - name: Upload Test Artifact mac + if: runner.os == 'macOS' && !inputs.macos-combine-only && inputs.arch == 'arm64' + uses: actions/upload-artifact@v7 + with: + name: ${{ github.sha }}-tests-macos-arm64 + overwrite: true + path: build_tests.tar + retention-days: 5 + if-no-files-found: error - name: Pack macOS app bundle ${{ inputs.arch }} if: runner.os == 'macOS' && !inputs.macos-combine-only @@ -160,7 +200,7 @@ jobs: # Thanks to RaySajuuk, it's working now - name: Sign app and notary - if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'macOS' && inputs.macos-combine-only + if: github.repository == 'OrcaSlicer/OrcaSlicer' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/belt-printer' || startsWith(github.ref, 'refs/heads/release/')) && runner.os == 'macOS' && inputs.macos-combine-only working-directory: ${{ github.workspace }} env: BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }} @@ -216,7 +256,7 @@ jobs: fi - name: Create DMG without notary - if: github.ref != 'refs/heads/main' && runner.os == 'macOS' && inputs.macos-combine-only + if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/belt-printer' && runner.os == 'macOS' && inputs.macos-combine-only working-directory: ${{ github.workspace }} run: | # Load the `retry` helper (retries flaky commands such as `hdiutil create`). @@ -262,13 +302,13 @@ jobs: if-no-files-found: ignore - name: Deploy Mac release - if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && runner.os == 'macOS' && inputs.macos-combine-only && !vars.SELF_HOSTED + if: github.repository == 'OrcaSlicer/OrcaSlicer' && env.deploy_nightly == 'true' && runner.os == 'macOS' && inputs.macos-combine-only && !vars.SELF_HOSTED uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 asset_path: ${{ github.workspace }}/OrcaSlicer_Mac_universal_${{ env.ver }}.dmg - asset_name: OrcaSlicer_Mac_universal_nightly.dmg + asset_name: OrcaSlicer_Mac_universal_nightly${{ env.nightly_suffix }}.dmg asset_content_type: application/octet-stream max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted @@ -284,6 +324,18 @@ jobs: max_releases: 1 # Windows + - name: Set Windows build variables + if: runner.os == 'Windows' + shell: pwsh + run: | + if ("${{ inputs.arch }}" -eq "arm64") { + "BUILD_DIR=build-arm64" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 + "ARCH_SUFFIX=_arm64" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 + } else { + "BUILD_DIR=build" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 + "ARCH_SUFFIX=_x64" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8 + } + - name: setup MSVC if: runner.os == 'Windows' uses: microsoft/setup-msbuild@v3 @@ -301,23 +353,45 @@ jobs: # env: # WindowsSdkDir: 'C:\Program Files (x86)\Windows Kits\10\' # WindowsSDKVersion: '10.0.26100.0\' - run: .\build_release_vs.bat slicer + # "tests" builds the unit tests too; the unit_tests_windows_* jobs run them. + run: | + $arch = "${{ inputs.arch }}" + if ($arch -eq "arm64") { .\build_release_vs.bat slicer arm64 tests } else { .\build_release_vs.bat slicer tests } + shell: pwsh + - name: Pack unit tests Win + if: runner.os == 'Windows' + working-directory: ${{ github.workspace }} + shell: pwsh + run: tar -cvf build_tests.tar ${{ env.BUILD_DIR }}/tests + + - name: Upload Test Artifact Win + if: runner.os == 'Windows' + uses: actions/upload-artifact@v7 + with: + name: ${{ github.sha }}-tests-windows-${{ inputs.arch }} + overwrite: true + path: build_tests.tar + retention-days: 5 + if-no-files-found: error + + # NSIS is x86-only; it runs (and the installer it emits runs) under ARM64's + # x86 emulation, packaging the native arm64 payload from build-arm64. - name: Create installer Win if: runner.os == 'Windows' && !vars.SELF_HOSTED - working-directory: ${{ github.workspace }}/build + working-directory: ${{ github.workspace }}/${{ env.BUILD_DIR }} run: | cpack -G NSIS - name: Pack app if: runner.os == 'Windows' - working-directory: ${{ github.workspace }}/build + working-directory: ${{ github.workspace }}/${{ env.BUILD_DIR }} shell: cmd - run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_Windows_${{ env.ver }}_portable.zip ${{ github.workspace }}/build/OrcaSlicer' + run: '"C:/Program Files/7-Zip/7z.exe" a -tzip OrcaSlicer_Windows_${{ env.ver }}${{ env.ARCH_SUFFIX }}_portable.zip ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer' - name: Pack PDB - if: runner.os == 'Windows' && !vars.SELF_HOSTED - working-directory: ${{ github.workspace }}/build/src/Release + if: runner.os == 'Windows' && inputs.arch != 'arm64' && !vars.SELF_HOSTED + working-directory: ${{ github.workspace }}/${{ env.BUILD_DIR }}/src/Release shell: cmd run: '"C:/Program Files/7-Zip/7z.exe" a -m0=lzma2 -mx9 Debug_PDB_${{ env.ver }}_for_developers_only.7z *.pdb' @@ -325,54 +399,54 @@ jobs: if: runner.os == 'Windows' uses: actions/upload-artifact@v7 with: - name: OrcaSlicer_Windows_${{ env.ver }}_portable - path: ${{ github.workspace }}/build/OrcaSlicer + name: OrcaSlicer_Windows_${{ env.ver }}${{ env.ARCH_SUFFIX }}_portable + path: ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer - name: Upload artifacts Win installer if: runner.os == 'Windows' && !vars.SELF_HOSTED uses: actions/upload-artifact@v7 with: - name: OrcaSlicer_Windows_${{ env.ver }} - path: ${{ github.workspace }}/build/OrcaSlicer*.exe + name: OrcaSlicer_Windows_${{ env.ver }}${{ env.ARCH_SUFFIX }} + path: ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer*.exe - name: Upload artifacts Win PDB - if: runner.os == 'Windows' && !vars.SELF_HOSTED + if: runner.os == 'Windows' && inputs.arch != 'arm64' && !vars.SELF_HOSTED uses: actions/upload-artifact@v7 with: name: PDB path: ${{ github.workspace }}/build/src/Release/Debug_PDB_${{ env.ver }}_for_developers_only.7z - name: Upload OrcaSlicer_profile_validator Win - if: runner.os == 'Windows' && !vars.SELF_HOSTED + if: runner.os == 'Windows' && inputs.arch != 'arm64' && !vars.SELF_HOSTED uses: actions/upload-artifact@v7 with: name: OrcaSlicer_profile_validator_Windows_${{ env.ver }} path: ${{ github.workspace }}/build/src/Release/OrcaSlicer_profile_validator.exe - name: Deploy Windows release portable - if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && runner.os == 'Windows' && !vars.SELF_HOSTED + if: github.repository == 'OrcaSlicer/OrcaSlicer' && env.deploy_nightly == 'true' && runner.os == 'Windows' && !vars.SELF_HOSTED uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 - asset_path: ${{ github.workspace }}/build/OrcaSlicer_Windows_${{ env.ver }}_portable.zip - asset_name: OrcaSlicer_Windows_nightly_portable.zip + asset_path: ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer_Windows_${{ env.ver }}${{ env.ARCH_SUFFIX }}_portable.zip + asset_name: OrcaSlicer_Windows${{ env.ARCH_SUFFIX }}_nightly${{ env.nightly_suffix }}_portable.zip asset_content_type: application/x-zip-compressed max_releases: 1 - name: Deploy Windows release installer - if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && runner.os == 'Windows' && !vars.SELF_HOSTED + if: github.repository == 'OrcaSlicer/OrcaSlicer' && env.deploy_nightly == 'true' && runner.os == 'Windows' && !vars.SELF_HOSTED uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 - asset_path: ${{ github.workspace }}/build/OrcaSlicer_Windows_Installer_${{ env.ver }}.exe - asset_name: OrcaSlicer_Windows_Installer_nightly.exe + asset_path: ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer_Windows_Installer_${{ env.ver }}${{ env.ARCH_SUFFIX }}.exe + asset_name: OrcaSlicer_Windows_Installer${{ env.ARCH_SUFFIX }}_nightly${{ env.nightly_suffix }}.exe asset_content_type: application/x-msdownload max_releases: 1 - name: Deploy Windows OrcaSlicer_profile_validator release - if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && runner.os == 'Windows' && !vars.SELF_HOSTED + if: github.repository == 'OrcaSlicer/OrcaSlicer' && github.ref == 'refs/heads/main' && runner.os == 'Windows' && inputs.arch != 'arm64' && !vars.SELF_HOSTED uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} @@ -388,8 +462,9 @@ jobs: shell: pwsh run: | ./scripts/msix/build_msix.ps1 ` - -InstallDir "${{ github.workspace }}/build/OrcaSlicer" ` - -OutputPath "${{ github.workspace }}/build/OrcaSlicer_Windows_MSIX_${{ env.ver }}.msix" ` + -InstallDir "${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer" ` + -OutputPath "${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer_Windows_MSIX_${{ env.ver }}${{ env.ARCH_SUFFIX }}.msix" ` + -Architecture "${{ inputs.arch }}" ` -IdentityName "${{ vars.ORCA_MSIX_IDENTITY_NAME || 'OrcaSlicer.OrcaSlicer' }}" ` -Publisher "${{ vars.ORCA_MSIX_PUBLISHER || 'CN=38F7EA55-C73B-4072-B3B2-C8E0EA15BB82' }}" ` -PublisherDisplayName "${{ vars.ORCA_MSIX_PUBLISHER_DISPLAY_NAME || 'OrcaSlicer' }}" @@ -398,8 +473,8 @@ jobs: if: runner.os == 'Windows' && !vars.SELF_HOSTED uses: actions/upload-artifact@v7 with: - name: OrcaSlicer_Windows_MSIX_${{ env.ver }} - path: ${{ github.workspace }}/build/OrcaSlicer_Windows_MSIX_${{ env.ver }}.msix + name: OrcaSlicer_Windows_MSIX_${{ env.ver }}${{ env.ARCH_SUFFIX }} + path: ${{ github.workspace }}/${{ env.BUILD_DIR }}/OrcaSlicer_Windows_MSIX_${{ env.ver }}${{ env.ARCH_SUFFIX }}.msix # Ubuntu - name: Apt-Install Dependencies @@ -412,26 +487,22 @@ jobs: if: runner.os == 'Linux' shell: bash run: | - # Build + tar the unit tests (-t) only on the leg that runs them: the - # aarch64 leg by default (faster GitHub arm runner), or amd64 when using - # self-hosted runners (no arm self-hosted server). unit_tests downloads - # this tarball. The profile validator is built with -s, so amd64 keeps it. - tests=${{ (!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64') }} - if $tests; then flags=-istrlL; else flags=-isrlL; fi - ./build_linux.sh "$flags" + # Build + tar the unit tests (-t) on both Linux legs so each arch + # (x86_64 + aarch64) gets tested by its own unit_tests_linux_* job. + ./build_linux.sh -istrlL ./scripts/check_appimage_libs.sh ./build/package ./build/package/bin/orca-slicer appimage=./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage "$appimage" chmod +x "$appimage" - if $tests; then tar -cvpf build_tests.tar build/tests; fi + tar -cvf build_tests.tar build/tests # Use tar because upload-artifacts won't always preserve directory structure # and doesn't preserve file permissions - name: Upload Test Artifact - if: runner.os == 'Linux' && ((!vars.SELF_HOSTED && inputs.arch == 'aarch64') || (vars.SELF_HOSTED && inputs.arch != 'aarch64')) + if: runner.os == 'Linux' uses: actions/upload-artifact@v7 with: - name: ${{ github.sha }}-tests + name: ${{ github.sha }}-tests-linux-${{ inputs.arch == 'aarch64' && 'aarch64' || 'x86_64' }} overwrite: true path: build_tests.tar retention-days: 5 @@ -471,13 +542,13 @@ jobs: path: './build/src/Release/OrcaSlicer_profile_validator' - name: Deploy Ubuntu release - if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && github.ref == 'refs/heads/main' && runner.os == 'Linux' && !vars.SELF_HOSTED }} + if: ${{ github.repository == 'OrcaSlicer/OrcaSlicer' && ! env.ACT && env.deploy_nightly == 'true' && runner.os == 'Linux' && !vars.SELF_HOSTED }} uses: WebFreak001/deploy-nightly@v3.2.0 with: upload_url: https://uploads.github.com/repos/OrcaSlicer/OrcaSlicer/releases/137995723/assets{?name,label} release_id: 137995723 asset_path: ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_${{ env.ver }}.AppImage - asset_name: OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_nightly.AppImage + asset_name: OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}${{ env.arch_suffix }}_nightly${{ env.nightly_suffix }}.AppImage asset_content_type: application/octet-stream max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted - name: Deploy Ubuntu release diff --git a/.github/workflows/check_locale.yml b/.github/workflows/check_locale.yml index f248ced29c..fabca4bc37 100644 --- a/.github/workflows/check_locale.yml +++ b/.github/workflows/check_locale.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install gettext run: | diff --git a/.github/workflows/check_profiles.yml b/.github/workflows/check_profiles.yml index 84a396d7a3..5f8f3d9e07 100644 --- a/.github/workflows/check_profiles.yml +++ b/.github/workflows/check_profiles.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-24.04 steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run extra JSON check id: extra_json_check @@ -38,10 +38,10 @@ jobs: - name: Download working-directory: ${{ github.workspace }} run: | - curl -LJO https://github.com/SoftFever/Orca_tools/releases/download/1/OrcaSlicer_profile_validator + curl -L -o OrcaSlicer_profile_validator https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/OrcaSlicer_profile_validator_Linux_Ubuntu2404_nightly chmod +x ./OrcaSlicer_profile_validator - # validate profiles + # Validate all system profiles. - name: validate system profiles id: validate_system continue-on-error: true @@ -49,17 +49,115 @@ jobs: set +e ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_system.log exit ${PIPESTATUS[0]} + # For now run filament subtype check only for BBL profiles until we fix other vendors' profiles. + - name: validate filament subtype check for BBL profiles + id: validate_filament_subtypes + continue-on-error: true + run: | + set +e + ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 -v BBL -f 2>&1 | tee ${{ runner.temp }}/validate_filament_subtypes.log + exit ${PIPESTATUS[0]} - name: validate custom presets id: validate_custom continue-on-error: true working-directory: ${{ github.workspace }} run: | - set +e - curl -LJO https://github.com/OrcaSlicer/OrcaSlicer/releases/download/nightly-builds/orca_custom_preset_tests.zip - unzip -q ./orca_custom_preset_tests.zip -d ${{ github.workspace }}/resources/profiles - ./OrcaSlicer_profile_validator -p ${{ github.workspace }}/resources/profiles -l 2 2>&1 | tee ${{ runner.temp }}/validate_custom.log - exit ${PIPESTATUS[0]} + fixtures_dir="${{ runner.temp }}/profile-fixtures" + output_dir="${{ runner.temp }}/custom-preset-validation" + combined_log="${{ runner.temp }}/validate_custom.log" + summary="${output_dir}/summary.md" + release_url="https://github.com/OrcaSlicer/OrcaSlicer-profile-validator/releases/download/fixture-archive" + + rm -rf "${fixtures_dir}" "${output_dir}" + mkdir -p "${fixtures_dir}" "${output_dir}" + + curl -fsSL -o "${fixtures_dir}/manifest.json" "${release_url}/manifest.json" + + MANIFEST_PATH="${fixtures_dir}/manifest.json" python3 <<'PY' > "${fixtures_dir}/fixtures.tsv" + import json + import os + + with open(os.environ["MANIFEST_PATH"], encoding="utf-8") as fh: + manifest = json.load(fh) + + if isinstance(manifest, dict): + entries = manifest.get("fixtures", []) + else: + entries = manifest + + for entry in entries: + version = entry.get("version", "") + asset = entry.get("asset", "") + sha256 = entry.get("asset_sha256", "") + if not version or not asset: + continue + print(f"{version}\t{asset}\t{sha256}") + PY + + if [ ! -s "${fixtures_dir}/fixtures.tsv" ]; then + echo "No custom preset fixtures found in ${release_url}/manifest.json" | tee "${combined_log}" + exit 1 + fi + + { + echo "## Custom Preset Fixture Validation" + echo "" + echo "| Version | Status | Log |" + echo "| --- | --- | --- |" + } > "${summary}" + + status=0 + failed_logs=() + + while IFS=$'\t' read -r version asset expected_sha256; do + fixture_zip="${fixtures_dir}/${asset}" + asset_url_name="$(python3 -c 'import sys, urllib.parse; print(urllib.parse.quote(sys.argv[1], safe=""))' "${asset}")" + profile_tree="${output_dir}/profiles-${version}" + log_path="${output_dir}/${version}.log" + + curl -fsSL -o "${fixture_zip}" "${release_url}/${asset_url_name}" + + if [ -n "${expected_sha256}" ] && [ "${expected_sha256}" != "" ]; then + echo "${expected_sha256} ${fixture_zip}" | sha256sum -c - + fi + + rm -rf "${profile_tree}" + mkdir -p "${profile_tree}" + cp -a "${{ github.workspace }}/resources/profiles/." "${profile_tree}/" + rm -rf "${profile_tree}/user" + unzip -q "${fixture_zip}" -d "${profile_tree}" + + set +e + ./OrcaSlicer_profile_validator -p "${profile_tree}" -l 2 > "${log_path}" 2>&1 + result=$? + set -e + + if [ "${result}" -eq 0 ]; then + echo "| ${version} | PASS | ${version}.log |" >> "${summary}" + else + echo "| ${version} | FAIL | ${version}.log |" >> "${summary}" + failed_logs+=("${log_path}") + status=1 + fi + done < "${fixtures_dir}/fixtures.tsv" + + { + cat "${summary}" + if [ "${#failed_logs[@]}" -gt 0 ]; then + echo "" + echo "## Failed Fixture Logs" + for log_path in "${failed_logs[@]}"; do + echo "" + echo "### $(basename "${log_path}" .log)" + echo '```' + head -c 12000 "${log_path}" || echo "No output captured" + echo '```' + done + fi + } | tee "${combined_log}" + + exit "${status}" - name: Prepare PR number for comment workflow if: ${{ always() && github.event_name == 'pull_request' }} @@ -68,7 +166,7 @@ jobs: echo "${{ github.event.pull_request.number }}" > ${{ runner.temp }}/profile-check-results/pr_number.txt - name: Prepare comment artifact - if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} + if: ${{ always() && github.event_name == 'pull_request' && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} run: | { # Marker matched by check_profiles_comment.yml to delete prior comments. @@ -94,6 +192,15 @@ jobs: echo "" fi + if [ "${{ steps.validate_filament_subtypes.outcome }}" = "failure" ]; then + echo "### BBL Filament Subtype Validation Failed" + echo "" + echo '```' + head -c 30000 ${{ runner.temp }}/validate_filament_subtypes.log || echo "No output captured" + echo '```' + echo "" + fi + if [ "${{ steps.validate_custom.outcome }}" = "failure" ]; then echo "### Custom Preset Validation Failed" echo "" @@ -116,7 +223,7 @@ jobs: retention-days: 1 - name: Fail if any check failed - if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} + if: ${{ always() && (steps.extra_json_check.outcome == 'failure' || steps.validate_system.outcome == 'failure' || steps.validate_filament_subtypes.outcome == 'failure' || steps.validate_custom.outcome == 'failure') }} run: | echo "One or more profile checks failed. See above for details." exit 1 diff --git a/.github/workflows/dedupe-issues.yml b/.github/workflows/dedupe-issues.yml index abaf978d27..a8c21edd01 100644 --- a/.github/workflows/dedupe-issues.yml +++ b/.github/workflows/dedupe-issues.yml @@ -20,14 +20,14 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Run Claude Code slash command uses: anthropics/claude-code-base-action@beta with: prompt: "/dedupe ${{ github.repository }}/issues/${{ github.event.issue.number || inputs.issue_number }}" claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - claude_args: "--model claude-sonnet-4-5-20250929" + model: "claude-sonnet-4-5-20250929" claude_env: | GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/doxygen-docs.yml b/.github/workflows/doxygen-docs.yml index f30c3e0d0e..6af7255fa3 100644 --- a/.github/workflows/doxygen-docs.yml +++ b/.github/workflows/doxygen-docs.yml @@ -26,7 +26,7 @@ jobs: remove-existing-swap-files: true - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Install Doxygen and Graphviz run: | diff --git a/.github/workflows/pr-label-bot.yml b/.github/workflows/pr-label-bot.yml index bbe1ac3472..c238c854f4 100644 --- a/.github/workflows/pr-label-bot.yml +++ b/.github/workflows/pr-label-bot.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Ask PR author for label - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | function isPermissionDenied(error) { @@ -88,7 +88,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Apply label command from PR author - uses: actions/github-script@v7 + uses: actions/github-script@v9 with: script: | function isPermissionDenied(error) { diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 98514d99db..eafe131f47 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -92,9 +92,11 @@ jobs: # binaries are already unzipped. Copy the inner binary for each platform. # -type f is required (some artifact *folders* are named "*.flatpak"). - # Windows installer: the .exe inside the installer artifact, NOT the - # orca-slicer.exe that lives in the portable app folder. - find artifacts -type f -name '*.exe' -path '*OrcaSlicer_Windows_*' ! -path '*_portable*' -exec cp -v {} upload/ \; + # Windows installers (x64 + arm64): the .exe inside each installer + # artifact, NOT the orca-slicer.exe in the portable app folder. CPack + # now bakes the arch into the filename (…_x64.exe / …_arm64.exe), so + # copy them straight through. + find artifacts -type f -name '*.exe' -path '*OrcaSlicer_Windows_V*' ! -path '*_portable*' -exec cp -v {} upload/ \; # macOS universal DMG (profile-validator DMG isn't downloaded). find artifacts -type f -name '*.dmg' -path '*OrcaSlicer_Mac_universal_*' -exec cp -v {} upload/ \; # Linux AppImage. @@ -104,15 +106,16 @@ jobs: # Windows debug symbols (PDB archive, for developers). find artifacts -type f -name 'Debug_PDB_*.7z' -exec cp -v {} upload/ \; - # Portable Windows build is an unzipped folder artifact; re-zip it to the - # released filename (this one stays a .zip on the release). - portable_dir=$(find artifacts -maxdepth 1 -type d -name 'OrcaSlicer_Windows_*_portable' | head -n1) - if [ -n "${portable_dir:-}" ]; then - ( cd "$portable_dir" && zip -qr "$GITHUB_WORKSPACE/upload/$(basename "$portable_dir").zip" . ) - echo "Zipped portable -> $(basename "$portable_dir").zip" - else + # Portable Windows builds (x64 + arm64) are unzipped folder artifacts; + # re-zip each to its released filename (these stay .zip on the release). + mapfile -t portable_dirs < <(find artifacts -maxdepth 1 -type d -name 'OrcaSlicer_Windows_*_portable') + if [ ${#portable_dirs[@]} -eq 0 ]; then echo "::warning::Windows portable artifact not found." fi + for portable_dir in "${portable_dirs[@]}"; do + ( cd "$portable_dir" && zip -qr "$GITHUB_WORKSPACE/upload/$(basename "$portable_dir").zip" . ) + echo "Zipped portable -> $(basename "$portable_dir").zip" + done echo "Assets to upload:" ls -lh upload diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml index d5fe5a35d2..bd6b4e985e 100644 --- a/.github/workflows/shellcheck.yml +++ b/.github/workflows/shellcheck.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Cache shellcheck download id: cache-shellcheck-v0_11 - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/shellcheck key: ${{ runner.os }}-shellcheck-v0_11 @@ -36,7 +36,7 @@ jobs: tar -xvf ~/sc.tar.xz -C ~ mv ~/shellcheck-"${INPUT_VERSION}"/shellcheck ~/shellcheck - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 1 diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml new file mode 100644 index 0000000000..0fe91c7440 --- /dev/null +++ b/.github/workflows/unit_tests.yml @@ -0,0 +1,73 @@ +name: Unit Tests + +# Download a platform's test artifact, run ctest, and upload the JUnit +# results for aggregation. Called once per arch from build_all.yml. +on: + workflow_call: + inputs: + os: + required: true + type: string + artifact: + description: Test artifact uploaded by the build leg + required: true + type: string + test-dir: + description: Built tests dir; defaults to build/tests, override for arch-separated builds + required: false + type: string + default: build/tests + +jobs: + unit_tests: + # Static "Unit Tests"; the per-arch label is the caller's job name, so the + # graph shows e.g. "Windows x64 / Unit Tests". + name: Unit Tests + runs-on: ${{ inputs.os }} + steps: + - name: Checkout + uses: actions/checkout@v7 + with: + # tests/data is referenced by absolute path (TEST_DATA_DIR). + sparse-checkout: | + .github + scripts + tests + - name: Apt-Install Dependencies + if: runner.os == 'Linux' && !vars.SELF_HOSTED + uses: ./.github/actions/apt-install-deps + - name: Restore Test Artifact + uses: actions/download-artifact@v8 + with: + name: ${{ inputs.artifact }} + - uses: lukka/get-cmake@latest + with: + cmakeVersion: "~4.3.0" # use most recent 4.3.x version + useLocalCache: true + useCloudCache: true + - name: Unpackage and Run Unit Tests + timeout-minutes: 20 + shell: bash + run: | + tar -xvf build_tests.tar + # Multi-config generators (Windows/macOS) need a config; Linux is single-config. + scripts/run_unit_tests.sh "${{ inputs.test-dir }}" "${{ runner.os != 'Linux' && 'Release' || '' }}" + - name: Upload Test Logs + if: ${{ failure() }} + uses: actions/upload-artifact@v7 + with: + name: unit-test-logs-${{ inputs.artifact }} + path: ${{ inputs.test-dir }}/**/*.log + - name: Upload Test Results + if: always() + uses: actions/upload-artifact@v7 + with: + name: test-results-${{ inputs.artifact }} + path: ctest_results.xml + retention-days: 5 + if-no-files-found: warn + - name: Delete Test Artifact + if: success() + uses: geekyeggo/delete-artifact@v6 + with: + name: ${{ inputs.artifact }} diff --git a/.github/workflows/update-translation.yml b/.github/workflows/update-translation.yml index 983e418b5b..674b6bfc50 100644 --- a/.github/workflows/update-translation.yml +++ b/.github/workflows/update-translation.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup Python uses: actions/setup-python@v6 diff --git a/.gitignore b/.gitignore index 8007f0a05c..916c7207b7 100644 --- a/.gitignore +++ b/.gitignore @@ -45,4 +45,7 @@ test.js .clangd internal_docs/ *.flatpak -/flatpak-repo/ \ No newline at end of file +/flatpak-repo/ +# Python bytecode +__pycache__/ +*.pyc diff --git a/CMakeLists.txt b/CMakeLists.txt index e24e296ad4..2bd97d61cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -710,7 +710,7 @@ endif () set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/i18n") set(BBL_L18N_DIR "${CMAKE_CURRENT_SOURCE_DIR}/localization/i18n") add_custom_target(gettext_make_pot - COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost + COMMAND xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost -f "${BBL_L18N_DIR}/list.txt" -o "${BBL_L18N_DIR}/OrcaSlicer.pot" COMMAND hintsToPot ${SLIC3R_RESOURCES_DIR} ${BBL_L18N_DIR} @@ -934,6 +934,16 @@ set (CPACK_PACKAGE_VERSION_MAJOR "${ORCA_VERSION_MAJOR}") set (CPACK_PACKAGE_VERSION_MINOR "${ORCA_VERSION_MINOR}") set (CPACK_PACKAGE_VERSION_PATCH "${ORCA_VERSION_PATCH}") set (CPACK_PACKAGE_FILE_NAME "OrcaSlicer_Windows_Installer_V${SoftFever_VERSION}") +# Suffix the Windows installer with its target arch so the x64 and arm64 builds +# produce distinct filenames (matches ARCH_SUFFIX in build_orca.yml). Same +# CMAKE_SYSTEM_PROCESSOR mapping used by orcaslicer_copy_dlls() above. +if (WIN32) + if (CMAKE_SYSTEM_PROCESSOR STREQUAL "ARM64") + string (APPEND CPACK_PACKAGE_FILE_NAME "_arm64") + else () + string (APPEND CPACK_PACKAGE_FILE_NAME "_x64") + endif () +endif () set (CPACK_PACKAGE_DESCRIPTION_SUMMARY "Orca Slicer is an open source slicer for FDM printers") set (CPACK_PACKAGE_HOMEPAGE_URL "https://github.com/OrcaSlicer/OrcaSlicer") set (CPACK_PACKAGE_INSTALL_DIRECTORY ${CPACK_PACKAGE_NAME}) diff --git a/build_release_macos.sh b/build_release_macos.sh index 8d417695ad..1a86d2c515 100755 --- a/build_release_macos.sh +++ b/build_release_macos.sh @@ -59,7 +59,7 @@ while getopts ":dpa:snt:xbc:i:1Tuh" opt; do echo " -c: Set CMake build configuration, default is Release" echo " -i: Add a prefix to ignore during CMake dependency discovery (repeatable), defaults to /opt/local:/usr/local:/opt/homebrew" echo " -1: Use single job for building" - echo " -T: Build and run tests" + echo " -T: Build and run tests (set ORCA_TESTS_BUILD_ONLY=1 to build without running)" exit 0 ;; * ) @@ -209,13 +209,10 @@ function build_slicer() { cmake --build . --config "$BUILD_CONFIG" --target "$SLICER_BUILD_TARGET" ) - if [ "1." == "$BUILD_TESTS". ]; then - echo "Running tests for $_ARCH..." - ( - set -x - cd "$PROJECT_BUILD_DIR" - ctest --build-config "$BUILD_CONFIG" --output-on-failure - ) + # -T also runs the tests; ORCA_TESTS_BUILD_ONLY=1 builds them without + # running, so CI can build here and run them in a dedicated job. + if [ "1." == "$BUILD_TESTS". ] && [ "1." != "$ORCA_TESTS_BUILD_ONLY". ]; then + "$PROJECT_DIR/scripts/run_unit_tests.sh" "build/$_ARCH/tests" "$BUILD_CONFIG" fi echo "Verify localization with gettext..." diff --git a/build_release_vs.bat b/build_release_vs.bat index cc3744ae97..78419dadf5 100644 --- a/build_release_vs.bat +++ b/build_release_vs.bat @@ -3,12 +3,29 @@ set WP=%CD% set _START_TIME=%TIME% +@REM Default target architecture to the host CPU arch; override by passing +@REM "x64" or "arm64" as an argument. PROCESSOR_ARCHITEW6432 covers a 32-bit +@REM shell running on a 64-bit OS, where PROCESSOR_ARCHITECTURE reads "x86". +set arch=x64 +if /I "%PROCESSOR_ARCHITECTURE%"=="ARM64" set arch=ARM64 +if /I "%PROCESSOR_ARCHITEW6432%"=="ARM64" set arch=ARM64 +if /I "%1"=="arm64" set arch=ARM64 +if /I "%2"=="arm64" set arch=ARM64 +if /I "%1"=="x64" set arch=x64 +if /I "%2"=="x64" set arch=x64 + @REM Check for Ninja Multi-Config option (-x) set USE_NINJA=0 for %%a in (%*) do ( if "%%a"=="-x" set USE_NINJA=1 ) +@REM Check for unit-tests option ("tests") +set BUILD_TESTS=OFF +for %%a in (%*) do ( + if /I "%%a"=="tests" set BUILD_TESTS=ON +) + if "%USE_NINJA%"=="1" ( echo Using Ninja Multi-Config generator set CMAKE_GENERATOR="Ninja Multi-Config" @@ -68,12 +85,13 @@ echo Using CMake generator: %CMAKE_GENERATOR% @REM Pack deps if "%1"=="pack" ( - setlocal ENABLEDELAYEDEXPANSION + setlocal ENABLEDELAYEDEXPANSION cd %WP%/deps/build + if "%arch%"=="ARM64" cd %WP%/deps/build-arm64 for /f "tokens=2-4 delims=/ " %%a in ('date /t') do set build_date=%%c%%b%%a - echo packing deps: OrcaSlicer_dep_win64_!build_date!_vs!VS_VERSION!.zip + echo packing deps: OrcaSlicer_dep_win-!arch!_!build_date!_vs!VS_VERSION!.zip - %WP%/tools/7z.exe a OrcaSlicer_dep_win64_!build_date!_vs!VS_VERSION!.zip OrcaSlicer_dep + %WP%/tools/7z.exe a OrcaSlicer_dep_win-!arch!_!build_date!_vs!VS_VERSION!.zip OrcaSlicer_dep goto :done ) @@ -95,9 +113,10 @@ if "%debug%"=="ON" ( set build_dir=build ) ) -echo build type set to %build_type% +if "%arch%"=="ARM64" set build_dir=%build_dir%-arm64 +echo build type set to %build_type%, arch=%arch% -setlocal DISABLEDELAYEDEXPANSION +setlocal DISABLEDELAYEDEXPANSION cd deps mkdir %build_dir% cd %build_dir% @@ -116,7 +135,7 @@ if "%USE_NINJA%"=="1" ( cmake ../ -G %CMAKE_GENERATOR% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target deps ) else ( - cmake ../ -G %CMAKE_GENERATOR% -A x64 -DCMAKE_BUILD_TYPE=%build_type% + cmake ../ -G %CMAKE_GENERATOR% -A %arch% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target deps -- -m ) @echo off @@ -132,10 +151,10 @@ cd %build_dir% echo on set CMAKE_POLICY_VERSION_MINIMUM=3.5 if "%USE_NINJA%"=="1" ( - cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type% + cmake .. -G %CMAKE_GENERATOR% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target all ) else ( - cmake .. -G %CMAKE_GENERATOR% -A x64 -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type% + cmake .. -G %CMAKE_GENERATOR% -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DBUILD_TESTS=%BUILD_TESTS% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target ALL_BUILD -- -m ) @echo off diff --git a/build_release_vs2022.bat b/build_release_vs2022.bat index 4a5ae11277..32f39745e3 100644 --- a/build_release_vs2022.bat +++ b/build_release_vs2022.bat @@ -15,10 +15,18 @@ if "%1"=="pack" ( set debug=OFF set debuginfo=OFF +@REM Default target architecture to the host CPU arch; override with x64/arm64 arg. +set arch=x64 +if /I "%PROCESSOR_ARCHITECTURE%"=="ARM64" set arch=ARM64 +if /I "%PROCESSOR_ARCHITEW6432%"=="ARM64" set arch=ARM64 if "%1"=="debug" set debug=ON if "%2"=="debug" set debug=ON if "%1"=="debuginfo" set debuginfo=ON if "%2"=="debuginfo" set debuginfo=ON +if /I "%1"=="arm64" set arch=ARM64 +if /I "%2"=="arm64" set arch=ARM64 +if /I "%1"=="x64" set arch=x64 +if /I "%2"=="x64" set arch=x64 if "%debug%"=="ON" ( set build_type=Debug set build_dir=build-dbg @@ -31,7 +39,8 @@ if "%debug%"=="ON" ( set build_dir=build ) ) -echo build type set to %build_type% +if "%arch%"=="ARM64" set build_dir=%build_dir%-arm64 +echo build type set to %build_type%, arch=%arch% setlocal DISABLEDELAYEDEXPANSION cd deps @@ -48,7 +57,7 @@ echo "building deps.." echo on REM Set minimum CMake policy to avoid <3.5 errors set CMAKE_POLICY_VERSION_MINIMUM=3.5 -cmake ../ -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=%build_type% +cmake ../ -G "Visual Studio 17 2022" -A %arch% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target deps -- -m @echo off @@ -62,7 +71,7 @@ cd %build_dir% echo on set CMAKE_POLICY_VERSION_MINIMUM=3.5 -cmake .. -G "Visual Studio 17 2022" -A x64 -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type% +cmake .. -G "Visual Studio 17 2022" -A %arch% -DORCA_TOOLS=ON %SIG_FLAG% -DCMAKE_BUILD_TYPE=%build_type% cmake --build . --config %build_type% --target ALL_BUILD -- -m @echo off cd .. diff --git a/cmake/modules/FindGLEW.cmake b/cmake/modules/FindGLEW.cmake index 93e8ed89bf..e9ac3b6436 100644 --- a/cmake/modules/FindGLEW.cmake +++ b/cmake/modules/FindGLEW.cmake @@ -124,6 +124,8 @@ endif() if("${CMAKE_GENERATOR_PLATFORM}" MATCHES "x64" OR "${CMAKE_GENERATOR}" MATCHES "Win64") set(_arch "x64") +elseif("${CMAKE_GENERATOR_PLATFORM}" MATCHES "ARM64") + set(_arch "x64") # GLEW ships one header set; ARM64 uses the x64 import path else() set(_arch "Win32") endif() diff --git a/deps/Boost/Boost.cmake b/deps/Boost/Boost.cmake index e8aebb1b92..bdd801857e 100644 --- a/deps/Boost/Boost.cmake +++ b/deps/Boost/Boost.cmake @@ -10,6 +10,15 @@ if (APPLE AND CMAKE_OSX_ARCHITECTURES) set(_context_arch_line "-DBOOST_CONTEXT_ARCHITECTURE:STRING=${CMAKE_OSX_ARCHITECTURES}") endif () +# Windows ARM64: Boost.Context's default fcontext implementation assembles .asm +# via armasm64, which trips a CMake ASM_ARMASM linker-module bug under the VS +# generator. The winfib implementation (Windows Fiber API) avoids assembly while +# keeping the Boost::context target that Boost.Asio's stackful coroutines need. +set(_context_impl_line "") +if (MSVC AND "${DEPS_ARCH}" STREQUAL "arm64") + set(_context_impl_line "-DBOOST_CONTEXT_IMPLEMENTATION:STRING=winfib") +endif () + set(_options "") if (MSVC AND DEP_DEBUG) set(_options "FORWARD_CONFIG") @@ -28,6 +37,7 @@ orcaslicer_add_cmake_project(Boost -DBOOST_IOSTREAMS_ENABLE_ZSTD:BOOL=OFF "${_context_abi_line}" "${_context_arch_line}" + "${_context_impl_line}" ) set(DEP_Boost_DEPENDS ZLIB) \ No newline at end of file diff --git a/deps/GMP/gmp/lib/win-arm64/libgmp-10.dll b/deps/GMP/gmp/lib/win-arm64/libgmp-10.dll new file mode 100644 index 0000000000..ea927b544e Binary files /dev/null and b/deps/GMP/gmp/lib/win-arm64/libgmp-10.dll differ diff --git a/deps/GMP/gmp/lib/win-arm64/libgmp-10.lib b/deps/GMP/gmp/lib/win-arm64/libgmp-10.lib new file mode 100644 index 0000000000..afc8909bbe Binary files /dev/null and b/deps/GMP/gmp/lib/win-arm64/libgmp-10.lib differ diff --git a/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.dll b/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.dll new file mode 100644 index 0000000000..b1188e25c0 Binary files /dev/null and b/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.dll differ diff --git a/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.lib b/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.lib new file mode 100644 index 0000000000..9031499e7d Binary files /dev/null and b/deps/MPFR/mpfr/lib/win-arm64/libmpfr-4.lib differ diff --git a/deps/OpenCV/OpenCV.cmake b/deps/OpenCV/OpenCV.cmake index 6a76c18137..d8c7cbac3b 100644 --- a/deps/OpenCV/OpenCV.cmake +++ b/deps/OpenCV/OpenCV.cmake @@ -1,4 +1,6 @@ -if (MSVC) +# Intel IPP / IPP-ICV is x86/x64 only — there is no ARM64 build, so enabling it +# leaves ~200 unresolved ippicv* externals at link time on Windows ARM64. +if (MSVC AND NOT "${DEPS_ARCH}" STREQUAL "arm64") set(_use_IPP "-DWITH_IPP=ON") if (DEP_DEBUG) set(_options "FORWARD_CONFIG") diff --git a/deps/OpenEXR/OpenEXR.cmake b/deps/OpenEXR/OpenEXR.cmake index dd754d3a38..72c924f50b 100644 --- a/deps/OpenEXR/OpenEXR.cmake +++ b/deps/OpenEXR/OpenEXR.cmake @@ -32,6 +32,17 @@ else() if (CMAKE_SYSTEM_NAME STREQUAL "Linux") set(_patch_cmd ${PATCH_CMD} ${CMAKE_CURRENT_LIST_DIR}/0001-OpenEXR-GCC13.patch) +elseif (MSVC AND "${DEPS_ARCH}" STREQUAL "arm64") + # Windows ARM64: OpenEXR 2.5.5 hard-codes IMF_HAVE_SSE2 for any MSVC + # (ImfSimd.h: `_MSC_VER >= 1300`), pulling in (x86-only) -> C1189. + # Patch the header to require an x86 target, and force the SSE cache vars off. + set(_patch_cmd ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_LIST_DIR}/patch_openexr_arm64.cmake) + set(_openexr_arm64_args + -DOPENEXR_IMF_HAVE_SSE2:BOOL=OFF + -DOPENEXR_IMF_HAVE_SSSE3:BOOL=OFF + -DILMBASE_HAVE_SSE:BOOL=OFF + -DILMBASE_FORCE_DISABLE_INTEL_SSE:BOOL=ON + ) else () set(_patch_cmd "") endif () @@ -49,6 +60,7 @@ orcaslicer_add_cmake_project(OpenEXR -DPYILMBASE_ENABLE:BOOL=OFF -DOPENEXR_VIEWERS_ENABLE:BOOL=OFF -DOPENEXR_BUILD_UTILS:BOOL=OFF + ${_openexr_arm64_args} ) endif() diff --git a/deps/OpenEXR/patch_openexr_arm64.cmake b/deps/OpenEXR/patch_openexr_arm64.cmake new file mode 100644 index 0000000000..d660f2ab1d --- /dev/null +++ b/deps/OpenEXR/patch_openexr_arm64.cmake @@ -0,0 +1,29 @@ +# Applied as PATCH_COMMAND for OpenEXR 2.5.5 on Windows ARM64. +# +# Root cause of the ARM64 build failure: OpenEXR/IlmImf/ImfSimd.h hard-codes +# #if defined __SSE2__ || (_MSC_VER >= 1300 && !_M_CEE_PURE) +# #define IMF_HAVE_SSE2 1 +# #endif +# The `_MSC_VER >= 1300` arm is true for *every* MSVC, including ARM64, so +# IMF_HAVE_SSE2 gets defined and (an x86-only header) is pulled +# in -> error C1189. This is a pure-preprocessor decision, so no CMake cache +# variable can suppress it. Patch the header to also require an x86 target. + +set(_simd "OpenEXR/IlmImf/ImfSimd.h") +if(EXISTS "${_simd}") + file(READ "${_simd}" _content) + set(_old "#if defined __SSE2__ || (_MSC_VER >= 1300 && !_M_CEE_PURE)") + set(_new "#if (defined __SSE2__ || (_MSC_VER >= 1300 && !_M_CEE_PURE)) && (defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__x86_64__))") + if(_content MATCHES "_M_IX86") + message(STATUS "[ARM64 patch] ImfSimd.h already guarded") + else() + string(REPLACE "${_old}" "${_new}" _patched "${_content}") + if(_patched STREQUAL _content) + message(FATAL_ERROR "[ARM64 patch] Failed to match SSE2 guard in ${_simd}") + endif() + file(WRITE "${_simd}" "${_patched}") + message(STATUS "[ARM64 patch] Guarded IMF_HAVE_SSE2 with x86 arch check in ${_simd}") + endif() +else() + message(FATAL_ERROR "[ARM64 patch] Not found: ${_simd}") +endif() diff --git a/deps/OpenSSL/OpenSSL.cmake b/deps/OpenSSL/OpenSSL.cmake index 5f463c14a9..21a49b91b8 100644 --- a/deps/OpenSSL/OpenSSL.cmake +++ b/deps/OpenSSL/OpenSSL.cmake @@ -6,7 +6,11 @@ if(DEFINED OPENSSL_ARCH) set(_cross_arch ${OPENSSL_ARCH}) else() if(WIN32) - set(_cross_arch "VC-WIN64A") + if("${CMAKE_GENERATOR_PLATFORM}" STREQUAL "ARM64") + set(_cross_arch "VC-WIN64-ARM") + else() + set(_cross_arch "VC-WIN64A") + endif() elseif(APPLE) set(_cross_arch "darwin64-${CMAKE_OSX_ARCHITECTURES}-cc") endif() diff --git a/deps_src/imgui/imgui_widgets.cpp b/deps_src/imgui/imgui_widgets.cpp index 65f0bc5260..73eacf7f8d 100644 --- a/deps_src/imgui/imgui_widgets.cpp +++ b/deps_src/imgui/imgui_widgets.cpp @@ -267,7 +267,7 @@ void ImGui::Text(const char* fmt, ...) void ImGui::TextCentered(const char* text, ...) { va_list vaList; - va_start(vaList,&text); + va_start(vaList, text); float font_size = ImGui::GetFontSize() * strlen(text) / 2; ImGui::SameLine(ImGui::GetCursorPos().x / 2 - font_size + (font_size / 2)); diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot index 83fd738661..79b8fb0fb0 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:50-0300\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -325,6 +325,7 @@ msgstr "" msgid "Optimize orientation" msgstr "" +msgctxt "Verb" msgid "Scale" msgstr "" @@ -334,6 +335,7 @@ msgstr "" msgid "Error: Please close all toolbar menus first" msgstr "" +msgctxt "inches" msgid "in" msgstr "" @@ -367,6 +369,9 @@ msgstr "" msgid "Object operations" msgstr "" +msgid "Scale" +msgstr "" + msgid "Volume operations" msgstr "" @@ -388,25 +393,32 @@ msgstr "" msgid "Reset rotation" msgstr "" -msgid "Object coordinates" +msgid "World" msgstr "" -msgid "World coordinates" +msgid "Object" msgstr "" -msgid "Translate(Relative)" +msgid "Part" +msgstr "" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" 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" +msgctxt "Noun" +msgid "Scale" msgstr "" #. TRN - Input label. Be short as possible @@ -512,12 +524,6 @@ msgstr "" msgid "Spacing" msgstr "" -msgid "Part" -msgstr "" - -msgid "Object" -msgstr "" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1675,6 +1681,20 @@ msgstr "" msgid "Untitled" msgstr "" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1702,6 +1722,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, possible-c-format, possible-boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1800,23 +1826,30 @@ 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 "" +msgid "Cloud sync conflict:" +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1825,6 +1858,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, possible-c-format, possible-boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1892,7 +1931,8 @@ 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." +#, possible-c-format, possible-boost-format +msgid "The preset \"%s\" 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 "" #, possible-c-format, possible-boost-format @@ -2102,6 +2142,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3464,6 +3507,7 @@ msgstr "" msgid "Save" msgstr "" +msgctxt "Navigation" msgid "Back" msgstr "" @@ -3895,6 +3939,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "" +#, possible-c-format, possible-boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4742,6 +4790,7 @@ msgstr "" msgid "Color change" msgstr "" +msgctxt "Noun" msgid "Print" msgstr "" @@ -4897,11 +4946,15 @@ msgstr "" msgid "Align to Y axis" msgstr "" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "" + +msgctxt "Camera View" msgid "Left" msgstr "" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "" @@ -4950,6 +5003,12 @@ msgstr "" msgid "Stats" msgstr "" +msgid "Slice" +msgstr "" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "" @@ -4974,6 +5033,9 @@ msgstr "" msgid "Outline" msgstr "" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5209,6 +5271,10 @@ msgstr "" msgid "Export G-code file" msgstr "" +msgctxt "Verb" +msgid "Print" +msgstr "" + msgid "Export plate sliced file" msgstr "" @@ -7488,6 +7554,45 @@ msgstr "" msgid "Choose Download Directory" 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 "" + +#, possible-c-format, possible-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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7542,12 +7647,6 @@ 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 "" @@ -7578,6 +7677,12 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "" + msgid "Maximum recent files" msgstr "" @@ -7596,10 +7701,51 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" +msgid "STEP importing: linear deflection" msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." msgstr "" msgid "Preset" @@ -7632,6 +7778,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -7644,18 +7796,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -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 "" - msgid "Behaviour" msgstr "" @@ -7880,18 +8020,6 @@ 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 "" @@ -7904,6 +8032,15 @@ msgstr "" msgid "Color only" 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 "Bambu network plug-in" msgstr "" @@ -7916,30 +8053,6 @@ 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 "" - -#, possible-c-format, possible-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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "" @@ -7982,7 +8095,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -7990,12 +8112,6 @@ 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 "" @@ -8022,24 +8138,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -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 "" @@ -8055,24 +8153,6 @@ 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 "Reverse scroll direction while zooming" -msgstr "" - msgid "Enable SSL(MQTT)" msgstr "" @@ -8758,6 +8838,12 @@ msgstr "" msgid "Search in preset" msgstr "" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "" @@ -9024,6 +9110,18 @@ msgstr "" msgid "Print chamber temperature" msgstr "" +msgid "Chamber temperature" +msgstr "" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "" @@ -9333,11 +9431,21 @@ msgid "Don't warn again for this preset" msgstr "" #, possible-c-format, possible-boost-format -msgid "Left: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, possible-c-format, possible-boost-format -msgid "Right: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." @@ -9355,7 +9463,7 @@ msgstr "" msgid "Transfer or discard changes" msgstr "" -msgid "Old value" +msgid "Old Value" msgstr "" msgid "New Value" @@ -9466,6 +9574,12 @@ msgstr "" msgid "Capabilities" msgstr "" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "" @@ -10649,6 +10763,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "" @@ -11409,6 +11529,23 @@ msgstr "" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "" +msgid "Acceleration of travel moves." +msgstr "" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +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 "" + msgid "Default filament profile" msgstr "" @@ -11586,12 +11723,26 @@ msgstr "" msgid "Octagram Spiral" msgstr "" +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 "" + msgid "Bottom surface pattern" msgstr "" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "" +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 "" + msgid "Internal solid infill pattern" msgstr "" @@ -11616,6 +11767,18 @@ msgstr "" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "" @@ -11768,21 +11931,25 @@ msgid "" "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." msgstr "" -msgid "Enable adaptive pressure advance for overhangs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." -msgstr "" - -msgid "Pressure advance for bridges" -msgstr "" - -msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\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." +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" + +msgid "" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "" msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." @@ -11845,18 +12012,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12151,6 +12306,22 @@ msgstr "" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "" @@ -12181,7 +12352,7 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, possible-c-format, possible-boost-format +#, no-c-format, no-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 "" @@ -12248,85 +12419,13 @@ msgstr "" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Lateral lattice angle 2" -msgstr "" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Infill overhang angle" -msgstr "" - -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 "" - -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 "" - -msgid "0 (no open anchors)" -msgstr "" - -msgid "1000 (unlimited)" -msgstr "" - -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 "" - -msgid "0 (Simple connect)" -msgstr "" - -msgid "Acceleration of inner walls." -msgstr "" - -msgid "Acceleration of travel moves." -msgstr "" - msgid "This is the 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 "" - -msgid "mm/s² or %" +msgid "Acceleration of inner walls." 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." @@ -12338,14 +12437,6 @@ msgstr "" msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "" - msgid "Enable accel_to_decel" msgstr "" @@ -12433,6 +12524,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -12909,6 +13011,69 @@ msgstr "" msgid "Probing exclude area of clumping." msgstr "" +msgid "Lateral lattice angle 1" +msgstr "" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Lateral lattice angle 2" +msgstr "" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Infill overhang angle" +msgstr "" + +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 "" + +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 "" + +msgid "0 (no open anchors)" +msgstr "" + +msgid "1000 (unlimited)" +msgstr "" + +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 "" + +msgid "0 (Simple connect)" +msgstr "" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -13710,6 +13875,18 @@ msgstr "" msgid "Bowden" 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 "" + msgid "Extra length on restart" msgstr "" @@ -13761,6 +13938,9 @@ msgstr "" msgid "Aligned back" msgstr "" +msgid "Back" +msgstr "" + msgid "Random" msgstr "" @@ -14104,6 +14284,9 @@ msgstr "" msgid "Slicing Mode" msgstr "" +msgid "Other" +msgstr "" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -14437,9 +14620,6 @@ msgid "" "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 "" -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" @@ -14448,6 +14628,17 @@ msgid "" "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 "" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + msgid "Nozzle temperature after the first layer" msgstr "" @@ -14487,20 +14678,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "" -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 "" - -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 "" - msgid "This is the speed at which traveling is done." msgstr "" @@ -14714,6 +14891,14 @@ msgstr "" msgid "Rotate the polyhole every layer." msgstr "" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "" @@ -14852,9 +15037,6 @@ msgstr "" msgid "Export the objects as multiple STLs to directory." msgstr "" -msgid "Slice" -msgstr "" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "" @@ -16943,6 +17125,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, possible-c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17025,6 +17333,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, possible-c-format, possible-boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -17766,6 +18087,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" diff --git a/localization/i18n/ca/OrcaSlicer_ca.po b/localization/i18n/ca/OrcaSlicer_ca.po index 9c86db6907..a509c7a89f 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2025-03-15 10:55+0100\n" "Last-Translator: \n" "Language-Team: \n" @@ -332,6 +332,7 @@ msgstr "Gizmo-Rotació" msgid "Optimize orientation" msgstr "Optimitzar l'orientació" +msgctxt "Verb" msgid "Scale" msgstr "Escalar" @@ -341,8 +342,9 @@ msgstr "Gizmo-Escalar" msgid "Error: Please close all toolbar menus first" msgstr "Error: Tanqueu primer tots els menús de la barra d'eines" +msgctxt "inches" msgid "in" -msgstr "polç" +msgstr "" msgid "mm" msgstr "mm" @@ -375,6 +377,9 @@ msgstr "Ràtios d'escala" msgid "Object operations" msgstr "Operacions amb objectes" +msgid "Scale" +msgstr "Escalar" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Operacions de volum" @@ -402,26 +407,33 @@ msgstr "Restableix la Posició" msgid "Reset rotation" msgstr "Reinicialitza la rotació" -msgid "Object coordinates" -msgstr "Coordenades de l'objecte" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Coordenades cartesianes" +msgid "Object" +msgstr "Objecte" -msgid "Translate(Relative)" -msgstr "Trasllada (relatiu)" +msgid "Part" +msgstr "Peça" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Restableix la rotació actual al valor d'quan s'ha obert l'eina de rotació." -msgid "Rotate (absolute)" -msgstr "Gira (absolut)" - msgid "Reset current rotation to real zeros." msgstr "Restableix la rotació actual a zeros reals." -msgid "Part coordinates" -msgstr "Coordenades de la part" +msgctxt "Noun" +msgid "Scale" +msgstr "Escalar" #. TRN - Input label. Be short as possible msgid "Size" @@ -526,12 +538,6 @@ msgstr "" msgid "Spacing" msgstr "Espaiat" -msgid "Part" -msgstr "Peça" - -msgid "Object" -msgstr "Objecte" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1720,6 +1726,25 @@ msgstr "OrcaSlicer ha tingut una excepció no gestionada: %1%" msgid "Untitled" msgstr "Sense títol" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Des de la versió 2.4.0, OrcaSlicer sincronitza els perfils d'usuari a través d'Orca Cloud en lloc de Bambu Cloud.\n" +"\n" +"Per migrar els teus perfils existents, inicia la sessió a Orca Cloud i es transferiran automàticament. Per obtenir més informació sobre com OrcaSlicer emmagatzema i sincronitza els teus perfils, o per migrar els teus perfils manualment, consulta la nostra wiki.\n" +"\n" +"Si no feies servir Bambu Cloud per sincronitzar perfils, aquest canvi no t'afecta i pots ignorar aquest missatge amb tranquil·litat." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Recarregant el connector de xarxa..." @@ -1749,6 +1774,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "El camí de recursos no existeix o no és un directori: %s" @@ -1854,23 +1885,30 @@ msgstr "Obrir Projecte" 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 "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" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1879,6 +1917,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1953,7 +1997,8 @@ msgstr "El nombre de perfils d'usuari emmagatzemats a memòria cau al núvol ha msgid "Sync user presets" msgstr "Sincronitzar perfils d'usuari" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2175,6 +2220,9 @@ msgstr "Cub d'Orca" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Prova de tolerància d'Orca" @@ -3612,7 +3660,7 @@ msgstr "Calibratge completat. Trobeu la línia d'extrusió més uniforme al vost msgid "Save" msgstr "Desar" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Darrera" @@ -4086,6 +4134,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "La temperatura actual de la cambra és superior a la temperatura segura del material, pot provocar un estovament i obstrucció del material. La temperatura màxima segura per al material és %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4991,6 +5043,7 @@ msgstr "Canvis d'eina" msgid "Color change" msgstr "Canvi de color" +msgctxt "Noun" msgid "Print" msgstr "Imprimir" @@ -5154,11 +5207,15 @@ msgstr "Evitar la regió de calibratge d'extrusió" msgid "Align to Y axis" msgstr "Alinear a l'eix Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Darrera" + +msgctxt "Camera View" msgid "Left" msgstr "Esquerra" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Dreta" @@ -5207,6 +5264,12 @@ msgstr "Totes les plaques" msgid "Stats" msgstr "Estadístiques" +msgid "Slice" +msgstr "Llesca" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Tornar a Agrupar" @@ -5231,6 +5294,9 @@ msgstr "Voladissos" msgid "Outline" msgstr "Contorn" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5478,6 +5544,10 @@ msgstr "Imprimir placa d'impressió" msgid "Export G-code file" msgstr "Exportar el fitxer del Codi-G" +msgctxt "Verb" +msgid "Print" +msgstr "Imprimir" + msgid "Export plate sliced file" msgstr "Exportar fitxer de la placa laminada" @@ -7868,6 +7938,50 @@ msgstr "Trieu la carpeta per als elements descarregats" msgid "Choose Download Directory" msgstr "Triar el Directori de Descàrrega" +msgid "(Latest)" +msgstr "(Última)" + +msgid "Network plug-in switched successfully." +msgstr "Connector de xarxa canviat correctament." + +msgid "Success" +msgstr "Èxit" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació." + +#, 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 "" +"Heu seleccionat la versió %s del connector de xarxa.\n" +"\n" +"Voleu descarregar i instal·lar aquesta versió ara?\n" +"\n" +"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació." + +msgid "Download Network Plug-in" +msgstr "Descarrega el connector de xarxa" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació" + +msgid "Network plug-in reloaded successfully." +msgstr "Connector de xarxa recarregat correctament." + +msgid "Reload" +msgstr "Recarrega" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació." + +msgid "Reload Failed" +msgstr "La recàrrega ha fallat" + msgid "Associate" msgstr "Associar" @@ -7923,12 +8037,6 @@ msgstr "Mostrar pantalla de presentació" msgid "Show the splash screen during startup." msgstr "Mostra la pantalla de presentació durant l'inici." -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 "" @@ -7959,6 +8067,13 @@ msgstr "Carregar comportament" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "S'ha de carregar la configuració de la impressora/filament/procés en obrir un .3mf?" +msgid "Auto backup" +msgstr "Còpia de seguretat automàtica" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional." + msgid "Maximum recent files" msgstr "Nombre màxim de fitxers recents" @@ -7977,12 +8092,55 @@ msgstr "Mostra opcions en importar fitxers STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si s'activa, apareixerà un diàleg de configuració de paràmetres durant la importació de fitxers STEP." -msgid "Auto backup" -msgstr "Còpia de seguretat automàtica" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Feu còpies de seguretat del vostre projecte periòdicament per restaurar en cas de fallida ocasional." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Nivell de qualitat per a l'exportació Draco" + +msgid "bits" +msgstr "bits" + +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 "" +"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n" +"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n" +"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Perfil" @@ -8014,6 +8172,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimitza l'alçada màxima de l'àrea de filaments segons el nombre de filaments triat." +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 "Features" msgstr "Funcionalitats" @@ -8026,21 +8190,6 @@ msgstr "Amb aquesta opció habilitada, podeu enviar una tasca a diversos disposi msgid "Pop up to select filament grouping mode" msgstr "Finestra emergent per seleccionar el mode d'agrupació de filaments" -msgid "Quality level for Draco export" -msgstr "Nivell de qualitat per a l'exportació Draco" - -msgid "bits" -msgstr "bits" - -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 "" -"Controla la profunditat de bits de quantització utilitzada en comprimir la malla a format Draco.\n" -"0 = compressió sense pèrdua (la geometria es preserva a plena precisió). Els valors amb pèrdua vàlids van de 8 a 30.\n" -"Valors més baixos produeixen fitxers més petits però perden més detall geomètric; valors més alts preserven més detall a costa de fitxers més grans." - msgid "Behaviour" msgstr "Comportament" @@ -8268,19 +8417,6 @@ msgstr "Comprovar només si hi ha actualitzacions estables" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/Processament )" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Actualitzar els perfils de fàbrica automàticament." - -msgid "Use encrypted file for token storage" -msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)" - -msgid "Filament Sync Options" -msgstr "Opcions de sincronització de filament" - msgid "Filament sync mode" msgstr "Mode de sincronització de filament" @@ -8293,6 +8429,16 @@ msgstr "Filament i color" msgid "Color only" msgstr "Només color" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Actualitzar els perfils de fàbrica automàticament." + +msgid "Use encrypted file for token storage" +msgstr "Utilitza fitxer xifrat per a l'emmagatzematge de tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Emmagatzema els tokens d'autenticació en un fitxer xifrat en lloc del clauer del sistema. (Requereix reinici)" + msgid "Bambu network plug-in" msgstr "" @@ -8305,35 +8451,6 @@ msgstr "Versió del connector de xarxa" msgid "Select the network plug-in version to use" msgstr "Seleccioneu la versió del connector de xarxa a utilitzar" -msgid "(Latest)" -msgstr "(Última)" - -msgid "Network plug-in switched successfully." -msgstr "Connector de xarxa canviat correctament." - -msgid "Success" -msgstr "Èxit" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "No s'ha pogut carregar el connector de xarxa. Reinicieu l'aplicació." - -#, 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 "" -"Heu seleccionat la versió %s del connector de xarxa.\n" -"\n" -"Voleu descarregar i instal·lar aquesta versió ara?\n" -"\n" -"Nota: pot ser necessari reiniciar l'aplicació després de la instal·lació." - -msgid "Download Network Plug-in" -msgstr "Descarrega el connector de xarxa" - msgid "Associate files to OrcaSlicer" msgstr "Associar fitxers a OrcaSlicer" @@ -8382,7 +8499,16 @@ msgstr "Desenvolupador" msgid "Skip AMS blacklist check" msgstr "Omet la comprovació de la llista negra AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8390,12 +8516,6 @@ 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" @@ -8424,24 +8544,6 @@ msgstr "depurar" msgid "trace" msgstr "traça" -msgid "Network plug-in" -msgstr "Connector de xarxa" - -msgid "Reload" -msgstr "Recarrega" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recarrega el connector de xarxa sense reiniciar l'aplicació" - -msgid "Network plug-in reloaded successfully." -msgstr "Connector de xarxa recarregat correctament." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "No s'ha pogut recarregar el connector de xarxa. Reinicieu l'aplicació." - -msgid "Reload Failed" -msgstr "La recàrrega ha fallat" - msgid "Debug" msgstr "Depuració" @@ -8457,25 +8559,6 @@ msgstr "Sincronització de perfil" msgid "Preferences sync" msgstr "Sincronització de preferències" -msgid "View control settings" -msgstr "Veure la configuració del control" - -msgid "Rotate view" -msgstr "Rotar la vista" - -msgid "Pan view" -msgstr "Vista Panoràmica" - -msgid "Zoom view" -msgstr "Vista amb Zoom" - -msgid "Other" -msgstr "Altre" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "La roda del ratolí s'inverteix quan es fa zoom" - msgid "Enable SSL(MQTT)" msgstr "Habilitar SSL ( MQTT )" @@ -9184,6 +9267,12 @@ msgstr "Suprimeix aquest perfil" msgid "Search in preset" msgstr "Cercar al perfil" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Feu clic per restablir tots els paràmetres a l'última configuració desada." @@ -9477,6 +9566,18 @@ msgstr "Relació de Flux i Avanç de Pressió Lineal( Pressure advance )" msgid "Print chamber temperature" msgstr "Temperatura de la cambra d'impressió" +msgid "Chamber temperature" +msgstr "Temperatura de la cambra" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Temperatura d'impressió" @@ -9799,12 +9900,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "Esquerra: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Dreta: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Feu clic per esborrar el valor actual i agafar el valor global." @@ -9824,7 +9935,7 @@ msgid "Transfer or discard changes" msgstr "Transferir o descartar canvis" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Valor antic" msgid "New Value" @@ -9946,6 +10057,12 @@ msgstr "Nombre d'extrusors" msgid "Capabilities" msgstr "Capacitats" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Mostra tots els perfils ( inclosos els incompatibles )" @@ -11193,6 +11310,12 @@ msgstr "La contracció del filament no s'utilitzarà perquè la contracció del msgid "Generating skirt & brim" msgstr "Generant Faldilla i Vora d'Adherència" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Exportant el Codi-G" @@ -12064,6 +12187,23 @@ msgstr "Impressió normal" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "L'acceleració predeterminada tant de la impressió normal com dels viatges excepte a la capa inicial" +msgid "Acceleration of travel moves." +msgstr "Acceleració en desplaçaments" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s o %" + +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 "Acceleració de ponts. Si el valor s'expressa en percentatge ( per exemple, 50% ), es calcularà a partir de l'acceleració del perímetre exterior." + msgid "Default filament profile" msgstr "Perfil de filament predeterminat" @@ -12276,6 +12416,12 @@ msgstr "Acords d'Arquimedes" msgid "Octagram Spiral" msgstr "Octograma en Espiral" +msgid "Top surface density" +msgstr "Densitat de la superfície superior" + +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 "Densitat de la capa de superfície superior. Un valor del 100% crea una capa superior completament sòlida i llisa. Reduir aquest valor resulta en una superfície superior texturada, segons el patró de superfície superior triat. Un valor del 0% resultarà en la creació de només les parets a la capa superior. Destinat a fins estètics o funcionals, no per solucionar problemes com la sobreextrusió." + msgid "Bottom surface pattern" msgstr "Patró de superfície inferior" @@ -12283,6 +12429,16 @@ msgstr "Patró de superfície inferior" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Patró de línia del farciment de la superfície inferior, no del farciment de pont" +msgid "Bottom surface density" +msgstr "Densitat de la superfície inferior" + +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 "" +"Densitat de la capa de superfície inferior. Destinat a fins estètics o funcionals, no per solucionar problemes com la sobreextrusió.\n" +"AVÍS: reduir aquest valor pot afectar negativament l'adhesió al llit." + msgid "Internal solid infill pattern" msgstr "Patró de farciment sòlid intern" @@ -12308,6 +12464,18 @@ msgstr "Llindar de perímetres petits" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Això estableix el llindar per a la longitud perimetral petita. El llindar predeterminat és de 0mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Ordre d'impressió de perímetres" @@ -12493,25 +12661,26 @@ msgstr "" "2. Anoteu el valor de PA òptim per a cada velocitat i acceleració del cabal volumètric. Podeu trobar el número de flux seleccionant el flux al desplegable de l'esquema de colors i moveu el control lliscant horitzontal per sobre de les línies del patró PA. El número ha de ser visible a la part inferior de la pàgina. El valor de PA ideal hauria de ser decreixent com més gran sigui el cabal volumètric. Si no és així, confirmeu que la vostra extrusora funciona correctament. Com més lent i amb menys acceleració imprimiu, més gran serà el rang de valors de PA acceptables. Si no hi ha cap diferència visible, utilitzeu el valor PA de la prova més ràpida.\n" "3. Introduïu els triplets dels valors de PA, flux i acceleracions al quadre de text aquí i deseu el vostre perfil de filament." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Avanç de pressió per als ponts" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n" -"\n" -" Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho." 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 "Amplada de línia predeterminada si altres amplades de línia estan definides com a 0. Si s'expressa en %, es calcularà sobre el diàmetre del broquet." @@ -12583,18 +12752,6 @@ msgstr "Automàtic per a purga" msgid "Auto For Match" msgstr "Automàtic per a coincidència" -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 "" - msgid "Flush temperature" msgstr "Temperatura de purga" @@ -12907,6 +13064,22 @@ msgstr "Direcció de farciment sòlid" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Angle per al patró de farciment sòlid, que controla l'inici o la direcció principal de la línia" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Densitat de farciment poc dens" @@ -12937,7 +13110,7 @@ msgstr "Ús de múltiples línies per al patró de farciment, si el patró de fa msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -13005,79 +13178,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroide" -msgid "Lateral lattice angle 1" -msgstr "Angle de gelosia 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "L'angle del primer conjunt d'elements de gelosia 2D en la direcció Z. El zero és vertical." - -msgid "Lateral lattice angle 2" -msgstr "Angle de gelosia 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "L'angle del segon conjunt d'elements de gelosia 2D en la direcció Z. El zero és vertical." - -msgid "Infill overhang angle" -msgstr "Angle de voladís del farciment" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -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" - -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 "" -"Connectar una línia de farciment a un perímetre intern amb un segment curt d'un perímetre addicional. Si s'expressa en percentatge ( per exemple: 15% ) es calcula sobre l'amplada d'extrusió de farciment. Orca Slicer intenta connectar dues línies de farciment properes a un segment perimetral curt. Si no es troba aquest segment perimetral més curt que infill_anchor_max, la línia de farciment es connecta a un segment perimetral a un sol costat i la longitud del segment perimetral pres es limita a aquest paràmetre, però no més de anchor_length_max.\n" -"Establiu aquest paràmetre a zero per desactivar els perímetres d'ancoratge connectats a una sola línia de farciment." - -msgid "0 (no open anchors)" -msgstr "0 ( sense ancoratges oberts )" - -msgid "1000 (unlimited)" -msgstr "1000 ( il·limitat )" - -msgid "Maximum length of the infill anchor" -msgstr "Màxima longitud de l'ancoratge de farciment" - -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 "" -"Connectar una línia de farciment a un perímetre intern amb un segment curt d'un perímetre addicional. Si s'expressa en percentatge ( per exemple: 15% ) es calcula sobre l'amplada d'extrusió de farciment. Orca Slicer intenta connectar dues línies de farciment properes a un segment perimetral curt. Si no es troba aquest segment perimetral més curt que aquest paràmetre, la línia de farciment es connecta a un segment perimetral a un sol costat i la longitud del segment perimetral pres es limita a infill_anchor, però no més llarga que aquest paràmetre.\n" -"Si s'estableix a 0, s'utilitzarà l'algorisme antic per a la connexió de farciment, hauria de crear el mateix resultat que amb 1000 i 0." - -msgid "0 (Simple connect)" -msgstr "0 ( Connexió simple )" - -msgid "Acceleration of inner walls." -msgstr "Acceleració en perímetres interiors" - -msgid "Acceleration of travel moves." -msgstr "Acceleració en desplaçaments" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Acceleració del farciment superficial superior. L'ús d'un valor inferior pot millorar la qualitat de la superfície superior" @@ -13086,11 +13186,8 @@ msgstr "Acceleració del farciment superficial superior. L'ús d'un valor inferi msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Acceleració del perímetre exterior. L'ús d'un valor inferior pot millorar la qualitat" -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 "Acceleració de ponts. Si el valor s'expressa en percentatge ( per exemple, 50% ), es calcularà a partir de l'acceleració del perímetre exterior." - -msgid "mm/s² or %" -msgstr "mm/s o %" +msgid "Acceleration of inner walls." +msgstr "Acceleració en perímetres interiors" 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 "Acceleració del farciment poc dens. Si el valor s'expressa en percentatge ( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada." @@ -13102,14 +13199,6 @@ msgstr "Acceleració del farciment sòlid intern. Si el valor s'expressa en perc msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Acceleració de la capa inicial. L'ús d'un valor inferior pot millorar l'adherència de la placa d'impressió" -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Habilita accel_to_decel" @@ -13204,6 +13293,17 @@ msgstr "La velocitat del ventilador augmentarà linealment de zero a la capa \"c msgid "layer" msgstr "capa" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocitat del ventilador a la interfície de suport" @@ -13724,6 +13824,73 @@ msgstr "Àrea d'exclusió de sondeig d'acumulació" msgid "Probing exclude area of clumping." msgstr "Àrea d'exclusió de sondeig d'acumulació." +msgid "Lateral lattice angle 1" +msgstr "Angle de gelosia 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "L'angle del primer conjunt d'elements de gelosia 2D en la direcció Z. El zero és vertical." + +msgid "Lateral lattice angle 2" +msgstr "Angle de gelosia 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "L'angle del segon conjunt d'elements de gelosia 2D en la direcció Z. El zero és vertical." + +msgid "Infill overhang angle" +msgstr "Angle de voladís del farciment" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +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" + +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 "" +"Connectar una línia de farciment a un perímetre intern amb un segment curt d'un perímetre addicional. Si s'expressa en percentatge ( per exemple: 15% ) es calcula sobre l'amplada d'extrusió de farciment. Orca Slicer intenta connectar dues línies de farciment properes a un segment perimetral curt. Si no es troba aquest segment perimetral més curt que infill_anchor_max, la línia de farciment es connecta a un segment perimetral a un sol costat i la longitud del segment perimetral pres es limita a aquest paràmetre, però no més de anchor_length_max.\n" +"Establiu aquest paràmetre a zero per desactivar els perímetres d'ancoratge connectats a una sola línia de farciment." + +msgid "0 (no open anchors)" +msgstr "0 ( sense ancoratges oberts )" + +msgid "1000 (unlimited)" +msgstr "1000 ( il·limitat )" + +msgid "Maximum length of the infill anchor" +msgstr "Màxima longitud de l'ancoratge de farciment" + +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 "" +"Connectar una línia de farciment a un perímetre intern amb un segment curt d'un perímetre addicional. Si s'expressa en percentatge ( per exemple: 15% ) es calcula sobre l'amplada d'extrusió de farciment. Orca Slicer intenta connectar dues línies de farciment properes a un segment perimetral curt. Si no es troba aquest segment perimetral més curt que aquest paràmetre, la línia de farciment es connecta a un segment perimetral a un sol costat i la longitud del segment perimetral pres es limita a infill_anchor, però no més llarga que aquest paràmetre.\n" +"Si s'estableix a 0, s'utilitzarà l'algorisme antic per a la connexió de farciment, hauria de crear el mateix resultat que amb 1000 i 0." + +msgid "0 (Simple connect)" +msgstr "0 ( Connexió simple )" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14592,6 +14759,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Longitud addicional en reiniciar" @@ -14646,6 +14825,10 @@ msgstr "Alineat" msgid "Aligned back" msgstr "Alineat al darrere" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Darrera" + msgid "Random" msgstr "Aleatori" @@ -15013,6 +15196,9 @@ msgstr "Les esquerdes de menys de dues vegades el radi de tancament de buits s'o msgid "Slicing Mode" msgstr "Mode de laminat" +msgid "Other" +msgstr "Altre" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Utilitzeu \"Parell-imparell\" per als models d'avió 3DLabPrint. Utilitzeu \"Tancar forats\" per tancar tots els forats del model." @@ -15378,9 +15564,6 @@ msgstr "" "\n" "Aquesta opció es basa en el microprogramari que admet les ordres M191 i M141, ja sigui mitjançant macros o de manera nativa i s'utilitza normalment quan s'instal·la un escalfador de cambra actiu." -msgid "Chamber temperature" -msgstr "Temperatura de la cambra" - 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" @@ -15394,6 +15577,17 @@ msgstr "" "\n" "Si està activat, aquest paràmetre també estableix una variable de codi g anomenada chamber_temperature, que es pot utilitzar per passar la temperatura de la cambra desitjada a la macro d'inici d'impressió, o una macro de remull tèrmic com aquesta: PRINT_START (altres variables) CHAMBER_TEMP=[chamber_temperature]. Això pot ser útil si la vostra impressora no admet les ordres M141/M191, o si voleu gestionar el remull de calor a la macro d'inici d'impressió si no hi ha instal·lat un escalfador de cambra actiu." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Temperatura del broquet per les capes després de l'inicial" @@ -15439,22 +15633,6 @@ msgstr "Gruix mínim de la carcassa superior" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "El nombre de capes sòlides superiors augmenta quan es tallen si el gruix calculat per les capes de closca superior és més prim que aquest valor. Això pot evitar tenir una closca massa fina quan l'alçada de la capa és petita. 0 significa que aquesta configuració està desactivada i que el gruix de la carcassa superior està absolutament determinat per les capes de la carcassa superior" -msgid "Top surface density" -msgstr "Densitat de la superfície superior" - -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 "Densitat de la capa de superfície superior. Un valor del 100% crea una capa superior completament sòlida i llisa. Reduir aquest valor resulta en una superfície superior texturada, segons el patró de superfície superior triat. Un valor del 0% resultarà en la creació de només les parets a la capa superior. Destinat a fins estètics o funcionals, no per solucionar problemes com la sobreextrusió." - -msgid "Bottom surface density" -msgstr "Densitat de la superfície inferior" - -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 "" -"Densitat de la capa de superfície inferior. Destinat a fins estètics o funcionals, no per solucionar problemes com la sobreextrusió.\n" -"AVÍS: reduir aquest valor pot afectar negativament l'adhesió al llit." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Velocitat de desplaçament més ràpida i sense extrusió" @@ -15703,6 +15881,14 @@ msgstr "Gir del poliforat" msgid "Rotate the polyhole every layer." msgstr "Rotar el poliforat a cada capa." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Mida Miniatures al Codi-G" @@ -15849,9 +16035,6 @@ msgstr "Exportar diversos STL" msgid "Export the objects as multiple STLs to directory." msgstr "Exportar els objectes com a diversos STL al directori" -msgid "Slice" -msgstr "Llesca" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Laminar les plaques: 0-totes les plaques, i-placa i, altres-no vàlides" @@ -18102,6 +18285,132 @@ msgstr "Iniciar Sessió/Provar" msgid "Connection to printers connected via the print host failed." msgstr "No s'ha pogut connectar a les impressores connectades mitjançant l'amfitrió( host ) d'impressió especificat." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18184,6 +18493,19 @@ msgstr "La connexió amb MKS funciona correctament." msgid "Could not connect to MKS" msgstr "No s'ha pogut connectar amb MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "La connexió amb OctoPrint funciona correctament." @@ -18935,6 +19257,12 @@ msgstr "Nombre de cares triangulars" msgid "Calculating, please wait..." msgstr "Calculant, espereu..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19340,6 +19668,72 @@ msgstr "" "Evitar la deformació( warping )\n" "Sabíeu que quan imprimiu materials propensos a deformar-se, com ara l'ABS, augmentar adequadament la temperatura del llit pot reduir la probabilitat de deformació?" +#~ msgid "Print" +#~ msgstr "Imprimir" + +#~ msgid "in" +#~ msgstr "polç" + +#~ msgid "Object coordinates" +#~ msgstr "Coordenades de l'objecte" + +#~ msgid "World coordinates" +#~ msgstr "Coordenades cartesianes" + +#~ msgid "Translate(Relative)" +#~ msgstr "Trasllada (relatiu)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Gira (absolut)" + +#~ msgid "Part coordinates" +#~ msgstr "Coordenades de la part" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Habilita l'avanç de pressió adaptativa per als voladissos (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Avanç de pressió per als ponts" + +#~ 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 "" +#~ "Valor d'avanç de pressió per als ponts. Establiu a 0 per desactivar.\n" +#~ "\n" +#~ " Un valor de PA més baix quan s'imprimeixen ponts ajuda a reduir l'aparició d'una lleugera extrusió immediatament després dels ponts. Això és causat per la caiguda de pressió al broquet quan s'imprimeix a l'aire i un PA més baix ajuda a contrarestar-ho." + +#~ msgid "Filament Sync Options" +#~ msgstr "Opcions de sincronització de filament" + +#~ msgid "Network plug-in" +#~ msgstr "Connector de xarxa" + +#~ msgid "View control settings" +#~ msgstr "Veure la configuració del control" + +#~ msgid "Rotate view" +#~ msgstr "Rotar la vista" + +#~ msgid "Pan view" +#~ msgstr "Vista Panoràmica" + +#~ msgid "Zoom view" +#~ msgstr "Vista amb Zoom" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La roda del ratolí s'inverteix quan es fa zoom" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Esquerra: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Dreta: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Habilita el plugin de xarxa" @@ -20733,10 +21127,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Desmarcar" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Escalar" - #~ msgid "Lift Z Enforcement" #~ msgstr "Forçar elevació Z" diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po index ce5f2ebe3a..7c32cff068 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: Jakub Hencl\n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "Gizmo-Otočit" msgid "Optimize orientation" msgstr "Optimalizovat orientaci" +msgctxt "Verb" msgid "Scale" msgstr "Měřítko" @@ -336,8 +337,9 @@ msgstr "Gizmo-Měřítko" msgid "Error: Please close all toolbar menus first" msgstr "Nejprve prosím zavřete všechna menu nástrojové lišty" +msgctxt "inches" msgid "in" -msgstr "v" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "Poměry měřítka" msgid "Object operations" msgstr "Operace s objektem" +msgid "Scale" +msgstr "Měřítko" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Operace s hlasitostí" @@ -397,26 +402,33 @@ msgstr "Obnovit pozici" msgid "Reset rotation" msgstr "Resetovat rotaci" -msgid "Object coordinates" -msgstr "Souřadnice objektu" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Světové souřadnice" +msgid "Object" +msgstr "Objekt" -msgid "Translate(Relative)" -msgstr "Přesunout (relativně)" +msgid "Part" +msgstr "Díl" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Obnovit aktuální rotaci na hodnotu při otevření nástroje pro rotaci." -msgid "Rotate (absolute)" -msgstr "Otočit (absolutně)" - msgid "Reset current rotation to real zeros." msgstr "Obnovit aktuální rotaci na skutečné nuly." -msgid "Part coordinates" -msgstr "Souřadnice části" +msgctxt "Noun" +msgid "Scale" +msgstr "Měřítko" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "Mezera" msgid "Spacing" msgstr "Rozestup" -msgid "Part" -msgstr "Díl" - -msgid "Object" -msgstr "Objekt" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1713,6 +1719,25 @@ msgstr "OrcaSlicer narazil na neošetřenou výjimku: %1%" msgid "Untitled" msgstr "Bez názvu" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Od verze 2.4.0 OrcaSlicer synchronizuje uživatelské profily prostřednictvím Orca Cloud namísto Bambu Cloud.\n" +"\n" +"Chcete-li migrovat své stávající profily, přihlaste se k Orca Cloud a budou automaticky přeneseny. Další informace o tom, jak OrcaSlicer ukládá a synchronizuje vaše profily, nebo o ruční migraci vašich předvoleb najdete na naší wiki.\n" +"\n" +"Pokud jste k synchronizaci profilů nepoužívali Bambu Cloud, tato změna se vás netýká a můžete tuto zprávu klidně ignorovat." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Znovunačítání síťového plug-inu..." @@ -1742,6 +1767,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Cesta ke zdrojům neexistuje nebo není adresář: %s" @@ -1846,23 +1877,30 @@ msgstr "Otevřít projekt" 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 "Verze Orca Slicer je příliš stará a je nutné ji aktualizovat na nejnovější verzi, aby ji bylo možné používat." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1871,6 +1909,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1951,8 +1995,9 @@ msgstr "Počet uživatelských předvoleb uložených v cloudu překročil povol msgid "Sync user presets" msgstr "Synchronizovat uživatelské předvolby" -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 "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2172,6 +2217,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3611,7 +3659,7 @@ msgstr "Kalibrace byla dokončena. Najděte na vyhřívané podložce nejrovnom msgid "Save" msgstr "Uložit" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Zpět" @@ -4084,6 +4132,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Aktuální teplota komory je vyšší než bezpečná teplota materiálu, což může vést ke změkčení materiálu a ucpání. Maximální bezpečná teplota pro materiál je %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4988,6 +5040,7 @@ msgstr "Výměny nástrojů" msgid "Color change" msgstr "Změna barvy" +msgctxt "Noun" msgid "Print" msgstr "Tisk" @@ -5151,11 +5204,15 @@ msgstr "Vyhněte se kalibrační oblasti extruze" msgid "Align to Y axis" msgstr "Zarovnat na osu Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Zpět" + +msgctxt "Camera View" msgid "Left" msgstr "Levý" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Pravý" @@ -5204,6 +5261,12 @@ msgstr "Všechny desky" msgid "Stats" msgstr "Statistiky" +msgid "Slice" +msgstr "Slicovat" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Návrat k sestavě" @@ -5228,6 +5291,9 @@ msgstr "Převisy" msgid "Outline" msgstr "Obrys" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5474,6 +5540,10 @@ msgstr "Tisková deska" msgid "Export G-code file" msgstr "Exportovat G-code soubor" +msgctxt "Verb" +msgid "Print" +msgstr "Tisk" + msgid "Export plate sliced file" msgstr "Exportovat nařezaný soubor desky" @@ -7865,6 +7935,50 @@ msgstr "Vyberte složku pro stažené položky" msgid "Choose Download Directory" msgstr "Vyberte adresář pro stažení" +msgid "(Latest)" +msgstr "(Nejnovější)" + +msgid "Network plug-in switched successfully." +msgstr "Síťový plugin byl úspěšně přepnut." + +msgid "Success" +msgstr "Úspěch" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci." + +#, 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 "" +"Vybrali jste verzi síťového pluginu %s.\n" +"\n" +"Chcete tuto verzi nyní stáhnout a nainstalovat?\n" +"\n" +"Poznámka: Po instalaci může být nutné restartovat aplikaci." + +msgid "Download Network Plug-in" +msgstr "Stáhnout síťový plugin" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Znovu načíst síťový plugin bez restartu aplikace" + +msgid "Network plug-in reloaded successfully." +msgstr "Síťový plugin byl úspěšně znovu načten." + +msgid "Reload" +msgstr "Znovu načíst" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci." + +msgid "Reload Failed" +msgstr "Znovunačtení selhalo" + msgid "Associate" msgstr "Přiřadit" @@ -7920,12 +8034,6 @@ msgstr "Zobrazit úvodní obrazovku" msgid "Show the splash screen during startup." msgstr "Zobrazit úvodní obrazovku při spuštění." -msgid "Show shared profiles notification" -msgstr "Zobrazit upozornění na sdílené profily" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily." - msgid "Use window buttons on left side" msgstr "Používat tlačítka okna na levé straně" @@ -7956,6 +8064,13 @@ msgstr "Chování při načítání" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Mají se při otevření souboru 3MF načíst nastavení tiskárny/filamentu/procesu?" +msgid "Auto backup" +msgstr "Automatické zálohování" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu." + msgid "Maximum recent files" msgstr "Maximální počet nedávných souborů" @@ -7974,12 +8089,55 @@ msgstr "Zobrazit možnosti při importu souboru STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Pokud je povoleno, během importu souboru STEP se zobrazí dialog nastavení parametrů." -msgid "Auto backup" -msgstr "Automatické zálohování" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Pravidelně zálohujte svůj projekt pro možnost obnovení po případném pádu." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Úroveň kvality pro export Draco" + +msgid "bits" +msgstr "bitů" + +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 "" +"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n" +"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n" +"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Předvolba" @@ -8011,6 +8169,12 @@ msgstr "filamenty" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimalizuje maximální výšku oblasti filamentů podle zvoleného počtu filamentů." +msgid "Show shared profiles notification" +msgstr "Zobrazit upozornění na sdílené profily" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Při změně vybrané tiskárny zobrazit upozornění s odkazem na sdílené profily." + msgid "Features" msgstr "Funkce" @@ -8023,21 +8187,6 @@ msgstr "Pokud je tato volba povolena, můžete odeslat úlohu na více zařízen msgid "Pop up to select filament grouping mode" msgstr "Zobrazit dialog pro výběr režimu seskupení filamentů" -msgid "Quality level for Draco export" -msgstr "Úroveň kvality pro export Draco" - -msgid "bits" -msgstr "bitů" - -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 "" -"Určuje bitovou hloubku kvantizace použitou při kompresi mesh do formátu Draco.\n" -"0 = bezztrátová komprese (geometrie je zachována v plné přesnosti). Platné ztrátové hodnoty jsou v rozsahu 8 až 30.\n" -"Nižší hodnoty vytvářejí menší soubory, ale ztrácí více geometrických detailů; vyšší hodnoty zachovávají více detailů za cenu větších souborů." - msgid "Behaviour" msgstr "Chování" @@ -8265,19 +8414,6 @@ msgstr "Kontrolovat pouze stabilní aktualizace" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatická synchronizace uživatelských předvoleb (tiskárna/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automaticky aktualizovat vestavěné předvolby." - -msgid "Use encrypted file for token storage" -msgstr "Použít šifrovaný soubor pro ukládání tokenů" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)" - -msgid "Filament Sync Options" -msgstr "Možnosti synchronizace filamentů" - msgid "Filament sync mode" msgstr "Režim synchronizace filamentů" @@ -8290,6 +8426,16 @@ msgstr "Filament a barva" msgid "Color only" msgstr "Pouze barva" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Automaticky aktualizovat vestavěné předvolby." + +msgid "Use encrypted file for token storage" +msgstr "Použít šifrovaný soubor pro ukládání tokenů" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Ukládat autentizační tokeny do šifrovaného souboru místo systémového úložiště klíčů. (Vyžaduje restart)" + msgid "Bambu network plug-in" msgstr "" @@ -8302,35 +8448,6 @@ msgstr "Verze síťového pluginu" msgid "Select the network plug-in version to use" msgstr "Vyberte verzi síťového pluginu" -msgid "(Latest)" -msgstr "(Nejnovější)" - -msgid "Network plug-in switched successfully." -msgstr "Síťový plugin byl úspěšně přepnut." - -msgid "Success" -msgstr "Úspěch" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Nepodařilo se načíst síťový plugin. Restartujte prosím aplikaci." - -#, 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 "" -"Vybrali jste verzi síťového pluginu %s.\n" -"\n" -"Chcete tuto verzi nyní stáhnout a nainstalovat?\n" -"\n" -"Poznámka: Po instalaci může být nutné restartovat aplikaci." - -msgid "Download Network Plug-in" -msgstr "Stáhnout síťový plugin" - msgid "Associate files to OrcaSlicer" msgstr "Přiřadit soubory k OrcaSliceru" @@ -8376,7 +8493,16 @@ msgstr "Vývojář" msgid "Skip AMS blacklist check" msgstr "Přeskočit kontrolu blacklistu AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8384,12 +8510,6 @@ 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 "Povolit neobvyklé úložiště" @@ -8418,24 +8538,6 @@ msgstr "ladění" msgid "trace" msgstr "trasování" -msgid "Network plug-in" -msgstr "Síťový plugin" - -msgid "Reload" -msgstr "Znovu načíst" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Znovu načíst síťový plugin bez restartu aplikace" - -msgid "Network plug-in reloaded successfully." -msgstr "Síťový plugin byl úspěšně znovu načten." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Nepodařilo se znovu načíst síťový plugin. Restartujte prosím aplikaci." - -msgid "Reload Failed" -msgstr "Znovunačtení selhalo" - msgid "Debug" msgstr "Ladění" @@ -8451,25 +8553,6 @@ msgstr "Synchronizace předvoleb" msgid "Preferences sync" msgstr "Synchronizace předvoleb" -msgid "View control settings" -msgstr "Zobrazit nastavení ovládání" - -msgid "Rotate view" -msgstr "Otočit pohled" - -msgid "Pan view" -msgstr "Posouvat pohled" - -msgid "Zoom view" -msgstr "Přiblížení zobrazení" - -msgid "Other" -msgstr "Ostatní" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Kolečko myši se při přiblížení otáčí opačně" - msgid "Enable SSL(MQTT)" msgstr "Povolit SSL (MQTT)" @@ -9176,6 +9259,12 @@ msgstr "Smazat tuto předvolbu" msgid "Search in preset" msgstr "Hledat v předvolbě" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Kliknutím obnovíte všechna nastavení na poslední uloženou předvolbu." @@ -9471,6 +9560,18 @@ msgstr "Poměr průtoku a Pressure Advance" msgid "Print chamber temperature" msgstr "Teplota tiskové komory" +msgid "Chamber temperature" +msgstr "Teplota komory" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Teplota tisku" @@ -9805,12 +9906,22 @@ msgid "Don't warn again for this preset" msgstr "Pro tuto předvolbu již nezobrazovat upozornění" #, c-format, boost-format -msgid "Left: %s" -msgstr "Vlevo: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Vpravo: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Klikněte pro obnovení aktuální hodnoty a navázání na globální hodnotu." @@ -9829,9 +9940,8 @@ msgstr "Neuložené změny" msgid "Transfer or discard changes" msgstr "Přenést nebo zahodit změny" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" -msgstr "Původní hodnota" +msgid "Old Value" +msgstr "" msgid "New Value" msgstr "Nová hodnota" @@ -9952,6 +10062,12 @@ msgstr "Počet extrudérů" msgid "Capabilities" msgstr "Možnosti" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Zobrazit všechny předvolby (včetně nekompatibilních)" @@ -11197,6 +11313,12 @@ msgstr "Smrštění filamentu nebude použito, protože hodnoty smrštění pou msgid "Generating skirt & brim" msgstr "Generování sukně a lemu" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Exportuji G-code" @@ -12073,6 +12195,25 @@ msgstr "Normální tisk" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Výchozí zrychlení pro běžný tisk i přesuny, kromě první vrstvy." +msgid "Acceleration of travel moves." +msgstr "Akcelerace pohybů přesunu." + +msgid "First layer travel" +msgstr "Přejezdy první vrstvy" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Zrychlení přejezdů první vrstvy.\n" +"Procentuální hodnota je vztažena k hodnotě Zrychlení přejezdů." + +msgid "mm/s² or %" +msgstr "mm/s² nebo %" + +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 "Zrychlení mostů Pokud je hodnota vyjádřena v procentech (např. 50 %), bude vypočtena na základě akcelerace vnější stěny." + msgid "Default filament profile" msgstr "Výchozí profil filamentu" @@ -12279,6 +12420,12 @@ msgstr "Archimédovy akordy" msgid "Octagram Spiral" msgstr "Oktagramová spirála" +msgid "Top surface density" +msgstr "Hustota horního povrchu" + +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 "Hustota horní povrchové vrstvy. Hodnota 100 % vytvoří zcela plnou, hladkou horní vrstvu. Snížením této hodnoty vznikne texturovaný horní povrch podle zvoleného vzoru horního povrchu. Hodnota 0 % znamená, že na horní vrstvě budou vytvořeny pouze stěny. Určeno pro estetické nebo funkční účely, nikoli k řešení problémů jako je nadměrná extruze." + msgid "Bottom surface pattern" msgstr "Vzor spodního povrchu" @@ -12286,6 +12433,16 @@ msgstr "Vzor spodního povrchu" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Vzor čáry pro výplň spodního povrchu, ne pro mostovou výplň." +msgid "Bottom surface density" +msgstr "Hustota spodního povrchu" + +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 "" +"Hustota spodní povrchové vrstvy. Určeno pro estetické nebo funkční účely, nikoli k řešení problémů, jako je přeextruze.\n" +"VAROVÁNÍ: Snížení této hodnoty může negativně ovlivnit přilnavost k podložce." + msgid "Internal solid infill pattern" msgstr "Vzor vnitřní plné výplně" @@ -12311,6 +12468,18 @@ msgstr "Práh malých obvodů" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Tímto se nastavuje práh délky malého obvodu. Výchozí práh je 0 mm." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Pořadí tisku stěn" @@ -12499,25 +12668,26 @@ msgstr "" "2. Poznamenejte si optimální hodnotu PA pro každou objemovou rychlost průtoku a zrychlení. Hodnotu průtoku zjistíte výběrem „Flow“ v rozbalovací nabídce barevného schématu a posunutím vodorovného posuvníku nad čárami PA vzoru. Číslo by mělo být viditelné dole na stránce. Ideální hodnota PA by měla s rostoucím objemovým průtokem klesat. Pokud tomu tak není, ověřte, že extruder funguje správně. Čím pomaleji a s menším zrychlením tisknete, tím větší je rozsah přijatelných hodnot PA. Pokud není vidět žádný rozdíl, použijte hodnotu PA z rychlejšího testu.\n" "3. Zadejte trojice hodnot PA, průtoku a zrychlení do textového pole zde a uložte profil filamentu." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Povolit adaptivní pressure advance pro převisy (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Pressure advance pro mosty" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n" -"\n" -"Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet." 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 "Výchozí šířka čáry, pokud jsou ostatní šířky čáry nastaveny na 0. Pokud je zadáno v %, bude vypočteno vůči průměru trysky." @@ -12588,18 +12758,6 @@ msgstr "Automaticky pro čištění" msgid "Auto For Match" msgstr "Automaticky pro přiřazení" -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 "" - msgid "Flush temperature" msgstr "Teplota čištění" @@ -12912,6 +13070,22 @@ msgstr "Směr plného vyplnění" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Úhel pro vzor plného výplně, který určuje počáteční nebo hlavní směr čáry." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Hustota řídké výplně" @@ -12942,7 +13116,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 +#, no-c-format, no-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 "" @@ -13010,79 +13184,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "Úhel boční mřížky 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Úhel první sady bočních mřížkových prvků ve směru Z. Nula je svisle." - -msgid "Lateral lattice angle 2" -msgstr "Úhel boční mřížky 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Úhel druhé sady bočních mřížkových prvků ve směru Z. Nula je svisle." - -msgid "Infill overhang angle" -msgstr "Úhel převisu výplně" - -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ě" - -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 "" -"Připojit výplňovou čáru k vnitřnímu obvodu krátkým segmentem dalšího obvodu. Pokud je zadáno v procentech (například: 15 %), počítá se z šířky extruze výplně. Orca Slicer se pokouší propojit dvě blízké výplňové čáry krátkým segmentem obvodu. Pokud není nalezen žádný segment obvodu kratší než infill_anchor_max, výplňová čára se připojí pouze k jednomu segmentu obvodu a délka vybraného segmentu je omezena tímto parametrem, ale ne delší než anchor_length_max.\n" -"Nastavte tuto hodnotu na nulu pro zakázání kotvení obvodů připojených k jedné výplňové čáře." - -msgid "0 (no open anchors)" -msgstr "0 (žádné otevřené kotvy)" - -msgid "1000 (unlimited)" -msgstr "1000 (neomezeno)" - -msgid "Maximum length of the infill anchor" -msgstr "Maximální délka kotvy výplně" - -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 "" -"Připojit výplňovou čáru k vnitřnímu obvodu krátkým segmentem dalšího obvodu. Pokud je zadáno v procentech (například: 15 %), počítá se z šířky extruze výplně. Orca Slicer se pokouší propojit dvě blízké výplňové čáry krátkým segmentem obvodu. Pokud není nalezen žádný segment obvodu kratší než tento parametr, výplňová čára se spojí s obvodem pouze z jedné strany a délka vybraného segmentu obvodu je omezena hodnotou infill_anchor, ale není delší než tento parametr.\n" -"Pokud je nastaveno na 0, použije se starý algoritmus připojení výplně, což by mělo vytvořit stejný výsledek jako s 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (Jednoduché připojení)" - -msgid "Acceleration of inner walls." -msgstr "Akcelerace vnitřních stěn." - -msgid "Acceleration of travel moves." -msgstr "Akcelerace pohybů přesunu." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Akcelerace výplně horní plochy. Použití nižší hodnoty může zlepšit kvalitu horní plochy." @@ -13091,11 +13192,8 @@ msgstr "Akcelerace výplně horní plochy. Použití nižší hodnoty může zle msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Akcelerace vnější stěny. Použití nižší hodnoty může zlepšit kvalitu." -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 "Zrychlení mostů Pokud je hodnota vyjádřena v procentech (např. 50 %), bude vypočtena na základě akcelerace vnější stěny." - -msgid "mm/s² or %" -msgstr "mm/s² nebo %" +msgid "Acceleration of inner walls." +msgstr "Akcelerace vnitřních stěn." 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 "Akcelerace řídké výplně. Pokud je hodnota vyjádřena v procentech (např. 100 %), bude vypočtena na základě výchozí akcelerace." @@ -13107,16 +13205,6 @@ msgstr "Akcelerace vnitřní plné výplně. Pokud je hodnota vyjádřena v proc msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Akcelerace první vrstvy. Použití nižší hodnoty může zlepšit přilnavost k podložce." -msgid "First layer travel" -msgstr "Přejezdy první vrstvy" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" -"Zrychlení přejezdů první vrstvy.\n" -"Procentuální hodnota je vztažena k hodnotě Zrychlení přejezdů." - msgid "Enable accel_to_decel" msgstr "Povolit accel_to_decel" @@ -13213,6 +13301,17 @@ msgstr "Rychlost ventilátoru bude lineárně zvyšována od nuly na vrstvě \"z msgid "layer" msgstr "vrstva" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Rychlost ventilátoru rozhraní podpory" @@ -13749,6 +13848,73 @@ msgstr "Oblast vyloučení sondování při shlukování" msgid "Probing exclude area of clumping." msgstr "Oblast vyloučení sondování při shlukování." +msgid "Lateral lattice angle 1" +msgstr "Úhel boční mřížky 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Úhel první sady bočních mřížkových prvků ve směru Z. Nula je svisle." + +msgid "Lateral lattice angle 2" +msgstr "Úhel boční mřížky 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Úhel druhé sady bočních mřížkových prvků ve směru Z. Nula je svisle." + +msgid "Infill overhang angle" +msgstr "Úhel převisu výplně" + +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ě" + +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 "" +"Připojit výplňovou čáru k vnitřnímu obvodu krátkým segmentem dalšího obvodu. Pokud je zadáno v procentech (například: 15 %), počítá se z šířky extruze výplně. Orca Slicer se pokouší propojit dvě blízké výplňové čáry krátkým segmentem obvodu. Pokud není nalezen žádný segment obvodu kratší než infill_anchor_max, výplňová čára se připojí pouze k jednomu segmentu obvodu a délka vybraného segmentu je omezena tímto parametrem, ale ne delší než anchor_length_max.\n" +"Nastavte tuto hodnotu na nulu pro zakázání kotvení obvodů připojených k jedné výplňové čáře." + +msgid "0 (no open anchors)" +msgstr "0 (žádné otevřené kotvy)" + +msgid "1000 (unlimited)" +msgstr "1000 (neomezeno)" + +msgid "Maximum length of the infill anchor" +msgstr "Maximální délka kotvy výplně" + +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 "" +"Připojit výplňovou čáru k vnitřnímu obvodu krátkým segmentem dalšího obvodu. Pokud je zadáno v procentech (například: 15 %), počítá se z šířky extruze výplně. Orca Slicer se pokouší propojit dvě blízké výplňové čáry krátkým segmentem obvodu. Pokud není nalezen žádný segment obvodu kratší než tento parametr, výplňová čára se spojí s obvodem pouze z jedné strany a délka vybraného segmentu obvodu je omezena hodnotou infill_anchor, ale není delší než tento parametr.\n" +"Pokud je nastaveno na 0, použije se starý algoritmus připojení výplně, což by mělo vytvořit stejný výsledek jako s 1000 & 0." + +msgid "0 (Simple connect)" +msgstr "0 (Jednoduché připojení)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14640,6 +14806,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Dodatečná délka při restartu" @@ -14694,6 +14872,10 @@ msgstr "Zarovnáno" msgid "Aligned back" msgstr "Zarovnat zpět" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Zpět" + msgid "Random" msgstr "Náhodně" @@ -15063,6 +15245,9 @@ msgstr "Trhliny menší než 2x poloměr uzavření mezery jsou při řezání t msgid "Slicing Mode" msgstr "Režim slicingu" +msgid "Other" +msgstr "Ostatní" + 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." @@ -15422,9 +15607,6 @@ msgstr "" "\n" "Tato volba spoléhá na firmware, který podporuje příkazy M191 a M141 nativně nebo přes makra, a je obvykle využívána při instalaci aktivního topení komory." -msgid "Chamber temperature" -msgstr "Teplota komory" - 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" @@ -15438,6 +15620,17 @@ msgstr "" "\n" "Pokud je povoleno, tento parametr rovněž nastaví G-code proměnnou s názvem chamber_temperature, kterou lze použít k předání požadované teploty komory do makra spuštění tisku, nebo do makra pro tepelnou stabilizaci, například takto: PRINT_START (další proměnné) CHAMBER_TEMP=[chamber_temperature]. To může být užitečné, pokud vaše tiskárna nepodporuje příkazy M141/M191, nebo pokud chcete provádět tepelnou stabilizaci v makru spuštění tisku, pokud není instalováno aktivní topení komory." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Teplota trysky pro vrstvy po úvodní vrstvě." @@ -15482,22 +15675,6 @@ msgstr "Tloušťka horního pláště" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Počet horních pevných vrstev bude při slicování zvýšen, pokud tloušťka vypočtená podle horních vrstev bude menší než tato hodnota. Tím lze předejít příliš tenké skořepině při malé výšce vrstvy. 0 znamená, že je nastavení vypnuté a tloušťka horní skořepiny je určena pouze počtem horních vrstev." -msgid "Top surface density" -msgstr "Hustota horního povrchu" - -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 "Hustota horní povrchové vrstvy. Hodnota 100 % vytvoří zcela plnou, hladkou horní vrstvu. Snížením této hodnoty vznikne texturovaný horní povrch podle zvoleného vzoru horního povrchu. Hodnota 0 % znamená, že na horní vrstvě budou vytvořeny pouze stěny. Určeno pro estetické nebo funkční účely, nikoli k řešení problémů jako je nadměrná extruze." - -msgid "Bottom surface density" -msgstr "Hustota spodního povrchu" - -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 "" -"Hustota spodní povrchové vrstvy. Určeno pro estetické nebo funkční účely, nikoli k řešení problémů, jako je přeextruze.\n" -"VAROVÁNÍ: Snížení této hodnoty může negativně ovlivnit přilnavost k podložce." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Rychlost přejezdu bez extruze." @@ -15745,6 +15922,14 @@ msgstr "Zkroucení polyotvoru" msgid "Rotate the polyhole every layer." msgstr "Otočit polyotvor každou vrstvu." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Náhledy G-code" @@ -15890,9 +16075,6 @@ msgstr "Exportovat více STL" msgid "Export the objects as multiple STLs to directory." msgstr "Exportovat objekty jako více STL do adresáře." -msgid "Slice" -msgstr "Slicovat" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Slicovat desky: 0-všechny desky, i-deska i, ostatní-neplatné" @@ -18138,6 +18320,132 @@ 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 "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18220,6 +18528,19 @@ msgstr "Připojení k MKS funguje správně." msgid "Could not connect to MKS" msgstr "Nepodařilo se připojit k MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Připojení k OctoPrint funguje správně." @@ -18970,6 +19291,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19375,6 +19702,79 @@ msgstr "" "Zamezte kroucení\n" "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 "Print" +#~ msgstr "Tisk" + +#~ msgid "in" +#~ msgstr "v" + +#~ msgid "Object coordinates" +#~ msgstr "Souřadnice objektu" + +#~ msgid "World coordinates" +#~ msgstr "Světové souřadnice" + +#~ msgid "Translate(Relative)" +#~ msgstr "Přesunout (relativně)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Otočit (absolutně)" + +#~ msgid "Part coordinates" +#~ msgstr "Souřadnice části" + +#~ 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 "Obsah předvolby je příliš velký pro synchronizaci do cloudu (přesahuje 1 MB). Zmenšete velikost předvolby odstraněním vlastních nastavení nebo ji používejte pouze lokálně." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Povolit adaptivní pressure advance pro převisy (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Pressure advance pro mosty" + +#~ 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 "" +#~ "Hodnota Pressure advance pro mosty. Nastavte na 0 pro vypnutí.\n" +#~ "\n" +#~ "Nižší hodnota PA při tisku mostů pomáhá omezit výskyt mírné podextruze ihned po mostech. To je způsobeno poklesem tlaku v trysce při tisku do vzduchu a nižší PA tomu pomáhá předcházet." + +#~ msgid "Filament Sync Options" +#~ msgstr "Možnosti synchronizace filamentů" + +#~ msgid "Network plug-in" +#~ msgstr "Síťový plugin" + +#~ msgid "View control settings" +#~ msgstr "Zobrazit nastavení ovládání" + +#~ msgid "Rotate view" +#~ msgstr "Otočit pohled" + +#~ msgid "Pan view" +#~ msgstr "Posouvat pohled" + +#~ msgid "Zoom view" +#~ msgstr "Přiblížení zobrazení" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Kolečko myši se při přiblížení otáčí opačně" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Vlevo: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Vpravo: %s" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Old value" +#~ msgstr "Původní hodnota" + #~ msgid "Enable network plug-in" #~ msgstr "Povolit síťový plugin" diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po index 67defac5e4..1fac95632e 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: Heiko Liebscher \n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "Gizmo-Drehen" msgid "Optimize orientation" msgstr "Optimiere Ausrichtung" +msgctxt "Verb" msgid "Scale" msgstr "Skalieren" @@ -336,8 +337,9 @@ msgstr "Gizmo-Skalieren" msgid "Error: Please close all toolbar menus first" msgstr "Fehler: Bitte schließen sie zuerst alle Werkzeugleistenmenüs" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "Skalierungsverhältnisse" msgid "Object operations" msgstr "Objekt-Operationen" +msgid "Scale" +msgstr "Skalieren" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Volumen Operationen" @@ -397,26 +402,33 @@ msgstr "Position zurücksetzen" msgid "Reset rotation" msgstr "Rotation zurücksetzen" -msgid "Object coordinates" -msgstr "Objektkoordinaten" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Weltkoordinaten" +msgid "Object" +msgstr "Objekt" -msgid "Translate(Relative)" -msgstr "Verschieben (relativ)" +msgid "Part" +msgstr "Teil" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Setze die aktuelle Rotation auf den Wert zurück, als das Rotationswerkzeug geöffnet wurde." -msgid "Rotate (absolute)" -msgstr "Rotation (absolut)" - msgid "Reset current rotation to real zeros." msgstr "Setze die aktuelle Rotation auf die realen Nullen zurück." -msgid "Part coordinates" -msgstr "Teile Koordinaten" +msgctxt "Noun" +msgid "Scale" +msgstr "Skalieren" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "Spalt" msgid "Spacing" msgstr "Abstand" -msgid "Part" -msgstr "Teil" - -msgid "Object" -msgstr "Objekt" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1716,6 +1722,25 @@ msgstr "OrcaSlicer hat eine unbehandelte Ausnahme erzeugt: %1%" msgid "Untitled" msgstr "Unbenannt" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Seit Version 2.4.0 synchronisiert OrcaSlicer Benutzerprofile über Orca Cloud anstelle der Bambu Cloud.\n" +"\n" +"Um Ihre vorhandenen Profile zu migrieren, melden Sie sich bei Orca Cloud an, dann werden sie automatisch übertragen. Weitere Informationen darüber, wie OrcaSlicer Ihre Profile speichert und synchronisiert, oder wie Sie Ihre Profile manuell migrieren, finden Sie in unserem Wiki.\n" +"\n" +"Wenn Sie die Bambu Cloud nicht zum Synchronisieren von Profilen verwendet haben, betrifft Sie diese Änderung nicht und Sie können diese Meldung ignorieren." + +msgid "Profile syncing change" +msgstr "Änderung der Profilsynchronisierung" + +msgid "Learn more" +msgstr "Mehr erfahren" + msgid "Reloading network plug-in..." msgstr "Netzwerk-Plugin wird neu geladen..." @@ -1745,6 +1770,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2-Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Ressourcenpfad existiert nicht oder ist kein Verzeichnis: %s" @@ -1850,33 +1881,32 @@ msgstr "Projekt öffnen" 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 "Die Version von Orca Slicer ist veraltet und muss auf die neueste Version aktualisiert werden, bevor sie normal verwendet werden kann" -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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" msgstr "" -"Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n" -"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n" -"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"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 "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n" -"Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil." msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n" -"Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1885,6 +1915,12 @@ msgstr "" "Force Push überschreibt die Cloud-Kopie mit Ihren lokalen Profiländerungen.\n" "Möchten Sie fortfahren?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "Cloud-Synchronisationskonflikt lösen" @@ -1964,7 +2000,8 @@ msgstr "Die Anzahl der im Cloud-Cache gespeicherten Benutzerprofile hat das Limi msgid "Sync user presets" msgstr "Benutzerprofile synchronisieren" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2185,6 +2222,9 @@ msgstr "Orca Würfel" msgid "OrcaSliced Combo" msgstr "OrcaSliced Kombination" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca Toleranz Test" @@ -3622,7 +3662,7 @@ msgstr "Kalibrierung abgeschlossen. Bitte suchen Sie die gleichmäßigste Extrus msgid "Save" msgstr "Speichern" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Zurück" @@ -4095,6 +4135,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Die aktuelle Kammer-Temperatur ist höher als die sichere Temperatur des Materials, dies kann zu Materialerweichung und Verstopfung führen. Die maximale sichere Temperatur für das Material beträgt %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -5000,6 +5044,7 @@ msgstr "Werkzeugwechsel" msgid "Color change" msgstr "Farbwechsel" +msgctxt "Noun" msgid "Print" msgstr "aktuelle Platte drucken" @@ -5163,11 +5208,15 @@ msgstr "Vermeiden Sie den Bereich der Extrusionskalibrierung" msgid "Align to Y axis" msgstr "An Y-Achse ausrichten" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Zurück" + +msgctxt "Camera View" msgid "Left" msgstr "links" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "rechts" @@ -5216,6 +5265,12 @@ msgstr "alle Druckplatten" msgid "Stats" msgstr "Statistiken" +msgid "Slice" +msgstr "Slicen" + +msgid "Review" +msgstr "Überprüfen" + msgid "Assembly Return" msgstr "Zurücksetzen der Montage" @@ -5240,6 +5295,9 @@ msgstr "Überhänge" msgid "Outline" msgstr "Umriss" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "Realistische Ansicht" @@ -5484,6 +5542,10 @@ msgstr "Aktuelle Platte drucken" msgid "Export G-code file" msgstr "G-Code als Datei exportieren" +msgctxt "Verb" +msgid "Print" +msgstr "aktuelle Platte drucken" + msgid "Export plate sliced file" msgstr "Exportiere aktuelle Platte als STL Datei" @@ -7880,6 +7942,50 @@ msgstr "Wählen Sie den Ordner für heruntergeladene Elemente" msgid "Choose Download Directory" msgstr "Wählen Sie das Download-Verzeichnis" +msgid "(Latest)" +msgstr "(Neueste)" + +msgid "Network plug-in switched successfully." +msgstr "Netzwerk-Plugin erfolgreich gewechselt." + +msgid "Success" +msgstr "Erfolgreich" + +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 "" +"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n" +"\n" +"Möchten Sie diese Version jetzt herunterladen und installieren?\n" +"\n" +"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden." + +msgid "Download Network Plug-in" +msgstr "Netzwerk-Plugin herunterladen" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten" + +msgid "Network plug-in reloaded successfully." +msgstr "Netzwerk-Plugin erfolgreich neu geladen." + +msgid "Reload" +msgstr "Neu laden" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu." + +msgid "Reload Failed" +msgstr "Neuladen fehlgeschlagen" + msgid "Associate" msgstr "Zuordnen" @@ -7935,12 +8041,6 @@ msgstr "Splash-Screen anzeigen" msgid "Show the splash screen during startup." msgstr "Zeige den Splash-Screen beim Start." -msgid "Show shared profiles notification" -msgstr "Benachrichtigung für geteilte Profile anzeigen" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird." - msgid "Use window buttons on left side" msgstr "Windows Taste auf der linken Seite verwenden" @@ -7971,6 +8071,13 @@ msgstr "Ladeverhalten" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "sollen Drucker/Filament/Prozess Einstellungen geladen werden beim Öffnen einer .3mf?" +msgid "Auto backup" +msgstr "Automatische Datensicherung" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können." + msgid "Maximum recent files" msgstr "Maximum zuletzt verwendeter Dateien" @@ -7989,12 +8096,55 @@ msgstr "Optionen beim Importieren von STEP-Dateien anzeigen" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Wenn aktiviert, wird während des Imports von STEP-Dateien ein Dialogfeld " -msgid "Auto backup" -msgstr "Automatische Datensicherung" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Erstellen Sie regelmäßig Sicherungskopien Ihres Projekts,um es im Falle eines Absturzes wiederherstellen zu können." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Qualitätsstufe für den Draco-Export" + +msgid "bits" +msgstr "Bits" + +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 "" +"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n" +"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n" +"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Profil" @@ -8026,6 +8176,12 @@ msgstr "Filamente" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimiert die maximale Höhe des Filamentbereichs anhand der gewählten Filamentanzahl." +msgid "Show shared profiles notification" +msgstr "Benachrichtigung für geteilte Profile anzeigen" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Zeigen Sie eine Benachrichtigung mit einem Link zum Durchsuchen von geteilten Profilen an, wenn der ausgewählte Drucker geändert wird." + msgid "Features" msgstr "Funktionen" @@ -8038,21 +8194,6 @@ msgstr "Wenn diese Option aktiviert ist, können Sie eine Aufgabe gleichzeitig a msgid "Pop up to select filament grouping mode" msgstr "Popup zum Auswählen des Filament-Gruppierungsmodus" -msgid "Quality level for Draco export" -msgstr "Qualitätsstufe für den Draco-Export" - -msgid "bits" -msgstr "Bits" - -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 "" -"Kontrolliert die Quantisierungs-Bittiefe, die bei der Komprimierung des Netzes in das Draco-Format verwendet wird.\n" -"0 = verlustfreie Kompression (Geometrie wird mit voller Präzision beibehalten). Gültige verlustbehaftete Werte liegen zwischen 8 und 30.\n" -"Niedrigere Werte erzeugen kleinere Dateien, verlieren jedoch mehr geometrische Details; höhere Werte bewahren mehr Details auf Kosten größerer Dateien." - msgid "Behaviour" msgstr "Verhalten" @@ -8297,19 +8438,6 @@ msgstr "Nur nach stabilen Updates suchen" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Aktualisiere integrierte Profile automatisch." - -msgid "Use encrypted file for token storage" -msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)" - -msgid "Filament Sync Options" -msgstr "Filament-Synchronisierungsoptionen" - msgid "Filament sync mode" msgstr "Filament-Synchronisierungsmodus" @@ -8322,6 +8450,16 @@ msgstr "Filament und Farbe" msgid "Color only" msgstr "Nur Farbe" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Aktualisiere integrierte Profile automatisch." + +msgid "Use encrypted file for token storage" +msgstr "Verschlüsselte Datei für die Token-Speicherung verwenden" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Speichern Sie Authentifizierungstoken in einer verschlüsselten Datei anstelle des System-Schlüsselbunds. (Erfordert Neustart)" + msgid "Bambu network plug-in" msgstr "Bambu Netzwerk-Plugin" @@ -8334,35 +8472,6 @@ msgstr "Netzwerk-Plugin-Version" msgid "Select the network plug-in version to use" msgstr "Wählen Sie die zu verwendende Version des Netzwerk-Plugins aus" -msgid "(Latest)" -msgstr "(Neueste)" - -msgid "Network plug-in switched successfully." -msgstr "Netzwerk-Plugin erfolgreich gewechselt." - -msgid "Success" -msgstr "Erfolgreich" - -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 "" -"Sie haben die Netzwerk-Plugin-Version %s ausgewählt.\n" -"\n" -"Möchten Sie diese Version jetzt herunterladen und installieren?\n" -"\n" -"Hinweis: Die Anwendung muss möglicherweise nach der Installation neu gestartet werden." - -msgid "Download Network Plug-in" -msgstr "Netzwerk-Plugin herunterladen" - msgid "Associate files to OrcaSlicer" msgstr "Dateien mit OrcaSlicer verknüpfen" @@ -8411,8 +8520,17 @@ msgstr "Entwickler" msgid "Skip AMS blacklist check" msgstr "Überspringen der AMS Blacklist-Prüfung" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" +msgid "Show unsupported presets" +msgstr "Nicht unterstützte Profile anzeigen" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden." + +msgid "Experimental Features" +msgstr "" + +msgid "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" @@ -8421,12 +8539,6 @@ 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" "Sehr experimentell! Langsam und kann Artefakte erzeugen." -msgid "Show unsupported presets" -msgstr "Nicht unterstützte Profile anzeigen" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "Zeigt inkompatible/nicht unterstützte Profile in den Dropdown-Listen für Drucker und Filament an. Diese Profile können nicht ausgewählt werden." - msgid "Allow Abnormal Storage" msgstr "Fehlerhaften Speicher zulassen" @@ -8455,24 +8567,6 @@ msgstr "Fehlersuche" msgid "trace" msgstr "Spurensuche" -msgid "Network plug-in" -msgstr "Netzwerk-Plugin" - -msgid "Reload" -msgstr "Neu laden" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Das Netzwerk-Plugin neu laden, ohne die Anwendung neu zu starten" - -msgid "Network plug-in reloaded successfully." -msgstr "Netzwerk-Plugin erfolgreich neu geladen." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Netzwerk-Plugin konnte nicht neu geladen werden. Bitte starten Sie die Anwendung neu." - -msgid "Reload Failed" -msgstr "Neuladen fehlgeschlagen" - msgid "Debug" msgstr "Fehlersuche" @@ -8488,25 +8582,6 @@ msgstr "Profil Synchronisation" msgid "Preferences sync" msgstr "Synchronisierung der Einstellungen" -msgid "View control settings" -msgstr "Ansicht-Steuerungseinstellungen" - -msgid "Rotate view" -msgstr "Drehen der Ansicht" - -msgid "Pan view" -msgstr "Pan-Ansicht" - -msgid "Zoom view" -msgstr "Ansicht zoomen" - -msgid "Other" -msgstr "Sonstiges" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Scrollrichtung beim Zoomen umkehren" - msgid "Enable SSL(MQTT)" msgstr "SSL aktivieren (MQTT)" @@ -9212,6 +9287,12 @@ msgstr "Dieses Profil löschen" msgid "Search in preset" msgstr "In Profilen suchen" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Klicken Sie hier, um alle Einstellungen auf die zuletzt gespeicherten Parameter zurückzusetzen." @@ -9502,6 +9583,18 @@ msgstr "Flussverhältnis und Pressure Advance" msgid "Print chamber temperature" msgstr "Druckkammertemperatur" +msgid "Chamber temperature" +msgstr "Druckraum Temperatur" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Drucktemperatur" @@ -9837,12 +9930,22 @@ msgid "Don't warn again for this preset" msgstr "Nicht erneut für dieses Profil warnen" #, c-format, boost-format -msgid "Left: %s" -msgstr "Links: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Rechts: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Klicken Sie hier, um den aktuellen Wert zurückzusetzen und ihn dem globalen Wert zuzuordnen." @@ -9862,7 +9965,7 @@ msgid "Transfer or discard changes" msgstr "Änderungen verwerfen oder beibehalten" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Alter Wert" msgid "New Value" @@ -9987,6 +10090,12 @@ msgstr "Anzahl der Extruder" msgid "Capabilities" msgstr "Fähigkeiten" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Alle Profile anzeigen (auch inkompatible)" @@ -11228,7 +11337,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "Die Option für präzise Wände wird für Außen-Innen- oder Innen-Außen-Innen-Wand-Sequenzen ignoriert." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "Das Adaptive Pressure Advance-Modell für einen oder mehrere Extruder kann ungültige Werte enthalten." msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "Filament-Schrumpfung wird nicht verwendet, da sich die Filament-Schrumpfung für die verwendeten Filamente signifikant unterscheidet." @@ -11236,6 +11345,15 @@ msgstr "Filament-Schrumpfung wird nicht verwendet, da sich die Filament-Schrumpf msgid "Generating skirt & brim" msgstr "Generieren von Schürze und Rand (skirt & brim)" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"Schürzen für einzelne Objekte passen nicht zwischen die Objekte in der Druckreihenfolge 'Nach Objekt'.\n" +"\n" +"Bewegen Sie die Objekte weiter auseinander, verringern Sie die Größe von Rand/Schürze, wechseln Sie den Schürzentyp zu 'Kombiniert' oder wechseln Sie die Druckreihenfolge zu 'Nach Schicht'." + msgid "Exporting G-code" msgstr "Exportiere G-Code" @@ -12177,6 +12295,25 @@ msgstr "Normales Drucken" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Die Standardbeschleunigung für den normalen Druck und den Eilgang nach der ersten Schicht." +msgid "Acceleration of travel moves." +msgstr "Beschleunigung Bewegung" + +msgid "First layer travel" +msgstr "Bewegung der ersten Schicht" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Bewegungsbeschleunigung der ersten Schicht.\n" +"Der Prozentwert bezieht sich auf die Bewegungsbeschleunigung." + +msgid "mm/s² or %" +msgstr "mm/s² o. %" + +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 berechnet." + msgid "Default filament profile" msgstr "Standard-Filamentprofil" @@ -12389,6 +12526,12 @@ msgstr "Archimedische Akkorde" msgid "Octagram Spiral" msgstr "Oktagramm Spirale" +msgid "Top surface density" +msgstr "Dichte der oberen Oberfläche" + +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 "Dichte der oberen Oberflächenschicht. Ein Wert von 100 % erzeugt eine vollständig massive, glatte obere Schicht. Eine Reduzierung dieses Wertes führt zu einer strukturierten oberen Oberfläche, abhängig vom gewählten Oberflächenmuster. Ein Wert von 0 % führt dazu, dass nur die Wände der oberen Schicht erstellt werden. Diese Einstellung dient ästhetischen oder funktionalen Zwecken und nicht zur Behebung von Problemen wie Überextrusion." + msgid "Bottom surface pattern" msgstr "Muster der unteren Fläche" @@ -12396,6 +12539,16 @@ msgstr "Muster der unteren Fläche" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Linienmuster der Bodenfüllung. Brückenfüllung nicht eingeschlossen" +msgid "Bottom surface density" +msgstr "Dichte der unteren Oberfläche" + +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 "" +"Dichte der unteren Oberflächenschicht. Diese Einstellung dient ästhetischen oder funktionalen Zwecken und nicht zur Behebung von Problemen wie Überextrusion.\n" +"ACHTUNG: Eine Verringerung dieses Wertes kann die Haftung am Druckbett negativ beeinflussen." + msgid "Internal solid infill pattern" msgstr "Muster für das interne feste Füllmuster" @@ -12421,6 +12574,18 @@ msgstr "Schwelle für kleine Strukturen" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Dies legt die Schwelle für eine kleine Umfangslänge fest. Der Standardwert für die Schwelle beträgt 0 mm." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Anordnung der Wände" @@ -12609,27 +12774,26 @@ msgstr "" "2. Notieren Sie den optimalen PA-Wert für jede Volumenfließgeschwindigkeit und Beschleunigung. Sie können die Fließzahl auswählen, indem Sie Fluss ausdem Farbschema-Dropdown auswählen und den horizontalen Schieberegler über den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die Volumenfließgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestätigen Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, desto größer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.\n" "3. Geben Sie die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Adaptives PA für Überhänge aktivieren (experimentell)" +msgid "Enable adaptive pressure advance within features (beta)" +msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." msgstr "" -"Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n" -"Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt." -msgid "Pressure advance for bridges" -msgstr "Pressure Advance für Brücken" +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n" -"\n" -"Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken." 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 "Standardmäßige Linienbreite, wenn andere Linienbreiten auf 0 gesetzt sind. Wenn als Prozentsatz angegeben, wird sie in Bezug auf den Düsendurchmesser berechnet." @@ -12700,18 +12864,6 @@ msgstr "Automatisch für Spülen" msgid "Auto For Match" msgstr "Automatisch für Übereinstimmung" -msgid "Enable filament dynamic map" -msgstr "Dynamische Filamentzuordnung aktivieren" - -msgid "Enable dynamic filament mapping during print." -msgstr "Dynamische Filamentzuordnung während des Drucks aktivieren." - -msgid "Has filament switcher" -msgstr "Hat Filamentwechsler" - -msgid "Printer has a filament switcher hardware (e.g., AMS)." -msgstr "Der Drucker verfügt über eine Filamentwechsler-Hardware (z. B. AMS)." - msgid "Flush temperature" msgstr "Spültemperatur" @@ -13022,6 +13174,22 @@ msgstr "Richtung des massiven Füllmusters" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Winkel des massiven Füllmusters, der die Start- oder Hauptrichtung der Linie steuert." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Fülldichte" @@ -13055,7 +13223,7 @@ msgid "Z-buckling bias optimization (experimental)" msgstr "Z-Buckling-Bias-Optimierung (experimentell)" # TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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 "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." @@ -13123,77 +13291,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Gyroid" -msgid "Lateral lattice angle 1" -msgstr "Gitterwinkel 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Der Winkel des ersten Satzes von 2D-Gitterelementen in der Z-Richtung. Null ist vertikal." - -msgid "Lateral lattice angle 2" -msgstr "Gitterwinkel 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Der Winkel des zweiten Satzes von 2D-Gitterelementen in der Z-Richtung. Null ist vertikal." - -msgid "Infill overhang angle" -msgstr "Überhangwinkel der Füllung" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -msgstr "Der Winkel der schrägen Linien der Füllung. 60° führt zu einer reinen Wabenstruktur." - -msgid "Lightning overhang angle" -msgstr "Überhangwinkel der Blitzfüllung" - -msgid "Maximum overhang angle for Lightning infill support propagation." -msgstr "Maximaler Überhangwinkel für die Ausbreitung der Blitzfüllungsunterstützung." - -msgid "Prune angle" -msgstr "Beschneidungswinkel" - -msgid "" -"Controls how aggressively short or unsupported Lightning branches are pruned.\n" -"This angle is converted internally to a per-layer distance." -msgstr "" -"Steuert, wie aggressiv kurze oder nicht unterstützte Blitzäste beschnitten werden.\n" -"Dieser Winkel wird intern in eine pro-Schicht-Distanz umgewandelt." - -msgid "Straightening angle" -msgstr "Begradigungswinkel" - -msgid "Maximum straightening angle used to simplify Lightning branches." -msgstr "Maximaler Begradigungswinkel zur Vereinfachung von Blitzästen." - -msgid "Sparse infill anchor length" -msgstr "Länge des Infill-Ankers" - -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 "Verbindet eine Infill-Linie mit einem kurzen Segment eines zusätzlichen Perimeters mit einem internen Perimeter. Wenn sie als Prozentsatz ausgedrückt wird (Beispiel: 15%), wird sie über die Breite der Infill-Extrusion berechnet. OrcaSlicer versucht, zwei nahe beieinander liegende Infill-Linien mit einem kurzen Perimetersegment zu verbinden. Wenn kein solches Perimetersegment gefunden wird, das kürzer als infill_anchor_max ist, wird die Infill-Linie nur an einer Seite mit einem Perimetersegment verbunden und die Länge des genommenen Perimetersegments ist auf diesen Parameter begrenzt, aber nicht länger als anchor_length_max. Setzen Sie diesen Parameter auf Null, um die Verankerung von Perimetern zu deaktivieren, die mit einer einzelnen Infill-Linie verbunden sind." - -msgid "0 (no open anchors)" -msgstr "0 (keine offenen Anker)" - -msgid "1000 (unlimited)" -msgstr "1000 (unbegrenzt)" - -msgid "Maximum length of the infill anchor" -msgstr "Maximale Länge des Infill-Ankers" - -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 "Verbindet eine Infill-Linie mit einem kurzen Segment eines zusätzlichen Perimeters mit einem internen Perimeter. Wenn sie als Prozentsatz ausgedrückt wird (Beispiel: 15%), wird sie über die Breite der Infill-Extrusion berechnet. OrcaSlicer versucht, zwei nahe beieinander liegende Infill-Linien mit einem kurzen Perimetersegment zu verbinden. Wenn kein solches Perimetersegment gefunden wird, das kürzer als dieser Parameter ist, wird die Infill-Linie nur an einer Seite mit einem Perimetersegment verbunden und die Länge des genommenen Perimetersegments wird auf infill_anchor begrenzt, aber nicht länger als dieser Parameter. Setzen Sie diesen Parameter auf Null, um die Verankerung zu deaktivieren." - -msgid "0 (Simple connect)" -msgstr "0 (Einfache Verbindung)" - -msgid "Acceleration of inner walls." -msgstr "Beschleunigung Innenwände" - -msgid "Acceleration of travel moves." -msgstr "Beschleunigung Bewegung" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Dies ist die Beschleunigung der Füllung von der obersten Schicht. Die Verwendung eines niedrigeren Werts kann die Qualität der Oberfläche verbessern." @@ -13202,11 +13299,8 @@ msgstr "Dies ist die Beschleunigung der Füllung von der obersten Schicht. Die V msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Beschleunigung der Außenwand: Die Verwendung eines niedrigeren Wertes kann die Qualität verbessern." -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 berechnet." - -msgid "mm/s² or %" -msgstr "mm/s² o. %" +msgid "Acceleration of inner walls." +msgstr "Beschleunigung Innenwände" 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 "Beschleunigung der spärlichen Innenfüllung. Wenn der Wert als Prozentwert angegeben wird (z.B. 100%), wird er auf der Grundlage der Standardbeschleunigung berechnet." @@ -13218,16 +13312,6 @@ msgstr "Beschleunigung des internen massiven Innenfülls. Wenn der Wert als Proz msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Beschleunigung der ersten Schicht. Die Verwendung eines niedrigeren Wertes kann die Druckbetthaftung verbessern" -msgid "First layer travel" -msgstr "Bewegung der ersten Schicht" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" -"Bewegungsbeschleunigung der ersten Schicht.\n" -"Der Prozentwert bezieht sich auf die Bewegungsbeschleunigung." - msgid "Enable accel_to_decel" msgstr "Beschleunigung zu Verzögerung einschalten" @@ -13324,6 +13408,17 @@ msgstr "Die Lüftergeschwindigkeit wird linear von Null bei der Schicht\"close_f msgid "layer" msgstr "Schicht" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Stützstruktur-Schnittstelle" @@ -13857,6 +13952,71 @@ msgstr "Klumpen-Ausschlussbereich abtasten" msgid "Probing exclude area of clumping." msgstr "Klumpen-Ausschlussbereich abtasten." +msgid "Lateral lattice angle 1" +msgstr "Gitterwinkel 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Der Winkel des ersten Satzes von 2D-Gitterelementen in der Z-Richtung. Null ist vertikal." + +msgid "Lateral lattice angle 2" +msgstr "Gitterwinkel 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Der Winkel des zweiten Satzes von 2D-Gitterelementen in der Z-Richtung. Null ist vertikal." + +msgid "Infill overhang angle" +msgstr "Überhangwinkel der Füllung" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +msgstr "Der Winkel der schrägen Linien der Füllung. 60° führt zu einer reinen Wabenstruktur." + +msgid "Lightning overhang angle" +msgstr "Überhangwinkel der Blitzfüllung" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "Maximaler Überhangwinkel für die Ausbreitung der Blitzfüllungsunterstützung." + +msgid "Prune angle" +msgstr "Beschneidungswinkel" + +msgid "" +"Controls how aggressively short or unsupported Lightning branches are pruned.\n" +"This angle is converted internally to a per-layer distance." +msgstr "" +"Steuert, wie aggressiv kurze oder nicht unterstützte Blitzäste beschnitten werden.\n" +"Dieser Winkel wird intern in eine pro-Schicht-Distanz umgewandelt." + +msgid "Straightening angle" +msgstr "Begradigungswinkel" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "Maximaler Begradigungswinkel zur Vereinfachung von Blitzästen." + +msgid "Sparse infill anchor length" +msgstr "Länge des Infill-Ankers" + +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 "Verbindet eine Infill-Linie mit einem kurzen Segment eines zusätzlichen Perimeters mit einem internen Perimeter. Wenn sie als Prozentsatz ausgedrückt wird (Beispiel: 15%), wird sie über die Breite der Infill-Extrusion berechnet. OrcaSlicer versucht, zwei nahe beieinander liegende Infill-Linien mit einem kurzen Perimetersegment zu verbinden. Wenn kein solches Perimetersegment gefunden wird, das kürzer als infill_anchor_max ist, wird die Infill-Linie nur an einer Seite mit einem Perimetersegment verbunden und die Länge des genommenen Perimetersegments ist auf diesen Parameter begrenzt, aber nicht länger als anchor_length_max. Setzen Sie diesen Parameter auf Null, um die Verankerung von Perimetern zu deaktivieren, die mit einer einzelnen Infill-Linie verbunden sind." + +msgid "0 (no open anchors)" +msgstr "0 (keine offenen Anker)" + +msgid "1000 (unlimited)" +msgstr "1000 (unbegrenzt)" + +msgid "Maximum length of the infill anchor" +msgstr "Maximale Länge des Infill-Ankers" + +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 "Verbindet eine Infill-Linie mit einem kurzen Segment eines zusätzlichen Perimeters mit einem internen Perimeter. Wenn sie als Prozentsatz ausgedrückt wird (Beispiel: 15%), wird sie über die Breite der Infill-Extrusion berechnet. OrcaSlicer versucht, zwei nahe beieinander liegende Infill-Linien mit einem kurzen Perimetersegment zu verbinden. Wenn kein solches Perimetersegment gefunden wird, das kürzer als dieser Parameter ist, wird die Infill-Linie nur an einer Seite mit einem Perimetersegment verbunden und die Länge des genommenen Perimetersegments wird auf infill_anchor begrenzt, aber nicht länger als dieser Parameter. Setzen Sie diesen Parameter auf Null, um die Verankerung zu deaktivieren." + +msgid "0 (Simple connect)" +msgstr "0 (Einfache Verbindung)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14753,6 +14913,18 @@ msgstr "Direktantrieb" msgid "Bowden" msgstr "Bowden" +msgid "Enable filament dynamic map" +msgstr "Dynamische Filamentzuordnung aktivieren" + +msgid "Enable dynamic filament mapping during print." +msgstr "Dynamische Filamentzuordnung während des Drucks aktivieren." + +msgid "Has filament switcher" +msgstr "Hat Filamentwechsler" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "Der Drucker verfügt über eine Filamentwechsler-Hardware (z. B. AMS)." + msgid "Extra length on restart" msgstr "Zusätzliche Länge beim Neustart" @@ -14807,6 +14979,10 @@ msgstr "Ausgerichtet" msgid "Aligned back" msgstr "Ausgerichtet hinten" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Zurück" + msgid "Random" msgstr "Zufall" @@ -15188,6 +15364,9 @@ msgstr "Risse, die kleiner als das 2-fache des Lückenschlussradius sind, werden msgid "Slicing Mode" msgstr "Slicing-Modus" +msgid "Other" +msgstr "Sonstiges" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Verwenden Sie \"Gerade-ungerade\" für 3DLabPrint-Flugzeugmodelle. Verwenden Sie \"Löcher schließen\", um alle Löcher im Modell zu schließen." @@ -15554,9 +15733,6 @@ msgstr "" "\n" "Diese Option basiert auf der Firmware, die die M191- und M141-Befehle entweder über Makros oder nativ unterstützt und wird normalerweise verwendet, wenn ein aktiver Druckraumheizer installiert ist." -msgid "Chamber temperature" -msgstr "Druckraum Temperatur" - 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" @@ -15570,6 +15746,17 @@ msgstr "" "\n" "Wenn diese Option aktiviert ist, wird auch eine G-Code-Variable namens chamber_temperature gesetzt, die verwendet werden kann, um die gewünschte Druckraumtemperatur an Ihr Druckstart-Makro oder ein Wärmespeicher-Makro weiterzugeben, wie z.B. PRINT_START (andere Variablen) CHAMBER_TEMP=[chamber_temperature]. Dies kann nützlich sein, wenn Ihr Drucker die Befehle M141/M191 nicht unterstützt oder wenn Sie das Wärmespeichern im Druckstart-Makro behandeln möchten, wenn kein aktiver Druckraumheizer installiert ist." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Düsentemperatur nach der ersten Schicht" @@ -15615,22 +15802,6 @@ msgstr "Dicke der oberen Schale" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Die Anzahl der oberen festen Schichten wird beim Slicen erhöht, wenn die obere Schalenstärke dünner als dieser Wert ist. Dies kann verhindern, dass die Schale zu dünn wird, wenn eine geringe Schichthöhe verwendet wird. 0 bedeutet, dass diese Einstellung deaktiviert ist und die Dicke der oberen Schale absolut durch die oberen Schalenschichten bestimmt wird." -msgid "Top surface density" -msgstr "Dichte der oberen Oberfläche" - -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 "Dichte der oberen Oberflächenschicht. Ein Wert von 100 % erzeugt eine vollständig massive, glatte obere Schicht. Eine Reduzierung dieses Wertes führt zu einer strukturierten oberen Oberfläche, abhängig vom gewählten Oberflächenmuster. Ein Wert von 0 % führt dazu, dass nur die Wände der oberen Schicht erstellt werden. Diese Einstellung dient ästhetischen oder funktionalen Zwecken und nicht zur Behebung von Problemen wie Überextrusion." - -msgid "Bottom surface density" -msgstr "Dichte der unteren Oberfläche" - -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 "" -"Dichte der unteren Oberflächenschicht. Diese Einstellung dient ästhetischen oder funktionalen Zwecken und nicht zur Behebung von Problemen wie Überextrusion.\n" -"ACHTUNG: Eine Verringerung dieses Wertes kann die Haftung am Druckbett negativ beeinflussen." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Eilgeschwindigkeit, wenn nicht extrudiert wird." @@ -15878,6 +16049,14 @@ msgstr "Polyhole verdrehen" msgid "Rotate the polyhole every layer." msgstr "Polyhole in jeder Schicht drehen." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-Code Vorschaubilder" @@ -16024,9 +16203,6 @@ msgstr "Mehrere STLs exportieren" msgid "Export the objects as multiple STLs to directory." msgstr "Exportieren Sie die Objekte als mehrere STLs in ein Verzeichnis" -msgid "Slice" -msgstr "Slice" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Slicen sie die Druckplatten: 0-alle Druckplatten; i-Druckplatte i; andere ungültig" @@ -18280,6 +18456,132 @@ msgstr "Anmelden/Testen" msgid "Connection to printers connected via the print host failed." msgstr "Die Verbindung zu den über den Druck-Host verbundenen Druckern ist fehlgeschlagen." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS Cloud-Upload-Optionen" @@ -18362,6 +18664,19 @@ msgstr "Verbindung zu MKS funktioniert korrekt." msgid "Could not connect to MKS" msgstr "Konnte keine Verbindung zu MKS herstellen" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Verbindung zu OctoPrint funktioniert korrekt." @@ -19112,6 +19427,12 @@ msgstr "Anzahl der dreieckigen Facetten" msgid "Calculating, please wait..." msgstr "Berechnung läuft, bitte warten..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "Preset-Bündel" @@ -19522,6 +19843,110 @@ msgstr "" "Verwerfungen vermeiden\n" "Wussten Sie, dass beim Drucken von Materialien, die zu Verwerfungen neigen, wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die Wahrscheinlichkeit von Verwerfungen verringert werden kann?" +#~ msgid "Print" +#~ msgstr "aktuelle Platte drucken" + +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Objektkoordinaten" + +#~ msgid "World coordinates" +#~ msgstr "Weltkoordinaten" + +#~ msgid "Translate(Relative)" +#~ msgstr "Verschieben (relativ)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Rotation (absolut)" + +#~ msgid "Part coordinates" +#~ msgstr "Teile Koordinaten" + +#~ 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 "" +#~ "Cloud-Synchronisationskonflikt: Dieses Profil hat eine neuere Version in OrcaCloud.\n" +#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." + +#~ 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 "" +#~ "Cloud-Synchronisationskonflikt: Ein Profil mit diesem Namen existiert bereits in OrcaCloud.\n" +#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Cloud-Synchronisationskonflikt: Ein Profil mit demselben Namen wurde zuvor aus der Cloud gelöscht.\n" +#~ "Delete löscht Ihr lokales Profil. Force Push überschreibt es mit Ihrem lokalen Profil." + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Cloud-Synchronisationskonflikt: Es gab einen unerwarteten oder nicht identifizierten Profilkonflikt.\n" +#~ "Pull lädt die Cloud-Kopie herunter. Force Push überschreibt sie mit Ihrem lokalen Profil." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Adaptives PA für Überhänge aktivieren (experimentell)" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "Aktivieren Sie adaptives PA auch für Überhänge sowie bei Flussänderungen innerhalb desselben Features. Dies ist eine experimentelle Option, da sie bei ungenau eingestelltem PA-Profil zu Uniformitätsproblemen auf den äußeren Oberflächen vor und nach Überhängen führen kann.\n" +#~ "Nicht kompatibel mit Prusa-Druckern, da diese pausieren, um PA-Änderungen zu verarbeiten, was zu Verzögerungen und Defekten führt." + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Pressure Advance für Brücken" + +#~ 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-Wert für Brücken. Auf 0 setzen, um zu deaktivieren.\n" +#~ "\n" +#~ "Ein niedrigerer PA-Wert beim Drucken von Brücken hilft, das Auftreten einer leichten Unterextrusion unmittelbar nach Brücken zu reduzieren. Dies wird durch den Druckabfall in der Düse beim Drucken in der Luft verursacht, und ein niedrigerer PA hilft, dem entgegenzuwirken." + +#~ msgid "Filament Sync Options" +#~ msgstr "Filament-Synchronisierungsoptionen" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Experimentell) Behalte bemalte Funktionen nach Mesh-Änderung bei" + +#~ msgid "Network plug-in" +#~ msgstr "Netzwerk-Plugin" + +#~ msgid "View control settings" +#~ msgstr "Ansicht-Steuerungseinstellungen" + +#~ msgid "Rotate view" +#~ msgstr "Drehen der Ansicht" + +#~ msgid "Pan view" +#~ msgstr "Pan-Ansicht" + +#~ msgid "Zoom view" +#~ msgstr "Ansicht zoomen" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Scrollrichtung beim Zoomen umkehren" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Links: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Rechts: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Netzwerk-Plugin aktivieren" @@ -20322,9 +20747,6 @@ msgstr "" #~ msgid "Automatic calibration only supports cases where the left and right nozzle diameters are identical." #~ msgstr "Die automatische Kalibrierung unterstützt nur Fälle, in denen die linken und rechten Düsendurchmesser identisch sind." -#~ msgid "Learn more" -#~ msgstr "Mehr erfahren" - #~ msgid "✖ Skipped %1%: %2%, same file\n" #~ msgstr "✖ %1% übersprungen: %2%, gleiche Datei\n" @@ -21332,10 +21754,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Abwählen" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Skalieren" - #~ msgid "Lift Z Enforcement" #~ msgstr "Z-Höhe einhalten" diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po index cb5d1552ec..b314b99808 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2026-06-17 15:44-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: \n" @@ -321,6 +321,7 @@ msgstr "" msgid "Optimize orientation" msgstr "" +msgctxt "Verb" msgid "Scale" msgstr "" @@ -330,6 +331,7 @@ msgstr "" msgid "Error: Please close all toolbar menus first" msgstr "" +msgctxt "inches" msgid "in" msgstr "" @@ -363,6 +365,9 @@ msgstr "" msgid "Object operations" msgstr "" +msgid "Scale" +msgstr "" + msgid "Volume operations" msgstr "" @@ -384,25 +389,32 @@ msgstr "" msgid "Reset rotation" msgstr "" -msgid "Object coordinates" +msgid "World" msgstr "" -msgid "World coordinates" +msgid "Object" msgstr "" -msgid "Translate(Relative)" +msgid "Part" +msgstr "" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" 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" +msgctxt "Noun" +msgid "Scale" msgstr "" #. TRN - Input label. Be short as possible @@ -508,12 +520,6 @@ msgstr "" msgid "Spacing" msgstr "" -msgid "Part" -msgstr "" - -msgid "Object" -msgstr "" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1671,6 +1677,20 @@ msgstr "" msgid "Untitled" msgstr "" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1698,6 +1718,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1796,23 +1822,30 @@ 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 "" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1821,6 +1854,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1888,7 +1927,8 @@ 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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2098,6 +2138,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3460,6 +3503,7 @@ msgstr "" msgid "Save" msgstr "" +msgctxt "Navigation" msgid "Back" msgstr "" @@ -3891,6 +3935,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4738,6 +4786,7 @@ msgstr "" msgid "Color change" msgstr "" +msgctxt "Noun" msgid "Print" msgstr "" @@ -4893,11 +4942,15 @@ msgstr "" msgid "Align to Y axis" msgstr "" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "" + +msgctxt "Camera View" msgid "Left" msgstr "" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "" @@ -4946,6 +4999,12 @@ msgstr "" msgid "Stats" msgstr "" +msgid "Slice" +msgstr "" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "" @@ -4970,6 +5029,9 @@ msgstr "" msgid "Outline" msgstr "" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5205,6 +5267,10 @@ msgstr "" msgid "Export G-code file" msgstr "" +msgctxt "Verb" +msgid "Print" +msgstr "" + msgid "Export plate sliced file" msgstr "" @@ -7484,6 +7550,45 @@ msgstr "" msgid "Choose Download Directory" 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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7538,12 +7643,6 @@ 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 "" @@ -7574,6 +7673,12 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "" + msgid "Maximum recent files" msgstr "" @@ -7592,10 +7697,51 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" +msgid "STEP importing: linear deflection" msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." msgstr "" msgid "Preset" @@ -7628,6 +7774,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -7640,18 +7792,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -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 "" - msgid "Behaviour" msgstr "" @@ -7876,18 +8016,6 @@ 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 "" @@ -7900,6 +8028,15 @@ msgstr "" msgid "Color only" 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 "Bambu network plug-in" msgstr "" @@ -7912,30 +8049,6 @@ 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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "" @@ -7978,7 +8091,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -7986,12 +8108,6 @@ 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 "" @@ -8018,24 +8134,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -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 "" @@ -8051,24 +8149,6 @@ 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 "Reverse scroll direction while zooming" -msgstr "" - msgid "Enable SSL(MQTT)" msgstr "" @@ -8754,6 +8834,12 @@ msgstr "" msgid "Search in preset" msgstr "" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "" @@ -9020,6 +9106,18 @@ msgstr "" msgid "Print chamber temperature" msgstr "" +msgid "Chamber temperature" +msgstr "" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "" @@ -9329,11 +9427,21 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, c-format, boost-format -msgid "Right: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." @@ -9351,7 +9459,7 @@ msgstr "" msgid "Transfer or discard changes" msgstr "" -msgid "Old value" +msgid "Old Value" msgstr "" msgid "New Value" @@ -9462,6 +9570,12 @@ msgstr "" msgid "Capabilities" msgstr "" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "" @@ -10645,6 +10759,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "" @@ -11405,6 +11525,23 @@ msgstr "" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "" +msgid "Acceleration of travel moves." +msgstr "" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +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 "" + msgid "Default filament profile" msgstr "" @@ -11582,12 +11719,26 @@ msgstr "" msgid "Octagram Spiral" msgstr "" +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 "" + msgid "Bottom surface pattern" msgstr "" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "" +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 "" + msgid "Internal solid infill pattern" msgstr "" @@ -11612,6 +11763,18 @@ msgstr "" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "" @@ -11764,21 +11927,25 @@ msgid "" "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." msgstr "" -msgid "Enable adaptive pressure advance for overhangs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." -msgstr "" - -msgid "Pressure advance for bridges" -msgstr "" - -msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\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." +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" + +msgid "" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "" msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." @@ -11841,18 +12008,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12147,6 +12302,22 @@ msgstr "" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "" @@ -12177,7 +12348,7 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12244,85 +12415,13 @@ msgstr "" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Lateral lattice angle 2" -msgstr "" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Infill overhang angle" -msgstr "" - -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 "" - -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 "" - -msgid "0 (no open anchors)" -msgstr "" - -msgid "1000 (unlimited)" -msgstr "" - -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 "" - -msgid "0 (Simple connect)" -msgstr "" - -msgid "Acceleration of inner walls." -msgstr "" - -msgid "Acceleration of travel moves." -msgstr "" - msgid "This is the 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 "" - -msgid "mm/s² or %" +msgid "Acceleration of inner walls." 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." @@ -12334,14 +12433,6 @@ msgstr "" msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "" - msgid "Enable accel_to_decel" msgstr "" @@ -12429,6 +12520,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -12905,6 +13007,69 @@ msgstr "" msgid "Probing exclude area of clumping." msgstr "" +msgid "Lateral lattice angle 1" +msgstr "" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Lateral lattice angle 2" +msgstr "" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Infill overhang angle" +msgstr "" + +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 "" + +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 "" + +msgid "0 (no open anchors)" +msgstr "" + +msgid "1000 (unlimited)" +msgstr "" + +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 "" + +msgid "0 (Simple connect)" +msgstr "" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -13706,6 +13871,18 @@ msgstr "" msgid "Bowden" 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 "" + msgid "Extra length on restart" msgstr "" @@ -13757,6 +13934,9 @@ msgstr "" msgid "Aligned back" msgstr "" +msgid "Back" +msgstr "" + msgid "Random" msgstr "" @@ -14100,6 +14280,9 @@ msgstr "" msgid "Slicing Mode" msgstr "" +msgid "Other" +msgstr "" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -14433,9 +14616,6 @@ msgid "" "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 "" -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" @@ -14444,6 +14624,17 @@ msgid "" "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 "" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + msgid "Nozzle temperature after the first layer" msgstr "" @@ -14483,20 +14674,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "" -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 "" - -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 "" - msgid "This is the speed at which traveling is done." msgstr "" @@ -14710,6 +14887,14 @@ msgstr "" msgid "Rotate the polyhole every layer." msgstr "" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "" @@ -14848,9 +15033,6 @@ msgstr "" msgid "Export the objects as multiple STLs to directory." msgstr "" -msgid "Slice" -msgstr "" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "" @@ -16939,6 +17121,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17021,6 +17329,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -17762,6 +18083,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po index 786e43696e..a0cdb98728 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: Ian A. Bassi <>\n" "Language-Team: \n" @@ -90,11 +90,9 @@ msgstr "Versión:" msgid "Latest version" msgstr "Última versión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support Painting" msgstr "Pintar soportes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Apply" msgstr "Aplicar" @@ -104,7 +102,6 @@ msgstr "Solo en voladizos resaltados" msgid "Erase all" msgstr "Borrar todo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Highlight overhangs" msgstr "Resaltar las zonas de voladizos" @@ -175,7 +172,6 @@ msgstr "No auto soportes" msgid "Done" msgstr "Hecho" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support generated" msgstr "Soportes generados" @@ -191,7 +187,6 @@ msgstr "Pintar soportes" msgid "Gizmo-Place on Face" msgstr "Herramienta de selección de faceta como base" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Lay on Face" msgstr "Seleccionar faceta como base" @@ -199,7 +194,6 @@ msgstr "Seleccionar faceta como base" msgid "Filament count exceeds the maximum number that painting tool supports. Only the first %1% filaments will be available in painting tool." msgstr "El recuento de filamentos supera el número máximo que admite la herramienta de pintura. Sólo los primeros %1% filamentos estarán disponibles en la herramienta de pintura." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Color Painting" msgstr "Pintar colores" @@ -283,31 +277,31 @@ msgid "Color painting editing" msgstr "Edición de pintura de colores" msgid "Paint-on fuzzy skin" -msgstr "Pintar piel difusa" +msgstr "Pintar piel rugosa" msgid "Add fuzzy skin" -msgstr "Agregar piel difusa" +msgstr "Agregar piel rugosa" msgid "Remove fuzzy skin" -msgstr "Quitar piel difusa" +msgstr "Quitar piel rugosa" msgid "Reset selection" msgstr "Reiniciar selección" msgid "Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!" -msgstr "Advertencia: ¡Piel difusa está desactivada, la piel difusa pintada no tendrá efecto!" +msgstr "Advertencia: ¡Piel rugosa está desactivada, la piel rugosa pintada no tendrá efecto!" msgid "Enable painted fuzzy skin for this object" -msgstr "Habilitar piel difusa pintada para este objeto" +msgstr "Habilitar piel rugosa pintada para este objeto" msgid "Entering Paint-on fuzzy skin" -msgstr "Entrando al mecanismo de pintar piel difusa" +msgstr "Entrando al mecanismo de pintar piel rugosa" msgid "Leaving Paint-on fuzzy skin" -msgstr "Saliendo del mecanismo de pintar piel difusa" +msgstr "Saliendo del mecanismo de pintar piel rugosa" msgid "Paint-on fuzzy skin editing" -msgstr "Pintar piel difusa" +msgstr "Pintar piel rugosa" msgid "Move" msgstr "Mover" @@ -327,6 +321,7 @@ msgstr "Herramienta de rotación" msgid "Optimize orientation" msgstr "Optimizar orientación" +msgctxt "Verb" msgid "Scale" msgstr "Escalar" @@ -336,8 +331,9 @@ msgstr "Ejes de escalado" msgid "Error: Please close all toolbar menus first" msgstr "Error: Por favor, cierre primero todos los menús de la barra de herramientas" +msgctxt "inches" msgid "in" -msgstr "pulg" +msgstr "\"" msgid "mm" msgstr "mm" @@ -366,57 +362,60 @@ msgstr "Girar (relativo)" msgid "Scale ratios" msgstr "Factor de escalado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object operations" msgstr "Operaciones con objetos" -# TODO: Review, changed by lang refactor. PR 14254 +msgid "Scale" +msgstr "Escalar" + msgid "Volume operations" msgstr "Operaciones de volumen" msgid "Translate" msgstr "Traducir" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Group operations" msgstr "Operaciones de grupo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set orientation" msgstr "Establecer orientación" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set scale" msgstr "Establecer escala" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset position" msgstr "Reiniciar posición" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset rotation" msgstr "Reiniciar rotación" -msgid "Object coordinates" -msgstr "Coordenadas de objeto" +msgid "World" +msgstr "Global" -msgid "World coordinates" -msgstr "Coordenadas globales" +msgid "Object" +msgstr "Objeto" -msgid "Translate(Relative)" -msgstr "Traslación (relativo)" +msgid "Part" +msgstr "Pieza" + +msgid "Relative" +msgstr "Relativo" + +msgid "Coordinate system used for transform actions." +msgstr "Sistema de coordenadas utilizado para las acciones de transformación." + +msgid "Absolute" +msgstr "Absoluto" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Restablecer la rotación actual al valor que tenía al abrir la herramienta de rotación." -msgid "Rotate (absolute)" -msgstr "Rotar (absoluto)" - msgid "Reset current rotation to real zeros." msgstr "Restablecer la rotación actual a ceros reales." -msgid "Part coordinates" -msgstr "Coordenadas de la pieza" +msgctxt "Noun" +msgid "Scale" +msgstr "Escala" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +520,6 @@ msgstr "Brecha" msgid "Spacing" msgstr "Separación" -msgid "Part" -msgstr "Pieza" - -msgid "Object" -msgstr "Objeto" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -688,7 +681,6 @@ msgstr "Conector" msgid "Cut by Plane" msgstr "Corte por plano" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" msgstr "La operación de corte ha resultado en bordes no plegados, ¿desea repararlos ahora?" @@ -757,9 +749,8 @@ msgstr "%d triángulos" msgid "Show wireframe" msgstr "Mostrar estructura de alambre" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to apply when processing preview" -msgstr "No se puede aplicar en la vista previa del proceso." +msgstr "No se pudo aplicar durante el procesamiento de la vista previa" msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operación ya cancelada. Por favor, espere unos segundos." @@ -782,7 +773,6 @@ msgstr "Pintar costura" msgid "Remove selection" msgstr "Borrar selección" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Entering seam painting" msgstr "Entrando en la sección de pintado de costura" @@ -806,7 +796,6 @@ msgstr "Espacio de texto" msgid "Angle" msgstr "Ángulo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Embedded depth" msgstr "" "Profundidad\n" @@ -1590,6 +1579,9 @@ msgid "" "because they are restricted to the bed \n" "and only parts can be lifted." msgstr "" +"Se recomienda primero ensamblar los objetos,\n" +"ya que están limitados a la cama \n" +"y solo se pueden levantar las partes." msgid "Face and face assembly" msgstr "Montaje de cara y cara" @@ -1609,7 +1601,6 @@ msgstr "Alt+" msgid "Notice" msgstr "Aviso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Undefined" msgstr "Indefinido" @@ -1632,11 +1623,9 @@ msgstr "Filamento" msgid "Machine" msgstr "Máquina" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The configuration package was loaded, but some values were not recognized." msgstr "El paquete de configuración fue cargado, pero algunos valores no fueron reconocidos." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The configuration file “%1%” was loaded, but some values were not recognized." msgstr "Se ha cargado el archivo de configuración \"%1%\", pero no se han reconocido algunos valores." @@ -1711,6 +1700,25 @@ msgstr "OrcaSlicer recibió una notificación de excepción no controlada: %1%" msgid "Untitled" msgstr "Sin título" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Desde la versión 2.4.0, OrcaSlicer sincroniza los perfiles de usuario a través de Orca Cloud en lugar de Bambu Cloud.\n" +"\n" +"Para migrar tus perfiles existentes, inicia sesión en Orca Cloud y se transferirán automáticamente. Para obtener más información sobre cómo OrcaSlicer almacena y sincroniza tus perfiles, o para migrar tus perfiles manualmente, consulta nuestra wiki.\n" +"\n" +"Si no usabas Bambu Cloud para sincronizar perfiles, este cambio no te afecta y puedes ignorar este mensaje con seguridad." + +msgid "Profile syncing change" +msgstr "Cambio en la sincronización de perfiles" + +msgid "Learn more" +msgstr "Más información" + msgid "Reloading network plug-in..." msgstr "Recargando el complemento de red..." @@ -1742,6 +1750,15 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"No se pudo instalar Microsoft WebView2 Runtime.\n" +"Algunas funciones, incluido el asistente de configuración, pueden aparecer en blanco hasta que se instale.\n" +"Instálelo manualmente desde https://developer.microsoft.com/microsoft-edge/webview2/ y reinicie Orca Slicer." + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "La ruta de recursos no existe o no es un directorio: %s" @@ -1821,7 +1838,6 @@ msgstr "Ext" msgid "Some presets are modified." msgstr "Algunos perfiles fueron modificados." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project, discard, or save changes as new presets." msgstr "Puede mantener los perfiles modificados en el nuevo proyecto, descartar o guardar los cambios como nuevos perfiles." @@ -1846,33 +1862,40 @@ msgstr "Abrir proyecto" 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 "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." -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 "" -"Conflicto de sincronización en la nube: este perfil tiene una versión más reciente en OrcaCloud.\n" -"«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." +msgid "Cloud sync conflict:" +msgstr "Conflicto de sincronización con la nube:" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "Conflicto de sincronización con la nube para el perfil \"%s\":" msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Conflicto de sincronización en la nube: ya existe un perfil con este nombre en OrcaCloud.\n" -"«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." +"Este perfil tiene una versión más reciente en OrcaCloud.\n" +"Descargar obtiene la copia de la nube. Forzar envío la sobrescribe con tu perfil local." msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with this name already exists in OrcaCloud.\n" +"Pull downloads the cloud copy. Force push overwrites it with your local preset." +msgstr "" +"Ya existe un perfil con este nombre en OrcaCloud.\n" +"Descargar obtiene la copia de la nube. Forzar envío la sobrescribe con tu perfil local." + +msgid "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"Conflicto de sincronización en la nube: ya se ha eliminado de la nube un perfil con el mismo nombre.\n" -"Al hacer clic en «Eliminar», se borrará tu perfil local. Al hacer clic en «Forzar envío», se sobrescribirá con tu perfil local." +"Un perfil con el mismo nombre se eliminó anteriormente de la nube.\n" +"Eliminar borrará tu perfil local. Forzar envío la sobrescribe con tu perfil local." msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Conflicto de sincronización en la nube: se ha producido un conflicto inesperado o no identificado con los perfiles.\n" -"«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." +"Se produjo un conflicto de perfil inesperado o no identificado.\n" +"Descargar obtiene la copia de la nube. Forzar envío la sobrescribe con tu perfil local." msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1881,6 +1904,14 @@ msgstr "" "Forzar el envío sobrescribirá la copia en la nube con los cambios que hayas realizado en los ajustes preestablecidos locales.\n" "¿Deseas continuar?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" +"Forzar envío sobrescribirá la copia en la nube del perfil \"%s\" con tus cambios locales.\n" +"¿Quieres continuar?" + msgid "Resolve cloud sync conflict" msgstr "Resolver conflictos de sincronización con la nube" @@ -1960,8 +1991,9 @@ msgstr "El número de perfiles de usuario almacenados en la nube ha superado el msgid "Sync user presets" msgstr "Sincronizar perfiles de usuario" -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 "El contenido del perfil es demasiado grande para sincronizarlo con la nube (supera 1 MB). Reduce el tamaño del perfil eliminando las configuraciones personalizadas o utilízalo solo de forma local." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "El perfil \"%s\" es demasiado grande para sincronizarlo con la nube (supera 1 MB). Reduce el tamaño del perfil eliminando las configuraciones personalizadas o utilízalo solo de forma local." #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2034,7 +2066,6 @@ msgstr "Renombrar" msgid "Orca Slicer GUI initialization failed" msgstr "Ha fallado la inicialización de la interfaz gráfica de Orca Slicer" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Fatal error, exception: %1%" msgstr "Error fatal, excepción detectada: %1%" @@ -2060,22 +2091,18 @@ msgstr "Velocidad" msgid "Strength" msgstr "Fuerza" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top solid layers" -msgstr "Capas solidas superiores" +msgstr "Capas sólidas superiores" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top minimum shell thickness" msgstr "Espesor mínimo de la cubierta superior" msgid "Top Surface Density" msgstr "Densidad de superficie superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom solid layers" msgstr "Capas sólidas inferiores" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom minimum shell thickness" msgstr "Espesor mínimo de la cubierta inferior" @@ -2085,14 +2112,12 @@ msgstr "Densidad de superficie inferior" msgid "Ironing" msgstr "Alisado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fuzzy skin" -msgstr "Superficie rugosa" +msgstr "Piel rugosa" msgid "Extruders" msgstr "Extrusores" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Extrusion width" msgstr "Ancho de extrusión" @@ -2102,23 +2127,18 @@ msgstr "Opciones de limpieza" msgid "Bed adhesion" msgstr "Adhesión a la cama" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Part" msgstr "Añadir pieza" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Negative Part" msgstr "Añadir pieza negativa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Modifier" msgstr "Añadir modificador" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Blocker" msgstr "Añadir bloqueo de soportes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Enforcer" msgstr "Añadir forzado de soportes" @@ -2182,6 +2202,9 @@ msgstr "Cubo Orca" msgid "OrcaSliced Combo" msgstr "Combo OrcaSliced" +msgid "Orca Badge" +msgstr "Insignia de Orca" + msgid "Orca Tolerance Test" msgstr "Test de tolerancia Orca" @@ -2218,15 +2241,12 @@ msgstr "Sugerencia" msgid "Text" msgstr "Texto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height Range Modifier" msgstr "Modificador de rango de altura" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Settings" msgstr "Añadir ajustes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Change Type" msgstr "Cambiar tipo" @@ -2242,11 +2262,9 @@ msgstr "Forzado de Soportes" msgid "Change part type" msgstr "Cambiar el tipo de pieza" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set as An Individual Object" msgstr "Cambiar a objeto individual" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set as Individual Objects" msgstr "Cambiar a objetos individuales" @@ -2265,7 +2283,6 @@ msgstr "Dejar caer automáticamente" msgid "Automatically drops the selected object to the build plate." msgstr "Deja caer automáticamente el objeto seleccionado sobre la cama de impresión." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fix Model" msgstr "Reparar el modelo" @@ -2336,19 +2353,15 @@ msgstr "Purgar en los soportes de objetos" msgid "Edit in Parameter Table" msgstr "Editar en la Tabla de Parámetros" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Inches" msgstr "Convertir de pulgadas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Inch" msgstr "Restaurar a pulgadas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Meters" msgstr "Convertir de metros" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Meter" msgstr "Restaurar a metros" @@ -2364,31 +2377,24 @@ msgstr "Operaciones booleanas de malla" msgid "Mesh boolean operations including union and subtraction" msgstr "Operaciones booleanas de malla incluyendo la unión y substracción" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along X Axis" msgstr "A lo largo del eje X" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the X Axis" msgstr "Reflejar a lo largo del eje X" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Y Axis" msgstr "A lo largo del eje Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Y Axis" msgstr "Reflejar a lo largo del eje Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Z Axis" msgstr "A lo largo del eje Z" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Z Axis" msgstr "Reflejar a lo largo del eje Z" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror object" msgstr "Reflejar objeto" @@ -2419,14 +2425,12 @@ msgstr "Añadir Modelos" msgid "Show Labels" msgstr "Mostrar Etiquetas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Objects" msgstr "En objetos" msgid "Split the selected object into multiple objects" msgstr "Dividir el objeto seleccionado en varios objetos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Parts" msgstr "En piezas" @@ -2454,7 +2458,6 @@ msgstr "Fusionar con" msgid "Delete this filament" msgstr "Eliminar este filamento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Select All" msgstr "Seleccionar Todo" @@ -2467,7 +2470,6 @@ msgstr "Seleccionar todas las camas" msgid "Select all objects on all plates" msgstr "Seleccionar todos los objetos de todas las camas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete All" msgstr "Borrar todo" @@ -2600,25 +2602,21 @@ msgstr[1] "%1$d contornos con geometría incorrecta" msgid "Click the icon to repair model object" msgstr "Haga clic en el icono para reparar modelo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object settings" msgstr "Haga clic con el botón derecho del ratón en el icono para descartar la configuración del objeto" msgid "Click the icon to reset all settings of the object" msgstr "Haga clic en el icono para restablecer todos los ajustes del objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object printable property" msgstr "Haga clic con el botón derecho en el icono para descartar la propiedad de imprimible del objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to toggle printable properties of the object" msgstr "Haga clic en el icono para alternar la propiedad de imprimible del objeto" msgid "Click the icon to edit support painting of the object" msgstr "Haga clic en el icono para editar el pintado de apoyos del objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to edit color painting for the object" msgstr "Haga clic en el icono para editar el pintado de colores del objeto" @@ -2644,7 +2642,7 @@ msgid "Switch to per-object setting mode to edit process settings of selected ob msgstr "Cambiar al modo de ajuste a modo por objeto para editar los ajustes de proceso de los objetos." msgid "Remove paint-on fuzzy skin" -msgstr "Eliminar la piel difusa pintada" +msgstr "Eliminar la piel rugosa pintada" msgid "Delete connector from object which is a part of cut" msgstr "Borrar conector del objeto el cual es parte del corte" @@ -2658,7 +2656,6 @@ msgstr "Borrar volumen negativo del objeto el cual es parte del corte" msgid "To save cut correspondence you can delete all connectors from all related objects." msgstr "Para salvar la correspondencia de corte puedes borrar todos los conectores de los objetos relacionados." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This action will break a cut correspondence.\n" "After that, model consistency can't be guaranteed.\n" @@ -2691,15 +2688,12 @@ msgstr "Manipulación de objeto" msgid "Group manipulation" msgstr "Manipulación de grupo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object Settings to Modify" msgstr "Ajustes de objeto a modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Part Settings to Modify" msgstr "Ajustes de pieza a modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer Range Settings to Modify" msgstr "Ajustes de capa a modificar" @@ -2727,9 +2721,8 @@ msgstr "Si el primer elemento seleccionado es un objeto, el segundo también deb msgid "If the first selected item is a part, the second should be a part in the same object." msgstr "Si el primer elemento seleccionado es una pieza, el segundo debe ser una pieza en el mismo objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The type of the last solid object part cannot be changed." -msgstr "El tipo de la última pieza del objeto sólido no debe cambiarse." +msgstr "El tipo de la última pieza del objeto sólido no puede cambiarse." msgid "Type:" msgstr "Tipo:" @@ -2846,21 +2839,17 @@ msgstr "Tipo de línea" msgid "1x1 Grid: %d mm" msgstr "Cuadrícula 1x1: %d mm" -# TODO: Review, changed by lang refactor. PR 14254 msgid "More" msgstr "Más" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open Preferences" -msgstr "Abrir Preferencias." +msgstr "Abrir Preferencias" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open next tip" -msgstr "Abrir siguiente consejo." +msgstr "Abrir siguiente consejo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open documentation in web browser" -msgstr "Abrir la Documentación en el navegador." +msgstr "Abrir la Documentación en el navegador" msgid "Color" msgstr "Color" @@ -2889,13 +2878,11 @@ msgstr "G-Code personalizado" msgid "Enter Custom G-code used on current layer:" msgstr "Inserta el G-Code personalizado usado en la capa actual:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Jump to layer" msgstr "Salta a la Capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please enter the layer number." -msgstr "Por favor, introduce el número de capa" +msgstr "Por favor, introduce el número de capa." msgid "Add Pause" msgstr "Añadir Pausa" @@ -2972,14 +2959,12 @@ msgstr "Conectando..." msgid "Auto Refill" msgstr "Auto Rellenado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Load" msgstr "Cargar" msgid "Unload" msgstr "Descarga" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." msgstr "Elija una ranura AMS y pulse el botón \"Cargar\" o \"Descargar\" para cargar o descargar automáticamente el filamento." @@ -3089,7 +3074,6 @@ msgstr "Calentar la boquilla" msgid "Cut filament" msgstr "Cortar filamento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Pull back the current filament" msgstr "Extraer el filamento actual" @@ -3129,7 +3113,6 @@ msgstr "Todos los elementos seleccionados..." msgid "No matching items..." msgstr "No se han encontrado resultados..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deselect All" msgstr "Deseleccionar Todo" @@ -3158,7 +3141,7 @@ msgid "Developer mode" msgstr "Modo de desarrollador" msgid "Launch troubleshoot center" -msgstr "" +msgstr "Abrir el centro de resolución de problemas" msgid "" "All the selected objects are on a locked plate.\n" @@ -3186,7 +3169,6 @@ msgstr "Organizando" msgid "Arranging canceled." msgstr "Organización cancelada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Arranging complete, but some items were not able to be arranged. Reduce spacing and try again." msgstr "El posicionamiento está hecho, pero hay artículos sin empaquetar. Reduzca el espaciado y vuelva a intentarlo." @@ -3254,7 +3236,6 @@ msgstr "Fallo en el inicio de sesión" msgid "Please check the printer network connection." msgstr "Por favor, compruebe la conexión de red de la impresora." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Abnormal print file data: please slice again." msgstr "Datos de archivo de impresión anormales. Vuelva a laminar." @@ -3267,7 +3248,6 @@ msgstr "Se ha agotado el tiempo de carga. Compruebe el estado de la red e intén msgid "Cloud service connection failed. Please try again." msgstr "Ha fallado la conexión con el servicio de la nube. Por favor, inténtelo de nuevo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice again." msgstr "No se ha encontrado el archivo de impresión; por favor, lamine de nuevo." @@ -3280,18 +3260,15 @@ msgstr "Fallo enviando el trabajo de impresión. Por favor inténtelo otra vez." msgid "Failed to upload file to ftp. Please try again." msgstr "No se ha podido cargar el archivo en el ftp. Por favor, inténtelo de nuevo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Check the current status of the Bambu Lab server by clicking on the link above." msgstr "Compruebe el estado actual del servidor Bambu haciendo clic en el enlace anterior." msgid "The size of the print file is too large. Please adjust the file size and try again." msgstr "El tamaño del archivo de impresión es demasiado grande. Ajuste el tamaño del archivo e inténtalo de nuevo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice it again and send it for printing." msgstr "Archivo de impresión no encontrado; por favor, lamínelo de nuevo y envíelo para imprimir." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Failed to upload print file via FTP. Please check the network status and try again." msgstr "No se ha podido cargar el archivo de impresión a través de FTP. Compruebe el estado de la red e inténtelo de nuevo." @@ -3343,7 +3320,6 @@ msgstr "Se ha producido un error desconocido con el estado del almacenamiento. I msgid "Sending G-code file over LAN" msgstr "Enviando el archivo de G-Code vía red local" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sending G-code file to SD card" msgstr "Enviando el archivo de G-Code a la tarjeta SD" @@ -3414,7 +3390,6 @@ msgstr "Tiempo restante: %dmin%ds" msgid "Importing SLA archive" msgstr "Importando archivo SLA" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer presets first before importing that SLA archive." msgstr "El SLA importado no contiene ningún perfil. Por favor active algunos perfiles de impresora SLA antes de importar ese archivo SLA." @@ -3427,7 +3402,6 @@ msgstr "Importación realizada." msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." msgstr "El SLA importado no contiene ningún perfil. Los perfiles de SLA actuales serán usados como alternativa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You cannot load an SLA project with a multi-part object on the bed" msgstr "No puedes cargar un proyecto SLA con objetos multi-pieza en la cama" @@ -3455,9 +3429,8 @@ msgstr "Instalando" msgid "Install failed" msgstr "Instalación fallida" -# TODO: Review, changed by lang refactor. PR 14254 msgid "License Info" -msgstr "Porciones del copyright" +msgstr "Información de licencia" msgid "Copyright" msgstr "Copyright" @@ -3573,7 +3546,6 @@ msgstr "Otro color" msgid "Custom Color" msgstr "Color Personalizado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Dynamic flow calibration" msgstr "Calibración de flujo dinámico" @@ -3583,7 +3555,6 @@ msgstr "La temperatura y la velocidad volumétrica máxima de la boquilla afecta msgid "Nozzle Diameter" msgstr "Diámetro de boquilla" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate Type" msgstr "Tipo de Cama" @@ -3605,9 +3576,8 @@ msgstr "Temperatura de cama" msgid "mm³" msgstr "mm³" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Start" -msgstr "Iniciar calibración" +msgstr "Iniciar" msgid "Next" msgstr "Siguiente" @@ -3618,9 +3588,9 @@ msgstr "Calibración completada. Por favor, observe cual es línea de extrusión msgid "Save" msgstr "Guardar" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" -msgstr "Trasera" +msgstr "Atrás" msgid "Example" msgstr "Ejemplo" @@ -3716,18 +3686,15 @@ msgstr "Nota: Solo se pueden seleccionar ranuras cargadas con filamento." msgid "Enable AMS" msgstr "Activar AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in the AMS" msgstr "Imprimir con filamentos en el AMS" msgid "Disable AMS" msgstr "Desactivar AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament on external spool" -msgstr "Imprimir con el filamento montado en la parte posterior del chasis" +msgstr "Imprimir con filamento en bobina externa" -# TODO: Review, changed by lang refactor. PR 14254 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 takes a few hours to absorb the moisture, and low temperatures also slow down the process." msgstr "Cambie el desecante cuando esté demasiado húmedo. El indicador puede no ser preciso en los siguientes casos: cuando la tapa está abierta o se cambia el paquete de desecante. Este tarda horas en absorber la humedad, y las bajas temperaturas también ralentizan el proceso." @@ -3746,11 +3713,9 @@ msgstr "Presiona para seleccionar la ranura AMS manualmente" msgid "Do not Enable AMS" msgstr "No Activar AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print using filament on external spool." -msgstr "Imprimir usando materiales montados en la parte de atrás de la cubierta" +msgstr "Imprimir utilizando filamento de una bobina externa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in AMS" msgstr "Imprimir usando filamentos en AMS" @@ -3775,7 +3740,6 @@ msgstr "Cuando se agote el material actual, la impresora utilizará un filamento msgid "The printer does not currently support auto refill." msgstr "La impresora no soporta auto recarga actualmente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament backup is not enabled; please enable it in the AMS settings." msgstr "La auto-reemplazo de filamento de AMS no está activada, por favor actívela en la configuración de AMS." @@ -3798,7 +3762,6 @@ msgstr "Ajustes del AMS" msgid "Insertion update" msgstr "Actualización de la inserción" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament spool. This takes about 20 seconds." msgstr "El AMS leerá automáticamente la información del filamento al insertar un nuevo filamento de Bambu Lab. Esto tardará unos 20 segundos." @@ -3808,11 +3771,9 @@ msgstr "Nota: si se inserta un nuevo filamento durante la impresión, el AMS no msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." msgstr "Al insertar un nuevo filamento, el AMS no leerá automáticamente su información, dejándola en blanco para que usted la introduzca manualmente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Update on startup" msgstr "Actualización al encender" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute. The reading process will rotate the filament spools." msgstr "El AMS leerá automáticamente la información del filamento insertado al arrancar. Tomará aproximadamente 1 minuto. El proceso de lectura hará rodar las bobinas de filamento." @@ -3867,7 +3828,6 @@ msgstr "Calibración" msgid "Failed to download the plug-in. Please check your firewall settings and VPN software and retry." msgstr "Fallo al descargar el complemento. Por favor, compruebe el cortafuegos y la vpn, e inténtelo de nuevo." -# TODO: Review, changed by lang refactor. PR 14254 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 has been deleted by anti-virus software." msgstr "No se ha podido instalar el complemento. Es posible que el archivo del complemento esté en uso. Reinicie OrcaSlicer e inténtelo de nuevo. Compruebe también si está bloqueado o ha sido eliminado por el software antivirus." @@ -3889,21 +3849,18 @@ msgstr ") para localizar la posición del cabezal. Esto previene que el disposit msgid "Go Home" msgstr "Ir al Inicio" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An error occurred. The system may have run out of memory, or a bug may have occurred." -msgstr "Se ha producido un error. Tal vez la memoria del sistema no es suficiente o es un error del programa" +msgstr "Se ha producido un error. Es posible que el sistema se haya quedado sin memoria o que se haya producido un fallo." #, boost-format msgid "A fatal error occurred: \"%1%\"" msgstr "Se ha producido un error fatal: \"%1%\"" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please save your project and restart the application." msgstr "Guarde el proyecto y reinicie el programa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing G-Code from previous file…" -msgstr "Procesando el G-Code del archivo anterior..." +msgstr "Procesando el G-Code del archivo anterior…" msgid "Slicing complete" msgstr "Laminado terminado" @@ -3966,9 +3923,8 @@ msgstr "La copia del G-Code temporal ha finalizado, pero el código exportado no msgid "G-code file exported to %1%" msgstr "Archivo de G-Code exportado a %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown error with G-code export" -msgstr "Error desconocido al exportar el G-Code." +msgstr "Error desconocido al exportar el G-Code" #, boost-format msgid "" @@ -3980,9 +3936,8 @@ msgstr "" "Mensaje de error: %1%.\n" "Archivo fuente %2%." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Copying of the temporary G-code to the output G-code failed." -msgstr "Copiado del G-Code temporal al G-Code de salida fallido" +msgstr "No se ha podido copiar el G-code temporal al G-code de salida." #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" @@ -4027,14 +3982,12 @@ msgstr "Escoge un archivo STL para importar la forma de la cama:" msgid "Invalid file format." msgstr "Formato inválido de archivo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error: invalid model" msgstr "Error! Modelo inválido" msgid "The selected file contains no geometry." msgstr "El archivo seleccionado no contiene geometría." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The selected file contains several disjointed areas. This is not supported." msgstr "El archivo seleccionado contiene varias áreas disjuntas. Esto no es compatible." @@ -4063,7 +4016,6 @@ msgstr "" msgid "Please check.\n" msgstr "Por favor, compruébelo.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The nozzle may become clogged when the temperature is out of the recommended range.\n" "Please make sure whether to use this temperature to print.\n" @@ -4078,22 +4030,23 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "La temperatura recomendada de la boquilla para este tipo de filamento es de [%d, %d] grados Celsius." msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "La validación del modelo de Adaptive Pressure Advance ha fallado:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Too small max volumetric speed.\n" "Value was reset to 0.5" msgstr "" "Velocidad volumétrica máxima demasiado baja.\n" -"Restableciendo a 0,5." +"El valor se ha restablecido a 0,5." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "La temperatura actual de la cámara es superior a la temperatura de seguridad del material, puede provocar que el material se ablande y se atasque. La temperatura máxima de seguridad para el material es %d" -# TODO: Review, changed by lang refactor. PR 14254 +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "La temperatura mínima de la cámara (%d℃) es superior a la temperatura objetivo de la cámara (%d℃). El valor mínimo es el umbral en el que comienza la impresión mientras la cámara continúa calentándose hacia el objetivo, por lo que no debería superarlo. Se ajustará al valor objetivo." + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4101,7 +4054,6 @@ msgstr "" "Altura de la capa demasiado pequeña.\n" "Restableciendo a 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Ironing spacing too small\n" "It has been reset to 0.1" @@ -4118,7 +4070,6 @@ msgstr "" "\n" "La altura de la primera capa se restablecerá a 0.2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This setting is only used for tuning model size by small amounts.\n" "For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" @@ -4126,12 +4077,11 @@ msgid "" "The value will be reset to 0." msgstr "" "Este ajuste sólo se utiliza para afinar el tamaño del modelo con un valor pequeño en algunos casos.\n" -"Por ejemplo, cuando el tamaño del modelo tiene un pequeño error y es difícil de agrupar.\n" +"Por ejemplo, cuando el tamaño del modelo tiene pequeños errores o cuando las tolerancias son incorrectas.\n" "Para el ajuste de tamaño grande, por favor utilice la función de escala del modelo.\n" "\n" "El valor se restablecerá a 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The elephant foot compensation value is too large.\n" "If there are significant elephant foot issues, please check other settings.\n" @@ -4206,7 +4156,7 @@ msgstr "" "Restablecer al 50 % de la profundidad de piel." msgid "Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall Generator to be enabled." -msgstr "Tanto el modo [Extrusión] como el modo [Combinado] de Piel Difusa requieren que el Generador de paredes Arachne esté habilitado." +msgstr "Tanto el modo [Extrusión] como el modo [Combinado] de Piel rugosa requieren que el Generador de paredes Arachne esté habilitado." msgid "" "Change these settings automatically?\n" @@ -4215,7 +4165,7 @@ msgid "" msgstr "" "¿Cambiar estos ajustes automáticamente?\n" "Sí: habilitar el generador de muros Arachne\n" -"No: deshabilitar el generador de paredes Arachne y establecer el modo [Desplazamiento] de la piel difusa" +"No: deshabilitar el generador de paredes Arachne y establecer el modo [Desplazamiento] de la piel rugosa" 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 "El modo espiral solo funciona cuando los bucles de perímetro son 1, el soporte está desactivado, la detección de agrupamientos mediante sondeo está desactivada, las capas superiores de la carcasa son 0, la densidad de relleno es 0 y el tipo de lapso de tiempo es tradicional." @@ -4223,7 +4173,6 @@ msgstr "El modo espiral solo funciona cuando los bucles de perímetro son 1, el msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Sin embargo, las máquinas con estructura I3 no generarán vídeos time-lapse." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" @@ -4594,7 +4543,6 @@ msgstr "Perfiles" msgid "Print settings" msgstr "Configuración de impresión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" msgstr "Ajustes del filamento" @@ -4619,7 +4567,6 @@ msgstr "Cadena vacía" msgid "Value is out of range." msgstr "El valor está fuera de rango." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "%s can’t be a percentage" msgstr "%s no puede ser un porcentaje" @@ -4771,7 +4718,7 @@ msgid "Support interface" msgstr "Interfaz de soporte" msgid "Prime tower" -msgstr "Torre de Purga" +msgstr "Torre de purga" msgid "Bottom surface" msgstr "Relleno sólido inferior" @@ -4860,7 +4807,6 @@ msgstr "Torre" msgid "Total" msgstr "Total" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Total estimation" msgstr "Estimación total" @@ -4939,11 +4885,9 @@ msgstr "desde" msgid "Usage" msgstr "Uso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height (mm)" msgstr "Altura de la capa (mm)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width (mm)" msgstr "Ancho de línea (mm)" @@ -4959,7 +4903,6 @@ msgstr "Aceleración (mm/s²)" msgid "Jerk (mm/s)" msgstr "Jerk (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fan speed (%)" msgstr "Velocidad Ventilador (%)" @@ -4975,7 +4918,6 @@ msgstr "Tasa de flujo volumétrico real (mm³/s)" msgid "Seams" msgstr "Costuras" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament changes" msgstr "Cambios de filamento" @@ -4997,10 +4939,10 @@ msgstr "Cambios de herramienta" msgid "Color change" msgstr "Cambio de color" +msgctxt "Noun" msgid "Print" -msgstr "Imprimir" +msgstr "Impresión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Impresora" @@ -5082,7 +5024,7 @@ msgid "Object selection" msgstr "Selección de objetos" msgid "number keys" -msgstr "Teclas numéricas" +msgstr "teclas numéricas" msgid "Number keys can quickly change the color of objects" msgstr "Las teclas numéricas pueden cambiar rápidamente el color de los objetos" @@ -5118,18 +5060,15 @@ msgstr "Boquilla izquierda: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" msgstr "Boquilla derecha: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Tool move" msgstr "Herramienta Mover" msgid "Tool Rotate" msgstr "Herramienta Rotar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move object" msgstr "Mover Objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto orientation options" msgstr "Opciones de orientación automática" @@ -5160,11 +5099,15 @@ msgstr "Evitar la zona de calibración del extrusor" msgid "Align to Y axis" msgstr "Alinear con el eje Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Posterior" + +msgctxt "Camera View" msgid "Left" msgstr "Izquierda" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Derecha" @@ -5213,6 +5156,12 @@ msgstr "Todas las camas" msgid "Stats" msgstr "Estadísticas" +msgid "Slice" +msgstr "Laminar" + +msgid "Review" +msgstr "Revisar" + msgid "Assembly Return" msgstr "Volver a agrupar" @@ -5237,6 +5186,9 @@ msgstr "Voladizos" msgid "Outline" msgstr "Contorno" +msgid "Wireframe" +msgstr "Malla alámbrica" + msgid "Realistic View" msgstr "Vista realista" @@ -5261,7 +5213,6 @@ msgstr "Factor de Explosión" msgid "Section View" msgstr "Vista de Sección" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Assembly Control" msgstr "Control de Ensamblado" @@ -5290,9 +5241,8 @@ msgstr "Un objeto está sobre el límite de la cama." msgid "A G-code path goes beyond the max print height." msgstr "Una ruta de G-Code supera la altura máxima de impresión." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A G-code path goes beyond plate boundaries." -msgstr "Una ruta de G-Code supera el límite de la cama." +msgstr "Una trayectoria en el G-code traspasa los límites de la cama." msgid "Not support printing 2 or more TPU filaments." msgstr "No se admite la impresión con 2 o más filamentos TPU." @@ -5351,7 +5301,6 @@ msgstr "Seleccionar paso de calibración" msgid "Micro lidar calibration" msgstr "Calibración de Micro Lidar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bed leveling" msgstr "Nivelación de Cama" @@ -5430,9 +5379,8 @@ msgstr "" "Puede encontrarlo en \"Ajustes > Ajustes > Solo LAN > Código de acceso\"\n" "en la impresora, como se muestra en la figura:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Invalid input" -msgstr "Entrada inválida." +msgstr "Entrada inválida" msgid "New Window" msgstr "Nueva Ventana" @@ -5440,7 +5388,6 @@ msgstr "Nueva Ventana" msgid "Open a new window" msgstr "Abrir nueva ventana" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Closing application" msgstr "La aplicación se está cerrando" @@ -5483,6 +5430,10 @@ msgstr "Imprimir cama" msgid "Export G-code file" msgstr "Exportar archivo G-Code" +msgctxt "Verb" +msgid "Print" +msgstr "Imprimir" + msgid "Export plate sliced file" msgstr "Exportar los objetos laminados de la cama a un archivo" @@ -5555,10 +5506,10 @@ msgid "Front View" msgstr "Vista frontal" msgid "Rear" -msgstr "Trasera" +msgstr "Posterior" msgid "Rear View" -msgstr "Vista trasera" +msgstr "Vista posterior" msgid "Left View" msgstr "Vista izquierda" @@ -5689,7 +5640,6 @@ msgstr "Pegar" msgid "Paste clipboard" msgstr "Pegar portapapeles" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete Selected" msgstr "Eliminar selección" @@ -5699,7 +5649,6 @@ msgstr "Borrar la selección actual" msgid "Deletes all objects" msgstr "Borra todos los objetos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clone Selected" msgstr "Clonar la selección" @@ -5863,15 +5812,13 @@ msgstr "&Ver" msgid "&Help" msgstr "Ayuda (&H)" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A file exists with the same name: %s. Do you want to overwrite it?" -msgstr "Existe un archivo con el mismo nombre: %s, ¿desea sobreescribirlo?" +msgstr "Ya existe un archivo con el mismo nombre: %s. ¿Quieres sobrescribirlo?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A config exists with the same name: %s. Do you want to overwrite it?" -msgstr "Existe una configuración con el mismo nombre: %s, ¿desea sobrescribirla?" +msgstr "Existe una configuración con el mismo nombre: %s. ¿Quieres sobrescribirla?" msgid "Overwrite file" msgstr "Sobrescribir archivo" @@ -5894,7 +5841,6 @@ msgid_plural "There are %d configs exported. (Only non-system configs)" msgstr[0] "Hay (%d) configuración exportada. (solo configuraciones que no sean del sistema)" msgstr[1] "Hay %d configuraciones exportadas. (solo configuraciones que no sean del sistema)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export Result" msgstr "Exportar resultado" @@ -5945,9 +5891,8 @@ msgstr "El dispositivo no puede manejar más conversaciones. Por favor, inténte msgid "Player is malfunctioning. Please reinstall the system player." msgstr "El reproductor no funciona correctamente. Por favor, reinstale el reproductor del sistema.El reproductor no funciona correctamente. Vuelva a instalar el reproductor del sistema." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The player is not loaded; please click the \"play\" button to retry." -msgstr "El reproductor no está cargado, por favor haga clic en el botón \"play\" para volver a intentarlo.El reproductor no se carga; haga clic en el botón \"reproducir\" para volver a intentarlo." +msgstr "El reproductor no se ha cargado; haz clic en el botón «Reproducir» para volver a intentarlo." msgid "The player is not loaded because the GStreamer GTK video sink is missing or failed to initialize." msgstr "El reproductor no se carga porque falta el receptor de vídeo GTK de GStreamer o no se ha inicializado correctamente." @@ -5967,7 +5912,6 @@ msgstr "Ha ocurrido un problema. Por favor, actualice el firmware de la impresor msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "Sólo ver Video en Directo vía LAN está apagado. Por favor, encienda el video en directo en la pantalla de la impresora." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please enter the IP of the printer to connect." msgstr "Por favor, introduzca la IP de la impresora a conectar." @@ -6268,7 +6212,6 @@ msgstr "En línea" msgid "Input access code" msgstr "Introducir el código de acceso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Can't find devices?" msgstr "¿No puedo encontrar mis dispositivos?" @@ -6293,15 +6236,12 @@ msgstr "caracteres no permitidos:" msgid "illegal suffix:" msgstr "sufijo no permitido:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name field is not allowed to be empty." msgstr "No se permite que el nombre esté vacío." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to start with a space." msgstr "No se permite que el nombre comience con un espacio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to end with a space." msgstr "No se permite que el nombre termine con un espacio." @@ -6324,7 +6264,6 @@ msgstr "Cambiando..." msgid "Switching failed" msgstr "Error al cambiar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printing progress" msgstr "Progreso de impresión" @@ -6343,7 +6282,6 @@ msgstr "Haga clic para ver la explicación del preacondicionamiento térmico" msgid "Clear" msgstr "Vaciar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" "but synchronizing rating information has failed." @@ -6432,7 +6370,6 @@ msgstr "Descargando…" msgid "Cloud Slicing..." msgstr "Laminado en la Nube..." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." msgstr "En Cola de Laminado en la Nube, hay %s tareas por delante." @@ -6457,7 +6394,6 @@ msgstr "Si la temperatura de la cámara excede los 40℃, el sistema cambiará a msgid "Please select an AMS slot before calibration" msgstr "Seleccione una ranura AMS antes de la calibración" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." msgstr "No se puede leer la información del filamento: el filamento está cargado en el cabezal, por favor, descargue el filamento y vuelva a intentarlo." @@ -6584,7 +6520,7 @@ msgstr "" "para otorgar una calificación positiva (4 o 5 estrellas)." msgid "click to add machine" -msgstr "Haga clic para añadir máquina" +msgstr "clic para añadir máquina" msgid "Status" msgstr "Estado" @@ -6689,9 +6625,8 @@ msgstr "No mostrar este mensaje de nuevo" msgid "3D Mouse disconnected." msgstr "Ratón 3D desconectado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A new configuration is available. Update now?" -msgstr "La configuración puede actualizarse ahora." +msgstr "Hay una nueva configuración disponible. ¿Quieres actualizar ahora?" msgid "Integration was successful." msgstr "La integración fue un éxito." @@ -6714,17 +6649,14 @@ msgstr "Nueva configuración de impresora disponible." msgid "Undo integration failed." msgstr "La operación de deshacer ha fallado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Exporting" -msgstr "Exportando." +msgstr "Exportando" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An update is available!" -msgstr "El software tiene una nueva versión." +msgstr "¡Hay una actualización disponible!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Go to download page" -msgstr "Ir a la página de descargas." +msgstr "Ir a la página de descargas" msgid "Open Folder." msgstr "Abrir Carpeta." @@ -6753,8 +6685,8 @@ msgstr[1] "%1$d Los objetos se han cargado como partes del objeto de corte." #, 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 objeto se cargó con pintura de piel difusa." -msgstr[1] "%1$d objetos se cargaron con pintura de piel difusa." +msgstr[0] "%1$d objeto se cargó con pintura de piel rugosa." +msgstr[1] "%1$d objetos se cargaron con pintura de piel rugosa." msgid "ERROR" msgstr "ERROR" @@ -6850,7 +6782,6 @@ msgstr "Inferior" msgid "Enable detection of build plate position" msgstr "Activar detección de posición de cama" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." msgstr "Se detecta la etiqueta de localización de la cama y se detiene la impresión si la etiqueta no se encuentra dentro del rango predefinido." @@ -6896,7 +6827,6 @@ msgstr "Detecta impresión en el aire causada por obstrucción de la boquilla o msgid "First Layer Inspection" msgstr "Inspección de Primera Capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto-recover from step loss" msgstr "Autorecuperar desde pérdida de paso" @@ -6909,7 +6839,6 @@ msgstr "Guardar los archivos de impresión iniciados desde Bambu Studio, Bambu H msgid "Allow Prompt Sound" msgstr "Permitir Sonido de Aviso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament Tangle Detection" msgstr "Detección de Enredos de Filamentos" @@ -7167,18 +7096,15 @@ msgstr "Desmontado correctamente. El dispositivo %s(%s) ahora puede ser extraíd msgid "Ejecting of device %s (%s) has failed." msgstr "La expulsión del dispositivo %s (%s) ha fallado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Previously unsaved items have been detected. Do you want to restore them?" msgstr "Se ha detectado un proyecto anterior no guardado, ¿quieres restaurarlo?" msgid "Restore" msgstr "Restaurar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current heatbed temperature is relatively high. The nozzle may clog when printing this filament in a closed environment. Please open the front door and/or remove the upper glass." msgstr "La temperatura actual de la cama caliente es relativamente alta. La boquilla puede estar obstruida al imprimir este filamento en un recinto cerrado. Por favor, abra la puerta frontal y/o retire el cristal superior." -# TODO: Review, changed by lang refactor. PR 14254 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 worn down or damaged." msgstr "La dureza de la boquilla requerida por el filamento es más alta que la dureza de la boquilla por defecto de la impresora. Por favor, reemplace la boquilla endurecida o el filamento, de otra forma, la boquilla se atascará o se dañará." @@ -7229,7 +7155,6 @@ msgstr "¿Desea que OrcaSlicer lo corrija automáticamente borrando los ajustes msgid "The 3MF file version %s is newer than %s's version %s, found the following unrecognized keys:" msgstr "La versión de 3MF %s es más nueva que la versión de %s %s, encontradas las siguientes llaves no reconocidas:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You should update your software.\n" msgstr "Debería actualizar el software.\n" @@ -7251,7 +7176,6 @@ msgstr "El archivo 3MF ha sido creado por BambuStudio. Es posible que algunos aj msgid "Invalid values found in the 3MF:" msgstr "Valores inválidos encontrados en el 3MF:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please correct them in the Param tabs" msgstr "Por favor, corríjalos en las pestañas de parámetros" @@ -7273,11 +7197,9 @@ msgstr "¡Por favor, confirme que el G-Code dentro de los perfiles son seguros p msgid "Customized Preset" msgstr "Perfil Personalizado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Component name(s) inside step file not in UTF8 format!" msgstr "¡El nombre de los componentes dentro del archivo de pasos no tiene formato UTF8!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Because of unsupported text encoding, garbage characters may appear!" msgstr "¡El nombre puede mostrar caracteres no válidos!" @@ -7294,7 +7216,6 @@ msgstr "Objetos con volumen cero eliminados" msgid "The volume of the object is zero" msgstr "El volumen del objeto es cero" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The object from file %s is too small, and may be in meters or inches.\n" @@ -7306,7 +7227,6 @@ msgstr "" msgid "Object too small" msgstr "Objeto demasiado pequeño" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This file contains several objects positioned at multiple heights.\n" "Instead of considering them as multiple objects, should \n" @@ -7322,7 +7242,6 @@ msgstr "Objeto multipieza detectado" msgid "Load these files as a single object with multiple parts?\n" msgstr "¿Cargar estos archivos como un objeto único con múltiples piezas?\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An object with multiple parts was detected" msgstr "Se ha detectado un objeto con varias piezas" @@ -7357,14 +7276,12 @@ msgstr "Exportar archivo Draco:" msgid "Export AMF file:" msgstr "Exportar archivo AMF:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Save file as" -msgstr "Guardar archivo como:" +msgstr "Guardar archivo como" msgid "Export OBJ file:" msgstr "Exportar archivo OBJ:" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The file %s already exists.\n" @@ -7379,7 +7296,6 @@ msgstr "Confirmar Guardar como" msgid "Delete object which is a part of cut object" msgstr "Borrar objeto el cual es una pieza del objeto cortado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You are trying to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" @@ -7404,7 +7320,6 @@ msgstr "Otro trabajo de exportación está en marcha." msgid "Unable to replace with more than one volume" msgstr "No se puede sustituir con más de un volumen" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error during replacement" msgstr "Error durante el reemplazo" @@ -7414,7 +7329,6 @@ msgstr "Sustituir desde:" msgid "Select a new file" msgstr "Seleccione un nuevo archivo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File for the replacement wasn't selected" msgstr "El archivo de reemplazo no ha sido seleccionado" @@ -7505,7 +7419,6 @@ msgstr "" msgid "Sync now" msgstr "Sincronizar ahora" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project or discard them" msgstr "Puedes mantener los perfiles modificados en el nuevo proyecto o descartarlos" @@ -7515,7 +7428,6 @@ msgstr "Creando un nuevo proyecto" msgid "Load project" msgstr "Cargar Proyecto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Failed to save the project.\n" "Please check whether the folder exists online or if other programs have the project file open." @@ -7532,14 +7444,12 @@ msgstr "Importando modelo" msgid "Preparing 3MF file..." msgstr "Preparar el archivo 3MF..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; unknown file format." msgstr "Descarga fallida; formato de archivo desconocido." msgid "Downloading project..." msgstr "Descargando proyecto..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; File size exception." msgstr "Descarga fallida; error de tamaño de archivo." @@ -7565,13 +7475,11 @@ msgstr "Importar archivo SLA" msgid "The selected file" msgstr "El archivo seleccionado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Does not contain valid G-code." -msgstr "no contiene G-Code válido." +msgstr "No contiene G-code válido." -# TODO: Review, changed by lang refactor. PR 14254 msgid "An Error has occurred while loading the G-code file." -msgstr "Se produce un error al cargar el archivo de G-Code" +msgstr "Se ha producido un error al cargar el archivo G-code." #. TRN %1% is archive path #, boost-format @@ -7599,25 +7507,21 @@ msgstr "Abrir como proyecto" msgid "Import geometry only" msgstr "Importar geometría solo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only one G-code file can be opened at a time." msgstr "Sólo se puede abrir un archivo de G-Code al mismo tiempo." msgid "G-code loading" msgstr "Carga del G-Code" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code files and models cannot be loaded together!" msgstr "¡Los archivos de G-Code no pueden cargarse junto con modelos!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to add models in preview mode" -msgstr "¡No se pueden añadir modelos en el modo de vista previa!" +msgstr "No se pudieron añadir modelos en el modo de vista previa" msgid "All objects will be removed, continue?" msgstr "Todos los objetos serán eliminados, ¿desea continuar?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current project has unsaved changes. Would you like to save before continuing?" msgstr "El proyecto actual tiene cambios sin guardar, ¿guardarlos antes de continuar?" @@ -7689,7 +7593,6 @@ msgstr "Cargar e imprimir" msgid "Abnormal print file data. Please slice again" msgstr "Datos anormales del archivo de impresión. Por favor, lamine de nuevo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Print By Object: \n" "We suggest using auto-arrange to avoid collisions when printing." @@ -7777,7 +7680,6 @@ msgstr "Triángulos: %1%\n" msgid "Use \"Fix Model\" to repair the mesh." msgstr "Utiliza «Reparar modelo» para arreglar la malla." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Plate %d: %s is not suggested for use printing filament %s (%s). If you still want to do this print job, please set this filament's bed temperature to a number that is not zero." msgstr "Cama %d: %s no es recomendable ser usada para imprimir el filamento %s(%s). Si desea imprimir de todos modos, por favor, indique una temperatura de cama distinta a 0 en la configuración del filamento." @@ -7806,7 +7708,6 @@ msgstr "frontal" msgid "rear" msgstr "posterior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Switching languages requires the application to restart.\n" msgstr "El cambio de idioma requiere el reinicio de la aplicación.\n" @@ -7834,7 +7735,6 @@ msgstr "América del Norte" msgid "Others" msgstr "Otros" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Changing the region will log you out of your account.\n" msgstr "Si cambias de región, se cerrará la sesión de tu cuenta.\n" @@ -7874,6 +7774,50 @@ msgstr "Elegir carpeta para elementos descargados" msgid "Choose Download Directory" msgstr "Elegir Directorio de Descarga" +msgid "(Latest)" +msgstr "(Última)" + +msgid "Network plug-in switched successfully." +msgstr "Plugin de red cambiado con éxito." + +msgid "Success" +msgstr "Éxito" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Error al cargar el plugin de red. Por favor, reinicie la aplicación." + +#, 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 "" +"Ha seleccionado la versión %s del plugin de red.\n" +"\n" +"¿Desea descargar e instalar esta versión ahora?\n" +"\n" +"Nota: La aplicación puede necesitar reiniciarse después de la instalación." + +msgid "Download Network Plug-in" +msgstr "Descargar plugin de red" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recargar el plugin de red sin reiniciar la aplicación" + +msgid "Network plug-in reloaded successfully." +msgstr "Plugin de red recargado con éxito." + +msgid "Reload" +msgstr "Recargar" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Error al recargar el plugin de red. Por favor, reinicie la aplicación." + +msgid "Reload Failed" +msgstr "Error al recargar" + msgid "Associate" msgstr "Asociar" @@ -7910,7 +7854,6 @@ msgstr "Página por defecto" msgid "Set the page opened on startup." msgstr "Establece la página que se abre al inicio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable dark Mode" msgstr "Activar modo oscuro" @@ -7929,12 +7872,6 @@ msgstr "Mostrar pantalla de inicio" msgid "Show the splash screen during startup." msgstr "Muestra la página de bienvenida al iniciar." -msgid "Show shared profiles notification" -msgstr "Mostrar notificaciones de perfiles compartidos" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Mostrar una notificación con un enlace para consultar los perfiles compartidos cuando se cambie la impresora seleccionada." - msgid "Use window buttons on left side" msgstr "Utiliza los botones de la ventana situados a la izquierda" @@ -7965,6 +7902,12 @@ msgstr "Comportamiento de carga" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "¿Deben cargarse los ajustes de impresora/filamento/proceso al abrir un archivo 3MF?" +msgid "Auto backup" +msgstr "Copia de seguridad automática" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Haga copia de seguridad periódicamente para restaurar en caso de fallo ocasional." + msgid "Maximum recent files" msgstr "Máximo de archivos recientes" @@ -7983,12 +7926,66 @@ msgstr "Mostrar opciones al importar archivos STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si está activado, aparecerá un diálogo de configuración de parámetros durante la importación de archivos STEP." -msgid "Auto backup" -msgstr "Copia de seguridad automática" +msgid "STEP importing: linear deflection" +msgstr "Importación STEP: deflexión lineal" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Haga copia de seguridad periódicamente para restaurar en caso de fallo ocasional." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" +"Deflexión lineal utilizada al mallar los archivos STEP importados.\n" +"Los valores más pequeños producen mallas de mayor calidad pero aumentan el tiempo de procesamiento.\n" +"Se usa como valor predeterminado en el diálogo de importación, o directamente cuando el diálogo de importación está desactivado.\n" +"Predeterminado: 0.003 mm." + +msgid "STEP importing: angle deflection" +msgstr "Importación STEP: deflexión angular" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" +"Deflexión angular utilizada al mallar los archivos STEP importados.\n" +"Los valores más pequeños producen mallas de mayor calidad pero aumentan el tiempo de procesamiento.\n" +"Se usa como valor predeterminado en el diálogo de importación, o directamente cuando el diálogo de importación está desactivado.\n" +"Predeterminado: 0.5." + +msgid "STEP importing: Split into multiple objects" +msgstr "Importación STEP: Separar en múltiples objetos" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" +"Si está activado, las formas compound y compsolid de los archivos STEP importados se separan en múltiples objetos.\n" +"Se usa como valor predeterminado en el diálogo de importación, o directamente cuando el diálogo de importación está desactivado.\n" +"Predeterminado: desactivado." + +msgid "Quality level for Draco export" +msgstr "Nivel de calidad para exportación Draco" + +msgid "bits" +msgstr "bits" + +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 "" +"Controla la profundidad de bits de cuantificación utilizada al comprimir la malla al formato Draco.\n" +"0 = compresión sin pérdidas (la geometría se conserva con total precisión). Los valores válidos con pérdidas oscilan entre 8 y 30.\n" +"Los valores más bajos producen archivos más pequeños, pero pierden más detalles geométricos; los valores más altos conservan más detalles a costa de archivos más grandes." + +msgid "Store full source file paths in projects" +msgstr "Guardar las rutas completas de los archivos de origen en los proyectos" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "Si está activado, los proyectos guardados almacenan la ruta absoluta de los archivos de origen importados (STEP/STL/...), de modo que \"Recargar desde el disco\" sigue funcionando cuando el archivo de origen se mantiene en una carpeta distinta a la del proyecto. Si está desactivado, solo se guarda el nombre del archivo, lo que mantiene los proyectos portables y evita incrustar rutas absolutas." msgid "Preset" msgstr "Perfil" @@ -8020,6 +8017,12 @@ msgstr "filamentos" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimiza la altura máxima del área del filamento según el número de filamentos seleccionado." +msgid "Show shared profiles notification" +msgstr "Mostrar notificaciones de perfiles compartidos" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Mostrar una notificación con un enlace para consultar los perfiles compartidos cuando se cambie la impresora seleccionada." + msgid "Features" msgstr "Características" @@ -8032,21 +8035,6 @@ msgstr "Con esta opción activada, puede enviar una tarea a varios dispositivos msgid "Pop up to select filament grouping mode" msgstr "Ventana emergente para seleccionar el modo de agrupación de filamentos" -msgid "Quality level for Draco export" -msgstr "Nivel de calidad para exportación Draco" - -msgid "bits" -msgstr "bits" - -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 "" -"Controla la profundidad de bits de cuantificación utilizada al comprimir la malla al formato Draco.\n" -"0 = compresión sin pérdidas (la geometría se conserva con total precisión). Los valores válidos con pérdidas oscilan entre 8 y 30.\n" -"Los valores más bajos producen archivos más pequeños, pero pierden más detalles geométricos; los valores más altos conservan más detalles a costa de archivos más grandes." - msgid "Behaviour" msgstr "Comportamiento" @@ -8177,13 +8165,16 @@ msgid "Renders cast shadows on the plate in realistic view." msgstr "Los objetos renderizados proyectan sombras sobre la cama en la vista realista." msgid "Smooth normals" -msgstr "" +msgstr "Suavizar normales" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"Aplica normales suavizadas a la vista realista.\n" +"\n" +"Requiere recargar la escena manualmente para que surta efecto (clic derecho en la vista 3D → \"Recargar todo\")." msgid "Anti-aliasing" msgstr "Anti-aliasing" @@ -8288,19 +8279,6 @@ msgstr "Buscar sólo actualizaciones estables" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronización automática de los perfiles del usuario (Impresora/Filamento/Proceso)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Actualizar perfiles integrados automáticamente." - -msgid "Use encrypted file for token storage" -msgstr "Usar archivo cifrado para almacenar tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Almacenar tokens de autenticación en un archivo cifrado en lugar del llavero del sistema. (Requiere reinicio)" - -msgid "Filament Sync Options" -msgstr "Opciones de sincronización de filamento" - msgid "Filament sync mode" msgstr "Modo de sincronización de filamento" @@ -8313,11 +8291,20 @@ msgstr "Filamento y color" msgid "Color only" msgstr "Solo color" +msgid "Update built-in presets automatically." +msgstr "Actualizar perfiles integrados automáticamente." + +msgid "Use encrypted file for token storage" +msgstr "Usar archivo cifrado para almacenar tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Almacenar tokens de autenticación en un archivo cifrado en lugar del llavero del sistema. (Requiere reinicio)" + msgid "Bambu network plug-in" -msgstr "" +msgstr "Plug-in de red de Bambu" msgid "Enable Bambu network plug-in" -msgstr "" +msgstr "Activar el Plug-in de red de Bambu" msgid "Network plug-in version" msgstr "Versión del plugin de red" @@ -8325,35 +8312,6 @@ msgstr "Versión del plugin de red" msgid "Select the network plug-in version to use" msgstr "Seleccione la versión del plugin de red a usar" -msgid "(Latest)" -msgstr "(Última)" - -msgid "Network plug-in switched successfully." -msgstr "Plugin de red cambiado con éxito." - -msgid "Success" -msgstr "Éxito" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Error al cargar el plugin de red. Por favor, reinicie la aplicación." - -#, 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 "" -"Ha seleccionado la versión %s del plugin de red.\n" -"\n" -"¿Desea descargar e instalar esta versión ahora?\n" -"\n" -"Nota: La aplicación puede necesitar reiniciarse después de la instalación." - -msgid "Download Network Plug-in" -msgstr "Descargar plugin de red" - msgid "Associate files to OrcaSlicer" msgstr "Asociar archivos a OrcaSlicer" @@ -8366,7 +8324,6 @@ msgstr "Abrir la configuración de aplicaciones predeterminadas de Windows" msgid "Associate 3MF files to OrcaSlicer" msgstr "Asociar archivos 3MF a OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." msgstr "Si se activa, ajusta OrcaSlicer como aplicación por defecto para abrir archivos 3MF." @@ -8379,14 +8336,12 @@ msgstr "Si se activa, ajusta OrcaSlicer como aplicación por defecto para abrir msgid "Associate STL files to OrcaSlicer" msgstr "Asociar archivos STL a OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." msgstr "Si se activa, ajusta OrcaSlicer como aplicación por defecto para abrir archivos STL." msgid "Associate STEP files to OrcaSlicer" msgstr "Asociar archivos STEP a OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." msgstr "Si se activa, ajusta OrcaSlicer como aplicación por defecto para abrir archivos STEP." @@ -8399,22 +8354,25 @@ msgstr "Desarrollador" msgid "Skip AMS blacklist check" msgstr "Evitar la comprobación de lista negra de AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Experimental) Mantener el elemento pintado tras un cambio de malla" - -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 "" -"Intenta conservar las característica pintadas (color, costuras, soportes, piel difusa, etc.) tras modificar la malla del objeto (por ejemplo, al cortar, volver a cargar desde el disco, simplificar, corregir, etc.).\n" -"¡Muy experimental! Es lento y puede generar artefactos." - msgid "Show unsupported presets" msgstr "Mostrar ajustes preestablecidos no compatibles" msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." msgstr "Mostrar los ajustes preestablecidos incompatibles o no compatibles en los menús desplegables de impresoras y filamentos. Estos ajustes preestablecidos no se pueden seleccionar." +msgid "Experimental Features" +msgstr "Funciones experimentales" + +msgid "Keep painted feature after mesh change" +msgstr "Mantener las zonas pintadas tras cambiar la malla" + +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 "" +"Intenta conservar las característica pintadas (color, costuras, soportes, piel rugosa, etc.) tras modificar la malla del objeto (por ejemplo, al cortar, volver a cargar desde el disco, simplificar, corregir, etc.).\n" +"¡Muy experimental! Es lento y puede generar artefactos." + msgid "Allow Abnormal Storage" msgstr "Permitir almacenamiento anómalo" @@ -8443,24 +8401,6 @@ msgstr "depurar" msgid "trace" msgstr "traza" -msgid "Network plug-in" -msgstr "Plugin de red" - -msgid "Reload" -msgstr "Recargar" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recargar el plugin de red sin reiniciar la aplicación" - -msgid "Network plug-in reloaded successfully." -msgstr "Plugin de red recargado con éxito." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Error al recargar el plugin de red. Por favor, reinicie la aplicación." - -msgid "Reload Failed" -msgstr "Error al recargar" - msgid "Debug" msgstr "Depurar" @@ -8476,25 +8416,6 @@ msgstr "Sincronización de perfil" msgid "Preferences sync" msgstr "Sincronización de preferencias" -msgid "View control settings" -msgstr "Ver los ajustes del control" - -msgid "Rotate view" -msgstr "Rotar Vista" - -msgid "Pan view" -msgstr "Desplazar vista" - -msgid "Zoom view" -msgstr "Hacer Zoom" - -msgid "Other" -msgstr "Otro" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "La rueda del ratón se invierte al hacer zoom" - msgid "Enable SSL(MQTT)" msgstr "Habilitar SSL (MQTT)" @@ -8525,11 +8446,9 @@ msgstr "Botón de guardar la depuración" msgid "Save debug settings" msgstr "Guardar ajustes de depuración" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Debug settings have been saved successfully!" msgstr "¡Los ajustes de depuración se han guardado con éxito!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cloud environment switched; please login again!" msgstr "¡Cambiado a entorno de nube, Por favor vuelva a autenticarse!" @@ -8548,7 +8467,6 @@ msgstr "Mi impresora" msgid "Left filaments" msgstr "Filamentos del lado izquierdo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament" msgstr "Filamentos AMS" @@ -8582,7 +8500,6 @@ msgstr "Perfiles no compatibles" msgid "Unsupported" msgstr "No compatible" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add/Remove filament" msgstr "Añadir/Borrar filamentos" @@ -8619,7 +8536,6 @@ msgstr "Introduzca el valor de la capa (>= 2)." msgid "Plate name" msgstr "Nombre de Cama" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Same as Global Plate Type" msgstr "Igual que el Tipo de Cama Global" @@ -8656,7 +8572,6 @@ msgstr "Aceptar" msgid "Log Out" msgstr "Desconectarse" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice all plates to obtain time and filament estimation" msgstr "Laminar todas las piezas para obtener una estimación del tiempo y del filamento" @@ -8717,7 +8632,6 @@ msgstr "El perfil \"%1%\" ya existe." msgid "Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "El perfil \"%1%\" ya existe y es incompatible con la impresora actual." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please note that saving will overwrite the current preset." msgstr "Tenga en cuenta que la acción de guardar reemplazará este perfil." @@ -8847,9 +8761,8 @@ msgstr "El filamento excede el número de ranuras AMS. Por favor actualice el fi 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 "La impresora seleccionada (%s) es incompatible con la configuración del archivo de impresión (%s). Ajuste el preajuste de impresora en la página de Preparar o elija una impresora compatible en esta página." -# TODO: Review, changed by lang refactor. PR 14254 msgid "When spiral vase mode is enabled, machines with I3 structure will not generate timelapse videos." -msgstr "Cuando active el modo vaso en espiral, las máquinas con estructura I3 no generará videos timelapse." +msgstr "Cuando active el modo vaso en espiral, las máquinas con estructura I3 no generarán videos timelapse." msgid "The current printer does not support timelapse in Traditional Mode when printing By-Object." msgstr "La impresora actual no admite timelapse en Modo Tradicional al imprimir Por Objeto." @@ -8866,7 +8779,6 @@ msgstr "La configuración del tipo de filamento del carrete externo es diferente 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 "El tipo de impresora seleccionado cuando se genera el G-Code no tiene consistencia con la impresora seleccionada actualmente. Es recomendable que use el mismo tipo de impresora para laminar." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, click \"Confirm\" to 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." @@ -8998,7 +8910,6 @@ msgstr "El almacenamiento está en un estado anómalo o en modo solo lectura." msgid "Storage needs to be inserted before printing." msgstr "Es necesario insertar un dispositivo de almacenamiento antes de imprimir." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send the print job to a printer whose firmware must be updated." msgstr "No es posible enviar el trabajo de impresión a una impresora la cual necesita una actualización de firmware." @@ -9053,7 +8964,6 @@ msgstr "Tiempo de espera de la conexión agotado, por favor compruebe su red." msgid "Connection failed. Click the icon to retry" msgstr "Conexión fallida. Haga clic en el icono para reintentar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send print tasks when an update is in progress" msgstr "No se puede enviar la tarea de impresión cuando la actualización está en curso" @@ -9063,9 +8973,8 @@ msgstr "La impresora seleccionada es incompatible con los perfiles seleccionados msgid "Storage needs to be inserted before send to printer." msgstr "Es necesario insertar el almacenamiento antes de enviarlo a la impresora." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer is required to be on the same LAN as Orca Slicer." -msgstr "Es necesaria que la impresora esté en la misma red local que Orca Slicer." +msgstr "Es necesario que la impresora esté conectada a la misma red LAN que Orca Slicer." msgid "The printer does not support sending to printer storage." msgstr "La impresora no admite enviar al almacenamiento de la impresora." @@ -9079,9 +8988,8 @@ msgstr "Tiempo de espera de la carga de archivo agotado. Por favor, compruebe si msgid "Sending failed, please try again!" msgstr "El envío ha fallado, ¡inténtalo de nuevo!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice complete" -msgstr "Laminado correcto." +msgstr "Laminado completado" msgid "View all Daily tips" msgstr "Mostrar todos los consejos del día" @@ -9095,11 +9003,9 @@ msgstr "Error al conectar el socket" msgid "Failed to publish login request" msgstr "Error al publicar la solicitud de inicio de sesión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from device" msgstr "Tiempo de espera para obtener el ticket del dispositivo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from server" msgstr "Tiempo de espera para obtener el ticket del servidor" @@ -9203,10 +9109,15 @@ msgstr "Borra este perfil" msgid "Search in preset" msgstr "Buscar en el perfil" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "No se admite la sincronización entre diferentes tipos de extrusor o tipos de volumen de boquilla." + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "Sincroniza la modificación de parámetros con los parámetros correspondientes de otro extrusor." + msgid "Click to reset all settings to the last saved preset." msgstr "Presionar para reiniciar todos los ajustes al perfil guardado por defecto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without a prime tower. Are you sure you want to disable the prime tower?" msgstr "Se requiere una torre de purga para un timelapse suave. Puede haber defectos en los modelos si no se usa una torre de purga. ¿Está seguro de que quiere deshabilitar la torre de purgado?" @@ -9222,7 +9133,6 @@ msgstr "La torre de purga es necesaria para la detección de aglomeraciones. Pue msgid "Enabling both precise Z height and the prime tower may cause slicing errors. Do you still want to enable precise Z height?" msgstr "Habilitar tanto la altura Z precisa como la torre de purga puede causar errores de laminado. ¿Desea habilitar la altura Z precisa?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without prime tower. Do you want to enable the prime tower?" msgstr "La torre de purga es necesaria para que el timelapse sea suave. Puede haber defectos en el modelo sin torre de purga. ¿Desea activar la torre de purga?" @@ -9243,15 +9153,14 @@ msgstr "" "Cuando se use material de soporte para las interfaces de soporte, recomendamos los siguientes ajustes:\n" "distancia Z 0, separación de interfaz 0, patrón concéntrico y desactivar altura de soporte independiente de altura de capa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings automatically.\n" "No - Do not change these settings for me." msgstr "" -"Cambiar estos ajustes automáticamente?\n" -"Sí - Cambiar estos ajustes automáticamente\n" -"No - No cambiar estos ajustes" +"¿Quieres que se modifiquen estos ajustes automáticamente?\n" +"Sí: modificar estos ajustes automáticamente.\n" +"No: no modificar estos ajustes por mí." msgid "" "When using soluble material for the support interface, we recommend the following settings:\n" @@ -9299,10 +9208,10 @@ msgstr "Característica experimental: Retraer y cortar el filamento a mayor dist 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 "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 posición vacía de la cama de impresión y seleccionando \"Añadir Primitivo\"->Torre de Purga de Timelapse\"." +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 posición vacía de la cama de impresión y seleccionando \"Añadir Primitivo\"->\"Torre de purga de Timelapse\"." msgid "A copy of the current system preset will be created, which will be detached from the system preset." -msgstr "Se creará una copia del preajuste del sistema actual, que se separará del preajuste del sistema." +msgstr "Se creará una copia de el perfil de sistema actual, que quedará separado del perfil de sistema." msgid "The current custom preset will be detached from the parent system preset." msgstr "El ajuste personalizado actual se separará del ajuste del sistema principal." @@ -9392,7 +9301,6 @@ msgstr "Perímetros" msgid "Top/bottom shells" msgstr "Cubiertas Superiores/Inferiores" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer speed" msgstr "Velocidad de la primera capa" @@ -9420,7 +9328,6 @@ msgstr "Jerk(XY)" msgid "Raft" msgstr "Balsa/capa base de impresión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament for Supports" msgstr "Filamento de soporte" @@ -9483,7 +9390,6 @@ msgstr "Información básica" msgid "Recommended nozzle temperature" msgstr "Temperatura recomendada de la boquilla" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Recommended nozzle temperature range of this filament. 0 means not set" msgstr "Rango de temperatura de boquilla recomendado para este filamento. 0 significa sin especificar" @@ -9493,6 +9399,18 @@ msgstr "Factor de flujo y Pressure advance" msgid "Print chamber temperature" msgstr "Temperatura de la cámara" +msgid "Chamber temperature" +msgstr "Temperatura de cámara" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "Temperatura objetivo de la cámara y temperatura mínima de la cámara a la que debe comenzar la impresión" + +msgid "Target" +msgstr "Objetivo" + +msgid "Minimal" +msgstr "Mínima" + msgid "Print temperature" msgstr "Temperatura de impresión" @@ -9505,29 +9423,24 @@ msgstr "Temperatura de la cama cuando la Cama Fría SuperTack está instalada. U msgid "Cool Plate" msgstr "Cama Fría" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the Cool Plate is installed. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Esta es la temperatura de la cama cuando la Cama Fría está instalada. Un valor de 0 significa que el filamento no admite la impresión en la Cama Fría." msgid "Textured Cool Plate" msgstr "Cama Fría Texturizada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Temperatura de la cama cuando la placa fría está instalada. El valor 0 significa que el filamento no se puede imprimir en la placa de refrigeración texturizada." +msgstr "Temperatura de la cama cuando la placa fría texturizada está instalada. El valor 0 significa que el filamento no se puede imprimir en la placa de refrigeración texturizada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the engineering plate is installed. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Esta es la temperatura de la cama cuando la Cama de Ingeniería está instalada. Un valor de 0 significa que el filamento no admite la impresión en la Cama de Ingeniería." msgid "Smooth PEI Plate / High Temp Plate" msgstr "Cama PEI suave / Cama de Alta Temperatura" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Temperatura de la cama cuando está instalada la cama PEI lisa/ Cama de Alta Temperatura. El valor 0 significa que el filamento no admite la impresión en la cama PEI lisa/cama de alta temperatura." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Temperatura de la cama cuando la Cama PEI Texturizada está instalada. El valor 0 significa que el filamento no es compatible para imprimir en la Cama PEI Texturizada." @@ -9543,16 +9456,14 @@ msgstr "Ventilador de refrigeración de piezas" msgid "Min fan speed threshold" msgstr "Umbral de velocidad mínima del ventilador" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will run at the minimum fan speed when the estimated layer time is longer than the threshold value. When the layer time is shorter than the threshold, the fan speed will be interpolated between the minimum and maximum fan speed according to layer printing time." -msgstr "La velocidad del ventilador de refrigeración de la pieza comenzará a funcionar a la velocidad mínima cuando el tiempo estimado de la capa no sea superior al tiempo de la capa ajustado. Cuando el tiempo de la capa es inferior al umbral, la velocidad del ventilador se interpola entre la velocidad mínima y máxima del ventilador según el tiempo de impresión de la capa" +msgstr "El ventilador de refrigeración de la pieza funcionará a la velocidad mínima cuando el tiempo estimado de impresión de la capa sea superior al valor umbral. Cuando el tiempo de impresión de la capa sea inferior al valor umbral, la velocidad del ventilador se interpolará entre la velocidad mínima y la máxima en función del tiempo de impresión de la capa." msgid "Max fan speed threshold" msgstr "Umbral de velocidad máxima del ventilador" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will run at maximum speed when the estimated layer time is shorter than the threshold value." -msgstr "La velocidad del ventilador de la pieza será máxima cuando el tiempo de capa estimado sea inferior al valor especificado" +msgstr "El ventilador de refrigeración de la pieza funcionará a máxima velocidad cuando el tiempo estimado de impresión de la capa sea inferior al valor umbral." msgid "Auxiliary part cooling fan" msgstr "Ventilador auxiliar de refrigeración de piezas" @@ -9767,8 +9678,8 @@ msgstr "Perfil %1%" msgid "The following preset will be deleted too:" msgid_plural "The following presets will be deleted too:" -msgstr[0] "El siguiente perfil también se eliminará." -msgstr[1] "Los siguientes perfiles también se eliminarán." +msgstr[0] "El siguiente perfil también se eliminará:" +msgstr[1] "Los siguientes perfiles también se eliminarán:" msgid "" "Are you sure to delete the selected preset?\n" @@ -9777,7 +9688,6 @@ msgstr "" "¿Está seguro de que desea eliminar el perfil seleccionado?\n" "Si el perfil corresponde a un filamento actualmente en uso en su impresora, restablezca la información del filamento para esa ranura." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Are you sure you want to %1% the selected preset?" msgstr "¿Está seguro de %1% el perfil seleccionado?" @@ -9828,32 +9738,39 @@ msgid "Don't warn again for this preset" msgstr "No volver a avisar para este perfil" #, c-format, boost-format -msgid "Left: %s" -msgstr "Izquierda: %s" +msgid "%s: %s" +msgstr "%s: %s" + +msgid "No modifications need to be copied." +msgstr "No hay modificaciones que copiar." + +msgid "Copy paramters" +msgstr "Copiar parámetros" #, c-format, boost-format -msgid "Right: %s" -msgstr "Derecha: %s" +msgid "Modify paramters of %s" +msgstr "Modificar parámetros de %s" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "¿Desea modificar los siguientes parámetros de %s para que coincidan con los de %s?" msgid "Click to reset current value and attach to the global value." msgstr "Haga clic para restablecer el valor actual y adjuntarlo al valor global." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click to drop current modifications and reset to saved value." msgstr "Haga clic para dejar la modificación actual y restablecer el valor guardado." msgid "Process Settings" msgstr "Ajustes del proceso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "unsaved changes" -msgstr "Cambios No guardados" +msgstr "cambios no guardados" msgid "Transfer or discard changes" msgstr "Descartar o mantener los cambios" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Valor Antiguo" msgid "New Value" @@ -9908,9 +9825,8 @@ msgstr "" msgid "Click the right mouse button to display the full text." msgstr "Pulse el botón derecho del ratón para mostrar el texto completo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "No changes will be saved." -msgstr "Los cambios no se guardarán" +msgstr "Los cambios no se guardarán." msgid "All changes will be discarded." msgstr "Todos los cambios serán descartados." @@ -9986,6 +9902,12 @@ msgstr "Número de extrusores" msgid "Capabilities" msgstr "Capacidades" +msgid "Left: " +msgstr "Izquierda: " + +msgid "Right: " +msgstr "Derecha: " + msgid "Show all presets (including incompatible)" msgstr "Mostrar todos los perfiles (incluyendo los compatibles)" @@ -10454,36 +10376,30 @@ msgstr "Seleccionar objetos por rectángulo" msgid "Arrow Up" msgstr "Flecha hacia arriba" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive Y direction" msgstr "Mover la selección 10 mm en dirección Y positiva" msgid "Arrow Down" msgstr "Flecha hacia abajo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative Y direction" msgstr "Mover la selección 10 mm en dirección Y negativa" msgid "Arrow Left" msgstr "Flecha hacia izquierda" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative X direction" msgstr "Mover la selección 10 mm en dirección X negativa" msgid "Arrow Right" msgstr "Flecha hacia derecha" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive X direction" msgstr "Mover la selección 10 mm en dirección X positiva" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Movement step set to 1mm" msgstr "Paso de movimiento configurado a 1 mm" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Keyboard 1-9: set filament for object/part" msgstr "Teclado 1-9: ajustar el filamento para el objeto/pieza" @@ -10530,7 +10446,7 @@ msgid "Gizmo mesh boolean" msgstr "Gizmo buleana de malla" msgid "Gizmo FDM paint-on fuzzy skin" -msgstr "Herramienta FDM para pintar piel difusa" +msgstr "Herramienta FDM para pintar piel rugosa" msgid "Gizmo SLA support points" msgstr "Herramienta de puntos de soporte SLA" @@ -10580,7 +10496,6 @@ msgstr "Herramienta" msgid "Set extruder number for the objects and parts" msgstr "Ajustar el número de extrusor para los objetos y las piezas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete objects, parts, modifiers" msgstr "Eliminar objetos, piezas, modificadores" @@ -10633,7 +10548,6 @@ msgstr "información de actualización de la versión %s:" msgid "Network plug-in update" msgstr "Actualizar plug-in de red" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." msgstr "Click en Aceptar para actualizar el plug-in de red cuando Orca Slicer vuelva a iniciarse." @@ -10778,11 +10692,9 @@ msgstr "Actualización exitosa" 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 "¿Estás seguro que deseas actualizar? Esto puede llevar sobre 10 minutos. No apague mientras la impresora está actualizando." -# TODO: Review, changed by lang refactor. PR 14254 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 'Update firmware'." -msgstr "Una actualización importante fue detectada y necesita ejecutarse antes de que la impresión pueda continuar. ¿Quiere actualizar ahora? Puede actualizar después desde \"Actualizar fimware\"." +msgstr "Una actualización importante fue detectada y necesita ejecutarse antes de que la impresión pueda continuar. ¿Quiere actualizar ahora? Puede actualizar después desde \"Actualizar firmware\"." -# TODO: Review, changed by lang refactor. PR 14254 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 the printer or update next time you start Orca Slicer." msgstr "La versión de firmware es anormal. Es necesario reparar y actualizar antes de imprimir. ¿Quieres actualizar ahora? Puedes actualizar al iniciar en el siguiente arranque de la impresora o cuando arranque Orca Slicer." @@ -10806,7 +10718,6 @@ msgstr "Reparación cancelada" msgid "Copying of file %1% to %2% failed: %3%" msgstr "La copia del archivo %1% a %2% falló: %3%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please check any unsaved changes before updating the configuration." msgstr "Es necesario comprobar los cambios no guardados antes de actualizar la configuración." @@ -10822,7 +10733,6 @@ msgstr "Abrir archivo G-Code:" msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." msgstr "Un objeto tiene la primera capa vacía y no se puede imprimir. Por favor, corte el fondo o habilite los soportes." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The object has empty layers between %1% and %2% and can’t be printed." msgstr "No se puede imprimir el objeto para la capa vacía entre %1% y %2%." @@ -10831,9 +10741,8 @@ msgstr "No se puede imprimir el objeto para la capa vacía entre %1% y %2%." msgid "Object: %1%" msgstr "Objeto: %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Parts of the object at these heights may be too thin or the object may have a faulty mesh." -msgstr "Tal vez detalles del objeto a esa altura son demasiado finos, o el objeto tiene una malla defectuosa" +msgstr "Tal vez detalles del objeto a esa altura son demasiado finos, o el objeto tiene una malla defectuosa." msgid "Process change extrusion role G-code" msgstr "Code de cambio de rol de extrusión del proceso" @@ -10841,9 +10750,8 @@ msgstr "Code de cambio de rol de extrusión del proceso" msgid "Filament change extrusion role G-code" msgstr "G-Code de cambio de rol de extrusión del filamento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "No object can be printed. It may be too small." -msgstr "No se puede imprimir ningún objeto. Tal vez sea demasiado pequeño" +msgstr "No se puede imprimir ningún objeto. Tal vez sea demasiado pequeño." msgid "Your print is very close to the priming regions. Make sure there is no collision." msgstr "Las piezas se encuentran muy cerca de las regiones de purgado. Asegúrese de que no hay colisión." @@ -10876,7 +10784,7 @@ msgstr "" "Comprueba la versión de tu firmware y actualiza tu tipo de G-code a «Marlin 2»." msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2." -msgstr "Input shaping solo es compatible con Klipper, RepRapFirmware y Marlin 2" +msgstr "Input shaping solo es compatible con Klipper, RepRapFirmware y Marlin 2." msgid "Grouping error: " msgstr "Error de agrupación: " @@ -10887,7 +10795,6 @@ msgstr " no se puede colocar en el " msgid "Internal Bridge" msgstr "Puente Interior" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " msgstr "Ha fallado el cálculo del ancho de línea de %1%. No se puede obtener el valor de \"%2%\". " @@ -10901,9 +10808,8 @@ msgstr "error no definido" msgid "too many files" msgstr "demasiados archivos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File too large" -msgstr "archivo demasiado grande" +msgstr "El archivo es demasiado grande" msgid "unsupported method" msgstr "método no compatible" @@ -10923,9 +10829,8 @@ msgstr "no es un archivo ZIP" msgid "invalid header or corrupted" msgstr "encabezado inválido o corrupto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Saving to RAID is not supported." -msgstr "multidisco no soportado" +msgstr "No se admite el almacenamiento en RAID." msgid "decompression failed" msgstr "descompresión fallida" @@ -10972,9 +10877,8 @@ msgstr "parámetro inválido" msgid "invalid filename" msgstr "nombre de archivo inválido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Buffer too small" -msgstr "buffer demasiado pequeño" +msgstr "El búfer es demasiado pequeño" msgid "internal error" msgstr "error interno" @@ -10982,9 +10886,8 @@ msgstr "error interno" msgid "file not found" msgstr "archivo no encontrado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Archive too large" -msgstr "archivo demasiado grande" +msgstr "El archivo es demasiado grande" msgid "validation failed" msgstr "validación fallida" @@ -10992,10 +10895,9 @@ msgstr "validación fallida" msgid "write callback failed" msgstr "la llamada de recuperación de la escritura ha fallado" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "%1% is too close to exclusion area. There may be collisions when printing." -msgstr "%1% está muy cerca del área de exclusión, puede conllevar colisiones cuando se imprime." +msgstr "%1% está demasiado cerca de la zona de exclusión. Podrían producirse colisiones al imprimir." #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -11012,14 +10914,13 @@ msgid " is too close to clumping detection area, there may be collisions when pr msgstr " está demasiado cerca del área de detección de aglomeraciones, puede haber colisiones durante la impresión." msgid "Prime Tower" -msgstr "Torre de Purga" +msgstr "Torre de purga" msgid " is too close to others, and collisions may be caused.\n" msgstr " está demasiado cerca de otros, y se pueden producir colisiones.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid " is too close to an exclusion area, and collisions will be caused.\n" -msgstr " está demasiado cerca del área de exclusión, y se producirán colisiones.\n" +msgstr " está demasiado cerca de una zona de exclusión, lo que provocará colisiones.\n" msgid " is too close to clumping detection area, and collisions will be caused.\n" msgstr " está demasiado cerca del área de detección de aglomeraciones, y se producirán colisiones.\n" @@ -11051,7 +10952,6 @@ msgstr "Se requiere una torre de purga para la detección de aglomeraciones; de msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." msgstr "Seleccione la secuencia de impresión \"Por objeto\" para imprimir varios objetos en el modo de jarrón espiral." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Spiral (vase) mode does not work when an object contains more than one material." msgstr "El modo de jarrón en espiral no funciona cuando un objeto contiene más de un material." @@ -11085,30 +10985,24 @@ msgstr "La prevención de rezumado sólo es compatible con la torre de limpieza msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors." msgstr "Actualmente, la torre de purga sólo es compatible para los firmwares Marlin, RepRap/Sprinter, RepRapFirmware y Repetier." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported in “By object” print." msgstr "La torre de purga no es compatible con la impresión \"Por objeto\"." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." msgstr "La torre de purga no es compatible cuando la altura de capa adaptativa está activada. Requiere que todos los objetos tengan la misma altura de capa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires any “support gap” to be a multiple of layer height." msgstr "La torre de purga requiere que el \"hueco de apoyo\" sea múltiplo de la altura de la capa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects have the same layer height." msgstr "La torre de purga requiere que todos los objetos tengan la misma altura de capa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects are printed over the same number of raft layers." msgstr "La torre de purga requiere que todos los objetos se impriman sobre el mismo número de capas de balsa (base de impresión)" msgid "The prime tower is only supported for multiple objects if they are printed with the same support_top_z_distance." msgstr "La torre de purga solo es compatible para múltiples objetos si se imprimen con el mismo support_top_z_distance." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects are sliced with the same layer height." msgstr "La torre de purga requiere que todos los objetos se laminen con la misma altura de capa." @@ -11118,18 +11012,15 @@ msgstr "La torre de purga sólo se admite si todos los objetos tienen la misma a msgid "One or more object were assigned an extruder that the printer does not have." msgstr "A uno o más objetos se les asignó un extrusor que la impresora no tiene." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too small" msgstr "Ancho de línea demasiado pequeño" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too large" msgstr "Ancho de línea demasiado grande" 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 "Impresión con múltiples extrusores de diámetros de boquilla diferentes. Si el soporte se va a imprimir con el filamento actual (support_filament == 0 o support_interface_filament == 0), todas las boquillas deben tener el mismo diámetro." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that support has the same layer height as the object." msgstr "La torre de purga requiere que el soporte tenga la misma altura de capa que el objeto." @@ -11154,7 +11045,6 @@ msgstr "El patrón de base hueca no es compatible con este tipo de soporte; se u msgid "Support enforcers are used but support is not enabled. Please enable support." msgstr "Se utilizan las herramientas de forzado de soporte pero los soportes no están habilitados. Por favor, active la generación de soportes." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height cannot exceed nozzle diameter." msgstr "La altura de la capa no puede superar el diámetro de la boquilla." @@ -11217,7 +11107,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "La opción de pared precisa se ignorará para secuencias de paredes externo-interno o interno-externo-interno." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "El modelo de Adaptive Pressure Advance de uno o más extrusores puede contener valores no válidos." msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "La contracción del filamento no se utilizará porque la contracción del filamento para los filamentos utilizados difiere significativamente." @@ -11225,13 +11115,21 @@ msgstr "La contracción del filamento no se utilizará porque la contracción de msgid "Generating skirt & brim" msgstr "Generando falda y borde de adherencia" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"Las faldas por objeto no caben entre los objetos en la secuencia de impresión Por objeto.\n" +"\n" +"Separe más los objetos, reduzca el tamaño del borde de adherencia o de la falda, cambie el Tipo de falda a Combinado, o cambie la Secuencia de impresión a Por capa." + msgid "Exporting G-code" msgstr "Exportando G-Code" msgid "Generating G-code" msgstr "Generando G-Code" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing of the filename_format template failed." msgstr "Procesamiento fallido de la plantilla filename_format." @@ -11262,7 +11160,6 @@ msgstr "Las plataformas de los cabezales de impresión paralelos excluyen cierta 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 "Lista ordenada de áreas excluidas de la cama según el número de cabezales de impresión paralelos. El punto 1 se aplica a un cabezal de impresión, el punto 2 a dos cabezales, y así sucesivamente. Deje un punto en blanco si no hay áreas excluidas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Excluded bed area" msgstr "Área excluida de la cama" @@ -11278,7 +11175,6 @@ msgstr "Modelo personalizado de cama" msgid "Elephant foot compensation" msgstr "Compensación de Pata de elefante" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shrinks the first layer on the build plate to compensate for elephant foot effect." msgstr "Contracción de la primera capa en la cama de impresión para compensar el efecto de Pata de elefante." @@ -11300,16 +11196,14 @@ msgstr "" "Se establece el valor inicial para la segunda capa.\n" "Las capas posteriores se vuelven linealmente más densas en la altura especificada en elefant_foot_compensation_layers." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the height for each layer. Smaller layer heights give greater accuracy but longer printing time." msgstr "Altura de laminado para cada capa. Una altura de capa más pequeña significa más precisión y más tiempo de impresión." msgid "Printable height" msgstr "Altura imprimible" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum printable height which is limited by the height of the build area." -msgstr "Altura máxima imprimible limitada por el mecanismo de la impresora." +msgstr "Altura máxima imprimible limitada por la altura del área de impresión." msgid "Extruder printable height" msgstr "Altura imprimible del extrusor" @@ -11333,10 +11227,10 @@ msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Permitir el control de la impresora de BambuLab a través de hosts de impresión de terceros." msgid "Use 3MF instead of G-code" -msgstr "" +msgstr "Utiliza 3MF en lugar de G-code" msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file." -msgstr "" +msgstr "Activa esta opción si la impresora admite un archivo 3MF como trabajo de impresión. Cuando está activada, Orca Slicer envía el archivo cortado como un archivo .gcode.3mf, en lugar de como un archivo .gcode convencional." msgid "Printer Agent" msgstr "Agente de impresora" @@ -11386,9 +11280,8 @@ msgstr "Contraseña" msgid "Ignore HTTPS certificate revocation checks" msgstr "Ignorar comprobaciones de revocación de certificado HTTPS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ignore HTTPS certificate revocation checks in the case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." -msgstr "Ignorar comprobaciones de certificado de revocación HTTPS en caso de perder o puntos de distribución sin conexión. Se debería activar esta opción de certificados autofirmados si la conexión falla." +msgstr "Ignorar las comprobaciones de revocación de certificados HTTPS en caso de puntos de distribución ausentes o sin conexión. Puede que desee activar esta opción para certificados autofirmados si la conexión falla." msgid "Names of presets related to the physical printer." msgstr "Nombres de perfiles relacionados por la impresora física." @@ -11405,16 +11298,14 @@ msgstr "Resumen HTTP" msgid "Avoid crossing walls" msgstr "Evitar cruzar perímetro" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detours to avoid traveling across walls, which may cause blobs on the surface." msgstr "Desvíese y evite atravesar el perímetro, ya que puede provocar una mancha en la superficie." msgid "Avoid crossing walls - Max detour length" msgstr "Evitar cruzar perímetro - Longitud de desvío máximo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum detour distance for avoiding crossing wall: The printer won'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. A value of 0 will disable this." -msgstr "Distancia de desvío máximo para evitar cruzar el perímetro. No lo evite si la distancia de desvío es más alta que este valor. La distancia de desvío podría tanto como un valor absoluto como porcentaje (por ejemplo 50%) de una trayectoria de viaje directa. Cero para deshabilitar." +msgstr "Distancia de desvío máximo para evitar cruzar el perímetro. No lo evite si la distancia de desvío es más alta que este valor. La distancia de desvío puede especificarse como un valor absoluto o como porcentaje (por ejemplo 50%) de una trayectoria de viaje directa. Cero para deshabilitar." msgid "mm or %" msgstr "mm o %" @@ -11425,61 +11316,47 @@ msgstr "Otras capas" 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 "Temperatura de la cama para las capas, excepto la inicial. Un valor de 0 significa que el filamento no es compatible con la Cama Fría SuperTack." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Esta es la temperatura de la cama para las capas excepto la inicial. Un valor de 0 significa que el filamento no admite la impresión en la Cama Fría." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured Cool Plate." msgstr "Temperatura de la cama para las capas excepto la inicial. El valor 0 significa que el filamento no es compatible para imprimir en la placa fría texturizada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Esta es la temperatura de la cama para las capas excepto la inicial. Un valor de 0 significa que el filamento no admite la impresión en la Cama de Ingeniería." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the High Temp Plate." msgstr "Esta es la temperatura de la cama para las capas excepto la inicial. Un valor de 0 significa que el filamento no admite la impresión en la Cama de Alta Temperatura." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured PEI Plate." msgstr "Temperatura de cama para las capas excepto la inicial. El valor 0 significa que el filamento no es compatible para imprimir en la Cama PEI Texturizada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer" msgstr "Capa inicial" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer bed temperature" msgstr "Temperatura de la cama durante la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." msgstr "Temperatura de cama de la capa inicial. Valor 0 significa que el filamento no es compatible para imprimir en la Cama Fría SuperTack." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Esta es la temperatura de la cama de la primera capa. Un valor de 0 significa que el filamento no admite la impresión en la Cama Fría." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured Cool Plate." msgstr "Temperatura de la capa inicial. El valor 0 significa que el filamento no es compatible para imprimir en la placa fría texturizada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Esta es la temperatura de la cama de la primera capa. Un valor de 0 significa que el filamento no admite la impresión en la Cama de Ingeniería." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the High Temp Plate." msgstr "Esta es la temperatura de la cama de la primera capa. Un valor de 0 significa que el filamento no admite la impresión en la Cama de Alta Temperatura." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured PEI Plate." msgstr "Esta es la temperatura de la cama de la primera capa. Un valor de 0 significa que el filamento no admite la impresión en la Cama PEI Texturizada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate types supported by the printer" -msgstr "Tipos de cama que admite la impresora." +msgstr "Tipos de cama que admite la impresora" msgid "Default bed type" msgstr "Tipo de cama predeterminado" @@ -11511,7 +11388,6 @@ msgstr "Es el número de capas sólidas de la cubierta inferior, incluida la cap msgid "Bottom shell thickness" msgstr "Espesor mínimo de la cubierta inferior" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and the thickness of the bottom shell is determined simply by the number of bottom shell layers." msgstr "El número de capas sólidas del fondo se incrementa al cortar si el grosor calculado por las capas de la cubierta es más fino que este valor. Esto puede evitar tener una capa demasiado fina cuando la altura de la capa es pequeña. 0 significa que este ajuste está desactivado y el grosor de la capa inferior está absolutamente determinado por las capas de la cubierta inferior." @@ -11971,13 +11847,11 @@ msgstr "" "El valor 0 permite la inversión en cada capa par.\n" "Cuando Detectar voladizo de pared no está activado, esta opción se ignora y la inversión se produce en todas las capas pares." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slow down for overhangs" msgstr "Disminuir velocidad en voladizos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow down when printing overhangs. The speeds for different overhang percentages are set below." -msgstr "Habilite esta opción para ralentizar la impresión para diferentes grados de voladizo." +msgstr "Habilite esta opción para reducir la velocidad al imprimir voladizos. Las velocidades para los diferentes porcentajes de voladizo se configuran a continuación." msgid "Slow down for curled perimeters" msgstr "Reducir velocidad en perímetros curvados" @@ -12039,7 +11913,6 @@ msgstr "Velocidad de los puntes internos. Si se expresa como un porcentaje, ser msgid "Brim width" msgstr "Ancho del borde de adherencia" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the model to the outermost brim line." msgstr "Distancia del modelo a la línea más externa del borde de adherencia." @@ -12052,7 +11925,6 @@ msgstr "Contro de la generación del borde de adherencia en el lado exterior y/o msgid "Brim-object gap" msgstr "Espaciado borde de adherencia-objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This creates a gap between the innermost brim line and the object and can make the brim easier to remove." msgstr "Un hueco entre la línea más interna del borde de adherencia y el objeto puede hacer que el borde de adherencia se retire más fácilmente." @@ -12072,11 +11944,9 @@ msgstr "" "\n" "Nota: El valor resultante no se verá afectado por la relación de caudal de la primera capa." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Brim follows compensated outline" msgstr "Borde de adherencia sigue el esquema compensado" -# TODO: Review, changed by lang refactor. PR 14254 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" @@ -12131,18 +12001,15 @@ msgstr "máquina compatible ascendente" msgid "Condition" msgstr "Condición" -# TODO: Review, changed by lang refactor. PR 14254 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 "Una expresión booleana utilizando valores de configuración de un perfil existente. Si esta expresión es verdadera, el perfil será considerado compatible con el perfil de impresión activo." +msgstr "Una expresión booleana que utiliza los valores de configuración de un perfil de impresora activo. Si esta expresión es verdadera, el perfil será considerado compatible con el perfil de impresora activo." msgid "Select profiles" msgstr "Seleccionar perfiles" -# TODO: Review, changed by lang refactor. PR 14254 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 "Una expresión booleana que utiliza los valores de configuración de un perfil de impresión activo. Si esta expresión se evalúa como verdadera, este perfil se considera compatible con el perfil de impresión activo." +msgstr "Una expresión booleana que utiliza los valores de configuración de un perfil de impresión activo. Si el resultado de esta expresión es verdadero, se considera que este perfil es compatible con el perfil de impresión activo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the print sequence, allowing you to print layer-by-layer or object-by-object." msgstr "Secuencia de impresión, capa a capa u objeto por objeto." @@ -12164,17 +12031,34 @@ msgstr "Como lista de objetos" msgid "Slow printing down for better layer cooling" msgstr "Reducir la velocidad de impresión para mejorar la refrigeración de las capas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Active esta opción para reducir la velocidad de impresión para que el tiempo final de la capa no sea inferior al umbral de tiempo de la capa en \"Umbral de velocidad máxima del ventilador\", de modo que la capa pueda enfriarse durante más tiempo. Esto puede mejorar la calidad del refrigeración para los detalles pequeños y esquirlas." +msgstr "Active esta opción para reducir la velocidad de impresión para que el tiempo final de la capa no sea inferior al umbral de tiempo de la capa en \"Umbral de velocidad máxima del ventilador\", de modo que la capa pueda enfriarse durante más tiempo. Esto puede mejorar la calidad de los detalles pequeños." msgid "Normal printing" msgstr "Impresión normal" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "La aceleración por defecto tanto de la impresión normal como del desplazamiento excepto para la primera capa." +msgid "Acceleration of travel moves." +msgstr "Aceleración de los movimientos de desplazamiento." + +msgid "First layer travel" +msgstr "Recorrido de primera capa" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Aceleración de desplazamiento de la primera capa.\n" +"El valor porcentual es relativo a la aceleración de desplazamiento." + +msgid "mm/s² or %" +msgstr "mm/s² o %" + +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 "Aceleración de los puentes. Si el valor es expresado como un porcentaje (por ejemplo 50%), se calculará basándose en la aceleración del perímetro externo." + msgid "Default filament profile" msgstr "Perfil de filamento por defecto" @@ -12217,7 +12101,6 @@ msgstr "Desactivar todos los ventiladores de refrigeración en las primeras capa msgid "Don't support bridges" msgstr "No soportar puentes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." msgstr "No crear soportes en toda el área de los puentes. Los puentes normalmente pueden imprimirse directamente sin soporte si no son muy largos." @@ -12309,14 +12192,12 @@ msgstr "Sin filtro" msgid "Max bridge length" msgstr "Distancia máxima de puentes sin soporte" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum 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 "Esta es la longitud máxima para imprimir puentes sin soportes. Ajústalo a 0 si quieres que todos los puentes sean soportados, y ajústalo a un valor muy grande si no quieres que ningún puente sea soportado." msgid "End G-code" msgstr "G-Code final" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-Code when finishing the entire print." msgstr "G-Code ejecutado en el final de la impresión completa." @@ -12326,7 +12207,6 @@ msgstr "G-Code ejecutado entre Objetos" msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." msgstr "G-Code insertado entre objetos. Este parámetro sólo tendrá efecto cuando imprima sus modelos objeto por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-code when finishing the printing of this filament." msgstr "G-Code ejecutado cuando se termine de imprimir con este filamento." @@ -12358,7 +12238,6 @@ msgstr "Moderado" msgid "Top surface pattern" msgstr "Patrón de relleno cubierta superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for top surface infill." msgstr "Patrón de líneas del relleno de la superficie superior." @@ -12386,13 +12265,28 @@ msgstr "Espiral de Arquímedes" msgid "Octagram Spiral" msgstr "Espiral Octagonal" +msgid "Top surface density" +msgstr "Densidad de la superficie superior" + +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 "Densidad de la capa superficial superior. Un valor de 100% crea una capa superior totalmente sólida y lisa. Reducir este valor produce una superficie superior texturada, según el patrón elegido. Un valor de 0% provocará que sólo se creen las paredes en la capa superior. Destinado a fines estéticos o funcionales, no para corregir problemas como la sobreextrusión." + msgid "Bottom surface pattern" msgstr "Patrón de relleno de cubierta inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Patrón de líneas del relleno de la superficie de la cubierta inferior, no del relleno del puente." +msgid "Bottom surface density" +msgstr "Densidad de la superficie inferior" + +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 "" +"Densidad de la capa superficial inferior. Destinada a fines estéticos o funcionales, no para corregir problemas como la sobreextrusión.\n" +"ADVERTENCIA: Reducir este valor puede afectar negativamente la adherencia a la cama." + msgid "Internal solid infill pattern" msgstr "Patrón de relleno sólido interno" @@ -12402,9 +12296,8 @@ msgstr "Patrón lineal de relleno sólido interno. Si se activa la detección de msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea del perímetro externo. Si se expresa cómo %, se calculará sobre el diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Velocidad del perímetro exterior, que es el más externo y visible. Usar una velocidad menor que la del perímetro interior paraobtener un mejor acabado superficial." +msgstr "Velocidad del perímetro exterior, que es el más externo y visible. Usar una velocidad menor que la del perímetro interior para obtener un mejor acabado superficial." msgid "Small perimeters" msgstr "Perímetros pequeños" @@ -12418,6 +12311,18 @@ msgstr "Umbral de Perímetros pequeños" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Esto configura el umbral de longitud de perímetros pequeños. El umbral por defecto es 0mm." +msgid "Small support perimeters" +msgstr "Perímetros pequeños de soporte" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "Igual que \"Perímetros pequeños\", pero para los soportes. Este ajuste independiente afectará a la velocidad del soporte en áreas <= `small_support_perimeter_threshold`. Si se expresa como porcentaje (por ejemplo: 80%), se calculará sobre el ajuste de velocidad de soporte o de interfaz de soporte anterior. Establécelo a cero para automático." + +msgid "Small support perimeters threshold" +msgstr "Umbral de perímetros pequeños de soporte" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "Esto establece el umbral para la longitud de los perímetros pequeños de soporte. El umbral predeterminado es 0mm." + msgid "Walls printing order" msgstr "Orden de impresión de perímetros" @@ -12482,18 +12387,15 @@ msgstr "En el sentido de las agujas del reloj" msgid "Height to rod" msgstr "Altura a la barra" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." msgstr "Distancia de la punta de la boquilla hasta la varilla baja. Usado para evitar colisiones en las impresiones por objeto." msgid "Height to lid" msgstr "Altura hasta la tapa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." msgstr "Distancia de la punta de la boquilla a la tapa. Usado para evitar la colisión en la impresión por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." msgstr "El radio de exclusión alrededor del extrusor. Se utiliza para evitar la colisión en la impresión por objeto." @@ -12606,25 +12508,35 @@ msgstr "" "2. Tome nota del valor óptimo de PA para cada velocidad de flujo volumétrico y aceleración. Puede encontrar el valor de flujo seleccionando flujo en el desplegable del esquema de colores y moviendo el deslizador horizontal sobre las líneas del patrón PA. El valor númerico debería ser visible en la parte inferior de la página. El valor ideal de PA debería disminuir cuanto mayor sea el flujo volumétrico. Si no es así, confirme que su extrusor funciona correctamente. Cuanto más lento y con menos aceleración imprimas, mayor será el rango de valores PA aceptables. Si no se aprecia ninguna diferencia, utilice el valor PA de la prueba más rápida.\n" "3. Introduzca los trios de valores PA, Flujo y Aceleraciones en el cuadro de texto que aparece aquí y guarde su perfil de filamento." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Activación del Avance de Presión Adaptativo para Voladizos (beta)" +msgid "Enable adaptive pressure advance within features (beta)" +msgstr "Activar Pressure Advance adaptativo dentro de las características (beta)" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." msgstr "" +"Activa el PA adaptativo siempre que haya cambios de flujo en una característica, como cambios de ancho de línea en una esquina o en voladizos.\n" +"\n" +"No es compatible con las impresoras Prusa, ya que se pausan para procesar los cambios de PA, lo que provoca retrasos y defectos.\n" +"\n" +"Esta es una opción experimental, ya que si el perfil de PA no se configura con precisión, causará problemas de uniformidad." -msgid "Pressure advance for bridges" -msgstr "Pressure advance para puentes" +msgid "Static pressure advance for bridges" +msgstr "Pressure Advance estático para puentes" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Valor de Avance de Presión (PA) para puentes. Establecer a 0 para desactivar.\n" +"Valor de Pressure Advance estático para los puentes. Establécelo a 0 para aplicar el mismo Pressure Advance que en los \n" +"perímetros equivalentes (usando los ajustes adaptativos si están activados).\n" "\n" -"Un valor de PA más bajo al imprimir puentes ayuda a reducir la aparición de una ligera sub-extrusión inmediatamente después de los puentes. Esto es causado por la caída de presión en la boquilla cuando se imprime en el aire, y un PA más bajo ayuda a contrarrestar este efecto." +"Un valor de PA más bajo al imprimir puentes ayuda a reducir la aparición de una ligera subextrusión justo después de los puentes. Esto se debe a la caída de presión en la boquilla al imprimir en el aire, y un PA más bajo ayuda a contrarrestarlo." 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 "Ancho de línea por defecto si otros anchos de línea están a 0. Si se expresa cómo %, se calculará en base al diámetro de la boquilla." @@ -12632,7 +12544,6 @@ msgstr "Ancho de línea por defecto si otros anchos de línea están a 0. Si se msgid "Keep fan always on" msgstr "Mantener el ventilador siempre encendido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." msgstr "Si se activa este ajuste, el ventilador nunca se detendrá y funcionará al menos a la velocidad mínima para reducir la frecuencia de arranque y parada." @@ -12653,9 +12564,8 @@ msgstr "" msgid "Layer time" msgstr "Tiempo de capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "El ventilador de refrigeración de la pieza se activará para las capas cuyo tiempo estimado sea inferior a este valor. La velocidad del ventilador se interpola entre las velocidades mínima y máxima del ventilador en función del tiempo de impresión de la cada capa." +msgstr "El ventilador de refrigeración de la pieza se activará para las capas cuyo tiempo estimado sea inferior a este valor. La velocidad del ventilador se interpola entre las velocidades mínima y máxima del ventilador en función del tiempo de impresión de cada capa." msgid "s" msgstr "s" @@ -12679,7 +12589,6 @@ msgstr "Puede escribir sus notas sobre el filamento aquí." msgid "Required nozzle HRC" msgstr "HRC de boquilla requerido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." msgstr "Dureza HRC mínima de boquilla requerida para imprimir el filamento. Cero significa que no se comprobará el valor HRC de la boquilla." @@ -12695,18 +12604,6 @@ msgstr "Auto para Descarga" msgid "Auto For Match" msgstr "Auto para Coincidencia" -msgid "Enable filament dynamic map" -msgstr "Habilitar mapa dinámico de filamentos" - -msgid "Enable dynamic filament mapping during print." -msgstr "Activar la asignación dinámica de filamentos durante la impresión." - -msgid "Has filament switcher" -msgstr "Cuenta con un selector de filamentos" - -msgid "Printer has a filament switcher hardware (e.g., AMS)." -msgstr "La impresora cuenta con un dispositivo de cambio de filamento (por ejemplo, AMS)." - msgid "Flush temperature" msgstr "Temperatura de descarga" @@ -12719,7 +12616,6 @@ msgstr "Velocidad volumétrica de descarga" msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." msgstr "Velocidad volumétrica al limpiar el filamento. 0 indica la velocidad volumétrica máxima." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." msgstr "Este ajuste representa la cantidad de volumen de filamento que puede ser derretido y extruido por segundo. La velocidad de impresión se verá limitada por esta velocidad volumétrica, en caso de velocidades demasiado altas o poco razonables. No puede ser cero." @@ -12753,7 +12649,6 @@ msgstr "Por primer filamento" msgid "By Highest Temp" msgstr "Por temperatura máxima" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." msgstr "El diámetro del filamento se utiliza para calcular la extrusión en el G-Code, por lo que es importante y debe ser preciso." @@ -12827,7 +12722,6 @@ msgstr "Velocidad usada al comenzar la fase de carga." msgid "Unloading speed" msgstr "Velocidad de descarga" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Velocidad usada para descargar el filamento en la torre de purga (no afecta a la parte inicial de la descarga justo después del moldeado de extremo)." @@ -12874,7 +12768,7 @@ msgid "After a tool change, the exact position of the newly loaded filament insi msgstr "Tras un cambio de cabezal, es posible que no se conozca la posición exacta del filamento recién cargado dentro de la boquilla y que la presión del filamento aún no sea estable. Antes de purgar el cabezal de impresión en un relleno o en un objeto de sacrificio, OrcaSlicer siempre cebará esta cantidad de material en la torre de purga para producir sucesivas extrusiones de relleno u objetos de sacrificio de forma fiable." msgid "Wipe tower cooling" -msgstr "Refrigeración de Torre de Purga" +msgstr "Refrigeración de torre de purga" msgid "Temperature drop before entering filament tower" msgstr "Descenso de temperatura antes de entrar en la torre de filamentos" @@ -12945,16 +12839,14 @@ msgstr "Flujo usado por el Moldeado de Extremo de filamento antes del cambio de msgid "Density" msgstr "Densidad" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament density, for statistical purposes only." msgstr "Densidad del filamento. Sólo para las estadísticas." msgid "g/cm³" msgstr "g/cm³" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament material type" -msgstr "El tipo de material del filamento." +msgstr "El tipo de material del filamento" msgid "Soluble material" msgstr "Material soluble" @@ -12983,14 +12875,12 @@ msgstr "El filamento es imprimible en el extrusor." msgid "Softening temperature" msgstr "Temperatura de ablandado" -# TODO: Review, changed by lang refactor. PR 14254 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 clogs." msgstr "El material se reblandece a esta temperatura, por lo que cuando la temperatura de la cama es igual o superior a ella, es muy recomendable abrir la puerta frontal y/o retirar el cristal superior para evitar atascos." msgid "Price" msgstr "Precio" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament price, for statistical purposes only." msgstr "Precio del filamento. Sólo para las estadísticas." @@ -13009,7 +12899,6 @@ msgstr "(No definido)" msgid "Sparse infill direction" msgstr "Dirección de relleno de baja densidad" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." msgstr "Ángulo para el patrón de relleno de baja densidad, que controla el inicio o la dirección principal de la línea." @@ -13019,6 +12908,26 @@ msgstr "Dirección del relleno sólido" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Ángulo para el patrón de relleno sólido, que controla el inicio o la dirección principal de la línea." +msgid "Top layer direction" +msgstr "Dirección de la capa superior" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" +"Ángulo fijo para el relleno sólido superior y las líneas de alisado.\n" +"Establécelo a -1 para seguir la dirección predeterminada del relleno sólido." + +msgid "Bottom layer direction" +msgstr "Dirección de la capa inferior" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" +"Ángulo fijo para las líneas del relleno sólido inferior.\n" +"Establécelo a -1 para seguir la dirección predeterminada del relleno sólido." + msgid "Sparse infill density" msgstr "Densidad de relleno de baja densidad" @@ -13051,15 +12960,13 @@ msgstr "Usar múltiples líneas para el patrón de relleno, si el patrón de rel msgid "Z-buckling bias optimization (experimental)" msgstr "Optimización del desplazamiento por deformación en Z (experimental)" -# TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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 "Ajusta la onda giroide a lo largo del eje Z (vertical) con una densidad de relleno baja para acortar la longitud efectiva de la columna vertical y mejorar la resistencia al pandeo por compresión en el eje Z. Se mantiene el consumo de filamento. No tiene efecto con una densidad de relleno escasa de aproximadamente el ~30% o superior. Solo se aplica cuando el patrón de relleno escaso está configurado en «Giroide»." +msgstr "Ajusta la onda Giroide a lo largo del eje Z (vertical) con una densidad de relleno baja para acortar la longitud efectiva de la columna vertical y mejorar la resistencia al pandeo por compresión en el eje Z. Se mantiene el consumo de filamento. No tiene efecto con una densidad de relleno escasa de aproximadamente el ~30% o superior. Solo se aplica cuando el patrón de relleno escaso está configurado en «Giroide»." msgid "Sparse infill pattern" msgstr "Patrón de relleno de baja densidad" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for internal sparse infill." msgstr "Patrón de líneas para el relleno interno de baja densidad." @@ -13120,94 +13027,14 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroide" -msgid "Lateral lattice angle 1" -msgstr "Ángulo de Enrejado Lateral 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "El ángulo del primer conjunto de elementos del Enrejado Lateral en la dirección Z. Cero es vertical." - -msgid "Lateral lattice angle 2" -msgstr "Ángulo de Enrejado Lateral 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "El ángulo del segundo conjunto de elementos del Enrejado Lateral en la dirección Z. Cero es vertical." - -msgid "Infill overhang angle" -msgstr "Ángulo de voladizo del relleno" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -msgstr "El ángulo de las líneas inclinadas del relleno. 60° dará como resultado un panal puro." - -msgid "Lightning overhang angle" -msgstr "Ángulo de saliente del rayo" - -msgid "Maximum overhang angle for Lightning infill support propagation." -msgstr "Ángulo máximo de voladizo para la propagación de los soportes de relleno en Rayo." - -msgid "Prune angle" -msgstr "Ángulo de recorte" - -msgid "" -"Controls how aggressively short or unsupported Lightning branches are pruned.\n" -"This angle is converted internally to a per-layer distance." -msgstr "" -"Determina con qué intensidad se podan las ramas de los rayos cortas o sin soporte.\n" -"Este ángulo se convierte internamente en una distancia por capa." - -msgid "Straightening angle" -msgstr "Ángulo de enderezado" - -msgid "Maximum straightening angle used to simplify Lightning branches." -msgstr "Ángulo máximo de enderezamiento utilizado para simplificar las ramas del Rayo." - -msgid "Sparse infill anchor length" -msgstr "Longitud del anclaje de relleno de baja densidad" - -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 "" -"Conectar una línea de relleno a un perímetro interno con un segmento corto de un perímetro adicional. Si se expresa como porcentaje (ejemplo: 15%) este es calculado sobre el ancho de extrusión de relleno. OrcaSlicer intenta conectar dos líneas de relleno cercanas a un segmento de perímetro corto. Si no se encuentra ningún segmento más corto que relleno_anclaje_max, la línea de relleno se conecta a un segmento de perímetro en un solo lado y la de relleno se conecta a un segmento de perímetro en un solo lado y la longitud del ancho de segmento de perímetro escogido se limita a este parámetro, pero no más largo que anclaje_longitud_max.\n" -"Configure este parámetro a cero para deshabilitar los perímetros de anclaje conectados a una sola línea de relleno." - -msgid "0 (no open anchors)" -msgstr "0 (no anclar)" - -msgid "1000 (unlimited)" -msgstr "1000 (ilimitada)" - -msgid "Maximum length of the infill anchor" -msgstr "Máxima longitud del anclaje de relleno" - -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 "" -"Conectar la línea de relleno a un perímetro interno con un segmento corto de un perímetro adicional. Si se expresa como porcentaje (por ejemplo: 15%) este se calcula sobre el ancho de relleno de extrusión. OrcaSlicer intenta conectar dos líneas de relleno cercanas a un segmento de perímetro corto. Si no hay ningún segmento más corto que este parámetro, esta línea de relleno se conecta a un segmento de perímetro solamente a un lado y la longitud del segmento de perìmetro escogida se limita a relleno_anclaje, pero no más alto que este parámetro.\n" -"Si se deja a 0, el algoritmo antiguo para conexión de relleno se usará, esto debería drear el mismo resultado que con 1000 y 0." - -msgid "0 (Simple connect)" -msgstr "0 (Conexión simple)" - -msgid "Acceleration of inner walls." -msgstr "Aceleración de los perímetros internos." - -msgid "Acceleration of travel moves." -msgstr "Aceleración de los movimientos de desplazamiento." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Aceleración del relleno de la superficie superior. El uso de un valor más bajo puede mejorar la calidad de la superficie superior." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Aceleración del perímetro externo. Usar un valor menor puede mejorar la calidad." -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 "Aceleración de los puentes. Si el valor es expresado como un porcentaje (por ejemplo 50%), se calculará basándose en la aceleración del perímetro externo." - -msgid "mm/s² or %" -msgstr "mm/s² o %" +msgid "Acceleration of inner walls." +msgstr "Aceleración de los perímetros internos." 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 "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 defecto." @@ -13215,20 +13042,9 @@ msgstr "Aceleración del relleno de baja densidad. Si el valor se expresa en por 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 "Aceleración del relleno sólido interno. Si el valor se expresa como porcentaje (por ejemplo 100%), este se calculará basándose en la aceleración por defecto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Aceleración de la primera capa. El uso de un valor más bajo puede mejorar la adherencia con la cama de impresión." -msgid "First layer travel" -msgstr "Recorrido de primera capa" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" -"Aceleración de desplazamiento de la primera capa.\n" -"El valor porcentual es relativo a la aceleración de desplazamiento." - msgid "Enable accel_to_decel" msgstr "Activar acel_a_decel" @@ -13276,23 +13092,18 @@ msgstr "" msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea de la primera capa. Si se expresa como %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer height" msgstr "Altura de la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height of the first layer. Making the first layer height thicker can improve build plate adhesion." msgstr "Altura de la primera capa. Hacer que la altura de la primera capa sea ligeramente más gruesa puede mejorar la adherencia con la cama de impresión." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for the first layer except for solid infill sections." msgstr "Velocidad de la primera capa excepto la parte sólida de relleno." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer infill" msgstr "Relleno de la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid infill parts of the first layer." msgstr "Velocidad de la parte de relleno sólido de la primera capa." @@ -13303,18 +13114,16 @@ msgid "Travel speed of the first layer." msgstr "Velocidad de movimientos de desplazamiento en la primera capa." msgid "Number of slow layers" -msgstr "" +msgstr "Número de capas lentas" 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 "Las primeras capas se imprimen más lentamente de lo normal. La velocidad se incrementa gradualmente de una forma lineal sobre el número específicado de capas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer nozzle temperature" msgstr "Temperatura de la boquilla de la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature for printing the first layer with this filament" -msgstr "Temperatura de la boquilla para imprimir la primera capa cuando se utiliza este filamento." +msgstr "Temperatura de la boquilla para imprimir la primera capa cuando se utiliza este filamento" msgid "Full fan speed at layer" msgstr "Velocidad máxima del ventilador en la capa" @@ -13325,6 +13134,22 @@ msgstr "La velocidad de ventilador se incrementará linealmente de cero desde la msgid "layer" msgstr "capa" +msgid "First layer fan speed" +msgstr "Velocidad del ventilador en la primera capa" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" +"Establece una velocidad exacta del ventilador para la primera capa, anulando el resto de ajustes de refrigeración. Útil para proteger las piezas del cabezal impresas en 3D (por ejemplo, los conductos de ABS/ASA tipo Voron) de una cama caliente. Una pequeña cantidad de flujo de aire enfría los conductos, sin usar la refrigeración completa que en ciertas condiciones puede perjudicar la adhesión de la primera capa.\n" +"A partir de la segunda capa, se reanuda la refrigeración normal.\n" +"Si también se ha establecido \"Velocidad máxima del ventilador en la capa\", el ventilador sube suavemente desde este valor en la primera capa hasta tu objetivo en la capa elegida.\n" +"Solo disponible cuando \"No refrigerar las primeras\" es 0.\n" +"Establécelo a -1 para desactivarlo." + msgid "Support interface fan speed" msgstr "Velocidad de ventilador en la interfaz de los soportes" @@ -13383,9 +13208,8 @@ msgstr "Velocidad de alisado" msgid "Filament-specific override for ironing speed. This allows you to customize the print speed of ironing lines for each filament type." msgstr "Sobrescritura específica por filamento para la velocidad de alisado. Esto permite personalizar la velocidad de impresión de las líneas de alisado para cada tipo de filamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting makes the toolhead randomly jitter while printing walls so that the surface has a rough textured look. This setting controls the fuzzy position." -msgstr "Sacudir ligeramente el cabezal de forma aleatoria cuando se imprime el perímetro externo, de modo que la superficie tenga un aspecto rugoso. Este ajuste controla la posición difusa." +msgstr "Sacudir ligeramente el cabezal de forma aleatoria cuando se imprime el perímetro externo, de modo que la superficie tenga un aspecto rugoso. Este ajuste controla la posición de la piel rugosa." msgid "Painted only" msgstr "Solo pintado" @@ -13403,26 +13227,25 @@ msgid "All walls" msgstr "Todas los perímetros" msgid "Fuzzy skin thickness" -msgstr "Espesor de superficie rugosa" +msgstr "Espesor de piel rugosa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The width of jittering: it’s recommended to keep this lower than the outer wall line width." msgstr "La anchura dentro de la cual se va a sacudir el cabezal. Se aconseja que esté por debajo del ancho de línea del perímetro exterior." msgid "Fuzzy skin point distance" -msgstr "Distancia entre puntos de superficie rugosa" +msgstr "Distancia entre puntos de piel rugosa" msgid "The average distance between the random points introduced on each line segment." msgstr "La diatancia media entre los puntos aleatorios introducidos en cada segmento de línea." msgid "Apply fuzzy skin to first layer" -msgstr "Aplicar superficie difusa en la primera capa" +msgstr "Aplicar piel rugosa en la primera capa" msgid "Whether to apply fuzzy skin on the first layer." -msgstr "Aplicar o no superficie difusa en la primera capa." +msgstr "Aplicar o no piel rugosa en la primera capa." msgid "Fuzzy skin generator mode" -msgstr "Modo generador de piel difusa" +msgstr "Modo generador de piel rugosa" #, c-format, boost-format msgid "" @@ -13433,12 +13256,12 @@ msgid "" "\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 "" -"Modo de generación de piel difusa. ¡Funciona solo con Arachne!\n" +"Modo de generación de piel rugosa. ¡Funciona solo con Arachne!\n" "Desplazamiento: Modo clásico en el que el patrón se forma desplazando la boquilla lateralmente respecto a la trayectoria original.\n" "Extrusión: Modo en que el patrón se forma por la cantidad de material extruido. Es un algoritmo rápido y directo sin vibraciones innecesarias de la boquilla que produce un patrón suave. Sin embargo, resulta más útil para formar paredes sueltas en toda la matriz.\n" "Combinado: Modo conjunto [Desplazamiento] + [Extrusión]. La apariencia de las paredes es similar al modo [Desplazamiento], pero no deja poros entre los perímetros.\n" "\n" -"¡Atención! Los modos [Extrusión] y [Combinado] funcionan solo si el parámetro fuzzy_skin_thickness no supera el espesor del perímetro impreso. 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." +"¡Atención! Los modos [Extrusión] y [Combinado] funcionan solo si el parámetro fuzzy_skin_thickness no supera el espesor del perímetro impreso. 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 rugosa 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." msgid "Displacement" msgstr "Desplazamiento" @@ -13450,7 +13273,7 @@ msgid "Combined" msgstr "Combinado" msgid "Fuzzy skin noise type" -msgstr "Tipo de ruido de la piel difusa" +msgstr "Tipo de ruido de la piel rugosa" msgid "" "Noise type to use for fuzzy skin generation:\n" @@ -13461,7 +13284,7 @@ msgid "" "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 "" -"Tipo de ruido a usar para la generación de la piel difusa:\n" +"Tipo de ruido a usar para la generación de la piel rugosa:\n" "Clásico: Ruido aleatorio uniforme clásico.\n" "Perlin: Ruido Perlin, que ofrece una textura más coherente.\n" "Ondulado: Similar al ruido Perlin, pero más agrupado.\n" @@ -13488,19 +13311,19 @@ msgid "Ripple" msgstr "Ripple" msgid "Fuzzy skin feature size" -msgstr "Tamaño de característica de la piel difusa" +msgstr "Tamaño de característica de la piel rugosa" msgid "The base size of the coherent noise features, in mm. Higher values will result in larger features." msgstr "El tamaño base de las características del ruido coherente, en mm. Valores mayores producen características más grandes." msgid "Fuzzy Skin Noise Octaves" -msgstr "Octavas de ruido de la piel difusa" +msgstr "Octavas de ruido de la piel rugosa" msgid "The number of octaves of coherent noise to use. Higher values increase the detail of the noise, but also increase computation time." msgstr "El número de octavas de ruido coherente a usar. Valores más altos aumentan el detalle del ruido, pero también incrementan el tiempo de cálculo." msgid "Fuzzy skin noise persistence" -msgstr "Persistencia del ruido de piel difusa" +msgstr "Persistencia del ruido de piel rugosa" msgid "The decay rate for higher octaves of the coherent noise. Lower values will result in smoother noise." msgstr "La tasa de decaimiento para las octavas superiores del ruido coherente. Valores más bajos producirán un ruido más suave." @@ -13552,7 +13375,6 @@ msgstr "Capas y Perímetros" 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 "Filtra los huecos menores que el umbral especificado (en mm). Este ajuste afecta los rellenos superior, inferior e interno, así como al relleno de huecos entre perímetros cuando se usa el generador Clásico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for gap infill. Gaps usually have irregular line width and should be printed more slowly." msgstr "Velocidad de relleno de huecos. Un hueco suele tener un ancho de línea irregular y debería imprimirse más lentamente." @@ -13583,7 +13405,6 @@ msgstr "Active esta opción para añadir el número de línea (Nx) al principio msgid "Scan first layer" msgstr "Escanear la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this to allow the camera on the printer to check the quality of the first layer." msgstr "Active esta opción para que la cámara de la impresora compruebe la calidad de la primera capa." @@ -13599,7 +13420,6 @@ msgstr "Configuración de la impresora" msgid "Nozzle type" msgstr "Tipo de boquilla" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The metallic material of the nozzle: This determines the abrasive resistance of the nozzle and what kind of filament can be printed." msgstr "El material metálico de la boquilla. Esto determina la resistencia a la abrasión de la boquilla, y con qué tipos de filamento puede imprimir." @@ -13615,7 +13435,6 @@ msgstr "Carburo de tungsteno" msgid "Nozzle HRC" msgstr "Dureza HRC de la boquilla" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle's hardness. Zero means no checking for nozzle hardness during slicing." msgstr "La dureza de la boquilla. Cero significa que no se comprobará la dureza de la boquilla durante el laminado." @@ -13702,7 +13521,6 @@ msgstr "Costo por hora de la impresora." msgid "money/h" msgstr "dinero/hora" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support controlling chamber temperature" msgstr "Función de control de temperatura de cámara" @@ -13763,7 +13581,6 @@ msgstr "Activar esta opción para generar archivos de G-Code comentados, con cad msgid "Infill combination" msgstr "Combinación de relleno" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Automatically combine sparse infill of several layers to print together in order to reduce time. Walls are still printed with original layer height." msgstr "Combinar automáticamente el relleno de baja densidad de varias capas para imprimirlas juntas y reducir el tiempo de impresión. El perímetro externo se sigue imprimiendo con la altura de capa original." @@ -13862,6 +13679,75 @@ 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 "Lateral lattice angle 1" +msgstr "Ángulo de Enrejado Lateral 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "El ángulo del primer conjunto de elementos del Enrejado Lateral en la dirección Z. Cero es vertical." + +msgid "Lateral lattice angle 2" +msgstr "Ángulo de Enrejado Lateral 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "El ángulo del segundo conjunto de elementos del Enrejado Lateral en la dirección Z. Cero es vertical." + +msgid "Infill overhang angle" +msgstr "Ángulo de voladizo del relleno" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +msgstr "El ángulo de las líneas inclinadas del relleno. 60° dará como resultado un panal puro." + +msgid "Lightning overhang angle" +msgstr "Ángulo de saliente del rayo" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "Ángulo máximo de voladizo para la propagación de los soportes de relleno en Rayo." + +msgid "Prune angle" +msgstr "Ángulo de recorte" + +msgid "" +"Controls how aggressively short or unsupported Lightning branches are pruned.\n" +"This angle is converted internally to a per-layer distance." +msgstr "" +"Determina con qué intensidad se podan las ramas de los rayos cortas o sin soporte.\n" +"Este ángulo se convierte internamente en una distancia por capa." + +msgid "Straightening angle" +msgstr "Ángulo de enderezado" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "Ángulo máximo de enderezamiento utilizado para simplificar las ramas del Rayo." + +msgid "Sparse infill anchor length" +msgstr "Longitud del anclaje de relleno de baja densidad" + +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 "" +"Conectar una línea de relleno a un perímetro interno con un segmento corto de un perímetro adicional. Si se expresa como porcentaje (ejemplo: 15%) este es calculado sobre el ancho de extrusión de relleno. OrcaSlicer intenta conectar dos líneas de relleno cercanas a un segmento de perímetro corto. Si no se encuentra ningún segmento más corto que relleno_anclaje_max, la línea de relleno se conecta a un segmento de perímetro en un solo lado y la de relleno se conecta a un segmento de perímetro en un solo lado y la longitud del ancho de segmento de perímetro escogido se limita a este parámetro, pero no más largo que anclaje_longitud_max.\n" +"Configure este parámetro a cero para deshabilitar los perímetros de anclaje conectados a una sola línea de relleno." + +msgid "0 (no open anchors)" +msgstr "0 (no anclar)" + +msgid "1000 (unlimited)" +msgstr "1000 (ilimitada)" + +msgid "Maximum length of the infill anchor" +msgstr "Máxima longitud del anclaje de relleno" + +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 "" +"Conectar la línea de relleno a un perímetro interno con un segmento corto de un perímetro adicional. Si se expresa como porcentaje (por ejemplo: 15%) este se calcula sobre el ancho de relleno de extrusión. OrcaSlicer intenta conectar dos líneas de relleno cercanas a un segmento de perímetro corto. Si no hay ningún segmento más corto que este parámetro, esta línea de relleno se conecta a un segmento de perímetro solamente a un lado y la longitud del segmento de perìmetro escogida se limita a relleno_anclaje, pero no más alto que este parámetro.\n" +"Si se deja a 0, el algoritmo antiguo para conexión de relleno se usará, esto debería drear el mismo resultado que con 1000 y 0." + +msgid "0 (Simple connect)" +msgstr "0 (Conexión simple)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -13872,11 +13758,9 @@ msgstr "" msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea del relleno interno interno de baja densidad. Si se expresa como un %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Infill/wall overlap" msgstr "Solape de relleno/perímetro" -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "This allows the infill area to be enlarged slightly to overlap with walls 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 "El área de relleno se amplía ligeramente para solaparse con el perímetro y mejorar la adherencia. El valor porcentual es relativo al ancho de línea del relleno de baja densidad. Ajuste este valor a ~10-15% para minimizar una potencial sobreextrusión y/o una acumulación de material que resulte en artefactos en las superficies superiores." @@ -13888,7 +13772,6 @@ msgstr "Solape de relleno sólido superior/inferior y perímetro" 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 "El área de relleno sólido de cubierta superior/inferior se amplía ligeramente para solaparse con el perímetro, mejorando la adherencia y minimizando la aparición de agujeros cuando el relleno de cubierta superior/inferior se une a los perímetros. Un valor alrededor de 25-30% es un buen punto de partida para minimizar la aparición de agujeros. El valor porcentual es relativo al ancho de línea del relleno de baja densidad." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal sparse infill." msgstr "Velocidad del relleno interno de baja densidad." @@ -13907,9 +13790,8 @@ msgstr "Furzar la generación de perímetro sólidos entre materiales/volúmenes msgid "Maximum width of a segmented region" msgstr "Máximo ancho de una región segmentada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum width of a segmented region. A value of 0 disables this feature." -msgstr "Ancho máximo de una región segmentada. Cero desactiva está característica." +msgstr "Ancho máximo de una región segmentada. Cero desactiva esta característica." msgid "Interlocking depth of a segmented region" msgstr "Profundidad de entrelazado de una región segmentada" @@ -13953,22 +13835,18 @@ msgstr "Evitar los limites de entrelazado" msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." msgstr "La distancia desde el exterior de un modelo donde no se generarán estructuras entrelazadas, medida en celdas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing type" msgstr "Tipo de alisado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing uses a small flow to print at the same height of a surface to make flat surfaces smoother. This setting controls which layers are being ironed." msgstr "El alisado es el uso de un flujo muy bajo para realizar una segunda pasada de impresión a la misma altura de una superficie superior para obtener un acabado más liso. Este ajuste controla la capa que se alisa." msgid "No ironing" msgstr "Sin alisado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All top surfaces" msgstr "Todas las superficies superiores" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Topmost surface only" msgstr "Sólo la superficie superior" @@ -13981,18 +13859,15 @@ msgstr "Patrón de alisado" msgid "The pattern that will be used when ironing." msgstr "Patrón que se usará durante el alisado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the amount of material to be extruded during ironing. It is relative to the flow of normal layer height. Too high a value will result in overextrusion on the surface." msgstr "La cantidad de material a extruir durante el alisado. Relativo al flujo de la altura de la capa normal. Un valor demasiado alto provoca una sobreextrusión en la superficie." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance between the lines used for ironing." msgstr "La distancia entre las líneas de alisado." msgid "The distance to keep from the edges. A value of 0 sets this to half of the nozzle diameter." msgstr "La distancia a mantener desde los bordes. Un valor de 0 la establece en la mitad del diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the print speed for ironing lines." msgstr "Velocidad de impresión de las líneas de alisado." @@ -14054,13 +13929,11 @@ msgstr "Esta parte de G-Code se inserta en cada cambio de capa después de levan msgid "Clumping detection G-code" msgstr "G-code de detección de aglomeraciones" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Silent Mode" -msgstr "Admite el modo silencioso" +msgstr "Modo silencioso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whether the machine supports silent mode in which machine uses lower acceleration to print more quietly" -msgstr "Si la máquina admite el modo silencioso en el que la se utiliza una menor aceleración para imprimir." +msgstr "¿Admite la máquina el modo silencioso, en el que utiliza una aceleración menor para imprimir de forma más silenciosa?" msgid "Emit limits to G-code" msgstr "Emitir límites al G-Code" @@ -14328,7 +14201,6 @@ msgstr "" "Si se establece en cero, se utilizará el coeficiente de amortiguación del firmware.\n" "Para desactivar el input shaper, utilice el tipo «Desactivar»." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan." msgstr "La velocidad del ventilador de refrigeración de pieza puede aumentarse cuando la refrigeración automática está activada. Esta es la limitación de velocidad máxima del ventilador de refrigeración de pieza." @@ -14445,9 +14317,8 @@ msgstr "Orca Slicer puede cargar archivos G-Code a un host de impresora. Este ca msgid "Nozzle volume" msgstr "Volumen de la boquilla" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Volume of nozzle between the filament cutter and the end of the nozzle" -msgstr "Volumen de la boquilla entre el cortador y el extremo de la boquilla." +msgstr "Volumen de la boquilla entre el cortador y el extremo de la boquilla" msgid "Cooling tube position" msgstr "Posición del tubo de refrigeración" @@ -14482,14 +14353,12 @@ msgstr "Cuando se ajusta a cero, la distancia que el filamento se mueve desde la msgid "Start end points" msgstr "Puntos de inicio y fin" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The start and end points which are from the cutter area to the excess chute." msgstr "Los puntos de inicio y fin, desde la zona de corte al cubo de basura." msgid "Reduce infill retraction" msgstr "Reducir la retracción del relleno" -# TODO: Review, changed by lang refactor. PR 14254 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 "Desactiva la retracción cuando el desplazamiento se realiza en su totalidad dentro de un área de relleno, donde los artefactos causados por un rezumado no son visibles. Puede reducir el número de retracciones y por ende el tiempo total de retracción al imprimir modelos complejos, reduciendo el tiempo total de impresión. Sin embargo, puede que las operaciones de laminado y de generación del archivo G-Code sean más lentas." @@ -14499,7 +14368,6 @@ msgstr "Esta opción reducirá la temperatura de los extrusores inactivos para e msgid "Filename format" msgstr "Formato de los nombres de archivo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Users can decide project file names when exporting." msgstr "El usuario puede definir un nombre de archivo personalizado al exportar el proyecto." @@ -14524,7 +14392,6 @@ msgstr "Máxima área de un orificio en la base del modelo antes de que se relle msgid "Detect overhang walls" msgstr "Detectar perímetros en voladizo" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This detects the overhang percentage relative to line width and uses a different speed to print. For 100%% overhang, bridging speed is used." msgstr "Detecta el porcentaje de voladizo en relación con el ancho de línea y utiliza diferentes velocidades para imprimir. Para el 100%% de voladizo, se utiliza la velocidad de puente." @@ -14552,11 +14419,9 @@ msgstr "" msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de extrusión del perímetro interno. Si se expresa cómo %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for inner walls." msgstr "Velocidad del perímetro interno." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of walls per layer." msgstr "Número de perímetros de cada capa." @@ -14603,30 +14468,24 @@ msgstr "Variante de la impresora" msgid "Raft contact Z distance" msgstr "Distancia Z de contacto de la balsa (base de impresión)" -# TODO: Review, changed by lang refactor. PR 14254 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 "Espacio Z entre el objeto y la balsa (base de impresión). Si la distancia Z superior del soporte es 0, este valor se ignora y el objeto se imprime en contacto directo con la balsa (sin separación)." msgid "Raft expansion" msgstr "Expansión de la balsa (base de impresión)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands all raft layers in XY plane." msgstr "Expandir todas las capas de la balsa (base de impresión) en el plano XY." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer density" msgstr "Densidad de la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the density of the first raft or support layer." msgstr "Densidad de la balsa (base de impresión) o capa de soporte." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer expansion" msgstr "Expansión de la primera capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands the first raft or support layer to improve bed adhesion." msgstr "Expandir la primera capa de la base de impresión o de soportes para mejorar la adherencia con la superficie de impresión." @@ -14636,7 +14495,6 @@ msgstr "Capas de balsa (base de impresión)" msgid "Object will be raised by this number of support layers. Use this function to avoid warping when printing ABS." msgstr "El objeto será elevado por este número de capas de soporte. Utilice esta función para evitar deformaciones al imprimir u otros materiales sensibles a las variaciones de temperatura." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller values mean higher resolution and more time required to slice." msgstr "El G-Code se genera después de simplificar el contorno del modelo para evitar demasiados puntos y líneas de código en el archivo de G-Code. Un valor más pequeño significa una mayor resolución y tiempo de laminado." @@ -14649,15 +14507,12 @@ msgstr "Sólo se activa la retracción cuando la distancia de desplazamiento es msgid "Retract amount before wipe" msgstr "Longitud de retracción antes de purgado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the length of fast retraction before a wipe, relative to retraction length." msgstr "La longitud de la retracción rápida antes de la purga, en relación con la longitud de la retracción." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retract on layer change" msgstr "Retracción al cambiar de capa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This forces a retraction on layer changes." msgstr "Forzar una retracción al cambiar de capa." @@ -14667,7 +14522,6 @@ msgstr "Longitud de retracción" msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction." msgstr "Se retrae cierta cantidad de material en el extrusor para evitar el rezumado durante desplazamientos largos. Ajuste a cero para desactivar la retracción." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Long retraction when cut (beta)" msgstr "Retracción larga al cortar (beta)" @@ -14689,7 +14543,6 @@ msgstr "Distancia de retracción al cambiar de extrusor" msgid "Z-hop height" msgstr "Altura de Salto en Z" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whenever there is a retraction, the nozzle is lifted a little to create clearance between the nozzle and the print. This prevents the nozzle from hitting the print when traveling more. Using spiral lines to lift z can prevent stringing." msgstr "Cada vez que se realiza una retracción, la boquilla se levanta un poco para crear un pequeño margen entre la boquilla y la impresión. Esto evita que la boquilla golpee la pieza cuando se desplaza. El uso de la línea espiral para levantar z puede evitar la aparición de hilos." @@ -14759,6 +14612,18 @@ msgstr "Extrusor Directo" msgid "Bowden" msgstr "Bowden" +msgid "Enable filament dynamic map" +msgstr "Habilitar mapa dinámico de filamentos" + +msgid "Enable dynamic filament mapping during print." +msgstr "Activar la asignación dinámica de filamentos durante la impresión." + +msgid "Has filament switcher" +msgstr "Cuenta con un selector de filamentos" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "La impresora cuenta con un dispositivo de cambio de filamento (por ejemplo, AMS)." + msgid "Extra length on restart" msgstr "Longitud extra de reinicio" @@ -14768,14 +14633,12 @@ msgstr "Cuando la retracción se compensa después de un desplazamiento, el extr msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Cuando se compensa la retracción después de cambiar de cabezal, el extrusor expulsará esta cantidad adicional de filamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retraction speed" msgstr "Velocidad de retracción" msgid "Speed for retracting filament from the nozzle." msgstr "Velocidad para retraer el filamento de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deretraction speed" msgstr "Velocidad de De-retracción" @@ -14800,7 +14663,6 @@ msgstr "Deshabilitar la generación del M73: Ajustar el tiempo de impresión res msgid "Seam position" msgstr "Posición de la costura" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the starting position for each part of the outer wall." msgstr "Estrategia de posicionado del inicio de impresión de cada perímetro exterior." @@ -14813,6 +14675,9 @@ msgstr "Alineado" msgid "Aligned back" msgstr "Alineado atrás" +msgid "Back" +msgstr "Atrás" + msgid "Random" msgstr "Aleatorio" @@ -14938,7 +14803,6 @@ msgstr "La velocidad de purgado es determinada por este parámetro. Si el valor msgid "Skirt distance" msgstr "Distancia de falda" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the skirt to the brim or the object." msgstr "Distancia de la falda al borde de adherencia o al objeto." @@ -14951,7 +14815,6 @@ msgstr "Ángulo desde el centro del objeto al punto de inicio de la falda. Cero msgid "Skirt height" msgstr "Altura de falda" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Number of skirt layers: usually only one" msgstr "Cantidad de capas de falda. Normalmente sólo una capa." @@ -14970,9 +14833,10 @@ msgid "" "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 "" -"Un protector contra corrientes de aire es útil para proteger una impresión en ABS o ASA de la deformación y el desprendimiento de la cama de impresión debido a las corrientes de aire. Suele ser necesario sólo con impresoras de bastidor abierto, es decir, sin cerramiento.\n" +"Un protector contra corrientes de aire resulta útil para evitar que una impresión de ABS o ASA se deforme o se despegue de la cama de impresión debido a las corrientes de aire. Por lo general, solo es necesario en impresoras de estructura abierta, es decir, sin carcasa.\n" "\n" -"Activado = el faldón es tan alto como el objeto impreso más alto. Nota: Con el protector contra corrientes de aire activo, el faldón se imprimirá a la distancia del faldón del objeto. Por lo tanto, si los bordes están activos, puede que se crucen con ellos. Para evitarlo, aumente el valor de la distancia del faldón.\n" +"Si se activa, la falda tendrá la misma altura que el objeto impreso más alto. En caso contrario, se utilizará la «altura de falda».\n" +"Nota: Con el protector contra corrientes de aire activo, el faldón se imprimirá a una distancia determinada del objeto. Por lo tanto, si los bordes están activos, puede que se crucen con ellos. Para evitarlo, aumenta el valor de la distancia de la falda.\n" msgid "Enabled" msgstr "Activado" @@ -14989,7 +14853,6 @@ msgstr "Por objeto" msgid "Skirt loops" msgstr "Bucles de la falda" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of loops for the skirt. 0 means the skirt is disabled." msgstr "Número de bucles de la falda. Cero significa desactivar la falda." @@ -15019,7 +14882,6 @@ msgstr "La velocidad de impresión en el G-Code exportado se ralentizará, cuand msgid "Minimum sparse infill threshold" msgstr "Umbral de área mínima de relleno de baja densidad" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sparse infill areas which are smaller than this threshold value are replaced by internal solid infill." 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." @@ -15047,11 +14909,9 @@ msgstr "" msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea del relleno sólido interno. Si se expresa como %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal solid infill, not including the top or bottom surface." msgstr "Velocidad del relleno sólido interno, no de la superficie superior o inferior." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables spiraling, which 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 "El modo espiral suaviza los movimientos Z del contorno exterior. Convierte un modelo sólido en una impresión de un solo perímetro con capas inferiores sólidas. El modelo final generado no tiene costuras." @@ -15082,9 +14942,8 @@ msgstr "Factor de flujo final en espiral" 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 "Establece el Factor de flujo al finalizar la espiral. Normalmente la transición de la espiral escala el flujo de 100% a 0% durante el último bucle, lo que en algunos casos puede provocar subextrusión al final de la espiral." -# TODO: Review, changed by lang refactor. PR 14254 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 the nozzle." -msgstr "Sí se selecciona el modo suave o tradicional, se generará un vídeo time-lapse para cada impresión. Después de imprimir cada capa, se toma una instantánea con la cámara. Todas estas instantáneas se componen en un vídeo time-lapse cuando finaliza la impresión. Si se selecciona el modo suave, el cabezal se moverá a la rampa de exceso después de imprimir cada capa y luego toma una instantánea. Dado que el filamento fundido puede rezumar de la boquilla durante el proceso de toma de la instantánea, una torre de purga es necesaria para el modo suave para limpiar la boquilla." +msgstr "Si se selecciona el modo suave o tradicional, se generará un vídeo time-lapse para cada impresión. Después de imprimir cada capa, se toma una instantánea con la cámara. Todas estas instantáneas se componen en un vídeo time-lapse cuando finaliza la impresión. Si se selecciona el modo suave, el cabezal se moverá a la rampa de exceso después de imprimir cada capa y luego toma una instantánea. Dado que el filamento fundido puede rezumar de la boquilla durante el proceso de toma de la instantánea, una torre de purga es necesaria para el modo suave para limpiar la boquilla." msgid "Traditional" msgstr "Tradicional" @@ -15117,13 +14976,11 @@ msgstr "G-code escrito en la parte superior del archivo de salida, antes de cual msgid "Start G-code" msgstr "G-Code inicial" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when starting a print." msgstr "G-Code de inicio cuando se comienza la impresión del archivo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when the printer starts using this filament" -msgstr "G-Code de inicio cuando se comienza la impresión de este filamento." +msgstr "G-code añadido cuando la impresora empieza a utilizar este filamento" msgid "Single Extruder Multi Material" msgstr "Multi Material con Extrusor Único" @@ -15185,6 +15042,9 @@ msgstr "Las grietas más pequeñas que 2x el radio de cierre se rellenan durante msgid "Slicing Mode" msgstr "Modo de laminado" +msgid "Other" +msgstr "Otro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Utilice \"Par-impar\" para los modelos de avión de 3DLabPrint. Utilice \"Cerrar orificios\" para cerrar todos los orificios del modelo." @@ -15208,7 +15068,6 @@ msgstr "" msgid "Enable support" msgstr "Habilitar los soportes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables support generation." msgstr "Habilitar la generación de soportes." @@ -15230,7 +15089,6 @@ msgstr "Árbol (manual)" msgid "Support/object XY distance" msgstr "Distancia soporte/objeto X-Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This controls the XY separation between an object and its support." msgstr "Separación XY entre un objeto y su soporte." @@ -15249,7 +15107,6 @@ msgstr "Utilice este ajuste para rotar el patrón de soporte en el plano horizon msgid "On build plate only" msgstr "Sólo en la cama de impresión" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting only generates supports that begin on the build plate." msgstr "No crear soporte en la superficie del modelo, sólo en la cama de impresión." @@ -15268,14 +15125,12 @@ msgstr "Ignorar pequeños voladizos que posiblemente no requieran soporte." msgid "Top Z distance" msgstr "Distancia Z superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." msgstr "La distancia z entre la interfaz de soporte superior y el objeto." msgid "Bottom Z distance" msgstr "Distancia Z inferior" -# TODO: Review, changed by lang refactor. PR 14254 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 "La distancia z entre la interfaz de apoyo inferior y el objeto. Si la distancia Z superior del soporte es 0 y la base tiene capas de interfaz, este valor se ignora y el soporte se imprime en contacto directo con el objeto (sin separación)." @@ -15298,11 +15153,9 @@ msgstr "Evite utilizar filamento de interfaz de soporte para imprimir la base de msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea de los soportes. Si se expresa como %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Loop pattern interface" msgstr "Uso de la interfaz en forma de bucle" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This covers the top contact layer of the supports with loops. It is disabled by default." msgstr "Cubrir la capa de contacto superior de los soportes con bucles. Desactivado por defecto." @@ -15319,9 +15172,8 @@ msgstr "" msgid "Top interface layers" msgstr "Capas de la interfaz superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of top interface layers." -msgstr "Número de capas lentas" +msgstr "Este es el número de capas de interfaz superiores." msgid "Bottom interface layers" msgstr "Capas de la interfaz inferior" @@ -15345,11 +15197,9 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Espaciado de la interfaz inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the spacing of bottom interface lines. 0 means solid interface." msgstr "Espaciado de las líneas de interfaz. Cero significa que la interfaz es sólida." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support interfaces." msgstr "Velocidad de la interfaz de soporte." @@ -15378,7 +15228,6 @@ msgstr "Hueco" msgid "Interface pattern" msgstr "Patrón de interfaz" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." msgstr "Patrón de líneas de la interfaz de soporte. El patrón por defecto para la interfaz de soporte no soluble es Rectilíneo, mientras que el patrón por defecto para la interfaz de soporte soluble es Concéntrico." @@ -15388,18 +15237,15 @@ msgstr "Entrelazado rectilíneo" msgid "Base pattern spacing" msgstr "Espaciado del patrón base" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the spacing between support lines." msgstr "Espaciado entre las líneas de apoyo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Normal support expansion" msgstr "Expansión de Soporte Normal" msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Ampliar (+) o reducir (-) la expansión horizontal del soporte Normal." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support." msgstr "Velocidad en soportes." @@ -15437,12 +15283,11 @@ msgstr "La capa de soporte utiliza una altura de capa independiente de la capa d msgid "Threshold angle" msgstr "Pendiente máxima" -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"Se generará soporte para los voladizos cuyo ángulo de inclinación sea inferior al umbral.Cuanto menor sea este valor, más pronunciado podrá ser el voladizo que se imprima sin soporte.\n" +"Se generará soporte para los voladizos cuyo ángulo de inclinación sea inferior al umbral. Cuanto menor sea este valor, más pronunciado podrá ser el voladizo que se imprima sin soporte.\n" "Nota: Si se establece en 0, los soportes normales usarán en su lugar Umbral de solapamiento, mientras que los soportes de árbol volverán al valor predeterminado de 30." msgid "Threshold overlap" @@ -15554,9 +15399,6 @@ msgstr "" "\n" "Esta función requiere de que el firmware de la impresora sea compatible con los comandos M191 y M141, ya sea nativamente o mediante el uso de macros. Esta función se usa generalmente con impresoras con sistema de calentamiento de cámara activo." -msgid "Chamber temperature" -msgstr "Temperatura de cámara" - 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" @@ -15572,14 +15414,28 @@ msgstr "" "PRINT_START (otras variables) CHAMBER_TEMP=[chamber_temperature] \n" "Esta funciuón es útil para imrpesoras no compatibles con los comandos M141 o M191, o si prefiere realizar un precalentamiento usando un macro si no dispone de un sistema de calentamiento activo de cámara." -# TODO: Review, changed by lang refactor. PR 14254 +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" +"Esta es la temperatura de la cámara a la que debe comenzar la impresión, mientras la cámara continúa calentándose hacia la temperatura objetivo (\"Objetivo\") de la cámara. Por ejemplo, ajuste «Objetivo» a 60 y «Mínima» a 50 para empezar a imprimir cuando la cámara alcance los 50 °C, sin esperar a los 60 °C completos.\n" +"\n" +"Crea una variable de G-code llamada chamber_minimal_temperature, que puede pasarse a su macro de inicio de impresión o a una macro de precalentamiento, de esta forma: PRINT_START (otras variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"A diferencia de la temperatura objetivo (\"Objetivo\") de la cámara, esta opción no emite ningún comando M141/M191; solo expone el valor a su G-code personalizado. No debería superar la temperatura objetivo (\"Objetivo\") de la cámara." + +msgid "Chamber minimal temperature" +msgstr "Temperatura mínima de cámara" + msgid "Nozzle temperature after the first layer" -msgstr "Temperatura de la boquilla después de la primera capa." +msgstr "Temperatura de la boquilla después de la primera capa" msgid "Detect thin walls" msgstr "Detección de perímetros delgados" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." msgstr "Detectar los perímetros delgados que no pueden contener dos líneas de ancho, y utilizar una sola línea para imprimir. Tal vez no se imprima muy bien, debido a que no es de bucle cerrado." @@ -15598,52 +15454,30 @@ msgstr "Este G-code se inserta cuando se cambia la función de extrusión del fi msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ancho de línea de las capas superiores. Si se expresa cómo %, se calculará en base al diámetro de la boquilla." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid top surface infill." msgstr "Velocidad del relleno de la superficie superior que es sólida." msgid "Top shell layers" msgstr "Capas de la cubierta superior" -# TODO: Review, changed by lang refactor. PR 14254 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 the top shell thickness, the top shell layers will be increased" -msgstr "Es el número de capas sólidas de la cubierta superior, incluida la capa superficial superior. Si el grosor calculado por este valor es menor que el grosor de la cubierta superior, las capas de la cubierta superior se incrementarán." +msgstr "Este es el número de capas sólidas que componen la capa superior, incluida la capa superficial. Cuando el espesor calculado a partir de este valor sea menor que el espesor de la capa superior, se aumentará el número de capas de la capa superior." msgid "Top shell thickness" msgstr "Espesor mínimo de la cubierta superior" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "El número de capas sólidas superiores se incrementa al laminar si el espesor calculado por las capas de la cubierta es más delgado que este valor. Esto puede evitar tener una cubierta demasiado fina cuando la altura de la capa es pequeña. 0 significa que este ajuste está desactivado y el grosor de la capa superior está absolutamente determinado por las capas de la cubierta superior." -msgid "Top surface density" -msgstr "Densidad de la superficie superior" - -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 "Densidad de la capa superficial superior. Un valor de 100% crea una capa superior totalmente sólida y lisa. Reducir este valor produce una superficie superior texturada, según el patrón elegido. Un valor de 0% provocará que sólo se creen las paredes en la capa superior. Destinado a fines estéticos o funcionales, no para corregir problemas como la sobreextrusión." - -msgid "Bottom surface density" -msgstr "Densidad de la superficie inferior" - -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 "" -"Densidad de la capa superficial inferior. Destinada a fines estéticos o funcionales, no para corregir problemas como la sobreextrusión.\n" -"ADVERTENCIA: Reducir este valor puede afectar negativamente la adherencia a la cama." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Velocidad de desplazamiento más rápida y sin extrusión." msgid "Wipe while retracting" msgstr "Purgar mientras se retrae" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This moves the 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 "Mueva la boquilla a lo largo de la última trayectoria de extrusión cuando se retraiga para limpiar el material rezumado en la boquilla. Esto puede minimizar las manchas cuando se imprime una nueva pieza después del recorrido." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Wipe distance" msgstr "Distancia de purgado" @@ -15660,9 +15494,8 @@ msgstr "" "\n" "Fijando un valor en la cantidad de retracción antes del purgado se realizará cualquier exceso de retracción antes del purgado, de lo contrario se realizará después." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." -msgstr "La torre de purga puede utilizarse para limpiar los residuos de la boquilla y estabilizar la presión de la cámara en el interior de la boquilla, con el fin de evitar defectos de visuales al imprimir objetos." +msgstr "La torre de purga puede utilizarse para limpiar los residuos de la boquilla y estabilizar la presión de la cámara en el interior de la boquilla, con el fin de evitar defectos visuales al imprimir objetos." msgid "Internal ribs" msgstr "Refuerzos internos" @@ -15676,18 +15509,15 @@ msgstr "Volúmenes de purga" msgid "Flush multiplier" msgstr "Multiplicador de flujo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." msgstr "El volumen de flujo real es igual al producto del multiplicador de flujo y los volúmenes de flujo de la tabla." msgid "Prime volume" msgstr "Volumen de purga" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the volume of material to prime the extruder with on the tower." msgstr "El volumen de material para purgar la extrusora en la torre." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the width of prime towers." msgstr "Ancho de la torre de purga." @@ -15801,11 +15631,9 @@ msgstr "Rellenar hueco" msgid "Infill gap." msgstr "Rellenar hueco." -# TODO: Review, changed by lang refactor. PR 14254 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 visible. It will not take effect unless the prime tower is enabled." msgstr "La purga tras el cambio de filamento se realizará dentro de los rellenos de los objetos. Esto puede reducir la cantidad de residuos y disminuir el tiempo de impresión. Si los perímetros se imprimen con filamento transparente, el relleno de color mixto se verá en el exterior. No tendrá efecto, a menos que la torre de purga esté activada." -# TODO: Review, changed by lang refactor. PR 14254 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 a prime tower is enabled." msgstr "La purga tras el cambio de filamento se realizará dentro del soporte de los objetos. Esto puede reducir la cantidad de residuos y disminuir el tiempo de impresión. No tendrá efecto, a menos que la torre de purga esté activada." @@ -15839,14 +15667,12 @@ msgstr "Temperatura de la boquilla cuando el cabezal no se está utilizando en c msgid "X-Y hole compensation" msgstr "Compensación en X-Y de huecos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." msgstr "Los huecos del objeto crecerán o se reducirán en el plano XY según el valor configurado. Un valor positivo hace que los huecos sean más grandes. Un valor negativo hace que los huecos sean más pequeños. Esta función se utiliza para ajustar el tamaño ligeramente cuando el objeto tiene problemas de ensamblaje." msgid "X-Y contour compensation" msgstr "Compensación de contornos en X-Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." msgstr "El contorno del objeto crecerá o se reducirá en el plano XY según el valor configurado. Un valor positivo hace que el contorno sea más grande. Un valor negativo hace que el contorno sea más pequeño. Esta función se utiliza para ajustar el tamaño ligeramente cuando el objeto tiene problemas de ensamblaje." @@ -15879,6 +15705,16 @@ msgstr "Giro de poliorificio" msgid "Rotate the polyhole every layer." msgstr "Rotar el poliorificio en cada capa." +msgid "Maximum Polyhole edge count" +msgstr "Número máximo de aristas de poliorificio" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" +"Número máximo de aristas de un poliorificio\n" +"Este ajuste limita la cantidad de aristas que puede tener un poliorificio" + msgid "G-code thumbnails" msgstr "Miniaturas de G-Code" @@ -15897,7 +15733,6 @@ msgstr "Usar distancias E relativas" 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 "Se recomienda la extrusión relativa cuando se utiliza la opción \"label_objects\". Algunos extrusores funcionan mejor con esta opción desactivada (modo de extrusión absoluta). La torre de purga sólo es compatible con el modo relativo. Se recomienda en la mayoría de las impresoras. Por defecto está activada." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." msgstr "El generador de perímetros clásico produce perímetros con ancho de extrusión constante y para zonas muy finas se utiliza rellenar-espacio. El motor Arachne produce perímetros con ancho de extrusión variable." @@ -15907,7 +15742,6 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Anchura de transición de perímetro" -# TODO: Review, changed by lang refactor. PR 14254 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 "Cuando se pasa de un número de perímetros a otro, a medida que la pieza se vuelve más fina se asigna una determinada cantidad de espacio para dividir o unir los segmentos de perímetro. Se expresa como un porcentaje sobre el diámetro de la boquilla." @@ -15995,16 +15829,14 @@ msgstr " fuera de rango " msgid "Export 3MF" msgstr "Exportar 3MF" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports the project as a 3MF file." msgstr "Exportar el proyecto como 3MF." msgid "Export slicing data" msgstr "Exportar datos de laminado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export slicing data to a folder" -msgstr "Exportar datos de laminado a una carpeta." +msgstr "Exportar los datos de laminado a una carpeta" msgid "Load slicing data" msgstr "Cargar datos de laminado" @@ -16024,13 +15856,9 @@ msgstr "Exportar múltiples STL" msgid "Export the objects as multiple STLs to directory." msgstr "Exportar los objetos como múltiples STL a un directorio." -msgid "Slice" -msgstr "Laminar" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Cortar las camas: 0-todas las camas, i-cama i, otras-inválidas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shows command help." msgstr "Mostrar la ayuda del comando." @@ -16055,16 +15883,14 @@ msgstr "Exportar 3MF con el tamaño mínimo." msgid "mtcpp" msgstr "mtcpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max triangle count per plate for slicing" -msgstr "número máximo de triángulos por plato para laminar." +msgstr "número máximo de triángulos por plato para laminar" msgid "mstpp" msgstr "mstpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max slicing time per plate in seconds" -msgstr "tiempo máximo de corte por cama en segundos." +msgstr "tiempo máximo de laminado por cama, en segundos" msgid "No check" msgstr "No comprobar" @@ -16081,14 +15907,12 @@ msgstr "Comprueba los elementos normativos." msgid "Output Model Info" msgstr "Información del modelo de salida" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This outputs the model’s information." msgstr "Salida de la información del modelo." msgid "Export Settings" msgstr "Ajustes de exportación" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports settings to a file." msgstr "Exporta los ajustes a un archivo." @@ -16176,9 +16000,8 @@ msgstr "Clonar objetos en la lista de carga." msgid "Load uptodate process/machine settings when using uptodate" msgstr "Cargar ajustes de proceso/máquina actualizados al usar 'uptodate'" -# TODO: Review, changed by lang refactor. PR 14254 msgid "load up-to-date process/machine settings from the specified file when using up-to-date" -msgstr "Carga los ajustes actualizados de proceso/máquina desde el archivo especificado cuando se usa actualizar." +msgstr "cargar la configuración actualizada del proceso o la máquina desde el archivo especificado al utilizar la versión actualizada" msgid "Load uptodate filament settings when using uptodate" msgstr "Cargar ajustes de filamento actualizados al usar 'uptodate'" @@ -16213,7 +16036,6 @@ msgstr "Carga y almacena configuraciones en el directorio dado. Esto es útil pa msgid "Output directory" msgstr "Directorio de salida" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the output directory for exported files." msgstr "Directorio de salida para los archivos exportados." @@ -16635,8 +16457,8 @@ 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 "" -"Un objeto tiene activada la compensación de tamaño XY que no se utilizará porque también tiene piel difusa pintada.\n" -"La compensación de tamaño XY no puede combinarse con la pintura de piel difusa." +"Un objeto tiene activada la compensación de tamaño XY que no se utilizará porque también tiene piel rugosa pintada.\n" +"La compensación de tamaño XY no puede combinarse con la pintura de piel rugosa." msgid "Object name" msgstr "Nombre del objeto" @@ -16650,15 +16472,12 @@ msgstr "Error en la carga del fichero de modelo." msgid "Meshing of a model file failed or no valid shape." msgstr "La generación de la malla del archivo del modelo falló o no hay una forma válida." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The supplied file couldn't be read because it's empty." -msgstr "El archivo proporcionado no puede ser leído debido a que está vacío" +msgstr "No se ha podido leer el archivo proporcionado porque está vacío." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." msgstr "Formato de archivo desconocido: el archivo de entrada debe tener extensión .STL, .obj o .amf (.xml)." -# TODO: Review, changed by lang refactor. PR 14254 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." @@ -16710,7 +16529,6 @@ msgstr "Calibración" msgid "Finish" msgstr "Finalizar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "How can I use calibration results?" msgstr "¿Cómo usar el resultado de la calibración?" @@ -16788,7 +16606,6 @@ msgstr "Por favor, seleccione el filamento para calibrar." msgid "The input value size must be 3." msgstr "El valor de tamaño de entrada debe ser 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This machine type can only hold 16 historical 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?" @@ -16800,10 +16617,9 @@ msgstr "" 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 "Solo se guardará uno de los resultados con el mismo nombre: %s. ¿Está seguro de que desea sobrescribir los otros resultados?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Ya existe un resultado de calibración anterior con el mismo nombre: %s. Sólo se guarda un resultado con un nombre. Está seguro de que desea sobrescribir el resultado anterior?" +msgstr "Ya existe un resultado de calibración anterior con el mismo nombre: %s. Sólo se guarda un resultado con un nombre. ¿Está seguro de que desea sobrescribir el resultado anterior?" #, c-format, boost-format msgid "" @@ -16813,7 +16629,6 @@ msgstr "" "Dentro del mismo extrusor, el nombre (%s) debe ser único cuando el tipo de filamento, el diámetro de la boquilla y el flujo de la boquilla sean los mismos.\n" "¿Está seguro de que desea sobrescribir el resultado histórico?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." msgstr "Este tipo de máquina sólo puede guardar %d resultados históricos por boquilla. Este resultado no se guardará." @@ -16896,7 +16711,6 @@ msgstr "Además, la calibración del flujo es crucial para materiales espumosos 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 "La calibración del flujo mide la relación entre los volúmenes de extrusión esperados y los reales. La configuración predeterminada funciona bien en las impresoras Bambu Lab y en los filamentos oficiales, ya que fueron precalibrados y ajustados con precisión. Para un filamento normal, normalmente no necesitarás realizar una Calibración de Flujo a menos que sigas viendo los defectos listados después de haber realizado otras calibraciones. Para más detalles, consulte el artículo de la wiki." -# TODO: Review, changed by lang refactor. PR 14254 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, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" "\n" @@ -16904,7 +16718,7 @@ msgid "" "\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 "" -"La auto Calibración de Factor de Flujo utiliza la tecnología Micro-Lidar de La auto Calibración de Factor de Flujo utiliza la tecnología Micro-Lidar de Bambu Lab, midiendo directamente los patrones de calibración. Sin embargo, tenga en cuenta que la eficacia y precisión puede verse comprometida con algunos tipos de material. Particularmente, los filamentos que son transparentes o semi transparentes, o tienen un acabado altamente reflectante pueden no ser adecuados para esta calibración y producir resultados menos que deseables.\n" +"La auto Calibración de Factor de Flujo utiliza la tecnología Micro-Lidar de Bambu Lab, midiendo directamente los patrones de calibración. Sin embargo, tenga en cuenta que la eficacia y precisión puede verse comprometida con algunos tipos de material. Particularmente, los filamentos que son transparentes o semi transparentes, tienen destellos o tienen un acabado altamente reflectante pueden no ser adecuados para esta calibración y producir resultados menos que deseables.\n" "\n" "Los resultados de la calibración pueden variar entre cada calibración o filamento. Seguimos mejorando la precisión y compatibilidad de esta calibración mediante actualizaciones de firmware a lo largo del tiempo.\n" "\n" @@ -16943,7 +16757,6 @@ msgstr "El nombre no puede exceder de 40 caracteres." msgid "Please find the best line on your plate" msgstr "Por favor encuentre la mejor línea en su cama" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" msgstr "Encuentre la esquina con el grado de extrusión perfecto" @@ -16985,7 +16798,7 @@ msgstr "Saltar Calibración2" #, c-format, boost-format msgid "flow ratio : %s " -msgstr "Factor de flujo: %s " +msgstr "factor de flujo: %s " msgid "Please choose a block with smoothest top surface." msgstr "Por favor, escoja un bloque con la superficie superior más lisa." @@ -17103,14 +16916,12 @@ msgstr "Sin Historial de Resultados" msgid "Success to get history result" msgstr "Éxito recuperando el historial de resultados" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Refreshing the previous Flow Dynamics Calibration records" msgstr "Refrescar el histórico de resultados de Calibración de Dinámicas de Flujo" msgid "Action" msgstr "Acción" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle." msgstr "Este tipo de máquina sólo puede almacenar %d resultados históricos por boquilla." @@ -17342,7 +17153,7 @@ msgstr "" "Fixed-Time motion aún no implementado." msgid "Klipper version => 0.9.0" -msgstr "" +msgstr "Versión de Klipper => 0.9.0" msgid "" "RepRap firmware version => 3.4.0\n" @@ -17736,11 +17547,9 @@ msgstr "Perfil de Filamento" msgid "Create" msgstr "Crear" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor is not selected; please reselect vendor." msgstr "El fabricante no ha sido seleccionado, por favor, seleccione el fabricante." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Custom vendor missing; please input custom vendor." msgstr "Falta el proveedor personalizado; introduzca un proveedor personalizado." @@ -17750,25 +17559,21 @@ msgstr "\"Bambu\" o \"Genérico\" no pueden ser usados como Fabricante para fila msgid "Filament type is not selected, please reselect type." msgstr "No se ha seleccionado el tipo de filamento, vuelva a seleccionarlo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament serial missing; please input serial." -msgstr "No se ha seleccionado el número de serie de filamento, vuelva a seleccionarlo." +msgstr "Falta el número de serie del filamento; introdúzcalo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "Puede haber caracteres de escape en la entrada del fabricante o de la serie del filamento. Por favor, elimínelos y vuelva a introducirlos." +msgstr "Puede haber caracteres no permitidos en la entrada del fabricante o de la serie del filamento. Por favor, elimínelos y vuelva a introducirlos." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "Todas las entradas en el fabricante personalizado o serie son espacios. Vuelva a introducirlos." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vendor cannot be a number; please re-enter." -msgstr "El fabricante no puede ser un número. Vuelva a introducirlos." +msgstr "El fabricante no puede ser un número. Vuelva a introducirlo." msgid "You have not selected a printer or preset yet. Please select at least one." msgstr "Aún no ha seleccionado una impresora o un perfil. Por favor, seleccione al menos uno." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The Filament name %s you created already exists.\n" @@ -17815,7 +17620,6 @@ msgstr "Importar Perfil" msgid "Create Type" msgstr "Crear Tipo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The model was not found; please reselect vendor." msgstr "No se encuentra el modelo, vuelva a seleccionar fabricante." @@ -17856,18 +17660,15 @@ msgstr "El archivo excede %d MB, por favor impórtelo de nuevo." msgid "Exception in obtaining file size, please import again." msgstr "Se ha producido una excepción obteniendo el tamaño de archivo, por favor, impórtelo de nuevo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preset path was not found; please reselect vendor." msgstr "No se encuentra la ruta del perfil, vuelva a seleccionar el fabricante." msgid "The printer model was not found, please reselect." msgstr "No se ha encontrado el modelo de impresora, vuelva a seleccionarlo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle diameter was not found; please reselect." msgstr "El diámetro de la boquilla no se ha encontrado, vuelva a seleccionarlo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer preset was not found; please reselect." msgstr "El perfil de impresora no se ha encontrado, por favor, vuelva a seleccionarlo." @@ -17883,11 +17684,9 @@ msgstr "Plantilla de Perfil de Proceso" msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" msgstr "Aún no ha elegido el perfil base de la impresora que desea crear. Por favor, elija el fabricante y el modelo de la impresora" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." -msgstr "Ha introducido una entrada ilegal en la sección de área imprimible de la primera página. Por favor, compruébelo antes de crearla." +msgstr "Ha introducido un carácter no permitido en la sección de área imprimible de la primera página. Por favor, utilice solo números." -# TODO: Review, changed by lang refactor. PR 14254 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" @@ -17911,14 +17710,12 @@ msgstr "Fallo creando perfiles de filamento:\n" msgid "Create process presets failed. As follows:\n" msgstr "Fallo crenado perfiles de proceso:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor was not found; please reselect." msgstr "Fabricante no encontrado, por favor seleccione uno." msgid "Current vendor has no models, please reselect." msgstr "El fabricante actual no tiene modelos, seleccionar otro." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not selected the vendor and model or input the custom vendor and model." msgstr "No ha seleccionado el fabricante y el modelo o no ha introducido el fabricante y el modelo personalizados." @@ -17931,7 +17728,6 @@ msgstr "Todas las entradas en el fabricante o modelo de impresora personalizado msgid "Please check bed printable shape and origin input." msgstr "Por favor, compruebe la forma imprimible de la cama y la entrada de origen." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." msgstr "Todavía no ha seleccionado impresora para sustituir la boquilla, por favor, selecciónela." @@ -17978,7 +17774,6 @@ msgstr "Vaya a la configuración de la impresora para editar los perfiles" msgid "Filament Created" msgstr "Filamento creado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Please go to filament settings to edit your presets if you need to.\n" "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." @@ -18033,7 +17828,6 @@ msgstr "fallo escritura zip" msgid "Export successful" msgstr "Exportación con éxito" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it?\n" @@ -18066,7 +17860,6 @@ msgstr "" "Conjunto de perfiles de filamento del usuario.\n" "Se pueden compartir con otros." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only display printers with changes to printer, filament, and process presets are displayed." msgstr "Mostrar sólo los nombres de impresora con cambios en los perfiles de impresora, filamento y proceso." @@ -18091,7 +17884,6 @@ msgstr "" msgid "Please select at least one printer or filament." msgstr "Seleccione al menos una impresora o filamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please select a preset type you want to export" msgstr "Seleccione el tipo que desea exportar" @@ -18155,7 +17947,6 @@ msgstr "[Necesario eliminar]" msgid "Edit Preset" msgstr "Editar perfil" -# TODO: Review, changed by lang refactor. PR 14254 msgid "For more information, please check out our Wiki" msgstr "Para más información, consulte la Wiki" @@ -18280,6 +18071,134 @@ msgstr "Inicio de sesión/Prueba" msgid "Connection to printers connected via the print host failed." msgstr "Ha fallado la conexión a impresoras conectadas a través del host de impresión." +msgid "Detect Creality K-series printer" +msgstr "Detectar impresora Creality serie K" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "Haz clic en Escanear para buscar impresoras de la serie K en tu red." + +msgid "Use Selected" +msgstr "Usar seleccionada" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "Escaneando la LAN en busca de impresoras de la serie K... esto tarda unos segundos." + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "No se encontraron impresoras de la serie K. Asegúrate de que la impresora esté en la misma red y no esté bloqueada por el aislamiento de clientes Wi-Fi, luego haz clic en Escanear de nuevo." + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "Se encontraron %zu impresora(s) Creality. Selecciona una y haz clic en Usar seleccionada." + +msgid "Active" +msgstr "Activo" + +msgid "Printers" +msgstr "Impresoras" + +msgid "Processes" +msgstr "Procesos" + +msgid "Show/Hide system information" +msgstr "Mostrar/Ocultar información del sistema" + +msgid "Copy system information to clipboard" +msgstr "Copiar información del sistema al portapapeles" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "Necesitamos información para diagnosticar el origen del problema. Consulta la página wiki para una guía detallada." + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "El botón Empaquetar recopila el archivo del proyecto y los registros de la sesión actual en un archivo zip." + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "Cualquier ejemplo visual adicional, como imágenes o grabaciones de pantalla, puede ser útil al informar del problema." + +msgid "Report issue" +msgstr "Informar de un problema" + +msgid "Pack" +msgstr "Empaquetar" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "Limpia y reconstruye la caché de perfiles del sistema en el próximo inicio" + +msgid "Clean system profiles cache" +msgstr "Limpiar la caché de perfiles del sistema" + +msgid "Clean" +msgstr "Limpiar" + +msgid "Loaded profiles overview" +msgstr "Resumen de los perfiles cargados" + +msgid "This section shows information for loaded profiles" +msgstr "Esta sección muestra información de los perfiles cargados" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "Exporta un resumen detallado de los perfiles cargados en formato json" + +msgid "Configurations folder" +msgstr "Carpeta de configuraciones" + +msgid "Opens configurations folder" +msgstr "Abre la carpeta de configuraciones" + +msgid "Log level" +msgstr "Nivel de registro" + +msgid "Stored logs" +msgstr "Registros almacenados" + +msgid "Packs all stored logs onto a zip file." +msgstr "Empaqueta todos los registros almacenados en un archivo zip." + +msgid "Profiles" +msgstr "Perfiles" + +msgid "Select NO to close dialog and review project" +msgstr "Selecciona NO para cerrar el diálogo y revisar el proyecto" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "No hay archivo de proyecto en la sesión actual. Solo se incluirán los registros en el paquete" + +msgid "Select NO to close dialog and review project." +msgstr "Selecciona NO para cerrar el diálogo y revisar el proyecto." + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "Asegúrate de que no haya ninguna instancia de OrcaSlicer en ejecución" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "No se puede eliminar la carpeta del sistema porque algunos archivos están siendo usados por otra aplicación. Cierra cualquier aplicación que esté usando estos archivos e inténtalo de nuevo." + +msgid "Failed to delete system folder..." +msgstr "No se pudo eliminar la carpeta del sistema..." + +msgid "Failed to determine executable path." +msgstr "No se pudo determinar la ruta del ejecutable." + +msgid "Failed to launch a new instance." +msgstr "No se pudo iniciar una nueva instancia." + +msgid "log(s)" +msgstr "registro(s)" + +msgid "Choose where to save the exported JSON file" +msgstr "Elige dónde guardar el archivo JSON exportado" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" +"La exportación ha fallado\n" +"Comprueba los permisos de escritura o si el archivo está siendo usado por otra aplicación" + +msgid "Choose where to save the exported ZIP file" +msgstr "Elige dónde guardar el archivo ZIP exportado" + +msgid "File already exists. Overwrite?" +msgstr "El archivo ya existe. ¿Sobrescribir?" + msgid "3DPrinterOS Cloud upload options" msgstr "Opciones de carga en la nube de 3DPrinterOS" @@ -18362,6 +18281,19 @@ msgstr "La conexión con MKS funciona correctamente." msgid "Could not connect to MKS" msgstr "No se ha podido conectar con MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "La conexión con Moonraker funciona correctamente." + +msgid "Could not connect to Moonraker" +msgstr "No se pudo conectar con Moonraker" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "El host respondió, pero no parece ser Moonraker (falta result.klippy_state)." + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "No se pudo analizar la respuesta del servidor Moonraker: %s" + msgid "Connection to OctoPrint is working correctly." msgstr "La conexión con OctoPrint funciona correctamente." @@ -18645,7 +18577,6 @@ msgstr "impresoras al mismo tiempo (depende de cuántos aparatos puedan calentar msgid "Wait" msgstr "Espere" -# TODO: Review, changed by lang refactor. PR 14254 msgid "minute each batch. (It depends on how long it takes to complete heating.)" msgstr "minuto por tanda. (Depende de lo que tarde en terminar de calentarse)." @@ -19112,6 +19043,12 @@ msgstr "Número de caras triangulares" msgid "Calculating, please wait..." msgstr "Calculando, por favor espere..." +msgid "Save these settings as default" +msgstr "Guardar estos ajustes como predeterminados" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "Si está activado, los valores anteriores se guardan como los predeterminados usados para futuras importaciones STEP (y se muestran en Preferencias)." + msgid "PresetBundle" msgstr "PaqueteDePerfiles" @@ -19317,7 +19254,6 @@ msgstr "" "Timelapse\n" "¿Sabías que puedes generar un vídeo timelapse durante cada impresión?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" @@ -19326,7 +19262,6 @@ msgstr "" "Auto-organizar\n" "¿Sabías que puedes ordenar automáticamente todos los objetos de tu proyecto?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Orient] msgid "" "Auto-Orient\n" @@ -19425,7 +19360,6 @@ msgstr "" "Divide tus impresiones en camas\n" "¿Sabías que puedes dividir un modelo con muchas piezas en camas individuales listas para imprimir? Esto simplificará el proceso de seguimiento de todas las piezas." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer #: Height] msgid "" @@ -19443,7 +19377,6 @@ msgstr "" "Pintura de soportes\n" "¿Sabías que puedes pintar la ubicación de tus soportes? Esta función facilita la colocación de soportes sólo en las secciones donde realmente sea necesario." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Different types of supports] msgid "" "Different types of supports\n" @@ -19452,7 +19385,6 @@ msgstr "" "Diferentes tipos de soportes\n" "¿Sabías que puedes elegir entre varios tipos de soportes? Los soportes en forma de árbol son ideales para modelos orgánicos, ahorran filamento y mejoran la velocidad de impresión. ¡Pruébalo!" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" "Printing Silk Filament\n" @@ -19469,7 +19401,6 @@ msgstr "" "Borde de adherencia\n" "¿Sabías que cuando los modelos de impresión tienen una pequeña interfaz de contacto con la superficie de impresión, se recomienda utilizar un borde de adherencia?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" @@ -19486,7 +19417,6 @@ msgstr "" "Agrupar objetos\n" "¿Sabías que puedes agrupar objetos como un todo?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" @@ -19503,7 +19433,6 @@ msgstr "" "Mejorar la resistencia\n" "¿Sabías que puedes utilizar más bucles de perímetro y mayor densidad de relleno de baja densidad para mejorar la resistencia del modelo?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:When do you need to print with the printer #: door opened] msgid "" @@ -19513,7 +19442,6 @@ msgstr "" "¿Cuándo es necesario imprimir con la puerta de la impresora abierta?\n" "¿Sabías que la apertura de la puerta de la impresora puede reducir la probabilidad de obstrucción del extrusor/cabezal al imprimir filamento de baja temperatura con una temperatura más alta de la cubierta? Más información sobre esto en la Wiki." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" @@ -19522,6 +19450,112 @@ msgstr "" "Evita la deformación\n" "¿Sabías que al imprimir materiales propensos a la deformación como el ABS, aumentar adecuadamente la temperatura de la cama térmica puede reducir la probabilidad de deformaciones?" +#~ msgid "Print" +#~ msgstr "Imprimir" + +#~ msgid "in" +#~ msgstr "pulg" + +#~ msgid "Object coordinates" +#~ msgstr "Coordenadas de objeto" + +#~ msgid "World coordinates" +#~ msgstr "Coordenadas globales" + +#~ msgid "Translate(Relative)" +#~ msgstr "Traslación (relativo)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Rotar (absoluto)" + +#~ msgid "Part coordinates" +#~ msgstr "Coordenadas de la pieza" + +#~ 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 "" +#~ "Conflicto de sincronización en la nube: este perfil tiene una versión más reciente en OrcaCloud.\n" +#~ "«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." + +#~ 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 "" +#~ "Conflicto de sincronización en la nube: ya existe un perfil con este nombre en OrcaCloud.\n" +#~ "«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflicto de sincronización en la nube: ya se ha eliminado de la nube un perfil con el mismo nombre.\n" +#~ "Al hacer clic en «Eliminar», se borrará tu perfil local. Al hacer clic en «Forzar envío», se sobrescribirá con tu perfil local." + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflicto de sincronización en la nube: se ha producido un conflicto inesperado o no identificado con los perfiles.\n" +#~ "«Descargar» descarga la copia de la nube. «Forzar envío» la sobrescribe con tu perfil local." + +#~ 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 "El contenido del perfil es demasiado grande para sincronizarlo con la nube (supera 1 MB). Reduce el tamaño del perfil eliminando las configuraciones personalizadas o utilízalo solo de forma local." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Activación del Avance de Presión Adaptativo para Voladizos (beta)" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "Activa el PA adaptativo para los voladizos, así como cuando el flujo cambia dentro de la misma pieza. Esta es una opción experimental, ya que si el perfil de PA no se configura con precisión, causará problemas de uniformidad en las superficies externas antes y después de los voladizos.\n" +#~ "No es compatible con las impresoras Prusa, ya que estas se detienen para procesar los cambios de PA, lo que provoca retrasos y defectos." + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Pressure advance para puentes" + +#~ 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 "" +#~ "Valor de Avance de Presión (PA) para puentes. Establecer a 0 para desactivar.\n" +#~ "\n" +#~ "Un valor de PA más bajo al imprimir puentes ayuda a reducir la aparición de una ligera sub-extrusión inmediatamente después de los puentes. Esto es causado por la caída de presión en la boquilla cuando se imprime en el aire, y un PA más bajo ayuda a contrarrestar este efecto." + +#~ msgid "Filament Sync Options" +#~ msgstr "Opciones de sincronización de filamento" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Experimental) Mantener el elemento pintado tras un cambio de malla" + +#~ msgid "Network plug-in" +#~ msgstr "Plugin de red" + +#~ msgid "View control settings" +#~ msgstr "Ver los ajustes del control" + +#~ msgid "Rotate view" +#~ msgstr "Rotar Vista" + +#~ msgid "Pan view" +#~ msgstr "Desplazar vista" + +#~ msgid "Zoom view" +#~ msgstr "Hacer Zoom" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La rueda del ratón se invierte al hacer zoom" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Izquierda: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Derecha: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Activar el plugin de red" @@ -19982,7 +20016,7 @@ msgstr "" #~ "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." #~ msgstr "" -#~ "Tipo de ruido a usar para la generación de la piel difusa:\n" +#~ "Tipo de ruido a usar para la generación de la piel rugosa:\n" #~ "Clásico: Ruido aleatorio uniforme clásico.\n" #~ "Perlin: Ruido Perlin, que ofrece una textura más coherente.\n" #~ "Billow: Similar al ruido Perlin, pero más agrupado.\n" @@ -21002,10 +21036,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Deseleccionar" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Escala" - #~ msgid "Lift Z Enforcement" #~ msgstr "Forzar elevación Z" @@ -22574,9 +22604,6 @@ msgstr "" #~ msgid "Choose save directory" #~ msgstr "Elija directorio de guardado" -#~ msgid "Clean" -#~ msgstr "Limpiar" - #~ msgid "Clipping of view" #~ msgstr "Recorte de vista" diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po index a67471e0d5..e3f054b7c1 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: Guislain Cyril, Thomas Lété\n" @@ -324,6 +324,7 @@ msgstr "Gizmo-Pivoter" msgid "Optimize orientation" msgstr "Optimiser l'orientation" +msgctxt "Verb" msgid "Scale" msgstr "Redimensionner" @@ -333,8 +334,9 @@ msgstr "Gizmo-Redimensionner" msgid "Error: Please close all toolbar menus first" msgstr "Erreur : Veuillez d'abord fermer tous les menus de la barre d'outils" +msgctxt "inches" msgid "in" -msgstr "dans" +msgstr "" msgid "mm" msgstr "mm" @@ -366,6 +368,9 @@ msgstr "Rapports d'échelle" msgid "Object operations" msgstr "Opérations sur les objets" +msgid "Scale" +msgstr "Redimensionner" + msgid "Volume operations" msgstr "Opérations sur les volumes" @@ -387,26 +392,33 @@ msgstr "Réinitialiser la position" msgid "Reset rotation" msgstr "Réinitialiser la rotation" -msgid "Object coordinates" -msgstr "Coordonnées de l’objet" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Coordonnées" +msgid "Object" +msgstr "Objet" -msgid "Translate(Relative)" -msgstr "Translation (relative)" +msgid "Part" +msgstr "Pièce" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Réinitialiser la rotation actuelle à la valeur lors de l'ouverture de l'outil de rotation." -msgid "Rotate (absolute)" -msgstr "Rotation (absolue)" - msgid "Reset current rotation to real zeros." msgstr "Réinitialiser la rotation actuelle à zéro." -msgid "Part coordinates" -msgstr "Coordonnées de la pièce" +msgctxt "Noun" +msgid "Scale" +msgstr "Redimensionner" #. TRN - Input label. Be short as possible msgid "Size" @@ -511,12 +523,6 @@ msgstr "Espacement" msgid "Spacing" msgstr "Espacement" -msgid "Part" -msgstr "Pièce" - -msgid "Object" -msgstr "Objet" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1695,6 +1701,25 @@ msgstr "Orca Slicer a reçu une exception non gérée : %1%" msgid "Untitled" msgstr "Sans titre" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Depuis la version 2.4.0, OrcaSlicer synchronise les profils utilisateur via Orca Cloud au lieu de Bambu Cloud.\n" +"\n" +"Pour migrer vos profils existants, connectez-vous à Orca Cloud et ils seront transférés automatiquement. Pour en savoir plus sur la façon dont OrcaSlicer stocke et synchronise vos profils, ou pour migrer vos préréglages manuellement, consultez notre wiki.\n" +"\n" +"Si vous n'utilisiez pas Bambu Cloud pour synchroniser vos profils, ce changement ne vous concerne pas et vous pouvez ignorer ce message." + +msgid "Profile syncing change" +msgstr "Modification de la synchronisation des profils" + +msgid "Learn more" +msgstr "En savoir plus" + msgid "Reloading network plug-in..." msgstr "Rechargement du plug-in réseau…" @@ -1724,6 +1749,15 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"Le runtime Microsoft WebView2 n’a pas pu être installé.\n" +"Certaines fonctionnalités, dont l’assistant de configuration, peuvent apparaître vides tant qu’il n’est pas installé.\n" +"Veuillez l’installer manuellement depuis https://developer.microsoft.com/microsoft-edge/webview2/ et redémarrer Orca Slicer." + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Le chemin des ressources n'existe pas ou n'est pas un répertoire : %s" @@ -1827,33 +1861,32 @@ msgstr "Ouvrir un projet" 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 "La version de OrcaSlicer est trop ancienne et doit être mise à jour vers la dernière version afin qu’il puisse être utilisé normalement." -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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" msgstr "" -"Conflit de synchronisation cloud : ce préréglage a une version plus récente dans OrcaCloud.\n" -"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Conflit de synchronisation cloud : un préréglage de ce nom existe déjà dans OrcaCloud.\n" -"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"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 "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"Conflit de synchronisation cloud : un préréglage du même nom a été précédemment supprimé du cloud.\n" -"Supprimer effacera votre préréglage local. Forcer l’envoi l’écrase avec votre préréglage local." msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"Conflit de synchronisation cloud : un conflit de préréglage inattendu ou non identifié s’est produit.\n" -"Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1862,6 +1895,12 @@ msgstr "" "Forcer l’envoi écrasera la copie du cloud avec vos modifications locales du préréglage.\n" "Voulez-vous continuer ?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "Résoudre le conflit de synchronisation cloud" @@ -1941,8 +1980,9 @@ msgstr "Le nombre de préréglages utilisateur mis en cache dans le nuage a dép msgid "Sync user presets" msgstr "Synchroniser les réglages prédéfinis de l’utilisateur" -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 "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 "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2151,6 +2191,9 @@ msgstr "Cube Orca" msgid "OrcaSliced Combo" msgstr "OrcaSliced Combo" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Test de tolérance Orca" @@ -3534,6 +3577,7 @@ msgstr "Calibrage terminé. Veuillez trouver la ligne d'extrusion la plus unifor msgid "Save" msgstr "Enregistrer" +msgctxt "Navigation" msgid "Back" msgstr "Arrière" @@ -3973,7 +4017,7 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "La température de buse recommandée pour ce type de filament est de [%d, %d] degrés Celsius." msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "Échec de la validation du modèle d’avance de pression adaptative :\n" msgid "" "Too small max volumetric speed.\n" @@ -3986,6 +4030,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "La température actuelle du caisson est supérieure à la température de sécurité du matériau, ce qui peut entraîner un ramollissement et un bouchage du filament. La température de sécurité maximale pour le matériau est %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "La température minimale du caisson (%d℃) est supérieure à la température cible du caisson (%d℃). La valeur minimale est le seuil à partir duquel l’impression démarre tandis que le caisson continue de chauffer vers la cible ; elle ne doit donc pas la dépasser. Elle sera limitée à la cible." + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4877,6 +4925,7 @@ msgstr "Changements d’outil" msgid "Color change" msgstr "Changement de couleur" +msgctxt "Noun" msgid "Print" msgstr "Imprimer" @@ -5036,11 +5085,15 @@ msgstr "Éviter la région de calibration de l'extrusion" msgid "Align to Y axis" msgstr "Aligner sur l’axe Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Arrière" + +msgctxt "Camera View" msgid "Left" msgstr "Gauche" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Droite" @@ -5089,6 +5142,12 @@ msgstr "Toutes les plaques" msgid "Stats" msgstr "Statistiques" +msgid "Slice" +msgstr "Découper" + +msgid "Review" +msgstr "Examiner" + msgid "Assembly Return" msgstr "Retour d'assemblage" @@ -5113,6 +5172,9 @@ msgstr "Surplombs" msgid "Outline" msgstr "Contour" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "Vue réaliste" @@ -5354,6 +5416,10 @@ msgstr "Imprimer le plateau" msgid "Export G-code file" msgstr "Exporter le fichier G-code" +msgctxt "Verb" +msgid "Print" +msgstr "Imprimer" + msgid "Export plate sliced file" msgstr "Exporter le fichier découpé du plateau" @@ -7692,6 +7758,50 @@ msgstr "Choisir le dossier pour les éléments téléchargés" msgid "Choose Download Directory" msgstr "Choisissez le répertoire de téléchargement" +msgid "(Latest)" +msgstr "(Dernière)" + +msgid "Network plug-in switched successfully." +msgstr "Plug-in réseau changé avec succès." + +msgid "Success" +msgstr "Succès" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Échec du chargement du plug-in réseau. Veuillez redémarrer l'application." + +#, 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 "" +"Vous avez sélectionné la version %s du plug-in réseau.\n" +"\n" +"Souhaitez-vous télécharger et installer cette version maintenant ?\n" +"\n" +"Note : L'application devra peut-être redémarrer après l'installation." + +msgid "Download Network Plug-in" +msgstr "Télécharger le plug-in réseau" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recharger le plug-in réseau sans redémarrer l'application" + +msgid "Network plug-in reloaded successfully." +msgstr "Plug-in réseau rechargé avec succès." + +msgid "Reload" +msgstr "Recharger" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Échec du rechargement du plug-in réseau. Veuillez redémarrer l'application." + +msgid "Reload Failed" +msgstr "Échec du rechargement" + msgid "Associate" msgstr "Associer" @@ -7746,12 +7856,6 @@ msgstr "Afficher l'écran de démarrage" msgid "Show the splash screen during startup." msgstr "Afficher l’écran de démarrage au démarrage." -msgid "Show shared profiles notification" -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 "Placer les boutons de fenêtre à gauche" @@ -7782,6 +7886,12 @@ msgstr "Comportement du chargement" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Les paramètres d'imprimante/filament/processus doivent-ils être chargés à l'ouverture d'un fichier 3MF ?" +msgid "Auto backup" +msgstr "Sauvegarde automatique" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Sauvegardez votre projet périodiquement pour faciliter la restauration après un plantage occasionnel." + msgid "Maximum recent files" msgstr "Nombre maximum de fichiers récents" @@ -7800,11 +7910,55 @@ msgstr "Afficher les options lors de l'importation d'un fichier STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Si activé, une boîte de dialogue de paramètres apparaîtra lors de l'importation d'un fichier STEP." -msgid "Auto backup" -msgstr "Sauvegarde automatique" +msgid "STEP importing: linear deflection" +msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Sauvegardez votre projet périodiquement pour faciliter la restauration après un plantage occasionnel." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Niveau de qualité pour l'exportation Draco" + +msgid "bits" +msgstr "bits" + +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 "" +"Contrôle la profondeur de bits de quantification utilisée lors de la compression du maillage au format Draco.\n" +"0 = compression sans perte (la géométrie est préservée en pleine précision). Les valeurs avec perte valides vont de 8 à 30.\n" +"Des valeurs plus basses produisent des fichiers plus petits mais perdent plus de détails géométriques ; des valeurs plus élevées préservent plus de détails au prix de fichiers plus volumineux." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Préréglage" @@ -7836,6 +7990,12 @@ msgstr "filaments" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Optimise la hauteur maximale de la zone de filaments selon le nombre de filaments choisi." +msgid "Show shared profiles notification" +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 "Features" msgstr "Fonctionnalités" @@ -7848,21 +8008,6 @@ msgstr "Si cette option est activée, vous pouvez envoyer une tâche à plusieur msgid "Pop up to select filament grouping mode" msgstr "Fenêtre contextuelle pour sélectionner le mode de regroupement des filaments" -msgid "Quality level for Draco export" -msgstr "Niveau de qualité pour l'exportation Draco" - -msgid "bits" -msgstr "bits" - -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 "" -"Contrôle la profondeur de bits de quantification utilisée lors de la compression du maillage au format Draco.\n" -"0 = compression sans perte (la géométrie est préservée en pleine précision). Les valeurs avec perte valides vont de 8 à 30.\n" -"Des valeurs plus basses produisent des fichiers plus petits mais perdent plus de détails géométriques ; des valeurs plus élevées préservent plus de détails au prix de fichiers plus volumineux." - msgid "Behaviour" msgstr "Comportement" @@ -8107,18 +8252,6 @@ msgstr "Vérifier les mises à jour stables uniquement" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Synchronisation automatique des pré-réglages utilisateur (Imprimante/Filament/Traitement)" -msgid "Update built-in presets automatically." -msgstr "Mettre à jour automatiquement les préréglages intégrés." - -msgid "Use encrypted file for token storage" -msgstr "Utiliser un fichier chiffré pour le stockage des jetons" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Stocker les jetons d'authentification dans un fichier chiffré au lieu du trousseau système. (Nécessite un redémarrage)" - -msgid "Filament Sync Options" -msgstr "Options de synchronisation des filaments" - msgid "Filament sync mode" msgstr "Mode de synchronisation des filaments" @@ -8131,6 +8264,15 @@ msgstr "Filament et couleur" msgid "Color only" msgstr "Couleur uniquement" +msgid "Update built-in presets automatically." +msgstr "Mettre à jour automatiquement les préréglages intégrés." + +msgid "Use encrypted file for token storage" +msgstr "Utiliser un fichier chiffré pour le stockage des jetons" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Stocker les jetons d'authentification dans un fichier chiffré au lieu du trousseau système. (Nécessite un redémarrage)" + msgid "Bambu network plug-in" msgstr "Plug-in réseau Bambu" @@ -8143,35 +8285,6 @@ msgstr "Version du plug-in réseau" msgid "Select the network plug-in version to use" msgstr "Sélectionner la version du plug-in réseau à utiliser" -msgid "(Latest)" -msgstr "(Dernière)" - -msgid "Network plug-in switched successfully." -msgstr "Plug-in réseau changé avec succès." - -msgid "Success" -msgstr "Succès" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Échec du chargement du plug-in réseau. Veuillez redémarrer l'application." - -#, 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 "" -"Vous avez sélectionné la version %s du plug-in réseau.\n" -"\n" -"Souhaitez-vous télécharger et installer cette version maintenant ?\n" -"\n" -"Note : L'application devra peut-être redémarrer après l'installation." - -msgid "Download Network Plug-in" -msgstr "Télécharger le plug-in réseau" - msgid "Associate files to OrcaSlicer" msgstr "Associer des fichiers à Orca Slicer" @@ -8214,8 +8327,17 @@ msgstr "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 "Show unsupported presets" +msgstr "Afficher les préréglages non pris en charge" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Affiche les préréglages incompatibles ou non pris en charge dans les listes déroulantes d’imprimantes et de filaments. Ces préréglages ne peuvent pas être sélectionnés." + +msgid "Experimental Features" +msgstr "Fonctionnalités expérimentales" + +msgid "Keep painted feature after mesh change" +msgstr "Conserver les zones peintes après 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" @@ -8224,12 +8346,6 @@ 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 "Afficher les préréglages non pris en charge" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "Affiche les préréglages incompatibles ou non pris en charge dans les listes déroulantes d’imprimantes et de filaments. Ces préréglages ne peuvent pas être sélectionnés." - msgid "Allow Abnormal Storage" msgstr "Autoriser le stockage anormal" @@ -8258,24 +8374,6 @@ msgstr "débogage" msgid "trace" msgstr "trace" -msgid "Network plug-in" -msgstr "Plug-in réseau" - -msgid "Reload" -msgstr "Recharger" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recharger le plug-in réseau sans redémarrer l'application" - -msgid "Network plug-in reloaded successfully." -msgstr "Plug-in réseau rechargé avec succès." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Échec du rechargement du plug-in réseau. Veuillez redémarrer l'application." - -msgid "Reload Failed" -msgstr "Échec du rechargement" - msgid "Debug" msgstr "Débogage" @@ -8291,24 +8389,6 @@ msgstr "Synchronisation préréglée" msgid "Preferences sync" msgstr "Synchronisation des préférences" -msgid "View control settings" -msgstr "Afficher les paramètres de contrôle" - -msgid "Rotate view" -msgstr "Rotation de la vue" - -msgid "Pan view" -msgstr "Déplacement de la vue" - -msgid "Zoom view" -msgstr "Zoom de la vue" - -msgid "Other" -msgstr "Autre" - -msgid "Reverse scroll direction while zooming" -msgstr "La molette de la souris s'inverse lors du zoom" - msgid "Enable SSL(MQTT)" msgstr "Activer SSL (MQTT)" @@ -9002,6 +9082,12 @@ msgstr "Supprimer ce préréglage" msgid "Search in preset" msgstr "Rechercher dans le préréglage" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "La synchronisation entre des entraînements d’extrudeur ou des types de volume de buse différents n’est pas prise en charge." + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "Synchroniser la modification des paramètres avec les paramètres correspondants d’un autre extrudeur." + msgid "Click to reset all settings to the last saved preset." msgstr "Cliquez pour rétablir tous les paramètres au dernier préréglage enregistré." @@ -9288,6 +9374,18 @@ msgstr "Rapport de débit et avance de pression" msgid "Print chamber temperature" msgstr "Température du caisson d’impression" +msgid "Chamber temperature" +msgstr "Température du caisson" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "Température cible du caisson, et température minimale du caisson à partir de laquelle l’impression doit démarrer" + +msgid "Target" +msgstr "Cible" + +msgid "Minimal" +msgstr "Minimale" + msgid "Print temperature" msgstr "Température d'impression" @@ -9615,12 +9713,22 @@ msgid "Don't warn again for this preset" msgstr "Ne plus avertir pour ce préréglage" #, c-format, boost-format -msgid "Left: %s" -msgstr "Gauche : %s" +msgid "%s: %s" +msgstr "%s : %s" + +msgid "No modifications need to be copied." +msgstr "Aucune modification à copier." + +msgid "Copy paramters" +msgstr "Copier les paramètres" #, c-format, boost-format -msgid "Right: %s" -msgstr "Droite : %s" +msgid "Modify paramters of %s" +msgstr "Modifier les paramètres de %s" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "Voulez-vous modifier les paramètres suivants de %s pour correspondre à ceux de %s ?" msgid "Click to reset current value and attach to the global value." msgstr "Cliquez pour réinitialiser la valeur actuelle et l'attacher à la valeur globale." @@ -9637,7 +9745,7 @@ msgstr "Modifications non enregistrées" msgid "Transfer or discard changes" msgstr "Ignorer ou conserver les modifications" -msgid "Old value" +msgid "Old Value" msgstr "Ancienne valeur" msgid "New Value" @@ -9769,6 +9877,12 @@ msgstr "Nombre d'extrudeurs" msgid "Capabilities" msgstr "Fonctionnalités" +msgid "Left: " +msgstr "Gauche : " + +msgid "Right: " +msgstr "Droite : " + msgid "Show all presets (including incompatible)" msgstr "Afficher tous les préréglages (y compris incompatibles)" @@ -10977,7 +11091,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "L'option de paroi précise sera ignorée pour les séquences de parois extérieure-intérieure ou intérieure-extérieure-intérieure." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "Le modèle d’avance de pression adaptative d’un ou plusieurs extrudeurs peut contenir des valeurs non valides." msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "Le rétrécissement du filament ne sera pas utilisé car le rétrécissement des filaments utilisés ne correspond pas." @@ -10985,6 +11099,15 @@ msgstr "Le rétrécissement du filament ne sera pas utilisé car le rétrécisse msgid "Generating skirt & brim" msgstr "Génération jupe et bord" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"Les jupes par objet ne peuvent pas tenir entre les objets dans la séquence d’impression Par objet.\n" +"\n" +"Éloignez les objets, réduisez la taille de la bordure/jupe, passez le type de jupe à Combiné, ou passez la séquence d’impression à Par couche." + msgid "Exporting G-code" msgstr "Exportation du G-code" @@ -11897,6 +12020,25 @@ msgstr "Impression normale" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "L'accélération par défaut de l'impression normale et du déplacement à l'exception de la couche initiale" +msgid "Acceleration of travel moves." +msgstr "Accélération des déplacements" + +msgid "First layer travel" +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 "mm/s² or %" +msgstr "mm/s² ou %" + +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 "Accélération des ponts. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée en fonction de l’accélération de la paroi extérieure." + msgid "Default filament profile" msgstr "Profil de filament par défaut" @@ -12104,12 +12246,28 @@ msgstr "Spirale d'Archimède" msgid "Octagram Spiral" msgstr "Spirale Octagramme" +msgid "Top surface density" +msgstr "Densité de la surface supérieure" + +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 "Densité de la couche de surface supérieure. Une valeur de 100 % crée une couche supérieure entièrement solide et lisse. Réduire cette valeur donne une surface supérieure texturée, selon le motif de surface supérieure choisi. Une valeur de 0 % ne créera que les parois sur la couche supérieure. Destiné à des fins esthétiques ou fonctionnelles, pas pour corriger des problèmes comme la surextrusion." + msgid "Bottom surface pattern" msgstr "Motif de surface inférieure" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Motif de ligne du remplissage de la surface inférieure, pas du remplissage du pont" +msgid "Bottom surface density" +msgstr "Densité de la surface inférieure" + +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 "" +"Densité de la couche de surface inférieure. Destiné à des fins esthétiques ou fonctionnelles, pas pour corriger des problèmes comme la surextrusion.\n" +"ATTENTION : Réduire cette valeur peut affecter négativement l'adhérence au plateau." + msgid "Internal solid infill pattern" msgstr "Motif de remplissage plein interne" @@ -12134,6 +12292,18 @@ msgstr "Seuil des petits périmètres" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Cela définit le seuil pour une petite longueur de périmètre. Le seuil par défaut est de 0 mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Ordre d’impression des parois" @@ -12319,27 +12489,26 @@ msgstr "" "2. Notez la valeur optimale de PA pour chaque vitesse de débit volumétrique et accélération. Vous pouvez trouver le numéro de débit en sélectionnant le débit dans le menu déroulant du schéma de couleurs et en déplaçant le curseur horizontal sur les lignes du schéma PA. Le chiffre doit être visible en bas de la page. La valeur idéale du PA devrait diminuer au fur et à mesure que le débit volumétrique augmente. Si ce n’est pas le cas, vérifiez que votre extrudeur fonctionne correctement. Plus vous imprimez lentement et avec peu d’accélération, plus la plage des valeurs PA acceptables est grande. Si aucune différence n’est visible, utilisez la valeur PA du test le plus rapide.\n" "3 Entrez les triplets de valeurs PA, de débit et d’accélérations dans la zone de texte ici et sauvegardez votre profil de filament." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Activation de l’avance de pression adaptative pour les surplombs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" +msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." msgstr "" -"Activez le PA adaptatif pour les surplombs ainsi que lorsque le débit change au sein d’une même structure. Il s’agit d’une option expérimentale : si le profil de PA n’est pas réglé avec précision, elle provoquera des problèmes d’uniformité sur les surfaces externes avant et après les surplombs.\n" -"Incompatible avec les imprimantes Prusa, car elles marquent une pause pour traiter les changements de PA, ce qui cause des retards et des défauts." -msgid "Pressure advance for bridges" -msgstr "Avance de pression pour les ponts" +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver.\n" -"\n" -" Une valeur PA plus faible lors de l’impression de ponts permet de réduire l’apparition d’une légère sous-extrusion immédiatement après les ponts. Ce phénomène est dû à la chute de pression dans la buse lors de l’impression dans l’air et une valeur PA plus faible permet d’y remédier." 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 "Largeur de ligne par défaut si les autres largeurs de ligne sont fixées à 0. Si elle est exprimée en %, elle sera calculée sur le diamètre de la buse." @@ -12407,18 +12576,6 @@ msgstr "Auto pour la purge" msgid "Auto For Match" msgstr "Auto pour la correspondance" -msgid "Enable filament dynamic map" -msgstr "Activer le mappage dynamique des filaments" - -msgid "Enable dynamic filament mapping during print." -msgstr "Activer le mappage dynamique des filaments pendant l’impression." - -msgid "Has filament switcher" -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" @@ -12723,6 +12880,22 @@ msgstr "Direction du remplissage" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Angle pour le motif de remplissage, qui contrôle le début ou la direction principale de la ligne" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Densité de remplissage" @@ -12756,7 +12929,7 @@ msgid "Z-buckling bias optimization (experimental)" msgstr "Optimisation du biais de flambage en Z (expérimental)" # TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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 "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 selon l’axe Z. La consommation de filament est préservée. Aucun effet à partir d’environ 30 % de densité de remplissage. S’applique uniquement lorsque le motif de remplissage est réglé sur Gyroïde." @@ -12823,92 +12996,14 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Gyroïde" -msgid "Lateral lattice angle 1" -msgstr "Angle de treillis 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Angle du premier ensemble d’éléments de treillis 2D dans la direction Z. Zéro correspond à la verticale." - -msgid "Lateral lattice angle 2" -msgstr "Angle de treillis 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Angle de la deuxième série d’éléments de treillis 2D dans la direction Z. Zéro correspond à la verticale." - -msgid "Infill overhang angle" -msgstr "Angle de surplomb du remplissage" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -msgstr "L'angle des lignes inclinées du remplissage. 60° donnera un nid d'abeille pur." - -msgid "Lightning overhang angle" -msgstr "Angle de surplomb Lightning" - -msgid "Maximum overhang angle for Lightning infill support propagation." -msgstr "Angle de surplomb maximal pour la propagation du support du remplissage Lightning." - -msgid "Prune angle" -msgstr "Angle d’élagage" - -msgid "" -"Controls how aggressively short or unsupported Lightning branches are pruned.\n" -"This angle is converted internally to a per-layer distance." -msgstr "" -"Contrôle l’agressivité de l’élagage des branches Lightning courtes ou non soutenues.\n" -"Cet angle est converti en interne en une distance par couche." - -msgid "Straightening angle" -msgstr "Angle de redressement" - -msgid "Maximum straightening angle used to simplify Lightning branches." -msgstr "Angle de redressement maximal utilisé pour simplifier les branches Lightning." - -msgid "Sparse infill anchor length" -msgstr "Longueur de l’ancrage de remplissage interne" - -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 "" -"Connecter une ligne de remplissage à un périmètre interne avec un court segment de périmètre supplémentaire. S’il est exprimé en pourcentage (exemple : 15%), il est calculé sur la largeur de l’extrusion de remplissage. Si aucun segment de périmètre plus court que infill_anchor_max n’est trouvé, la ligne de remplissage est connectée à un segment de périmètre d’un seul côté et la longueur du segment de périmètre pris est limitée à ce paramètre, mais pas plus long que anchor_length_max.\n" -"Une valeur à 0 désactive les périmètres d’ancrage connectés à une seule ligne de remplissage." - -msgid "0 (no open anchors)" -msgstr "0 (aucune ancre ouverte)" - -msgid "1000 (unlimited)" -msgstr "1000 (illimité)" - -msgid "Maximum length of the infill anchor" -msgstr "Longueur maximale de l’ancrage de remplissage" - -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 "" -"Connecter une ligne de remplissage à un périmètre interne avec un court segment de périmètre supplémentaire. S’il est exprimé en pourcentage (exemple : 15 %), il est calculé sur la largeur de l’extrusion de remplissage. Orca Slicer essaie de connecter deux lignes de remplissage proches à un court segment de périmètre. Si aucun segment de périmètre plus court que ce paramètre n’est trouvé, la ligne de remplissage est connectée à un segment de périmètre sur un seul côté et la longueur du segment de périmètre pris est limitée à infill_anchor, mais pas plus longue que ce paramètre.\n" -"S’il est défini sur 0, l’ancien algorithme de connexion de remplissage sera utilisé, il devrait créer le même résultat qu’avec 1000 et 0." - -msgid "0 (Simple connect)" -msgstr "0 (connexions simples)" - -msgid "Acceleration of inner walls." -msgstr "Accélération des parois intérieures" - -msgid "Acceleration of travel moves." -msgstr "Accélération des déplacements" - msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Il s'agit de l'accélération de la surface supérieure du remplissage. Utiliser une valeur plus petite pourrait améliorer la qualité de la surface supérieure" msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Accélération de la paroi extérieur : l'utilisation d'une valeur inférieure peut améliorer la qualité" -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 "Accélération des ponts. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée en fonction de l’accélération de la paroi extérieure." - -msgid "mm/s² or %" -msgstr "mm/s² ou %" +msgid "Acceleration of inner walls." +msgstr "Accélération des parois intérieures" 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 "Accélération du remplissage interne. Si la valeur est exprimée en pourcentage (par exemple 100%), elle sera calculée en fonction de l’accélération par défaut." @@ -12919,16 +13014,6 @@ msgstr "Accélération du remplissage interne. Si la valeur est exprimée en pou msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Accélération de la couche initiale. L'utilisation d'une valeur plus basse peut améliorer l'adhérence sur le plateau" -msgid "First layer travel" -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" @@ -13018,6 +13103,22 @@ msgstr "La vitesse du ventilateur augmentera de manière linéaire à partir de msgid "layer" msgstr "couche" +msgid "First layer fan speed" +msgstr "Vitesse du ventilateur de la première couche" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" +"Définit une vitesse de ventilateur exacte pour la première couche, remplaçant tous les autres réglages de refroidissement. Utile pour protéger les pièces de tête d’impression imprimées en 3D (par exemple les conduits ABS/ASA de type Voron) d’un plateau chaud. Un léger flux d’air refroidit les conduits, sans recourir au refroidissement complet qui, dans certaines conditions, peut nuire à l’adhérence de la première couche.\n" +"À partir de la deuxième couche, le refroidissement normal reprend.\n" +"Si « Ventilateur à pleine vitesse à la couche » est également défini, le ventilateur monte progressivement de cette valeur sur la première couche jusqu’à votre cible à la couche choisie.\n" +"Disponible uniquement lorsque « Pas de refroidissement pour » est à 0.\n" +"Réglez sur -1 pour le désactiver." + msgid "Support interface fan speed" msgstr "Vitesse du ventilateur" @@ -13549,6 +13650,75 @@ 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 "Lateral lattice angle 1" +msgstr "Angle de treillis 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Angle du premier ensemble d’éléments de treillis 2D dans la direction Z. Zéro correspond à la verticale." + +msgid "Lateral lattice angle 2" +msgstr "Angle de treillis 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Angle de la deuxième série d’éléments de treillis 2D dans la direction Z. Zéro correspond à la verticale." + +msgid "Infill overhang angle" +msgstr "Angle de surplomb du remplissage" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +msgstr "L'angle des lignes inclinées du remplissage. 60° donnera un nid d'abeille pur." + +msgid "Lightning overhang angle" +msgstr "Angle de surplomb Lightning" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "Angle de surplomb maximal pour la propagation du support du remplissage Lightning." + +msgid "Prune angle" +msgstr "Angle d’élagage" + +msgid "" +"Controls how aggressively short or unsupported Lightning branches are pruned.\n" +"This angle is converted internally to a per-layer distance." +msgstr "" +"Contrôle l’agressivité de l’élagage des branches Lightning courtes ou non soutenues.\n" +"Cet angle est converti en interne en une distance par couche." + +msgid "Straightening angle" +msgstr "Angle de redressement" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "Angle de redressement maximal utilisé pour simplifier les branches Lightning." + +msgid "Sparse infill anchor length" +msgstr "Longueur de l’ancrage de remplissage interne" + +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 "" +"Connecter une ligne de remplissage à un périmètre interne avec un court segment de périmètre supplémentaire. S’il est exprimé en pourcentage (exemple : 15%), il est calculé sur la largeur de l’extrusion de remplissage. Si aucun segment de périmètre plus court que infill_anchor_max n’est trouvé, la ligne de remplissage est connectée à un segment de périmètre d’un seul côté et la longueur du segment de périmètre pris est limitée à ce paramètre, mais pas plus long que anchor_length_max.\n" +"Une valeur à 0 désactive les périmètres d’ancrage connectés à une seule ligne de remplissage." + +msgid "0 (no open anchors)" +msgstr "0 (aucune ancre ouverte)" + +msgid "1000 (unlimited)" +msgstr "1000 (illimité)" + +msgid "Maximum length of the infill anchor" +msgstr "Longueur maximale de l’ancrage de remplissage" + +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 "" +"Connecter une ligne de remplissage à un périmètre interne avec un court segment de périmètre supplémentaire. S’il est exprimé en pourcentage (exemple : 15 %), il est calculé sur la largeur de l’extrusion de remplissage. Orca Slicer essaie de connecter deux lignes de remplissage proches à un court segment de périmètre. Si aucun segment de périmètre plus court que ce paramètre n’est trouvé, la ligne de remplissage est connectée à un segment de périmètre sur un seul côté et la longueur du segment de périmètre pris est limitée à infill_anchor, mais pas plus longue que ce paramètre.\n" +"S’il est défini sur 0, l’ancien algorithme de connexion de remplissage sera utilisé, il devrait créer le même résultat qu’avec 1000 et 0." + +msgid "0 (Simple connect)" +msgstr "0 (connexions simples)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14413,6 +14583,18 @@ msgstr "Entraînement direct" msgid "Bowden" msgstr "Bowden" +msgid "Enable filament dynamic map" +msgstr "Activer le mappage dynamique des filaments" + +msgid "Enable dynamic filament mapping during print." +msgstr "Activer le mappage dynamique des filaments pendant l’impression." + +msgid "Has filament switcher" +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 "Extra length on restart" msgstr "Longueur supplémentaire" @@ -14464,6 +14646,9 @@ msgstr "Alignée" msgid "Aligned back" msgstr "Aligné à l'arrière" +msgid "Back" +msgstr "Arrière" + msgid "Random" msgstr "Aléatoire" @@ -14830,6 +15015,9 @@ msgstr "Les fissures plus petites que 2x le rayon de fermeture de l’espace son msgid "Slicing Mode" msgstr "Mode de découpe" +msgid "Other" +msgstr "Autre" + 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." @@ -15182,9 +15370,6 @@ msgstr "" "\n" "Cette option repose sur la prise en charge des commandes M191 et M141 par le micrologiciel, via des macros ou nativement, et est généralement utilisée lorsqu’un chauffage de caisson actif est installé." -msgid "Chamber temperature" -msgstr "Température du caisson" - 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" @@ -15198,6 +15383,22 @@ msgstr "" "\n" "S’il est activé, ce paramètre définit également une variable gcode nommée chamber_temperature, qui peut être utilisée pour transmettre la température de caisson souhaitée à votre macro de démarrage de l’impression, ou à une macro de trempe thermique comme celle-ci : PRINT_START (autres variables) CHAMBER_TEMP=[chamber_temperature]. Cela peut être utile si votre imprimante ne prend pas en charge les commandes M141/M191, ou si vous souhaitez gérer le préchauffage dans la macro de démarrage de l’impression si aucun chauffage de caisson actif n’est installé." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" +"Il s’agit de la température du caisson à laquelle l’impression doit démarrer, tandis que le caisson continue de chauffer vers la température « Cible » du caisson. Par exemple, réglez la Cible sur 60 et la Minimale sur 50 pour commencer à imprimer dès que le caisson atteint 50 °C, sans attendre les 60 °C complets.\n" +"\n" +"Elle définit une variable G-code nommée chamber_minimal_temperature, qui peut être transmise à votre macro de démarrage d’impression ou à une macro de préchauffage, comme ceci : PRINT_START (autres variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Contrairement à la température « Cible » du caisson, cette option n’émet aucune commande M141/M191 ; elle expose seulement la valeur à votre G-code personnalisé. Elle ne doit pas dépasser la température « Cible » du caisson." + +msgid "Chamber minimal temperature" +msgstr "Température minimale du caisson" + msgid "Nozzle temperature after the first layer" msgstr "Température de la buse pour les couches après la première" @@ -15237,22 +15438,6 @@ msgstr "Épaisseur de la coque supérieure" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Le nombre de couches solides supérieures est augmenté lors du découpage si l'épaisseur calculée par les couches de coque supérieures est inférieure à cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la hauteur de couche est faible. 0 signifie que ce paramètre est désactivé et que l'épaisseur de la coque supérieure est simplement déterminée par le nombre de couches de coque supérieures." -msgid "Top surface density" -msgstr "Densité de la surface supérieure" - -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 "Densité de la couche de surface supérieure. Une valeur de 100 % crée une couche supérieure entièrement solide et lisse. Réduire cette valeur donne une surface supérieure texturée, selon le motif de surface supérieure choisi. Une valeur de 0 % ne créera que les parois sur la couche supérieure. Destiné à des fins esthétiques ou fonctionnelles, pas pour corriger des problèmes comme la surextrusion." - -msgid "Bottom surface density" -msgstr "Densité de la surface inférieure" - -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 "" -"Densité de la couche de surface inférieure. Destiné à des fins esthétiques ou fonctionnelles, pas pour corriger des problèmes comme la surextrusion.\n" -"ATTENTION : Réduire cette valeur peut affecter négativement l'adhérence au plateau." - msgid "This is the speed at which traveling is done." msgstr "Vitesse de déplacement plus rapide et sans extrusion" @@ -15489,6 +15674,14 @@ msgstr "Torsion des trous polygones" msgid "Rotate the polyhole every layer." msgstr "Faites pivoter le trou polygone à chaque couche." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Vignette G-code" @@ -15630,9 +15823,6 @@ msgstr "Exporter plusieurs STL" msgid "Export the objects as multiple STLs to directory." msgstr "Exporter les objets sous forme de STLs multiples dans un répertoire" -msgid "Slice" -msgstr "Découper" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Trancher toutes les plaques : 0-toutes, i-plaque i, autres-invalides" @@ -17849,6 +18039,134 @@ msgstr "Connexion/Test" 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 "Detect Creality K-series printer" +msgstr "Détecter une imprimante Creality série K" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "Cliquez sur Scan pour rechercher des imprimantes série K sur votre réseau." + +msgid "Use Selected" +msgstr "Utiliser la sélection" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "Recherche d’imprimantes série K sur le réseau local… cela prend quelques secondes." + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "Aucune imprimante série K trouvée. Assurez-vous que l’imprimante est sur le même réseau et qu’elle n’est pas bloquée par l’isolation des clients Wi-Fi, puis cliquez à nouveau sur Scan." + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "%zu imprimante(s) Creality trouvée(s). Sélectionnez-en une et cliquez sur Utiliser la sélection." + +msgid "Active" +msgstr "Actif" + +msgid "Printers" +msgstr "Imprimantes" + +msgid "Processes" +msgstr "Traitements" + +msgid "Show/Hide system information" +msgstr "Afficher/Masquer les informations système" + +msgid "Copy system information to clipboard" +msgstr "Copier les informations système dans le presse-papiers" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "Nous avons besoin d’informations pour diagnostiquer l’origine du problème. Consultez la page wiki pour un guide détaillé." + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "Le bouton Compresser rassemble le fichier de projet et les journaux de la session actuelle dans un fichier ZIP." + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "Tout exemple visuel supplémentaire, comme des images ou des enregistrements d’écran, peut être utile pour signaler le problème." + +msgid "Report issue" +msgstr "Signaler un problème" + +msgid "Pack" +msgstr "Compresser" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "Nettoie et reconstruit le cache des profils système au prochain démarrage" + +msgid "Clean system profiles cache" +msgstr "Nettoyer le cache des profils système" + +msgid "Clean" +msgstr "Nettoyer" + +msgid "Loaded profiles overview" +msgstr "Aperçu des profils chargés" + +msgid "This section shows information for loaded profiles" +msgstr "Cette section affiche les informations des profils chargés" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "Exporte un aperçu détaillé des profils chargés au format JSON" + +msgid "Configurations folder" +msgstr "Dossier des configurations" + +msgid "Opens configurations folder" +msgstr "Ouvre le dossier des configurations" + +msgid "Log level" +msgstr "Niveau de journalisation" + +msgid "Stored logs" +msgstr "Journaux stockés" + +msgid "Packs all stored logs onto a zip file." +msgstr "Compresse tous les journaux stockés dans un fichier ZIP." + +msgid "Profiles" +msgstr "Profils" + +msgid "Select NO to close dialog and review project" +msgstr "Sélectionnez Non pour fermer la fenêtre et revoir le projet" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "Aucun fichier de projet dans la session actuelle. Seuls les journaux seront inclus dans le paquet" + +msgid "Select NO to close dialog and review project." +msgstr "Sélectionnez Non pour fermer la fenêtre et revoir le projet." + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "Veuillez vous assurer qu’aucune instance d’OrcaSlicer n’est en cours d’exécution" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "Le dossier système ne peut pas être supprimé car certains fichiers sont utilisés par une autre application. Veuillez fermer toute application utilisant ces fichiers et réessayer." + +msgid "Failed to delete system folder..." +msgstr "Échec de la suppression du dossier système…" + +msgid "Failed to determine executable path." +msgstr "Impossible de déterminer le chemin de l’exécutable." + +msgid "Failed to launch a new instance." +msgstr "Échec du lancement d’une nouvelle instance." + +msgid "log(s)" +msgstr "journal(aux)" + +msgid "Choose where to save the exported JSON file" +msgstr "Choisissez où enregistrer le fichier JSON exporté" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" +"Échec de l’exportation\n" +"Veuillez vérifier les autorisations d’écriture ou si le fichier est utilisé par une autre application" + +msgid "Choose where to save the exported ZIP file" +msgstr "Choisissez où enregistrer le fichier ZIP exporté" + +msgid "File already exists. Overwrite?" +msgstr "Le fichier existe déjà. L’écraser ?" + msgid "3DPrinterOS Cloud upload options" msgstr "Options de téléversement vers 3DPrinterOS Cloud" @@ -17931,6 +18249,19 @@ msgstr "La connexion à MKS fonctionne correctement." msgid "Could not connect to MKS" msgstr "Impossible de se connecter à MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "La connexion à Moonraker fonctionne correctement." + +msgid "Could not connect to Moonraker" +msgstr "Impossible de se connecter à Moonraker" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "L’hôte a répondu mais ne semble pas être Moonraker (result.klippy_state manquant)." + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "Impossible d’analyser la réponse du serveur Moonraker : %s" + msgid "Connection to OctoPrint is working correctly." msgstr "La connexion à OctoPrint fonctionne correctement." @@ -18680,6 +19011,12 @@ msgstr "Nombre de facettes triangulaires" msgid "Calculating, please wait..." msgstr "Calcul en cours, veuillez patienter…" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "Paquet de préréglages" @@ -19081,6 +19418,112 @@ msgstr "" "Éviter la déformation\n" "Saviez-vous que lors de l’impression de matériaux susceptibles de se 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?" +#~ msgid "Print" +#~ msgstr "Imprimer" + +#~ msgid "in" +#~ msgstr "dans" + +#~ msgid "Object coordinates" +#~ msgstr "Coordonnées de l’objet" + +#~ msgid "World coordinates" +#~ msgstr "Coordonnées" + +#~ msgid "Translate(Relative)" +#~ msgstr "Translation (relative)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Rotation (absolue)" + +#~ msgid "Part coordinates" +#~ msgstr "Coordonnées de la pièce" + +#~ 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 "" +#~ "Conflit de synchronisation cloud : ce préréglage a une version plus récente dans OrcaCloud.\n" +#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." + +#~ 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 "" +#~ "Conflit de synchronisation cloud : un préréglage de ce nom existe déjà dans OrcaCloud.\n" +#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflit de synchronisation cloud : un préréglage du même nom a été précédemment supprimé du cloud.\n" +#~ "Supprimer effacera votre préréglage local. Forcer l’envoi l’écrase avec votre préréglage local." + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflit de synchronisation cloud : un conflit de préréglage inattendu ou non identifié s’est produit.\n" +#~ "Récupérer télécharge la copie du cloud. Forcer l’envoi l’écrase avec votre préréglage local." + +#~ 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 "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." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Activation de l’avance de pression adaptative pour les surplombs (beta)" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "Activez le PA adaptatif pour les surplombs ainsi que lorsque le débit change au sein d’une même structure. Il s’agit d’une option expérimentale : si le profil de PA n’est pas réglé avec précision, elle provoquera des problèmes d’uniformité sur les surfaces externes avant et après les surplombs.\n" +#~ "Incompatible avec les imprimantes Prusa, car elles marquent une pause pour traiter les changements de PA, ce qui cause des retards et des défauts." + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Avance de pression pour les ponts" + +#~ 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 "" +#~ "Valeur de l’avance de pression pour les ponts. Régler à 0 pour désactiver.\n" +#~ "\n" +#~ " Une valeur PA plus faible lors de l’impression de ponts permet de réduire l’apparition d’une légère sous-extrusion immédiatement après les ponts. Ce phénomène est dû à la chute de pression dans la buse lors de l’impression dans l’air et une valeur PA plus faible permet d’y remédier." + +#~ msgid "Filament Sync Options" +#~ msgstr "Options de synchronisation des filaments" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Expérimental) Conserver les éléments peints après une modification du maillage" + +#~ msgid "Network plug-in" +#~ msgstr "Plug-in réseau" + +#~ msgid "View control settings" +#~ msgstr "Afficher les paramètres de contrôle" + +#~ msgid "Rotate view" +#~ msgstr "Rotation de la vue" + +#~ msgid "Pan view" +#~ msgstr "Déplacement de la vue" + +#~ msgid "Zoom view" +#~ msgstr "Zoom de la vue" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "La molette de la souris s'inverse lors du zoom" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Gauche : %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Droite : %s" + #~ msgid "Enable network plug-in" #~ msgstr "Activer le plug-in réseau" @@ -20688,10 +21131,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Désélectionner" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Redimensionner" - #~ msgid "Lift Z Enforcement" #~ msgstr "Exécution du décalage en Z" diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po index 0142e6415f..1cf18316e2 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -324,6 +324,7 @@ msgstr "Gizmo-Forgatás" msgid "Optimize orientation" msgstr "Orientáció optimalizálása" +msgctxt "Verb" msgid "Scale" msgstr "Átméretezés" @@ -333,8 +334,9 @@ msgstr "Gizmo-Átméretezés" msgid "Error: Please close all toolbar menus first" msgstr "Hiba: Kérlek, először zárd be az összes eszköztár menüt" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -367,6 +369,9 @@ msgstr "Méretarányok" msgid "Object operations" msgstr "Objektum műveletek" +msgid "Scale" +msgstr "Átméretezés" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Térfogat műveletek" @@ -394,26 +399,33 @@ msgstr "Pozíció visszaállítása" msgid "Reset rotation" msgstr "Forgatás visszaállítása" -msgid "Object coordinates" -msgstr "Objektum koordináták" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Világkoordináták" +msgid "Object" +msgstr "Objektum" -msgid "Translate(Relative)" -msgstr "Eltolás (relatív)" +msgid "Part" +msgstr "Tárgy" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Az aktuális forgatás visszaállítása a forgatás eszköz megnyitásakor érvényes értékre." -msgid "Rotate (absolute)" -msgstr "Forgatás (abszolút)" - msgid "Reset current rotation to real zeros." msgstr "Az aktuális forgatás visszaállítása valódi nullára." -msgid "Part coordinates" -msgstr "Alkatrész koordináták" +msgctxt "Noun" +msgid "Scale" +msgstr "Átméretezés" #. TRN - Input label. Be short as possible msgid "Size" @@ -518,12 +530,6 @@ msgstr "Rés" msgid "Spacing" msgstr "Térköz" -msgid "Part" -msgstr "Tárgy" - -msgid "Object" -msgstr "Objektum" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1708,6 +1714,25 @@ msgstr "Az OrcaSlicer kezeletlen kivételt kapott: %1%" msgid "Untitled" msgstr "Névtelen" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"A 2.4.0-s verziótól kezdve az OrcaSlicer a felhasználói profilokat a Bambu Cloud helyett az Orca Cloudon keresztül szinkronizálja.\n" +"\n" +"Meglévő profiljai átviteléhez jelentkezzen be az Orca Cloudba, és azok automatikusan átkerülnek. Ha többet szeretne megtudni arról, hogyan tárolja és szinkronizálja az OrcaSlicer a profiljait, vagy ha kézzel szeretné átvinni a beállításait, tekintse meg a wikinket.\n" +"\n" +"Ha nem használta a Bambu Cloudot a profilok szinkronizálásához, ez a változás nem érinti Önt, és nyugodtan figyelmen kívül hagyhatja ezt az üzenetet." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Hálózati bővítmény újratöltése..." @@ -1737,6 +1762,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Az erőforrások elérési útja nem létezik vagy nem könyvtár: %s" @@ -1842,23 +1873,30 @@ msgstr "Projekt megnyitása" 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 "A Orca Slicer ezen verziója túl régi és a legfrissebb verzióra kell frissíteni, mielőtt rendesen használható lenne" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1867,6 +1905,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1946,8 +1990,9 @@ msgstr "A felhőben tárolt felhasználói beállítások száma elérte a limit msgid "Sync user presets" msgstr "Felhasználói beállítások szinkronizálása" -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 "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 "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2168,6 +2213,9 @@ msgstr "Orca kocka" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca tolerancia teszt" @@ -3605,7 +3653,7 @@ msgstr "A kalibrálás befejeződött. Kérlek, válaszd ki az alábbi képen l msgid "Save" msgstr "Mentés" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Hátul" @@ -4078,6 +4126,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "A kamra aktuális hőmérséklete magasabb az anyag biztonságos hőmérsékleténél, ez az anyag meglágyulásához és eltömődéshez vezethet. Az anyag maximális biztonságos hőmérséklete: %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4982,6 +5034,7 @@ msgstr "Szerszámváltások" msgid "Color change" msgstr "Színváltás" +msgctxt "Noun" msgid "Print" msgstr "Nyomtatás" @@ -5145,11 +5198,15 @@ msgstr "Extrudáláskalibráció környékének elkerülése" msgid "Align to Y axis" msgstr "Igazítás az Y-tengelyhez" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Hátul" + +msgctxt "Camera View" msgid "Left" msgstr "Bal" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Jobb" @@ -5198,6 +5255,12 @@ msgstr "Összes tálca" msgid "Stats" msgstr "Statisztika" +msgid "Slice" +msgstr "Szeletelés" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Vissza az összeszereléshez" @@ -5222,6 +5285,9 @@ msgstr "Túlnyúlások" msgid "Outline" msgstr "Körvonal" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5468,6 +5534,10 @@ msgstr "Nyomtatótálca" msgid "Export G-code file" msgstr "G-kód fájl exportálása" +msgctxt "Verb" +msgid "Print" +msgstr "Nyomtatás" + msgid "Export plate sliced file" msgstr "Szeletelt tálca exportálása" @@ -7851,6 +7921,50 @@ msgstr "Mappa kiválasztása a letöltött elemekhez" msgid "Choose Download Directory" msgstr "Válassz letöltési mappát" +msgid "(Latest)" +msgstr "(Legfrissebb)" + +msgid "Network plug-in switched successfully." +msgstr "A hálózati bővítmény sikeresen átváltva." + +msgid "Success" +msgstr "Sikeres" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást." + +#, 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 "" +"A(z) %s hálózati bővítmény verziót választottad.\n" +"\n" +"Szeretnéd most letölteni és telepíteni ezt a verziót?\n" +"\n" +"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása." + +msgid "Download Network Plug-in" +msgstr "Hálózati bővítmény letöltése" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül" + +msgid "Network plug-in reloaded successfully." +msgstr "A hálózati bővítmény újratöltése sikerült." + +msgid "Reload" +msgstr "Újratöltés" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást." + +msgid "Reload Failed" +msgstr "Sikertelen újratöltés" + msgid "Associate" msgstr "Társítás" @@ -7906,12 +8020,6 @@ msgstr "Splash screen meglenítése" msgid "Show the splash screen during startup." msgstr "Indításkor nyitókép megjelenítése." -msgid "Show shared profiles notification" -msgstr "Megosztott profilok értesítésének megjelenítése" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik." - msgid "Use window buttons on left side" msgstr "Használd a bal oldalon lévő ablakgombokat" @@ -7942,6 +8050,13 @@ msgstr "Betöltési viselkedés" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Betöltődjenek-e a nyomtató/filament/folyamat beállítások 3MF fájl megnyitásakor?" +msgid "Auto backup" +msgstr "Automatikus biztonsági mentés" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz." + msgid "Maximum recent files" msgstr "Legutóbbi fájlok maximális száma" @@ -7960,12 +8075,55 @@ msgstr "Beállítások megjelenítése STEP fájl importálásakor" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Ha engedélyezve van, STEP fájl importálásakor paraméterbeállítási párbeszédablak jelenik meg." -msgid "Auto backup" -msgstr "Automatikus biztonsági mentés" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "A projekt időszakos mentése az esetleges összeomlás utáni helyreállításhoz." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Minőségi szint Draco exporthoz" + +msgid "bits" +msgstr "bit" + +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 "" +"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n" +"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n" +"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Beállítás" @@ -7997,6 +8155,12 @@ msgstr "filamentek" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "A filamentterület maximális magasságát optimalizálja a kiválasztott filamentek száma alapján." +msgid "Show shared profiles notification" +msgstr "Megosztott profilok értesítésének megjelenítése" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Értesítés megjelenítése hivatkozással a megosztott profilok böngészéséhez, ha a kiválasztott nyomtató megváltozik." + msgid "Features" msgstr "Funkciók" @@ -8009,21 +8173,6 @@ msgstr "Ezzel az opcióval egyszerre több eszközre küldhetsz feladatot és t msgid "Pop up to select filament grouping mode" msgstr "Felugró ablak a filamentcsoportosítási mód kiválasztásához" -msgid "Quality level for Draco export" -msgstr "Minőségi szint Draco exporthoz" - -msgid "bits" -msgstr "bit" - -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 "" -"A Draco formátumú hálótömörítéskor használt kvantálási bitmélységet szabályozza.\n" -"0 = veszteségmentes tömörítés (a geometria teljes pontossággal megmarad). Az érvényes veszteséges értékek 8 és 30 között vannak.\n" -"Az alacsonyabb értékek kisebb fájlokat eredményeznek, de több geometriai részlet vész el; a magasabb értékek több részletet őriznek meg nagyobb fájlméret árán." - msgid "Behaviour" msgstr "Viselkedés" @@ -8263,19 +8412,6 @@ 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)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Beépített beállítások automatikus frissítése." - -msgid "Use encrypted file for token storage" -msgstr "Titkosított fájl használata token tároláshoz" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)" - -msgid "Filament Sync Options" -msgstr "Filament szinkronizálási opciók" - msgid "Filament sync mode" msgstr "Filament szinkronizálási mód" @@ -8288,6 +8424,16 @@ msgstr "Filament és szín" msgid "Color only" msgstr "Csak szín" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Beépített beállítások automatikus frissítése." + +msgid "Use encrypted file for token storage" +msgstr "Titkosított fájl használata token tároláshoz" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Hitelesítési tokenek tárolása titkosított fájlban a rendszerkulcstartó helyett. (Újraindítást igényel)" + msgid "Bambu network plug-in" msgstr "" @@ -8300,35 +8446,6 @@ msgstr "Hálózati bővítmény verzió" msgid "Select the network plug-in version to use" msgstr "A használandó hálózati bővítmény verzió kiválasztása" -msgid "(Latest)" -msgstr "(Legfrissebb)" - -msgid "Network plug-in switched successfully." -msgstr "A hálózati bővítmény sikeresen átváltva." - -msgid "Success" -msgstr "Sikeres" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "A hálózati bővítmény betöltése sikertelen. Indítsd újra az alkalmazást." - -#, 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 "" -"A(z) %s hálózati bővítmény verziót választottad.\n" -"\n" -"Szeretnéd most letölteni és telepíteni ezt a verziót?\n" -"\n" -"Megjegyzés: telepítés után szükséges lehet az alkalmazás újraindítása." - -msgid "Download Network Plug-in" -msgstr "Hálózati bővítmény letöltése" - msgid "Associate files to OrcaSlicer" msgstr "Fájlok társítása a OrcaSlicerhoz" @@ -8377,8 +8494,17 @@ msgstr "Fejlesztő" msgid "Skip AMS blacklist check" msgstr "AMS tiltólista ellenőrzés kihagyása" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "(Kísérleti) A festett jellemző megtartása hálócsere utá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 "Experimental Features" +msgstr "" + +msgid "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" @@ -8387,12 +8513,6 @@ 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" "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" @@ -8421,24 +8541,6 @@ msgstr "" msgid "trace" msgstr "követés" -msgid "Network plug-in" -msgstr "Hálózati bővítmény" - -msgid "Reload" -msgstr "Újratöltés" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Hálózati bővítmény újratöltése az alkalmazás újraindítása nélkül" - -msgid "Network plug-in reloaded successfully." -msgstr "A hálózati bővítmény újratöltése sikerült." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "A hálózati bővítmény újratöltése nem sikerült. Kérlek, indítsd újra az alkalmazást." - -msgid "Reload Failed" -msgstr "Sikertelen újratöltés" - msgid "Debug" msgstr "Hibakeresés" @@ -8454,25 +8556,6 @@ msgstr "Beállítások szinkronizálása" msgid "Preferences sync" msgstr "Beállítások szinkronizálása" -msgid "View control settings" -msgstr "Vezérlési beállítások megtekintése" - -msgid "Rotate view" -msgstr "Nézet elforgatása" - -msgid "Pan view" -msgstr "Pásztázó nézet" - -msgid "Zoom view" -msgstr "Nagyítás nézet" - -msgid "Other" -msgstr "Egyéb" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Görgetési irány megfordítása nagyítás közben" - msgid "Enable SSL(MQTT)" msgstr "SSL engedélyezése (MQTT)" @@ -9180,6 +9263,12 @@ msgstr "Ezen beállítás törlése" msgid "Search in preset" msgstr "Keresés a beállításokban" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Kattints az összes beállítás utolsó mentett változatának visszaállításához." @@ -9470,6 +9559,18 @@ msgstr "Anyagáramlási arány és nyomáskiegyenlítés" msgid "Print chamber temperature" msgstr "Nyomtatókamra hőmérséklete" +msgid "Chamber temperature" +msgstr "Kamra hőmérséklete" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Nyomtatási hőmérséklet" @@ -9802,12 +9903,22 @@ msgid "Don't warn again for this preset" msgstr "Ne legyen több figyelmeztetés ennél az előbeállításnál" #, c-format, boost-format -msgid "Left: %s" -msgstr "Bal: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Jobb: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" 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." @@ -9827,7 +9938,7 @@ msgid "Transfer or discard changes" msgstr "Változások elvetése vagy megtartása" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Régi érték" msgid "New Value" @@ -9960,6 +10071,12 @@ msgstr "Extruderek száma" msgid "Capabilities" msgstr "Képességek" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Minden beállítás megjelenítése (beleértve az inkompatibiliseket is)" @@ -11208,6 +11325,12 @@ msgstr "A filament zsugorodása nem lesz figyelembe véve, mert a használt fila msgid "Generating skirt & brim" msgstr "Szoknya & perem generálása" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "G-kód exportálása" @@ -12089,6 +12212,25 @@ msgstr "Normál nyomtatás" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Ez az alapértelmezett gyorsulás mind a normál nyomtatáshoz, mind az első réteg utáni mozgáshoz." +msgid "Acceleration of travel moves." +msgstr "Az utazó mozgások gyorsulása." + +msgid "First layer travel" +msgstr "Első réteg mozgás" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Az első réteg mozgási gyorsulása.\n" +"A százalékos érték az mozgási gyorsuláshoz van viszonyítva." + +msgid "mm/s² or %" +msgstr "mm/s² vagy %" + +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 "A hidak gyorsulása. Ha az érték százalékban van megadva (pl. 50%), a külső fal gyorsulása alapján lesz kiszámítva." + msgid "Default filament profile" msgstr "Alapértelmezett filament profil" @@ -12295,6 +12437,12 @@ msgstr "Archimédeszi vonalak" msgid "Octagram Spiral" msgstr "Nyolcágú spirál" +msgid "Top surface density" +msgstr "Felső felületi sűrűség" + +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 "A felső felületi réteg sűrűsége. A 100%-os érték teljesen tömör, sima felső réteget hoz létre. Ennek az értéknek a csökkentése a kiválasztott felső felületi mintázatnak megfelelően texturált felső felületet eredményez. A 0%-os érték azt eredményezi, hogy a felső rétegen csak a falak jönnek létre. Esztétikai vagy funkcionális célokra szolgál, nem pedig olyan problémák javítására, mint a túlextrudálás." + msgid "Bottom surface pattern" msgstr "Alsó felület mintázata" @@ -12302,6 +12450,16 @@ msgstr "Alsó felület mintázata" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Ez az alsó felület kitöltésének mintája, kivéve az áthidalásokat." +msgid "Bottom surface density" +msgstr "Alsó felületi sűrűség" + +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 "" +"Az alsó felületi réteg sűrűsége. Esztétikai vagy funkcionális célokra szolgál, nem pedig olyan problémák javítására, mint a túlextrudálás.\n" +"FIGYELMEZTETÉS: Ennek az értéknek a csökkentése kedvezőtlenül befolyásolhatja a tárgyasztalhoz való tapadást." + msgid "Internal solid infill pattern" msgstr "Belső tömör kitöltés mintája" @@ -12327,6 +12485,18 @@ msgstr "Kis kerületek küszöbértéke" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "A kis peremek hosszának küszöbértékét határozza meg. Az alapértelmezett érték 0 mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Falak nyomtatási sorrendje" @@ -12515,25 +12685,26 @@ msgstr "" "2. Jegyezd fel az optimális PA értéket minden volumetrikus áramlási sebességhez és gyorsuláshoz. Az áramlási számot úgy találhatod meg, hogy a színséma legördülő menüben az áramlást választod, majd a vízszintes csúszkát a PA mintavonalak fölé mozgatod. A számnak az oldal alján kell megjelenjen. Az ideális PA értéknek csökkennie kell a volumetrikus áramlás növekedésével. Ha nem így van, ellenőrizd, hogy az extrudered megfelelően működik-e. Minél lassabban és kisebb gyorsulással nyomtatsz, annál nagyobb az elfogadható PA értékek tartománya. Ha nincs látható különbség, használd a gyorsabb tesztből származó PA értéket\n" "3. Add meg a PA értékek, az áramlás és a gyorsulás hármasait az itt található szövegmezőben, majd mentsd el a filamentprofilt." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Nyomáselőtolás hidakhoz" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n" -"\n" -"Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz." 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 "Alapértelmezett vonalszélesség, ha a többi vonalszélesség 0-ra van állítva. Ha százalékban van megadva, a fúvókaátmérő alapján lesz kiszámítva." @@ -12604,18 +12775,6 @@ msgstr "Automatikus öblítéshez" msgid "Auto For Match" msgstr "Automatikus egyeztetéshez" -msgid "Enable filament dynamic map" -msgstr "Filament dinamikus leképezés engedélyezése" - -msgid "Enable dynamic filament mapping during print." -msgstr "Dinamikus filament-leképezés engedélyezése nyomtatás közben." - -msgid "Has filament switcher" -msgstr "Filament-váltóval rendelkezik" - -msgid "Printer has a filament switcher hardware (e.g., AMS)." -msgstr "A nyomtató rendelkezik filament-váltó hardverrel (pl. AMS)." - msgid "Flush temperature" msgstr "Öblítési hőmérséklet" @@ -12928,6 +13087,22 @@ msgstr "Tömör kitöltés iránya" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "A tömör kitöltési minta szöge, amely a vonalak kezdő- vagy fő irányát szabályozza." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Kitöltés sűrűsége" @@ -12959,7 +13134,7 @@ msgid "Z-buckling bias optimization (experimental)" msgstr "Z-kihajlási torzítás optimalizálása (kísérleti)" # TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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 "Alacsony feltöltési sűrűség mellett megfeszíti a gyroid hullámot a Z (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." @@ -13027,79 +13202,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "Oldalsó rács 1. szöge" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Az oldalsó rács elemeinek első készletének szöge Z irányban. A nulla függőlegeset jelent." - -msgid "Lateral lattice angle 2" -msgstr "Oldalsó rács 2. szöge" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Az oldalsó rács elemeinek második készletének szöge Z irányban. A nulla függőlegeset jelent." - -msgid "Infill overhang angle" -msgstr "Kitöltés túlnyúlási szöge" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -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" - -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 "" -"A kitöltési vonalat egy további rövid kerületszakasszal kapcsolja a belső kerülethez. Ha százalékban van megadva (például: 15%), a kitöltési extrudálási szélesség alapján lesz kiszámítva. Az Orca Slicer megpróbál két közeli kitöltési vonalat egy rövid kerületszakaszhoz kapcsolni. Ha nem talál az infill_anchor_max értéknél rövidebb ilyen kerületszakaszt, akkor a kitöltési vonal csak az egyik oldalon kapcsolódik egy kerületszakaszhoz, és az igénybe vett kerületszakasz hossza erre a paraméterre lesz korlátozva, de nem lehet hosszabb, mint az anchor_length_max.\n" -"Állítsd ezt a paramétert 0-ra az egyetlen kitöltési vonalhoz kapcsolódó horgonyzó kerületek kikapcsolásához." - -msgid "0 (no open anchors)" -msgstr "0 (nincs nyitott horgony)" - -msgid "1000 (unlimited)" -msgstr "1000 (korlátlan)" - -msgid "Maximum length of the infill anchor" -msgstr "A kitöltőhorgony maximális hossza" - -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 "" -"Egy kitöltési vonalat egy további rövid kerületszakasszal kapcsol a belső kerülethez. Ha százalékban van megadva (például 15%), akkor a kitöltés extrudálási szélessége alapján kerül kiszámításra. Az Orca Slicer megpróbál két közeli kitöltési vonalat egy rövid kerületszakaszhoz kapcsolni. Ha nem talál ennél a paraméternél rövidebb ilyen kerületszakaszt, akkor a kitöltési vonal csak az egyik oldalon kapcsolódik egy kerületszakaszhoz, és a felhasznált kerületszakasz hossza az infill_anchor értékre lesz korlátozva, de ennél a paraméternél nem lehet hosszabb.\n" -"Ha 0-ra állítod, a régi kitöltéskapcsolási algoritmus lesz használva, amely ugyanazt az eredményt adja, mint az 1000 és 0 értékek kombinációja." - -msgid "0 (Simple connect)" -msgstr "0 (egyszerű kapcsolás)" - -msgid "Acceleration of inner walls." -msgstr "A belső falak gyorsulása." - -msgid "Acceleration of travel moves." -msgstr "Az utazó mozgások gyorsulása." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "A felső felületi kitöltés gyorsulása. Alacsonyabb érték használata javíthatja a felső felület minőségét" @@ -13108,11 +13210,8 @@ msgstr "A felső felületi kitöltés gyorsulása. Alacsonyabb érték használa msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Gyorsulás a külső falnál: alacsonyabb érték használata javíthatja a minőséget." -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 "A hidak gyorsulása. Ha az érték százalékban van megadva (pl. 50%), a külső fal gyorsulása alapján lesz kiszámítva." - -msgid "mm/s² or %" -msgstr "mm/s² vagy %" +msgid "Acceleration of inner walls." +msgstr "A belső falak gyorsulása." 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 "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." @@ -13124,16 +13223,6 @@ msgstr "A belső tömör kitöltés gyorsulása. Ha az érték százalékban van msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "A kezdőréteg gyorsulása. Alacsonyabb érték használata javíthatja a tárgyasztalhoz való tapadást" -msgid "First layer travel" -msgstr "Első réteg mozgás" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" -"Az első réteg mozgási gyorsulása.\n" -"A százalékos érték az mozgási gyorsuláshoz van viszonyítva." - msgid "Enable accel_to_decel" msgstr "accel_to_decel engedélyezése" @@ -13230,6 +13319,17 @@ msgstr "A ventilátor fordulatszáma lineárisan nő nulláról a \"close_fan_th msgid "layer" msgstr "réteg" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Támasz érintkező felület ventilátorsebessége" @@ -13769,6 +13869,73 @@ 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 "Lateral lattice angle 1" +msgstr "Oldalsó rács 1. szöge" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Az oldalsó rács elemeinek első készletének szöge Z irányban. A nulla függőlegeset jelent." + +msgid "Lateral lattice angle 2" +msgstr "Oldalsó rács 2. szöge" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Az oldalsó rács elemeinek második készletének szöge Z irányban. A nulla függőlegeset jelent." + +msgid "Infill overhang angle" +msgstr "Kitöltés túlnyúlási szöge" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +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" + +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 "" +"A kitöltési vonalat egy további rövid kerületszakasszal kapcsolja a belső kerülethez. Ha százalékban van megadva (például: 15%), a kitöltési extrudálási szélesség alapján lesz kiszámítva. Az Orca Slicer megpróbál két közeli kitöltési vonalat egy rövid kerületszakaszhoz kapcsolni. Ha nem talál az infill_anchor_max értéknél rövidebb ilyen kerületszakaszt, akkor a kitöltési vonal csak az egyik oldalon kapcsolódik egy kerületszakaszhoz, és az igénybe vett kerületszakasz hossza erre a paraméterre lesz korlátozva, de nem lehet hosszabb, mint az anchor_length_max.\n" +"Állítsd ezt a paramétert 0-ra az egyetlen kitöltési vonalhoz kapcsolódó horgonyzó kerületek kikapcsolásához." + +msgid "0 (no open anchors)" +msgstr "0 (nincs nyitott horgony)" + +msgid "1000 (unlimited)" +msgstr "1000 (korlátlan)" + +msgid "Maximum length of the infill anchor" +msgstr "A kitöltőhorgony maximális hossza" + +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 "" +"Egy kitöltési vonalat egy további rövid kerületszakasszal kapcsol a belső kerülethez. Ha százalékban van megadva (például 15%), akkor a kitöltés extrudálási szélessége alapján kerül kiszámításra. Az Orca Slicer megpróbál két közeli kitöltési vonalat egy rövid kerületszakaszhoz kapcsolni. Ha nem talál ennél a paraméternél rövidebb ilyen kerületszakaszt, akkor a kitöltési vonal csak az egyik oldalon kapcsolódik egy kerületszakaszhoz, és a felhasznált kerületszakasz hossza az infill_anchor értékre lesz korlátozva, de ennél a paraméternél nem lehet hosszabb.\n" +"Ha 0-ra állítod, a régi kitöltéskapcsolási algoritmus lesz használva, amely ugyanazt az eredményt adja, mint az 1000 és 0 értékek kombinációja." + +msgid "0 (Simple connect)" +msgstr "0 (egyszerű kapcsolás)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14664,6 +14831,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +msgid "Enable filament dynamic map" +msgstr "Filament dinamikus leképezés engedélyezése" + +msgid "Enable dynamic filament mapping during print." +msgstr "Dinamikus filament-leképezés engedélyezése nyomtatás közben." + +msgid "Has filament switcher" +msgstr "Filament-váltóval rendelkezik" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "A nyomtató rendelkezik filament-váltó hardverrel (pl. AMS)." + msgid "Extra length on restart" msgstr "Extra hossz újraindításkor" @@ -14718,6 +14897,10 @@ msgstr "Igazított" msgid "Aligned back" msgstr "Hátulra igazítva" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Hátul" + msgid "Random" msgstr "Véletlenszerû" @@ -15091,6 +15274,9 @@ msgstr "A háromszögháló szeletelés során a szeletelési hézag lezárási msgid "Slicing Mode" msgstr "Szeletelési mód" +msgid "Other" +msgstr "Egyéb" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Használd a \"Páros-páratlan\" opciót a 3DLabPrint repülőgépmodellekhez. Használd a \"Hézagok lezárása\" lehetőséget a modell összes házagának lezárásához." @@ -15457,9 +15643,6 @@ msgstr "" "\n" "Ez az opció feltételezi, hogy a firmware makrókon keresztül vagy natívan támogatja az M191 és M141 parancsokat, és általában akkor használják, ha létezik aktív kamrafűtő." -msgid "Chamber temperature" -msgstr "Kamra hőmérséklete" - 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" @@ -15473,6 +15656,17 @@ msgstr "" "\n" "Bekapcsolva ez a paraméter egy chamber_temperature nevű G-code változót is beállít, amely felhasználható a kívánt kamrahőmérséklet átadására a nyomtatásindító makrónak, vagy egy ilyen hőkiegyenlítő makrónak: PRINT_START (egyéb változók) CHAMBER_TEMP=[chamber_temperature]. Ez akkor lehet hasznos, ha a nyomtatód nem támogatja az M141/M191 parancsokat, vagy ha az aktív kamrafűtés hiányában a hőkiegyenlítést a nyomtatásindító makróban szeretnéd kezelni." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Fúvóka hőmérséklete az első réteg után" @@ -15518,22 +15712,6 @@ msgstr "Felső héj vastagság" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "A felső szilárd rétegek száma szeleteléskor megnő, ha a felső héjrétegekből számított vastagság kisebb ennél az értéknél. Ezzel elkerülhető, hogy túl vékony legyen a héj kis rétegmagasságnál. A 0 azt jelenti, hogy ez a beállítás ki van kapcsolva, és a felső héj vastagságát egyszerűen a felső héjrétegek száma határozza meg." -msgid "Top surface density" -msgstr "Felső felületi sűrűség" - -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 "A felső felületi réteg sűrűsége. A 100%-os érték teljesen tömör, sima felső réteget hoz létre. Ennek az értéknek a csökkentése a kiválasztott felső felületi mintázatnak megfelelően texturált felső felületet eredményez. A 0%-os érték azt eredményezi, hogy a felső rétegen csak a falak jönnek létre. Esztétikai vagy funkcionális célokra szolgál, nem pedig olyan problémák javítására, mint a túlextrudálás." - -msgid "Bottom surface density" -msgstr "Alsó felületi sűrűség" - -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 "" -"Az alsó felületi réteg sűrűsége. Esztétikai vagy funkcionális célokra szolgál, nem pedig olyan problémák javítására, mint a túlextrudálás.\n" -"FIGYELMEZTETÉS: Ennek az értéknek a csökkentése kedvezőtlenül befolyásolhatja a tárgyasztalhoz való tapadást." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Mozgási sebesség, amikor nem történik extrudálás" @@ -15782,6 +15960,14 @@ msgstr "Sokszögelt lyuk elforgatása" msgid "Rotate the polyhole every layer." msgstr "A sokszögelt lyuk forgatása rétegenként." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-kód miniatűrök" @@ -15928,9 +16114,6 @@ msgstr "Több STL exportálása" msgid "Export the objects as multiple STLs to directory." msgstr "Az objektumok exportálása több STL fájlként egy könyvtárba." -msgid "Slice" -msgstr "Szeletelés" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Tálcák szeletelése: 0 - összes tálca, i - i tálca, egyéb - érvénytelen" @@ -18165,6 +18348,132 @@ msgstr "Bejelentkezés/Teszt" msgid "Connection to printers connected via the print host failed." msgstr "A nyomtatóállomáson keresztül csatlakoztatott nyomtatókhoz való csatlakozás sikertelen." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18247,6 +18556,19 @@ msgstr "Az MKS kapcsolata megfelelően működik." msgid "Could not connect to MKS" msgstr "Nem sikerült csatlakozni az MKS-hez" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Az OctoPrint kapcsolata megfelelően működik." @@ -18997,6 +19319,12 @@ msgstr "Háromszögfelületek száma" msgid "Calculating, please wait..." msgstr "Számítás folyamatban, kérlek várj..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19405,6 +19733,78 @@ msgstr "" "Kunkorodás elkerülése\n" "Tudtad, hogy a kunkorodásra hajlamos anyagok (például ABS) nyomtatásakor a tárgyasztal hőmérsékletének növelése csökkentheti a kunkorodás valószínűségét?" +#~ msgid "Print" +#~ msgstr "Nyomtatás" + +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Objektum koordináták" + +#~ msgid "World coordinates" +#~ msgstr "Világkoordináták" + +#~ msgid "Translate(Relative)" +#~ msgstr "Eltolás (relatív)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Forgatás (abszolút)" + +#~ msgid "Part coordinates" +#~ msgstr "Alkatrész koordináták" + +#~ 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 "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." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Adaptív nyomáselőtolás engedélyezése túlnyúlásokhoz (béta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Nyomáselőtolás hidakhoz" + +#~ 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 "" +#~ "Nyomáselőtolási érték hidakhoz. A kikapcsoláshoz állítsd 0-ra.\n" +#~ "\n" +#~ "Hidak nyomtatásakor az alacsonyabb PA érték segít csökkenteni a hidak után közvetlenül jelentkező enyhe alulextrudálás megjelenését. Ezt az okozza, hogy a levegőbe nyomtatás során nyomásesés lép fel a fúvókában, amit az alacsonyabb PA részben ellensúlyoz." + +#~ msgid "Filament Sync Options" +#~ msgstr "Filament szinkronizálási opciók" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Kísérleti) A festett jellemző megtartása hálócsere után" + +#~ msgid "Network plug-in" +#~ msgstr "Hálózati bővítmény" + +#~ msgid "View control settings" +#~ msgstr "Vezérlési beállítások megtekintése" + +#~ msgid "Rotate view" +#~ msgstr "Nézet elforgatása" + +#~ msgid "Pan view" +#~ msgstr "Pásztázó nézet" + +#~ msgid "Zoom view" +#~ msgstr "Nagyítás nézet" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Görgetési irány megfordítása nagyítás közben" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Bal: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Jobb: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Hálózati bővítmény engedélyezése" diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po index d079a657bf..70ee57c0e9 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "Strumento di rotazione" msgid "Optimize orientation" msgstr "Ottimizza orientamento" +msgctxt "Verb" msgid "Scale" msgstr "Ridimensiona" @@ -336,8 +337,9 @@ msgstr "Strumento di ridimensionamento" msgid "Error: Please close all toolbar menus first" msgstr "Errore: chiudi prima tutti i menu della barra degli strumenti" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "Rapporti di scala" msgid "Object operations" msgstr "Operazioni sugli oggetti" +msgid "Scale" +msgstr "Ridimensiona" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Operazioni volume" @@ -397,26 +402,33 @@ msgstr "Ripristina posizione" msgid "Reset rotation" msgstr "Reimposta rotazione" -msgid "Object coordinates" -msgstr "Coordinate oggetto" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Coordinate reali" +msgid "Object" +msgstr "Oggetto" -msgid "Translate(Relative)" -msgstr "Trasla (relativo)" +msgid "Part" +msgstr "Parte" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Reimposta la rotazione corrente al valore di apertura dello strumento." -msgid "Rotate (absolute)" -msgstr "Ruota (assoluto)" - msgid "Reset current rotation to real zeros." msgstr "Reimposta la rotazione corrente a zero reale." -msgid "Part coordinates" -msgstr "Coordinate della parte" +msgctxt "Noun" +msgid "Scale" +msgstr "Ridimensiona" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "" msgid "Spacing" msgstr "Spaziatura" -msgid "Part" -msgstr "Parte" - -msgid "Object" -msgstr "Oggetto" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1711,6 +1717,25 @@ msgstr "OrcaSlicer ha ricevuto un'eccezione non gestita: %1%" msgid "Untitled" msgstr "Senza titolo" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Dalla versione 2.4.0, OrcaSlicer sincronizza i profili utente tramite Orca Cloud anziché Bambu Cloud.\n" +"\n" +"Per migrare i tuoi profili esistenti, accedi a Orca Cloud e verranno trasferiti automaticamente. Per saperne di più su come OrcaSlicer memorizza e sincronizza i tuoi profili, o per migrare i tuoi profili manualmente, consulta la nostra wiki.\n" +"\n" +"Se non utilizzavi Bambu Cloud per sincronizzare i profili, questa modifica non ti riguarda e puoi ignorare questo messaggio." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Ricaricamento modulo di rete..." @@ -1740,6 +1765,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Il percorso delle risorse non esiste o non è una directory: %s" @@ -1844,23 +1875,30 @@ msgstr "Apri progetto" 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 "La versione di OrcaSlicer è obsoleta. Devi aggiornarla all'ultima versione prima di poter utilizzare normalmente il programma." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1869,6 +1907,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1948,8 +1992,9 @@ msgstr "Il numero di profili utente memorizzati nel cloud ha superato il limite msgid "Sync user presets" msgstr "Sincronizza profili utente" -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 "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2170,6 +2215,9 @@ msgstr "Cubo di Orca" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Test di tolleranza di OrcaSlicer" @@ -3606,7 +3654,7 @@ msgstr "Calibrazione completata. Trova la linea di estrusione più uniforme sul msgid "Save" msgstr "Salva" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Posteriore" @@ -4079,6 +4127,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "L'attuale temperatura della camera è superiore alla temperatura di sicurezza del materiale. Potrebbe causare l'ammorbidimento e l'intasamento del materiale. La temperatura massima di sicurezza per il materiale è %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4983,6 +5035,7 @@ msgstr "Cambi testina" msgid "Color change" msgstr "Cambio colore" +msgctxt "Noun" msgid "Print" msgstr "Stampa" @@ -5146,11 +5199,15 @@ msgstr "Evitare la regione di calibrazione dell'estrusione" msgid "Align to Y axis" msgstr "Allinea all'asse Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Posteriore" + +msgctxt "Camera View" msgid "Left" msgstr "Sinistra" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Destra" @@ -5199,6 +5256,12 @@ msgstr "Tutte le piastre" msgid "Stats" msgstr "Statistiche" +msgid "Slice" +msgstr "Elabora" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Ritorna al montaggio" @@ -5223,6 +5286,9 @@ msgstr "Sporgenze" msgid "Outline" msgstr "Contorno" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5469,6 +5535,10 @@ msgstr "Piatto di stampa" msgid "Export G-code file" msgstr "Esporta file G-code" +msgctxt "Verb" +msgid "Print" +msgstr "Stampa" + msgid "Export plate sliced file" msgstr "Esporta il file del piatto elaborato" @@ -7858,6 +7928,50 @@ msgstr "Scegli la cartella per gli elementi scaricati" msgid "Choose Download Directory" msgstr "Scegliere la directory di download" +msgid "(Latest)" +msgstr "(Ultima)" + +msgid "Network plug-in switched successfully." +msgstr "Modulo di rete cambiato con successo." + +msgid "Success" +msgstr "Successo" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione." + +#, 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 "" +"Hai selezionato la versione %s del modulo di rete.\n" +"\n" +"Vuoi scaricare e installare questa versione ora?\n" +"\n" +"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione." + +msgid "Download Network Plug-in" +msgstr "Scarica modulo di rete" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Ricarica il modulo di rete senza riavviare l'applicazione" + +msgid "Network plug-in reloaded successfully." +msgstr "Modulo di rete ricaricato con successo." + +msgid "Reload" +msgstr "Ricarica" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione." + +msgid "Reload Failed" +msgstr "Ricaricamento fallito" + msgid "Associate" msgstr "Associa" @@ -7913,12 +8027,6 @@ msgstr "Mostra schermata iniziale" msgid "Show the splash screen during startup." msgstr "Mostra la schermata iniziale durante l'avvio." -msgid "Show shared profiles notification" -msgstr "Mostra notifica profili condivisi" - -msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." -msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi." - msgid "Use window buttons on left side" msgstr "Utilizza i pulsanti della finestra sul lato sinistro" @@ -7949,6 +8057,13 @@ msgstr "Comportamento di caricamento" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Quando si apre un file 3MF, è necessario caricare le impostazioni della stampante/filamento/processo?" +msgid "Auto backup" +msgstr "Backup automatico" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo." + msgid "Maximum recent files" msgstr "Numero massimo file recenti" @@ -7967,12 +8082,55 @@ msgstr "Mostra opzioni durante l'importazione di file STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Se abilitato, una finestra di dialogo per le impostazioni dei parametri apparirà durante l'importazione di file STEP." -msgid "Auto backup" -msgstr "Backup automatico" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Esegui periodicamente una copia di sicurezza del tuo progetto per facilitarne il ripristino dopo un arresto anomalo." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Livello di qualità per l'esportazione Draco" + +msgid "bits" +msgstr "bit" + +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 "" +"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n" +"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n" +"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Profilo" @@ -8004,6 +8162,12 @@ msgstr "filamenti" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Ottimizza l'altezza massima dell'area filamenti in base al numero di filamenti selezionato." +msgid "Show shared profiles notification" +msgstr "Mostra notifica profili condivisi" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Quando si cambia la stampante selezionata, viene visualizzata una notifica con un collegamento per esplorare i profili condivisi." + msgid "Features" msgstr "Funzionalità" @@ -8016,21 +8180,6 @@ msgstr "Abilitando questa opzione, puoi inviare un'attività a più dispositivi msgid "Pop up to select filament grouping mode" msgstr "Popup per selezionare la modalità di raggruppamento filamenti" -msgid "Quality level for Draco export" -msgstr "Livello di qualità per l'esportazione Draco" - -msgid "bits" -msgstr "bit" - -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 "" -"Controlla la profondità di bit della quantizzazione utilizzata durante la compressione della mesh in formato Draco.\n" -"0 = compressione senza perdita (la geometria viene preservata a piena precisione). I valori con perdita validi vanno da 8 a 30.\n" -"Valori più bassi producono file più piccoli ma perdono più dettagli geometrici; valori più alti preservano più dettagli a costo di file più grandi." - msgid "Behaviour" msgstr "Comportamento" @@ -8258,19 +8407,6 @@ msgstr "Verifica solo la disponibilità di aggiornamenti stabili" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronizzazione automatica profili utente (stampante/filamento/processo)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Aggiorna automaticamente i profili." - -msgid "Use encrypted file for token storage" -msgstr "Usa file crittografato per l'archiviazione dei token" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)" - -msgid "Filament Sync Options" -msgstr "Opzioni sincronizzazione filamento" - msgid "Filament sync mode" msgstr "Modalità sincronizzazione filamento" @@ -8283,6 +8419,16 @@ msgstr "Filamento e colore" msgid "Color only" msgstr "Solo colore" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Aggiorna automaticamente i profili." + +msgid "Use encrypted file for token storage" +msgstr "Usa file crittografato per l'archiviazione dei token" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Archivia i token di autenticazione in un file crittografato invece del portachiavi di sistema. (Richiede riavvio)" + msgid "Bambu network plug-in" msgstr "" @@ -8295,35 +8441,6 @@ msgstr "Versione modulo di rete" msgid "Select the network plug-in version to use" msgstr "Seleziona la versione del modulo di rete da utilizzare" -msgid "(Latest)" -msgstr "(Ultima)" - -msgid "Network plug-in switched successfully." -msgstr "Modulo di rete cambiato con successo." - -msgid "Success" -msgstr "Successo" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Impossibile caricare il modulo di rete. Riavviare l'applicazione." - -#, 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 "" -"Hai selezionato la versione %s del modulo di rete.\n" -"\n" -"Vuoi scaricare e installare questa versione ora?\n" -"\n" -"Nota: potrebbe essere necessario riavviare l'applicazione dopo l'installazione." - -msgid "Download Network Plug-in" -msgstr "Scarica modulo di rete" - msgid "Associate files to OrcaSlicer" msgstr "Associa i file ad OrcaSlicer" @@ -8369,7 +8486,16 @@ msgstr "Sviluppatore" msgid "Skip AMS blacklist check" msgstr "Salta il controllo della lista nera dell'AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8377,12 +8503,6 @@ 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" @@ -8411,24 +8531,6 @@ msgstr "" msgid "trace" msgstr "traccia" -msgid "Network plug-in" -msgstr "Modulo di rete" - -msgid "Reload" -msgstr "Ricarica" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Ricarica il modulo di rete senza riavviare l'applicazione" - -msgid "Network plug-in reloaded successfully." -msgstr "Modulo di rete ricaricato con successo." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Impossibile ricaricare il modulo di rete. Riavviare l'applicazione." - -msgid "Reload Failed" -msgstr "Ricaricamento fallito" - msgid "Debug" msgstr "" @@ -8444,25 +8546,6 @@ msgstr "Sincronizzazione profili" msgid "Preferences sync" msgstr "Sincronizzazione preferenze" -msgid "View control settings" -msgstr "Visualizza impostazioni di controllo" - -msgid "Rotate view" -msgstr "Ruota vista" - -msgid "Pan view" -msgstr "Vista panoramica" - -msgid "Zoom view" -msgstr "Ingrandimento vista" - -msgid "Other" -msgstr "Altro" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Lo zoom tramitie rotellina del mouse è invertito" - msgid "Enable SSL(MQTT)" msgstr "Abilita SSL (MQTT)" @@ -9171,6 +9254,12 @@ msgstr "Elimina questo profilo" msgid "Search in preset" msgstr "Cerca nel profilo" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Clicca per ripristinare tutte le impostazioni dell'ultimo profilo salvato." @@ -9463,6 +9552,18 @@ msgstr "Flusso di stampa e Anticipo di pressione" msgid "Print chamber temperature" msgstr "Temperatura della camera di stampa" +msgid "Chamber temperature" +msgstr "Temperatura della camera" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Temperatura stampa" @@ -9795,12 +9896,22 @@ msgid "Don't warn again for this preset" msgstr "Non inviare più avvisi per questo profilo" #, c-format, boost-format -msgid "Left: %s" -msgstr "Sinistra: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Destra: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Fai clic per ripristinare il valore corrente e associarlo al valore globale." @@ -9820,7 +9931,7 @@ msgid "Transfer or discard changes" msgstr "Scarta o mantieni le modifiche" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Valore precedente" msgid "New Value" @@ -9942,6 +10053,12 @@ msgstr "Numero di estrusori" msgid "Capabilities" msgstr "Caratteristiche" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Mostra tutti i profili (compresi quelli non compatibili)" @@ -11190,6 +11307,12 @@ msgstr "La compensazione del restringimento del materiale non verrà utilizzata msgid "Generating skirt & brim" msgstr "Generazione gonna e tesa" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Esportazione G-code" @@ -12071,6 +12194,25 @@ msgstr "Stampa normale" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Accelerazione predefinita sia per la stampa normale che per gli spostamenti, eccetto lo strato iniziale." +msgid "Acceleration of travel moves." +msgstr "Accelerazione per gli spostamenti." + +msgid "First layer travel" +msgstr "Spostamento primo strato" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Accelerazione dello spostamento nel primo strato.\n" +"Il valore percentuale è relativo all'accelerazione dello spostamento." + +msgid "mm/s² or %" +msgstr "mm/s o %" + +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 "Accelerazione dei ponti. Se il valore è espresso in percentuale (ad esempio 50%), verrà calcolato in base all'accelerazione della parete esterna." + msgid "Default filament profile" msgstr "Profilo filamento predefinito" @@ -12278,6 +12420,12 @@ msgstr "Corde di Archimede" msgid "Octagram Spiral" msgstr "Spirale a ottogramma" +msgid "Top surface density" +msgstr "Densità superficie superiore" + +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 "Densità dello strato superficiale superiore. Un valore del 100% crea uno strato superiore completamente solido e liscio. La riduzione di questo valore produce una superficie superiore texturizzata, secondo il pattern di superficie superiore scelto. Un valore dello 0% risulterà nella creazione delle sole pareti sullo strato superiore. Destinato a scopi estetici o funzionali, non per risolvere problemi come la sovraestrusione." + msgid "Bottom surface pattern" msgstr "Motivo superficie inferiore" @@ -12285,6 +12433,16 @@ msgstr "Motivo superficie inferiore" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Motivo per il riempimento della superficie inferiore, escluso il riempimento dei ponti." +msgid "Bottom surface density" +msgstr "Densità superficie inferiore" + +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 "" +"Densità dello strato superficiale inferiore. Destinato a scopi estetici o funzionali, non per risolvere problemi come la sovraestrusione.\n" +"ATTENZIONE: la riduzione di questo valore potrebbe influire negativamente sull'adesione al piatto." + msgid "Internal solid infill pattern" msgstr "Motivo riempimento solido interno" @@ -12310,6 +12468,18 @@ msgstr "Soglia perimetri piccoli" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Imposta la soglia per la lunghezza dei perimetri piccoli. La soglia predefinita è 0 mm." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Ordine stampa pareti" @@ -12498,25 +12668,26 @@ msgstr "" "2. Prendi nota del valore AP ottimale per ogni portata volumetrica e accelerazione. Puoi trovare il numero relativo alla portata volumetrica dal menu a discesa dello schema di colori e spostando il cursore orizzontale sulle linee del modello AP. Il numero dovrebbe essere visibile nella parte inferiore della pagina. Il valore AP ideale dovrebbe decrescere all'aumentare della portata volumetrica. In caso contrario, verifica che l'estrusore funzioni correttamente. Più lentamente e con meno accelerazione stampi, più ampio è l'intervallo di valori AP accettabili. Se non è visibile alcuna differenza, usa il valore AP dal test più veloce\n" "3. Inserisci le triplette dei valori di anticipo di pressione, portata e accelerazione nella casella di testo qui e salva il tuo profilo di filamento." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Anticipo di pressione per ponti" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n" -"\n" -"Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla." 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 "Larghezza di linea predefinita se le altre larghezze di linea sono impostate su 0. Se espresso come una %, verrà calcolato sul diametro del ugello." @@ -12587,18 +12758,6 @@ msgstr "Automatico per spurgo" msgid "Auto For Match" msgstr "Automatico per abbinamento" -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 "" - msgid "Flush temperature" msgstr "Temperatura di spurgo" @@ -12911,6 +13070,22 @@ msgstr "Direzione riempimento solido" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Angolo per il motivo del riempimento solido, che controlla l'inizio o la direzione principale delle linee." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Densità riempimento sparso" @@ -12941,7 +13116,7 @@ msgstr "Utilizzo di linee multiple per il pattern di riempimento, se supportato msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -13009,79 +13184,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroide" -msgid "Lateral lattice angle 1" -msgstr "Angolo reticolo 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "L'angolo della prima serie di elementi reticolari 2D nell'asse Z. Zero è verticale." - -msgid "Lateral lattice angle 2" -msgstr "Angolo reticolo 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "L'angolo della seconda serie di elementi reticolari 2D nell'asse Z. Zero è verticale." - -msgid "Infill overhang angle" -msgstr "Angolo di sbalzo del riempimento" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -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" - -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 "" -"Collega una linea di riempimento ad una parete interna con un breve segmento di perimetro aggiuntivo. Se espresso in percentuale (esempio: 15%) viene calcolato sulla larghezza di estrusione del riempimento. OrcaSlicer tenta di collegare due linee di riempimento vicine ad un breve segmento di perimetro. Se non viene trovato alcun segmento di perimetro più corto di infill_anchor_max, la linea di riempimento viene collegata a un segmento di perimetro su un solo lato e la lunghezza del segmento è limitata da questo parametro, ma non superiore a anchor_length_max.\n" -"Impostare questo parametro su zero per disabilitare i perimetri di ancoraggio collegati a una singola linea di riempimento." - -msgid "0 (no open anchors)" -msgstr "0 (senza ancoraggi aperti)" - -msgid "1000 (unlimited)" -msgstr "1000 (senza limiti)" - -msgid "Maximum length of the infill anchor" -msgstr "Lunghezza massima dell'ancoraggio del riempimento" - -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 "" -"Collega una linea di riempimento ad una parete interna con un breve segmento di un perimetro aggiuntivo. Se espresso in percentuale (esempio: 15%) viene calcolato sulla larghezza di estrusione del riempimento. OrcaSlicer tenta di collegare due linee di riempimento vicine a un breve segmento di perimetro. Se non viene trovato alcun segmento di perimetro più corto di questo parametro, la linea di riempimento viene collegata a un segmento di perimetro su un solo lato e la lunghezza del segmento è limitata da infill_anchor, ma non superiore a questo parametro.\n" -"Se impostato a 0, verrà utilizzato il vecchio algoritmo per la connessione del riempimento, che dovrebbe creare lo stesso risultato di 1000 e 0." - -msgid "0 (Simple connect)" -msgstr "0 (Connessione semplice)" - -msgid "Acceleration of inner walls." -msgstr "Accelerazione delle pareti interne." - -msgid "Acceleration of travel moves." -msgstr "Accelerazione per gli spostamenti." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Accelerazione del riempimento della superficie superiore. L'utilizzo di un valore inferiore può migliorare la qualità della superficie superiore." @@ -13090,11 +13192,8 @@ msgstr "Accelerazione del riempimento della superficie superiore. L'utilizzo di msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Accelerazione della parete esterna: l'utilizzo di un valore inferiore può migliorare la qualità." -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 "Accelerazione dei ponti. Se il valore è espresso in percentuale (ad esempio 50%), verrà calcolato in base all'accelerazione della parete esterna." - -msgid "mm/s² or %" -msgstr "mm/s o %" +msgid "Acceleration of inner walls." +msgstr "Accelerazione delle pareti interne." 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 "Accelerazione del riempimento sparso. Se il valore è espresso in percentuale (ad esempio 100%), verrà calcolato in base all'accelerazione predefinita." @@ -13106,16 +13205,6 @@ msgstr "Accelerazione del riempimento solido interno. Se il valore è espresso i msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Accelerazione di stampa per il primo strato. Utilizzando un valore inferiore, è possibile migliorare l'adesione sul piano di stampa." -msgid "First layer travel" -msgstr "Spostamento primo strato" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" -"Accelerazione dello spostamento nel primo strato.\n" -"Il valore percentuale è relativo all'accelerazione dello spostamento." - msgid "Enable accel_to_decel" msgstr "Abilita accel_to_decel" @@ -13212,6 +13301,17 @@ msgstr "La velocità della ventola aumenterà in modo lineare da zero nello stra msgid "layer" msgstr "strato" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocità ventola interfaccia di supporto" @@ -13748,6 +13848,73 @@ msgstr "Area di esclusione sondaggio ammassi" msgid "Probing exclude area of clumping." msgstr "Area di esclusione sondaggio ammassi." +msgid "Lateral lattice angle 1" +msgstr "Angolo reticolo 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "L'angolo della prima serie di elementi reticolari 2D nell'asse Z. Zero è verticale." + +msgid "Lateral lattice angle 2" +msgstr "Angolo reticolo 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "L'angolo della seconda serie di elementi reticolari 2D nell'asse Z. Zero è verticale." + +msgid "Infill overhang angle" +msgstr "Angolo di sbalzo del riempimento" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +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" + +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 "" +"Collega una linea di riempimento ad una parete interna con un breve segmento di perimetro aggiuntivo. Se espresso in percentuale (esempio: 15%) viene calcolato sulla larghezza di estrusione del riempimento. OrcaSlicer tenta di collegare due linee di riempimento vicine ad un breve segmento di perimetro. Se non viene trovato alcun segmento di perimetro più corto di infill_anchor_max, la linea di riempimento viene collegata a un segmento di perimetro su un solo lato e la lunghezza del segmento è limitata da questo parametro, ma non superiore a anchor_length_max.\n" +"Impostare questo parametro su zero per disabilitare i perimetri di ancoraggio collegati a una singola linea di riempimento." + +msgid "0 (no open anchors)" +msgstr "0 (senza ancoraggi aperti)" + +msgid "1000 (unlimited)" +msgstr "1000 (senza limiti)" + +msgid "Maximum length of the infill anchor" +msgstr "Lunghezza massima dell'ancoraggio del riempimento" + +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 "" +"Collega una linea di riempimento ad una parete interna con un breve segmento di un perimetro aggiuntivo. Se espresso in percentuale (esempio: 15%) viene calcolato sulla larghezza di estrusione del riempimento. OrcaSlicer tenta di collegare due linee di riempimento vicine a un breve segmento di perimetro. Se non viene trovato alcun segmento di perimetro più corto di questo parametro, la linea di riempimento viene collegata a un segmento di perimetro su un solo lato e la lunghezza del segmento è limitata da infill_anchor, ma non superiore a questo parametro.\n" +"Se impostato a 0, verrà utilizzato il vecchio algoritmo per la connessione del riempimento, che dovrebbe creare lo stesso risultato di 1000 e 0." + +msgid "0 (Simple connect)" +msgstr "0 (Connessione semplice)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14638,6 +14805,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Lunghezza aggiuntiva in ripresa" @@ -14692,6 +14871,10 @@ msgstr "Allineato" msgid "Aligned back" msgstr "Allineato dietro" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Posteriore" + msgid "Random" msgstr "Casuale" @@ -15061,6 +15244,9 @@ msgstr "Le fessure più piccole di 2 volte il raggio di chiusura degli spazi vuo msgid "Slicing Mode" msgstr "Modalità elaborazione" +msgid "Other" +msgstr "Altro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Usa \"Pari-dispari\" per modelli di aeroplano 3DLabPrint. Utilizza \"Chiudi fori\" per chiudere tutti i fori del modello." @@ -15426,9 +15612,6 @@ msgstr "" "\n" "Questa opzione richiede che il firmware supporti i comandi M191 e M141 tramite macro o in modo nativo, e viene solitamente utilizzata quando non è presente un sistema di riscaldamento della camera." -msgid "Chamber temperature" -msgstr "Temperatura della camera" - 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" @@ -15442,6 +15625,17 @@ msgstr "" "\n" "Se abilitato, questo parametro imposta anche una variabile G-code denominata chamber_temperature, che può essere utilizzata per passare la temperatura desiderata della camera nella macro di inizio stampa o in una macro di preriscaldamento in questo modo: PRINT_START (altre variabili) CHAMBER_TEMP=[chamber_temperature]. Questo può essere utile se la stampante non supporta i comandi M141/M191 o, se non è presente un sistema di riscaldamento della camera, si desidera gestire il preriscaldamento nella macro di inizio stampa." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Temperatura dell'ugello per gli strati successivi a quello iniziale." @@ -15486,22 +15680,6 @@ msgstr "Spessore guscio superiore" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Il numero di strati solidi superiori viene aumentato durante l'elaborazione se lo spessore calcolato dagli strati del guscio superiore è più sottile di questo valore. In questo modo si evita di avere un guscio troppo sottile quando l'altezza degli strati è piccola. Il valore 0 indica che questa impostazione è disattivata e che lo spessore del guscio superiore è determinato in modo assoluto dagli strati del guscio superiore." -msgid "Top surface density" -msgstr "Densità superficie superiore" - -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 "Densità dello strato superficiale superiore. Un valore del 100% crea uno strato superiore completamente solido e liscio. La riduzione di questo valore produce una superficie superiore texturizzata, secondo il pattern di superficie superiore scelto. Un valore dello 0% risulterà nella creazione delle sole pareti sullo strato superiore. Destinato a scopi estetici o funzionali, non per risolvere problemi come la sovraestrusione." - -msgid "Bottom surface density" -msgstr "Densità superficie inferiore" - -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 "" -"Densità dello strato superficiale inferiore. Destinato a scopi estetici o funzionali, non per risolvere problemi come la sovraestrusione.\n" -"ATTENZIONE: la riduzione di questo valore potrebbe influire negativamente sull'adesione al piatto." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Indica la velocità di spostamento più rapida e senza estrusione." @@ -15749,6 +15927,14 @@ msgstr "Torsione poliforo" msgid "Rotate the polyhole every layer." msgstr "Ruota il poliforo in ogni strato." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Miniature G-code" @@ -15894,9 +16080,6 @@ msgstr "Esporta STL multipli" msgid "Export the objects as multiple STLs to directory." msgstr "Esporta gli oggetti come STL multipli nella directory." -msgid "Slice" -msgstr "Elabora" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Elaborazione dei piatti: 0-tutti i piatti, i-piatto i, altri-non valido" @@ -18147,6 +18330,132 @@ msgstr "Accesso/Test" msgid "Connection to printers connected via the print host failed." msgstr "Connessione alle stampanti collegate tramite l'host di stampa non riuscita." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18229,6 +18538,19 @@ msgstr "La connessione a MKS funziona correttamente." msgid "Could not connect to MKS" msgstr "Impossibile connettersi a MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "La connessione con OctoPrint funziona correttamente." @@ -18980,6 +19302,12 @@ msgstr "Numero di facce triangolari" msgid "Calculating, please wait..." msgstr "Calcolo in corso, attendere..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19385,6 +19713,75 @@ msgstr "" "Evita le deformazioni\n" "Sapevi che quando si stampano materiali soggetti a deformazioni come l'ABS, aumentare in modo appropriato la temperatura del piano riscaldato può ridurre la probabilità di deformazione?" +#~ msgid "Print" +#~ msgstr "Stampa" + +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Coordinate oggetto" + +#~ msgid "World coordinates" +#~ msgstr "Coordinate reali" + +#~ msgid "Translate(Relative)" +#~ msgstr "Trasla (relativo)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Ruota (assoluto)" + +#~ msgid "Part coordinates" +#~ msgstr "Coordinate della parte" + +#~ 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 "Il contenuto del profilo è troppo grande per essere sincronizzato con il cloud (supera 1 MB). Si prega di ridurre le dimensioni del profilo rimuovendo le configurazioni personalizzate oppure utilizzarlo solo in locale." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Abilita anticipo di pressione adattiva per sporgenze (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Anticipo di pressione per ponti" + +#~ 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 "" +#~ "Valore di anticipo di pressione per i ponti. Impostare su 0 per disabilitare.\n" +#~ "\n" +#~ "Un valore AP più basso durante la stampa di ponti aiuta a ridurre la comparsa di una leggera sottoestrusione subito dopo l'estrusione dei ponti. Ciò è causato dalla caduta di pressione nell'ugello durante la stampa in aria e un anticipo di pressione più basso aiuta a contrastarla." + +#~ msgid "Filament Sync Options" +#~ msgstr "Opzioni sincronizzazione filamento" + +#~ msgid "Network plug-in" +#~ msgstr "Modulo di rete" + +#~ msgid "View control settings" +#~ msgstr "Visualizza impostazioni di controllo" + +#~ msgid "Rotate view" +#~ msgstr "Ruota vista" + +#~ msgid "Pan view" +#~ msgstr "Vista panoramica" + +#~ msgid "Zoom view" +#~ msgstr "Ingrandimento vista" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Lo zoom tramitie rotellina del mouse è invertito" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Sinistra: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Destra: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Abilita modulo di rete" @@ -20835,10 +21232,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Deseleziona" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Ridimensiona" - #~ msgid "Lift Z Enforcement" #~ msgstr "Applicazione dell'ascensore Z" diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po index 55b1632470..03a498fd2a 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "ギズモ-回転" msgid "Optimize orientation" msgstr "向きを最適化" +msgctxt "Verb" msgid "Scale" msgstr "スケール" @@ -336,8 +337,9 @@ msgstr "ギズモ-縮尺" msgid "Error: Please close all toolbar menus first" msgstr "エラー: ツールバーを閉じてください" +msgctxt "inches" msgid "in" -msgstr "に" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "倍率" msgid "Object operations" msgstr "オブジェクト操作" +msgid "Scale" +msgstr "スケール" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "操作" @@ -397,26 +402,33 @@ msgstr "位置をリセット" msgid "Reset rotation" msgstr "回転をリセット" -msgid "Object coordinates" -msgstr "オブジェクト座標" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "空間座標" +msgid "Object" +msgstr "OBJ" -msgid "Translate(Relative)" -msgstr "移動(相対)" +msgid "Part" +msgstr "パーツ" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "現在の回転を0にリセットします。" -msgid "Part coordinates" -msgstr "パーツ座標" +msgctxt "Noun" +msgid "Scale" +msgstr "スケール" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "ギャップ" msgid "Spacing" msgstr "間隔" -msgid "Part" -msgstr "パーツ" - -msgid "Object" -msgstr "OBJ" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1709,6 +1715,25 @@ msgstr "OrcaSlicerで未処理の例外が発生しました: %1%" msgid "Untitled" msgstr "名称未設定" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"バージョン 2.4.0 以降、OrcaSlicer はユーザープロファイルを Bambu Cloud ではなく Orca Cloud を通じて同期します。\n" +"\n" +"既存のプロファイルを移行するには、Orca Cloud にログインしてください。自動的に転送されます。OrcaSlicer がプロファイルを保存・同期する仕組みの詳細や、プリセットを手動で移行する方法については、Wiki をご覧ください。\n" +"\n" +"プロファイルの同期に Bambu Cloud を使用していなかった場合、この変更の影響はありません。このメッセージは無視して問題ありません。" + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "ネットワークプラグインを再読み込み中..." @@ -1738,6 +1763,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "リソースパスが存在しないかディレクトリではありません: %s" @@ -1843,23 +1874,30 @@ 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:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1868,6 +1906,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1942,7 +1986,8 @@ 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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2164,6 +2209,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca公差テスト" @@ -3589,7 +3637,7 @@ msgstr "キャリブレーションが完了しました。下の写真のよう msgid "Save" msgstr "保存" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "背面" @@ -4059,6 +4107,10 @@ msgstr "値が小さすぎます、0.5に戻します" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "現在のチャンバー温度が材料の安全温度を超えています。材料の軟化や詰まりの原因になる可能性があります。材料の最大安全温度は%dです" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4956,6 +5008,7 @@ msgstr "ツールチェンジ" msgid "Color change" msgstr "色変更" +msgctxt "Noun" msgid "Print" msgstr "造形する" @@ -5119,11 +5172,15 @@ msgstr "押出しキャリブレーション領域を避ける" msgid "Align to Y axis" msgstr "Y軸に整列" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "背面" + +msgctxt "Camera View" msgid "Left" msgstr "左" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "右" @@ -5172,6 +5229,12 @@ msgstr "全プレート" msgid "Stats" msgstr "統計" +msgid "Slice" +msgstr "スライス" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "戻る" @@ -5196,6 +5259,9 @@ msgstr "オーバーハング" msgid "Outline" msgstr "アウトライン" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5436,6 +5502,10 @@ msgstr "造形開始" msgid "Export G-code file" msgstr "G-codeをエクスポート" +msgctxt "Verb" +msgid "Print" +msgstr "造形する" + msgid "Export plate sliced file" msgstr "エクスポート" @@ -7816,6 +7886,50 @@ msgstr "ダウンロードアイテムのフォルダを選択" msgid "Choose Download Directory" 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 "Reload the network plug-in without restarting the application" +msgstr "アプリケーションを再起動せずにネットワークプラグインを再読み込みします" + +msgid "Network plug-in reloaded successfully." +msgstr "ネットワークプラグインの再読み込みに成功しました。" + +msgid "Reload" +msgstr "再読み込み" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "ネットワークプラグインの再読み込みに失敗しました。アプリケーションを再起動してください。" + +msgid "Reload Failed" +msgstr "再読み込み失敗" + msgid "Associate" msgstr "関連付け" @@ -7871,12 +7985,6 @@ 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 "" @@ -7907,6 +8015,13 @@ msgstr "ロード動作" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "3MFファイルを開く時にプリンター/フィラメント/プロセス設定をロードしますか?" +msgid "Auto backup" +msgstr "自動バックアップ" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。" + msgid "Maximum recent files" msgstr "最大最近のファイル数" @@ -7925,12 +8040,55 @@ msgstr "STEPファイルインポート時にオプションを表示" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "有効にすると、STEPファイルインポート時にパラメータ設定ダイアログが表示されます。" -msgid "Auto backup" -msgstr "自動バックアップ" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期的にプロジェクトをバックアップして、クラッシュからの復元に備えます。" +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +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 "" +"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n" +"0 = 可逆圧縮(ジオメトリは完全な精度で保持されます)。有効な非可逆値の範囲は8〜30です。\n" +"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "プリセット" @@ -7962,6 +8120,12 @@ msgstr "フィラメント" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "機能" @@ -7974,21 +8138,6 @@ 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 "" -"メッシュをDraco形式に圧縮する際の量子化ビット深度を制御します。\n" -"0 = 可逆圧縮(ジオメトリは完全な精度で保持されます)。有効な非可逆値の範囲は8〜30です。\n" -"低い値はファイルサイズが小さくなりますがジオメトリの詳細が失われます。高い値はファイルサイズが大きくなりますがより多くの詳細が保持されます。" - msgid "Behaviour" msgstr "動作" @@ -8216,19 +8365,6 @@ msgstr "安定版アップデートのみ確認" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "フィラメント同期モード" @@ -8241,6 +8377,16 @@ msgstr "フィラメントと色" msgid "Color only" msgstr "色のみ" +# TODO: Review, changed by lang refactor. PR 14254 +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 "Bambu network plug-in" msgstr "" @@ -8253,35 +8399,6 @@ 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 "ファイルをOrca Slicerに関連付ける" @@ -8330,7 +8447,16 @@ msgstr "開発者" msgid "Skip AMS blacklist check" msgstr "AMSブラックリストチェックをスキップ" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8338,12 +8464,6 @@ 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 "異常なストレージを許可" @@ -8372,24 +8492,6 @@ msgstr "デバッグ" msgid "trace" msgstr "トレース" -msgid "Network plug-in" -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 "デバッグ" @@ -8405,25 +8507,6 @@ 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 "その他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "ズーム中にスクロール方向を反転させる" - msgid "Enable SSL(MQTT)" msgstr "SSL(MQTT)を有効にする" @@ -9132,6 +9215,12 @@ msgstr "このプリセットを削除" msgid "Search in preset" msgstr "検索" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "全ての変更をリセットします" @@ -9417,6 +9506,18 @@ msgstr "フロー率と圧力アドバンス" msgid "Print chamber temperature" msgstr "印刷チャンバー温度" +msgid "Chamber temperature" +msgstr "庫内温度" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "造形温度" @@ -9734,12 +9835,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "左: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "右: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "現在値をデフォルト値に戻します" @@ -9759,7 +9870,7 @@ msgid "Transfer or discard changes" msgstr "変更を破棄または保持" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "古い値" msgid "New Value" @@ -9875,6 +9986,12 @@ msgstr "エクストルーダー数" msgid "Capabilities" msgstr "能力" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "全てのプリセットを表示" @@ -11108,6 +11225,12 @@ msgstr "使用するフィラメントの収縮率が大きく異なるため、 msgid "Generating skirt & brim" msgstr "スカートとブリムを生成" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "G-codeをエクスポート中" @@ -11903,6 +12026,23 @@ msgstr "通常造形" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "造形と移動時のデフォルト加速度です。" +msgid "Acceleration of travel moves." +msgstr "" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² 或は %" + +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 "" + msgid "Default filament profile" msgstr "デフォルト フィラメント プロファイル" @@ -12085,6 +12225,12 @@ msgstr "アルキメデス螺旋" msgid "Octagram Spiral" msgstr "オクタグラムスパイラル" +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 "" + msgid "Bottom surface pattern" msgstr "底面パターン" @@ -12092,6 +12238,14 @@ msgstr "底面パターン" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "底面のインフィル パターンです、ブリッジインフィルが含まれていません。" +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 "" + msgid "Internal solid infill pattern" msgstr "内部ソリッドインフィルパターン" @@ -12117,6 +12271,18 @@ msgstr "小さな外周のしきい値" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "壁の印刷順序" @@ -12272,21 +12438,25 @@ msgid "" "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." msgstr "" -msgid "Enable adaptive pressure advance for overhangs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." -msgstr "" - -msgid "Pressure advance for bridges" -msgstr "" - -msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\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." +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" + +msgid "" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "" msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." @@ -12358,18 +12528,6 @@ 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 "" - msgid "Flush temperature" msgstr "フラッシュ温度" @@ -12673,6 +12831,22 @@ msgstr "" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "充填密度" @@ -12703,7 +12877,7 @@ msgstr "充填パターンが対応している場合は、複数のラインを msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12771,75 +12945,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "ジャイロイド" -msgid "Lateral lattice angle 1" -msgstr "" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Lateral lattice angle 2" -msgstr "" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Infill overhang angle" -msgstr "インフィルオーバーハング角度" - -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 "" - -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 "" - -msgid "0 (no open anchors)" -msgstr "0(開いているアンカーなし)" - -msgid "1000 (unlimited)" -msgstr "1000 (無制限)" - -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 "" - -msgid "0 (Simple connect)" -msgstr "" - -msgid "Acceleration of inner walls." -msgstr "" - -msgid "Acceleration of travel moves." -msgstr "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "トップ面のインフィル加速度です。遅くすると表面の仕上がりが向上させることができます" @@ -12848,12 +12953,9 @@ 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." +msgid "Acceleration of inner walls." msgstr "" -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." msgstr "スパースインフィルの加速度です。値がパーセンテージ(例:100%)で指定された場合、デフォルトの加速度を基に計算されます。" @@ -12864,14 +12966,6 @@ msgstr "" msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "1層目の造形加速度です。遅くするとプレートとの接着を向上させることができます" -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "加減速制御を有効にする" @@ -12966,6 +13060,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -13450,6 +13555,69 @@ msgstr "クランピングのプロービング除外エリア" msgid "Probing exclude area of clumping." msgstr "クランピングのプロービング除外エリア。" +msgid "Lateral lattice angle 1" +msgstr "" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Lateral lattice angle 2" +msgstr "" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Infill overhang angle" +msgstr "インフィルオーバーハング角度" + +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 "" + +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 "" + +msgid "0 (no open anchors)" +msgstr "0(開いているアンカーなし)" + +msgid "1000 (unlimited)" +msgstr "1000 (無制限)" + +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 "" + +msgid "0 (Simple connect)" +msgstr "" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14285,6 +14453,18 @@ msgstr "ダイレクトドライブ" msgid "Bowden" 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 "" + msgid "Extra length on restart" msgstr "再開時の追加長さ" @@ -14339,6 +14519,10 @@ msgstr "整列" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "背面" + msgid "Random" msgstr "ランダム" @@ -14690,6 +14874,9 @@ msgstr "" msgid "Slicing Mode" msgstr "スライシングモード" +msgid "Other" +msgstr "その他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" @@ -15042,9 +15229,6 @@ msgid "" "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 "" -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" @@ -15053,6 +15237,17 @@ msgid "" "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 "" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "1層目後のノズル温度" @@ -15098,20 +15293,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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 "" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "移動完了時の速度です。" @@ -15335,6 +15516,14 @@ msgstr "" msgid "Rotate the polyhole every layer." msgstr "" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Gコードのサムネイル" @@ -15477,9 +15666,6 @@ msgstr "" msgid "Export the objects as multiple STLs to directory." msgstr "" -msgid "Slice" -msgstr "スライス" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "プレートをスライス: 0: 全て, i:プレートi, その他: 無効" @@ -17635,6 +17821,132 @@ msgstr "ログイン/テスト" msgid "Connection to printers connected via the print host failed." msgstr "印刷ホスト経由のプリンターへの接続に失敗しました。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17717,6 +18029,19 @@ msgstr "MKSへの接続は正常に動作しています。" msgid "Could not connect to MKS" msgstr "MKSに接続できませんでした" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrintへの接続は正常に動作しています。" @@ -18468,6 +18793,12 @@ msgstr "三角面の数" msgid "Calculating, please wait..." msgstr "計算中、お待ちください..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -18850,6 +19181,57 @@ msgstr "" "反りを避ける\n" "ABSのような反りやすい素材を印刷する場合、ヒートベッドの温度を適切に上げることで、反りが発生する確率を下げることができることをご存知ですか?" +#~ msgid "Print" +#~ msgstr "造形する" + +#~ msgid "in" +#~ msgstr "に" + +#~ msgid "Object coordinates" +#~ msgstr "オブジェクト座標" + +#~ msgid "World coordinates" +#~ msgstr "空間座標" + +#~ msgid "Translate(Relative)" +#~ msgstr "移動(相対)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "回転(絶対)" + +#~ msgid "Part coordinates" +#~ msgstr "パーツ座標" + +#~ msgid "Filament Sync Options" +#~ msgstr "フィラメント同期オプション" + +#~ msgid "Network plug-in" +#~ msgstr "ネットワークプラグイン" + +#~ msgid "View control settings" +#~ msgstr "表示設定" + +#~ msgid "Rotate view" +#~ msgstr "回転" + +#~ msgid "Pan view" +#~ msgstr "移動" + +#~ msgid "Zoom view" +#~ msgstr "ズーム" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "ズーム中にスクロール方向を反転させる" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "左: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "右: %s" + #~ msgid "Enable network plug-in" #~ msgstr "ネットワークプラグインを有効にする" @@ -19748,10 +20130,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "選択解除" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "スケール" - #~ msgid "Z-hop when retract" #~ msgstr "リトラクト時にZ方向調整" diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po index f24e29a07e..3dae5ed37e 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2025-06-02 17:12+0900\n" "Last-Translator: crwusiz \n" "Language-Team: \n" @@ -331,6 +331,7 @@ msgstr "변형도구 - 회전" msgid "Optimize orientation" msgstr "방향 최적화" +msgctxt "Verb" msgid "Scale" msgstr "배율" @@ -340,8 +341,9 @@ msgstr "변형도구 - 배율" msgid "Error: Please close all toolbar menus first" msgstr "오류: 먼저 모든 도구 모음 메뉴를 닫으십시오." +msgctxt "inches" msgid "in" -msgstr "인치" +msgstr "" msgid "mm" msgstr "mm" @@ -374,6 +376,9 @@ msgstr "배율비" msgid "Object operations" msgstr "객체 작업" +msgid "Scale" +msgstr "배율" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "용량 작업" @@ -401,26 +406,33 @@ msgstr "위치 초기화" msgid "Reset rotation" msgstr "회전 재설정" -msgid "Object coordinates" -msgstr "객체 좌표" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "영역 좌표" +msgid "Object" +msgstr "객체" -msgid "Translate(Relative)" -msgstr "이동(상대)" +msgid "Part" +msgstr "부품" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "현재 회전을 0으로 초기화합니다." -msgid "Part coordinates" -msgstr "파트 좌표" +msgctxt "Noun" +msgid "Scale" +msgstr "배율" #. TRN - Input label. Be short as possible msgid "Size" @@ -525,12 +537,6 @@ msgstr "간격" msgid "Spacing" msgstr "간격" -msgid "Part" -msgstr "부품" - -msgid "Object" -msgstr "객체" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1715,6 +1721,25 @@ msgstr "Orca Slicer에 처리되지 않은 예외가 발생했습니다: %1%" msgid "Untitled" msgstr "제목 없음" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"버전 2.4.0부터 OrcaSlicer는 사용자 프로파일을 Bambu Cloud 대신 Orca Cloud를 통해 동기화합니다.\n" +"\n" +"기존 프로파일을 이전하려면 Orca Cloud에 로그인하세요. 자동으로 전송됩니다. OrcaSlicer가 프로파일을 저장하고 동기화하는 방식에 대해 자세히 알아보거나 사전 설정을 수동으로 이전하려면 위키를 참조하세요.\n" +"\n" +"프로파일 동기화에 Bambu Cloud를 사용하지 않았다면 이 변경 사항은 영향을 주지 않으므로 이 메시지를 무시해도 됩니다." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "네트워크 플러그인 재로드 중..." @@ -1744,6 +1769,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 런타임" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "리소스 경로가 존재하지 않거나 디렉토리가 아닙니다: %s" @@ -1849,23 +1880,30 @@ 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:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1874,6 +1912,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1948,7 +1992,8 @@ 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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2171,6 +2216,9 @@ msgstr "Orca 큐브" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca 공차 테스트" @@ -3604,7 +3652,7 @@ msgstr "교정이 완료되었습니다. 당신의 고온 베드에서 아래 msgid "Save" msgstr "저장" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "뒷면" @@ -4076,6 +4124,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "현재 챔버 온도가 재료의 안전 온도보다 높으므로 재료가 부드러워지고 막힐 수 있습니다. 재료의 최대 안전 온도는 %d입니다" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4982,6 +5034,7 @@ msgstr "" msgid "Color change" msgstr "색 변경" +msgctxt "Noun" msgid "Print" msgstr "출력" @@ -5145,11 +5198,15 @@ msgstr "압출 교정 영역을 피하세요" msgid "Align to Y axis" msgstr "Y축에 정렬" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "뒷면" + +msgctxt "Camera View" msgid "Left" msgstr "왼쪽" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "오른쪽" @@ -5198,6 +5255,12 @@ msgstr "전체 플레이트" msgid "Stats" msgstr "통계" +msgid "Slice" +msgstr "슬라이스" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "조립 되돌리기" @@ -5222,6 +5285,9 @@ msgstr "오버행" msgid "Outline" msgstr "외곽선" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5464,6 +5530,10 @@ msgstr "플레이트 출력" msgid "Export G-code file" msgstr "Gcode 파일 내보내기" +msgctxt "Verb" +msgid "Print" +msgstr "출력" + msgid "Export plate sliced file" msgstr "플레이트 슬라이스 파일 내보내기" @@ -7848,6 +7918,45 @@ msgstr "" msgid "Choose Download Directory" 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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "링크" @@ -7903,12 +8012,6 @@ 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 "" @@ -7939,6 +8042,13 @@ msgstr "행동 로드" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr ".3mf를 열 때 프린터/필라멘트/프로세스 설정이 로드되어야 합니까?" +msgid "Auto backup" +msgstr "자동 백업" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요." + msgid "Maximum recent files" msgstr "" @@ -7957,12 +8067,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "자동 백업" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "간헐적인 충돌로부터 복원하기 위해 주기적으로 프로젝트를 백업하세요." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "사전 설정" @@ -7994,6 +8144,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -8006,18 +8162,6 @@ msgstr "활성화하면 여러 장치에 동시에 작업을 보내고 여러 msgid "Pop up to select filament grouping mode" msgstr "필라멘트 그룹화 모드를 선택하기 위한 팝업" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "" @@ -8245,19 +8389,6 @@ msgstr "안정적인 업데이트만 확인" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "" @@ -8270,6 +8401,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +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 "Bambu network plug-in" msgstr "" @@ -8282,30 +8423,6 @@ 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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "파일을 OrcaSlicer에 연결" @@ -8354,7 +8471,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "AMS 블랙리스트 확인 건너뛰기" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8362,12 +8488,6 @@ 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 "" @@ -8394,24 +8514,6 @@ msgstr "디버그" msgid "trace" msgstr "추적" -msgid "Network plug-in" -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 "" @@ -8427,25 +8529,6 @@ 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 "기타" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "확대/축소 시 마우스 휠이 반전됩니다" - msgid "Enable SSL(MQTT)" msgstr "SSL(MQTT) 활성화" @@ -9156,6 +9239,12 @@ msgstr "이 사전 설정 삭제" msgid "Search in preset" msgstr "사전 설정에서 찾기" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "모든 설정을 마지막으로 저장한 사전 설정으로 되돌립니다." @@ -9441,6 +9530,18 @@ msgstr "압출량 비율 및 PA" msgid "Print chamber temperature" msgstr "출력 챔버 온도" +msgid "Chamber temperature" +msgstr "챔버 온도" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "출력 온도" @@ -9761,12 +9862,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "왼쪽: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "오른쪽: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "현재 값을 재설정하고 전역 값에 연결하려면 클릭합니다." @@ -9786,7 +9897,7 @@ msgid "Transfer or discard changes" msgstr "변경 사항 폐기 또는 유지" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "이전 값" msgid "New Value" @@ -9908,6 +10019,12 @@ msgstr "익스트루더 수" msgid "Capabilities" msgstr "성능" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "모든 사전 설정 표시(호환되지 않는 설정 포함)" @@ -11152,6 +11269,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "스커트 & 브림 생성 중" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Gcode 내보내는 중" @@ -11996,6 +12119,23 @@ msgstr "일반 출력" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "초기 레이어를 제외한 모든 일반 출력 및 이동의 기본 가속" +msgid "Acceleration of travel moves." +msgstr "이동 가속도" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² 또는 %" + +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 "브릿지의 가속도. 값을 백분율 (ex. 50%)로 표시하면 외벽 가속도 기준으로 계산됩니다." + msgid "Default filament profile" msgstr "기본 필라멘트 사전설정" @@ -12208,6 +12348,12 @@ msgstr "아르키메데스 코드" msgid "Octagram Spiral" msgstr "팔각 나선형" +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 "" + msgid "Bottom surface pattern" msgstr "하단 표면 패턴" @@ -12215,6 +12361,14 @@ msgstr "하단 표면 패턴" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "브릿지 채우기가 아닌 바닥면 채우기의 선 패턴" +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 "" + msgid "Internal solid infill pattern" msgstr "꽉찬 내부 채우기 패턴" @@ -12240,6 +12394,18 @@ msgstr "작은 둘레 임계값" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "작은 둘레 길이에 대한 임계값을 설정합니다. 기본 임계값은 0mm입니다" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "벽 출력 순서" @@ -12424,25 +12590,26 @@ msgstr "" "2. 각 압출 유속 및 가속도에 대한 최적의 PA 값을 기록해 두십시오. 색상 구성표 드롭다운에서 흐름을 선택하고 PA 패턴 라인 위로 수평 슬라이더를 이동하여 흐름 번호를 찾을 수 있습니다. 페이지 하단에 번호가 표시되어야 합니다. 이상적인 PA 값은 압출 압출량이 높을수록 감소해야 합니다. 그렇지 않은 경우 압출기가 올바르게 작동하는지 확인하십시오. 출력 속도가 느리고 가속도가 낮을수록 허용되는 PA 값의 범위는 더 커집니다. 차이가 보이지 않으면 더 빠른 테스트의 PA 값을 사용하십시오.\n" "3. 여기 텍스트 상자에 PA 값, 흐름 및 가속도의 세 가지 값을 입력하고 필라멘트 프로필을 저장하세요." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "오버행에 대한 적응형 PA 활성화(베타)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "브릿지를 위한 PA" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"브릿지의 PA 값입니다. 비활성화하려면 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으로 설정된 경우 기본 선 너비입니다. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다." @@ -12511,18 +12678,6 @@ 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 "" - msgid "Flush temperature" msgstr "플러시 온도" @@ -12830,6 +12985,22 @@ msgstr "꽉찬 채우기 방향" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "선의 시작 또는 기본 방향을 제어하는 솔리드 채우기 패턴의 각도" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "드문 채우기 밀도" @@ -12860,7 +13031,7 @@ msgstr "채우기 패턴에서 지원되는 경우 채우기 패턴에 여러 msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12928,80 +13099,6 @@ 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 방향의 첫 번째 2D 격자 요소 집합의 각도입니다. 0은 수직입니다." - -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 방향에서 두 번째 2D 격자 요소 세트의 각도입니다. 0은 수직입니다." - -msgid "Infill overhang angle" -msgstr "" - -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 "드문 채우기 고정점 길이" - -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) 최대 길이보다 짧은 경계 세그먼트가 발견되지 않으면 \n" -"채우기 선은 한쪽에서 경계 세그먼트에 연결되고 취해진 경계 세그먼트의 길이는 이 매개변수로 제한되지만 최대 고정점 길이(anchor_length_max) 보다 길지 않습니다.\n" -"단일 채우기 선에 연결된 고정 둘레를 비활성화하려면 이 매개변수를 0으로 설정합니다." - -msgid "0 (no open anchors)" -msgstr "0 (개방형 고정점 없음)" - -msgid "1000 (unlimited)" -msgstr "1000 (무제한)" - -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으로 설정하면 채우기 연결에 대한 이전 알고리즘이 사용되며 1000 & 0과 동일한 결과를 생성해야 합니다." - -msgid "0 (Simple connect)" -msgstr "0 (단순 연결)" - -msgid "Acceleration of inner walls." -msgstr "내벽의 가속도" - -msgid "Acceleration of travel moves." -msgstr "이동 가속도" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "상단 표면 가속도. 낮은 값을 사용하면 상단 표면 품질이 향상될 수 있습니다" @@ -13010,11 +13107,8 @@ 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 "브릿지의 가속도. 값을 백분율 (ex. 50%)로 표시하면 외벽 가속도 기준으로 계산됩니다." - -msgid "mm/s² or %" -msgstr "mm/s² 또는 %" +msgid "Acceleration of inner walls." +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%)로 표시되면 기본 가속도를 기준으로 계산됩니다." @@ -13026,14 +13120,6 @@ msgstr "꽉찬 내부 채우기 가속도. 값이 백분율 (예. 100%)로 표 msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "" - msgid "Enable accel_to_decel" msgstr "가속/감속 활성화" @@ -13128,6 +13214,17 @@ msgstr "팬 속도는 \"close_fan_the_first_x_layers\" 의 0에서 \"full_fan_sp msgid "layer" msgstr "레이어" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "서포트 접점 팬 속도" @@ -13642,6 +13739,74 @@ msgstr "뭉침 영역 프로빙 제외" msgid "Probing exclude area of clumping." 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 방향의 첫 번째 2D 격자 요소 집합의 각도입니다. 0은 수직입니다." + +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 방향에서 두 번째 2D 격자 요소 세트의 각도입니다. 0은 수직입니다." + +msgid "Infill overhang angle" +msgstr "" + +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 "드문 채우기 고정점 길이" + +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) 최대 길이보다 짧은 경계 세그먼트가 발견되지 않으면 \n" +"채우기 선은 한쪽에서 경계 세그먼트에 연결되고 취해진 경계 세그먼트의 길이는 이 매개변수로 제한되지만 최대 고정점 길이(anchor_length_max) 보다 길지 않습니다.\n" +"단일 채우기 선에 연결된 고정 둘레를 비활성화하려면 이 매개변수를 0으로 설정합니다." + +msgid "0 (no open anchors)" +msgstr "0 (개방형 고정점 없음)" + +msgid "1000 (unlimited)" +msgstr "1000 (무제한)" + +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으로 설정하면 채우기 연결에 대한 이전 알고리즘이 사용되며 1000 & 0과 동일한 결과를 생성해야 합니다." + +msgid "0 (Simple connect)" +msgstr "0 (단순 연결)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14506,6 +14671,18 @@ msgstr "직접 드라이브" msgid "Bowden" 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 "" + msgid "Extra length on restart" msgstr "재 시작 시 추가 길이" @@ -14560,6 +14737,10 @@ msgstr "정렬" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "뒷면" + msgid "Random" msgstr "무작위" @@ -14931,6 +15112,9 @@ msgstr "간격 폐쇄 반경의 2배보다 작은 균열은 삼각형 메시 슬 msgid "Slicing Mode" msgstr "슬라이싱 모드" +msgid "Other" +msgstr "기타" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "3DLabPrint 비행기 모델에는 \"짝수-홀수\"를 사용하세요. \"구멍 닫기\"를 사용하여 모델의 모든 구멍을 닫습니다." @@ -15289,9 +15473,6 @@ msgstr "" "\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" @@ -15305,6 +15486,17 @@ msgstr "" "\n" "활성화된 경우 이 매개변수는 원하는 챔버 온도를 출력 시작 매크로 또는 PRINT_START(기타 변수) CHAMBER_TEMP=[chamber_temp]와 같은 열 흡수 매크로에 전달하는 데 사용할 수 있는 Chamber_temp라는 Gcode 변수도 설정합니다. 이는 프린터가 M141/M191 명령을 지원하지 않거나 활성 챔버 히터가 설치되지 않은 경우 출력 시작 매크로에서 열 흡수를 처리하려는 경우 유용할 수 있습니다." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "초기 레이어 이후의 노즐 온도" @@ -15350,20 +15542,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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 "" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "압출이 없을 때의 이동 속도" @@ -15607,6 +15785,14 @@ msgstr "폴리홀 회전" msgid "Rotate the polyhole every layer." msgstr "레이어마다 폴리홀을 회전시킵니다." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Gcode 미리보기" @@ -15754,9 +15940,6 @@ 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, 기타-잘못됨" @@ -17983,6 +18166,132 @@ msgstr "로그인/테스트" msgid "Connection to printers connected via the print host failed." msgstr "출력 호스트를 통해 연결된 프린터에 연결하지 못했습니다." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18065,6 +18374,19 @@ msgstr "MKS에 대한 연결이 올바르게 작동합니다." msgid "Could not connect to MKS" msgstr "MKS에 연결할 수 없습니다" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint에 대한 연결이 올바르게 작동합니다." @@ -18816,6 +19138,12 @@ msgstr "삼각형 패싯 수" msgid "Calculating, please wait..." msgstr "계산 중, 잠시만 기다려주세요..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19221,6 +19549,66 @@ msgstr "" "뒤틀림 방지\n" "ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?" +#~ msgid "Print" +#~ msgstr "출력" + +#~ msgid "in" +#~ msgstr "인치" + +#~ msgid "Object coordinates" +#~ msgstr "객체 좌표" + +#~ msgid "World coordinates" +#~ msgstr "영역 좌표" + +#~ msgid "Translate(Relative)" +#~ msgstr "이동(상대)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "회전 (절대)" + +#~ msgid "Part coordinates" +#~ msgstr "파트 좌표" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "오버행에 대한 적응형 PA 활성화(베타)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "브릿지를 위한 PA" + +#~ 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 "" +#~ "브릿지의 PA 값입니다. 비활성화하려면 0으로 설정합니다.\n" +#~ "\n" +#~ " 브릿지를 프린팅할 때 PA 값이 낮으면 브릿지 직후에 약간의 언더 압출이 나타나는 것을 줄이는 데 도움이 됩니다. 이는 공중에서 출력할 때 노즐의 압력 강하로 인해 발생하며 PA가 낮을수록 이를 방지하는 데 도움이 됩니다." + +#~ msgid "View control settings" +#~ msgstr "시점 컨트롤 설정" + +#~ msgid "Rotate view" +#~ msgstr "시점 회전" + +#~ msgid "Pan view" +#~ msgstr "시점 이동" + +#~ msgid "Zoom view" +#~ msgstr "시점 확대/축소" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "확대/축소 시 마우스 휠이 반전됩니다" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "왼쪽: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "오른쪽: %s" + #~ msgid "Enable network plug-in" #~ msgstr "네트워크 플러그인 사용" @@ -20655,10 +21043,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "선택 취소" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "규모" - #~ msgid "Lift Z Enforcement" #~ msgstr "강제 Z 올리기" diff --git a/localization/i18n/list.txt b/localization/i18n/list.txt index 7d4516cc26..d968cd5322 100644 --- a/localization/i18n/list.txt +++ b/localization/i18n/list.txt @@ -227,11 +227,14 @@ src/slic3r/GUI/CreatePresetsDialog.cpp src/slic3r/GUI/DailyTips.cpp src/slic3r/Utils/CalibUtils.cpp src/slic3r/GUI/PhysicalPrinterDialog.cpp +src/slic3r/GUI/CrealityDiscoveryDialog.cpp +src/slic3r/GUI/TroubleshootDialog.cpp src/slic3r/Utils/3DPrinterOS.cpp src/slic3r/Utils/AstroBox.cpp src/slic3r/Utils/Duet.cpp src/slic3r/Utils/FlashAir.cpp src/slic3r/Utils/MKS.cpp +src/slic3r/Utils/Moonraker.cpp src/slic3r/Utils/OctoPrint.cpp src/slic3r/Utils/Repetier.cpp src/slic3r/Utils/ProfileDescription.hpp diff --git a/localization/i18n/lt/OrcaSlicer_lt.po b/localization/i18n/lt/OrcaSlicer_lt.po index 5148dd0776..99cb03a620 100644 --- a/localization/i18n/lt/OrcaSlicer_lt.po +++ b/localization/i18n/lt/OrcaSlicer_lt.po @@ -3,13 +3,13 @@ # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # -# TODO: Review, changed by lang refactor. PR 14254 +#, fuzzy msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-22 20:13-0300\n" -"PO-Revision-Date: 2025-10-25 23:01+0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" +"PO-Revision-Date: 2026-07-02 14:13+0300\n" "Last-Translator: Gintaras Kučinskas \n" "Language-Team: \n" "Language: lt_LT\n" @@ -38,32 +38,32 @@ msgid "TPU is not supported by AMS." msgstr "AMS nepalaiko TPU." msgid "AMS does not support 'Bambu Lab PET-CF'." -msgstr "" +msgstr "AMS nepalaiko „Bambu Lab PET-CF“." msgid "Please cold pull before printing TPU to avoid clogging. You may use cold pull maintenance on the printer." -msgstr "" +msgstr "Prieš spausdindami TPU, atlikite valymą traukiant atvėsusią giją („cold pull“), kad išvengtumėte užsikimšimo. Galite naudoti spausdintuvo techninės priežiūros funkciją." msgid "Damp PVA will become flexible and get stuck inside AMS, please take care to dry it before use." msgstr "Drėgnas PVA taps lankstus ir gali įstrigti AMS. Prieš naudojimą būtinai jį išdžiovinkite." msgid "Damp PVA is flexible and may get stuck in extruder. Dry it before use." -msgstr "" +msgstr "Drėgnas PVA yra lankstus ir gali įstrigti ekstruderyje. Prieš naudojimą jį išdžiovinkite." msgid "The rough surface of PLA Glow can accelerate wear on the AMS system, particularly on the internal components of the AMS Lite." -msgstr "" +msgstr "Šiurkštus „PLA Glow“ paviršius gali pagreitinti AMS sistemos, ypač „AMS Lite“ vidinių komponentų, nusidėvėjimą." msgid "CF/GF filaments are hard and brittle, it's easy to break or get stuck in AMS, please use with caution." msgstr "Pastaba: CF/GF gijos yra kietos ir trapios. Jas lengva nulaužti arba jos gali įstrigti AMS. Naudokite atsargiai." msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead." -msgstr "" +msgstr "PPS-CF yra trapus ir gali lūžti sulenktoje PTFE tūtelėje virš spausdinimo galvutės." msgid "PPA-CF is brittle and could break in bended PTFE tube above Toolhead." -msgstr "" +msgstr "PPA-CF yra trapus ir gali lūžti sulenktoje PTFE tūtelėje virš spausdinimo galvutės." #, c-format, boost-format msgid "%s is not supported by %s extruder." -msgstr "" +msgstr "%2$s ekstruderis nepalaiko %1$s." msgid "Current AMS humidity" msgstr "Dabartinė AMS drėgmė" @@ -75,13 +75,13 @@ msgid "Temperature" msgstr "Temperatūra" msgid "Left Time" -msgstr "Likęs laikas" +msgstr "Liko laiko" msgid "Drying" msgstr "Džiovinimas" msgid "Idle" -msgstr "Tuščias" +msgstr "Laukia" msgid "Model:" msgstr "Modelis:" @@ -93,25 +93,22 @@ msgid "Version:" msgstr "Versija:" msgid "Latest version" -msgstr "Paskutinė versija" +msgstr "Naujausia versija" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support Painting" -msgstr "Palaiko piešimą" +msgstr "Atramų piešimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Apply" msgstr "Taikyti" msgid "On highlighted overhangs only" -msgstr "Tik paryškintiems kabantiems" +msgstr "Tik paryškintoms iškyšoms" msgid "Erase all" -msgstr "" +msgstr "Išvalyti viską" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Highlight overhangs" -msgstr "Paryškinti kabančias vietas" +msgstr "" msgid "Tool type" msgstr "Įrankio tipas" @@ -123,7 +120,7 @@ msgid "Reset direction" msgstr "Atstatyti kryptį" msgid "Section view" -msgstr "Sekcijų peržiūra" +msgstr "Pjūvio peržiūra" msgid "Brush size" msgstr "Teptuko dydis" @@ -135,19 +132,19 @@ msgid "Gap area" msgstr "Plyšio vieta" msgid "Left mouse button" -msgstr "Kairys pelės mygtukas" +msgstr "Kairysis pelės mygtukas" msgid "Enforce supports" msgstr "Priverstinės atramos" msgid "Right mouse button" -msgstr "Dešinys pelės mygtukas" +msgstr "Dešinysis pelės mygtukas" msgid "Block supports" msgstr "Blokuoti atramas" msgid "Erase" -msgstr "Ištrinti" +msgstr "Trinti" msgid "Mouse wheel" msgstr "Pelės ratukas" @@ -169,7 +166,7 @@ msgstr "Plyšių užpildymas" #, boost-format msgid "Allows painting only on facets selected by: \"%1%\"" -msgstr "Leidžia piešti tik tuos aspektus, kuriuos pasirinko: „%1%“" +msgstr "Leidžia piešti tik ant paviršių, kuriuos pasirinko: „%1%“" msgid "Highlight faces according to overhang angle." msgstr "Paryškinti paviršius pagal iškyšos kampą." @@ -180,31 +177,28 @@ msgstr "Nenaudoti automatinių atramų" msgid "Done" msgstr "Atlikta" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support generated" -msgstr "Atramos sugeneruotos" +msgstr "" msgid "Entering Paint-on supports" -msgstr "" +msgstr "Įjungiamas pieštų atramų režimas" msgid "Leaving Paint-on supports" -msgstr "" +msgstr "Išjungiamas pieštų atramų režimas" msgid "Paint-on supports editing" -msgstr "" +msgstr "Pieštų atramų redagavimas" msgid "Gizmo-Place on Face" -msgstr "Gizmo-Patalpinti ant paviršiaus" +msgstr "Manipuliatorius – Pridėti prie paviršiaus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Lay on Face" -msgstr "Paguldyti ant paviršiaus" +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 "Gijų skaičius viršija didžiausią palaikomą piešimo įrankio. Piešimo įrankyje bus pasiekiami tik pirmosios %1% gijos." +msgstr "Gijų skaičius viršija didžiausią piešimo įrankio palaikomą skaičių. Piešimo įrankyje bus prieinamos tik pirmosios %1% gijos." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Color Painting" msgstr "Spalvotas piešimas" @@ -233,19 +227,19 @@ msgid "Smart fill" msgstr "Išmanus užpildymas" msgid "Bucket fill" -msgstr "Kibiro užpildymas" +msgstr "Užpildymas liejant" msgid "Height range" msgstr "Aukščio diapazonas" msgid "Toggle Wireframe" -msgstr "Perjungti \"vielinį\" vaizdą" +msgstr "Perjungti karkasinį vaizdą" msgid "Remap filaments" -msgstr "Perplanuoti gijas" +msgstr "Priskirti gijas iš naujo" msgid "Remap" -msgstr "Perplanuoti" +msgstr "Priskirti iš naujo" msgid "Reset" msgstr "Nustatyti iš naujo" @@ -276,43 +270,43 @@ msgid "Painted using: Filament %1%" msgstr "Piešta naudojant: Gija %1%" msgid "To:" -msgstr "" +msgstr "Iki:" msgid "Entering color painting" -msgstr "" +msgstr "Įjungiamas spalvų piešimas" msgid "Leaving color painting" -msgstr "" +msgstr "Išjungiamas spalvų piešimas" msgid "Color painting editing" -msgstr "" +msgstr "Spalvų piešimo redagavimas" msgid "Paint-on fuzzy skin" msgstr "Piešti grublėtą paviršių" msgid "Add fuzzy skin" -msgstr "" +msgstr "Pridėti grublėtą paviršių" msgid "Remove fuzzy skin" -msgstr "" +msgstr "Pašalinti grublėtą paviršių" msgid "Reset selection" -msgstr "" +msgstr "Atstatyti parinktį" msgid "Warning: Fuzzy skin is disabled, painted fuzzy skin will not take effect!" -msgstr "" +msgstr "Įspėjimas: grublėtas paviršius išjungtas, užpieštas grublėtas paviršius neturės įtakos!" msgid "Enable painted fuzzy skin for this object" -msgstr "" +msgstr "Įjungti užpieštą grublėtą paviršių šiam objektui" msgid "Entering Paint-on fuzzy skin" -msgstr "" +msgstr "Įjungiamas grublėto paviršiaus piešimas" msgid "Leaving Paint-on fuzzy skin" -msgstr "" +msgstr "Išjungiamas grublėto paviršiaus piešimas" msgid "Paint-on fuzzy skin editing" -msgstr "" +msgstr "Grublėto paviršiaus piešimo redagavimas" msgid "Move" msgstr "Perkelti" @@ -321,31 +315,33 @@ msgid "Please select at least one object." msgstr "Pasirinkite bent vieną objektą." msgid "Gizmo-Move" -msgstr "Gizmo-Judėjimas" +msgstr "Manipuliatorius – Perkėlimas" msgid "Rotate" msgstr "Pasukti" msgid "Gizmo-Rotate" -msgstr "Gizmo-Pasukimas" +msgstr "Manipuliatorius – Pasukimas" msgid "Optimize orientation" msgstr "Optimizuoti orientaciją" +msgctxt "Verb" msgid "Scale" msgstr "Mastelis" msgid "Gizmo-Scale" -msgstr "Gizmo-Skalė" +msgstr "Manipuliatorius – Mastelio keitimas" msgid "Error: Please close all toolbar menus first" msgstr "Klaida: Prašome pirmiau uždaryti visus įrankių juostos meniu" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" -msgstr "mm" +msgstr "mm." msgid "Part selection" msgstr "Detalių pasirinkimas" @@ -354,10 +350,10 @@ msgid "Fixed step drag" msgstr "Vilkimas fiksuotu žingsniu" msgid "Context Menu" -msgstr "" +msgstr "Kontekstinis meniu" msgid "Toggle Auto-Drop" -msgstr "" +msgstr "Įjungti / išjungti automatinį nuleidimą" msgid "Single sided scaling" msgstr "Vienpusis mastelio keitimas" @@ -369,72 +365,75 @@ msgid "Rotate (relative)" msgstr "Pasukti (santykinai)" msgid "Scale ratios" +msgstr "Mastelio koeficientai" + +msgid "Object operations" +msgstr "" + +msgid "Scale" msgstr "Mastelis" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Object operations" -msgstr "Objekto veiksmai" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" -msgstr "Tūrio veiksmai" +msgstr "" msgid "Translate" -msgstr "Išversti" +msgstr "Slinkti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Group operations" -msgstr "Grupės veiksmai" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set orientation" -msgstr "Nustatyti orientaciją" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set scale" -msgstr "Nustatyti mastelį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset position" -msgstr "Atstatyti padėtį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset rotation" msgstr "Iš naujo nustatyti sukimąsi" -msgid "Object coordinates" -msgstr "Objekto koordinatės" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Pasaulio koordinatės" +msgid "Object" +msgstr "Objektas" -msgid "Translate(Relative)" +msgid "Part" +msgstr "Dalis" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Atkurti dabartinį pasukimą iki vertės, buvusios atidarius pasukimo įrankį." -msgid "Rotate (absolute)" -msgstr "Pasukti (absoliučiai)" - msgid "Reset current rotation to real zeros." msgstr "Atstatyti dabartinį sukimąsi į tikrąsias nulines vertes." -msgid "Part coordinates" -msgstr "Detalės koordinatės" +msgctxt "Noun" +msgid "Scale" +msgstr "Mastelis" #. TRN - Input label. Be short as possible msgid "Size" msgstr "Dydis" msgid "Uniform scale" -msgstr "vienoda skalė" +msgstr "Vienodas mastelis" msgid "Planar" -msgstr "Planarinis" +msgstr "Plokštuminis" msgid "Dovetail" -msgstr "Šakinis sujungimas" +msgstr "Kregždės uodega" msgid "Auto" msgstr "Automatiškai" @@ -449,7 +448,7 @@ msgid "Dowel" msgstr "Kaištis" msgid "Snap" -msgstr "Snapelis" +msgstr "Fiksatorius" msgid "Prism" msgstr "Prizmė" @@ -482,13 +481,13 @@ msgid "Style" msgstr "Stilius" msgid "Shape" -msgstr "Figūra" +msgstr "Forma" #. TRN - Input label. Be short as possible #. Size in emboss direction #. TRN - Input label. Be short as possible msgid "Depth" -msgstr "Gyliai" +msgstr "Gylis" #. TRN - Input label. Be short as possible #. Angle between Y axis and text line direction. @@ -518,20 +517,14 @@ msgid "Multiple" msgstr "Keli" msgid "Count" -msgstr "" +msgstr "Kiekis" msgid "Gap" -msgstr "" +msgstr "Tarpas" msgid "Spacing" msgstr "Tarpai" -msgid "Part" -msgstr "Dalis" - -msgid "Object" -msgstr "Objektas" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -558,13 +551,13 @@ msgid "Change cut mode" msgstr "Keisti pjūvio režimą" msgid "Tolerance" -msgstr "Paklaidos" +msgstr "Tolerancija" msgid "Drag" msgstr "Vilkti" msgid "Move cut line" -msgstr "" +msgstr "Perkelti pjovimo liniją" msgid "Draw cut line" msgstr "Brėžti pjūvio liniją" @@ -579,16 +572,16 @@ msgid "Move connector" msgstr "Perkelti jungtį" msgid "Add connector to selection" -msgstr "Įtraukti jungtį į pasirinktą" +msgstr "Pridėti jungtį prie parinkties" msgid "Remove connector from selection" -msgstr "Pašalinti jungtį iš pasirinkto" +msgstr "Pašalinti jungtį iš parinkties" msgid "Select all connectors" msgstr "Pasirinkti visas jungtis" msgid "Cut" -msgstr "Pjauti" +msgstr "Iškirpti" msgid "Rotate cut plane" msgstr "Sukti pjovimo plokštumą" @@ -603,7 +596,7 @@ msgid "Bulge proportion related to radius" msgstr "Iškilimo proporcija spindulio atžvilgiu" msgid "Space" -msgstr "Tarpas" +msgstr "Intervalas" msgid "Space proportion related to radius" msgstr "Tarpo proporcija spindulio atžvilgiu" @@ -640,7 +633,7 @@ msgid "Lower part" msgstr "Apatinė dalis" msgid "Keep" -msgstr "Laikyti" +msgstr "Palikti" msgid "Flip" msgstr "Apversti" @@ -649,7 +642,7 @@ msgid "After cut" msgstr "Po pjovimo" msgid "Cut to parts" -msgstr "Supjaustyti į dalis" +msgstr "Supjaustyti į detales" msgid "Reset cutting plane and remove connectors" msgstr "Atstatyti pjovimo plokštumą ir pašalinti jungtis" @@ -684,7 +677,7 @@ msgid "Select at least one object to keep after cutting." msgstr "Pasirinkite bent vieną objektą, kurį norite išlaikyti po pjūvio." msgid "Cut plane is placed out of object" -msgstr "Pjovimo plokštuma nesiekia objekto" +msgstr "Pjovimo plokštuma yra už objekto ribų" msgid "Cut plane with groove is invalid" msgstr "Neteisinga pjovimo plokštuma su grioveliu" @@ -693,11 +686,10 @@ msgid "Connector" msgstr "Jungtis" msgid "Cut by Plane" -msgstr "Iškirpti su plokštuma" +msgstr "Pjovimas plokštuma" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" -msgstr "netinkami kraštai atsirado dėl pjovimo įrankio. Ar norite sutvarkyti dabar?" +msgstr "" msgid "Repairing model object" msgstr "Taisomas modelio objektas" @@ -709,22 +701,22 @@ msgid "Delete connector" msgstr "Ištrinti jungtį" msgid "Entering Cut gizmo" -msgstr "" +msgstr "Įjungiamas pjovimo manipuliatorius" msgid "Leaving Cut gizmo" -msgstr "" +msgstr "Išjungiamas pjovimo manipuliatorius" msgid "Cut gizmo editing" -msgstr "" +msgstr "Pjovimo manipuliatoriaus redagavimas" msgid "Mesh name" -msgstr "Figūros pavadinimas" +msgstr "Poligoninio tinklo pavadinimas" msgid "Detail level" msgstr "Detalių lygis" msgid "Decimate ratio" -msgstr "Dešimtainis santykis" +msgstr "Retinimo koeficientas" #, boost-format msgid "Processing model '%1%' with more than 1M triangles could be slow. It is highly recommended to simplify the model." @@ -743,7 +735,7 @@ msgid "Error" msgstr "Klaida" msgid "Extra high" -msgstr "Papildomas aukštis" +msgstr "Labai aukštas" msgid "High" msgstr "Aukštas" @@ -755,18 +747,17 @@ msgid "Low" msgstr "Žemas" msgid "Extra low" -msgstr "Itin žemas" +msgstr "Labai žemas" #, c-format, boost-format msgid "%d triangles" msgstr "%d trikampiai" msgid "Show wireframe" -msgstr "Rodyti vielinį rėmą" +msgstr "Rodyti karkasinį vaizdą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to apply when processing preview" -msgstr "Negalima taikyti, kai atliekama proceso peržiūra." +msgstr "" msgid "Operation already cancelling. Please wait a few seconds." msgstr "Operacija jau atšaukiama. Palaukite kelias sekundes." @@ -789,9 +780,8 @@ msgstr "Siūlių piešimas" msgid "Remove selection" msgstr "Pašalinti pasirinkimą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Entering seam painting" -msgstr "Įjungiamas siūlių piešimas" +msgstr "" msgid "Leaving Seam painting" msgstr "Išjungiamas siūlių piešimas" @@ -808,16 +798,13 @@ msgid "Thickness" msgstr "Storis" msgid "Text Gap" -msgstr "Teksto plyšiai" +msgstr "Tarpas tarp simbolių" msgid "Angle" msgstr "Kampas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Embedded depth" msgstr "" -"Įspaudimo\n" -"gylis" msgid "Input text" msgstr "Įveskite tekstą" @@ -838,7 +825,7 @@ msgid "Rotate text" msgstr "Sukti tekstą" msgid "Text shape" -msgstr "Formuoti tekstą" +msgstr "Teksto forma" #. TRN - Title in Undo/Redo stack after rotate with text around emboss axe msgid "Text rotate" @@ -855,19 +842,19 @@ msgid "Embossed text" msgstr "Iškilus tekstas" msgid "Enter emboss gizmo" -msgstr "Įjungti iškilimo įrankį" +msgstr "Įjungti teksto (emboss) manipuliatorių" msgid "Leave emboss gizmo" -msgstr "Palikti reljefinio rašto įrankį" +msgstr "Išjungti teksto (emboss) manipuliatorių" msgid "Embossing actions" -msgstr "Reljefiniai veiksmai" +msgstr "Teksto (emboss) veiksmai" msgid "Position on surface" -msgstr "" +msgstr "Padėtis ant paviršiaus" msgid "Emboss" -msgstr "Iškelti" +msgstr "Tekstas (Emboss)" msgid "NORMAL" msgstr "ĮPRASTAS" @@ -879,7 +866,7 @@ msgid "ITALIC" msgstr "KURSYVAS" msgid "SWISS" -msgstr "KLASIKINIS" +msgstr "SWISS" msgid "MODERN" msgstr "MODERNUS" @@ -891,10 +878,10 @@ msgid "Default font" msgstr "Numatytasis šriftas" msgid "Advanced" -msgstr "Plačiau" +msgstr "Išplėstiniai" msgid "Reset all options except the text and operation" -msgstr "" +msgstr "Atstatyti visus parametrus, išskyrus tekstą ir operaciją" msgid "The text cannot be written using the selected font. Please try choosing a different font." msgstr "Pasirinktu šriftu negalima rašyti teksto. Pasirinkite kitą šriftą." @@ -903,7 +890,7 @@ msgid "Embossed text cannot contain only white spaces." msgstr "Reljefinis tekstas negali būti sudarytas vien iš tarpų." msgid "Text contains character glyph (represented by '?') unknown by font." -msgstr "Texte yra simbolių (žymimi '?' ), kurių šriftas neatpažįsta." +msgstr "Tekste yra simbolių (žymimi „?“), kurių šriftas neatpažįsta." msgid "Text input doesn't show font skew." msgstr "Teksto įvestis nerodo šrifto pasvirimo." @@ -928,7 +915,7 @@ msgstr "Grąžinti šriftą į pradinę būseną." #, boost-format msgid "Font \"%1%\" can't be selected." -msgstr "Nepavyksta pasirinkti \"%1%\" šrifto." +msgstr "Nepavyksta pasirinkti šrifto „%1%“." msgid "Operation" msgstr "Operacija" @@ -936,7 +923,7 @@ msgstr "Operacija" #. TRN EmbossOperation #. ORCA msgid "Join" -msgstr "Sulieti" +msgstr "Sujungti" msgid "Click to change text into object part." msgstr "Spustelėkite, kad tekstas taptų objekto dalimi." @@ -1015,27 +1002,27 @@ msgstr "Negalima pašalinti paskutinio stiliaus." #, boost-format msgid "Are you sure you want to permanently remove the \"%1%\" style?" -msgstr "Ar tikrai norite visiškai pašalinti \"%1%\" stilių?" +msgstr "Ar tikrai norite visam laikui pašalinti stilių „%1%“?" #, boost-format msgid "Delete \"%1%\" style." -msgstr "Ištrinti \"%1%\" stilių." +msgstr "Ištrinti stilių „%1%“." #, boost-format msgid "Can't delete \"%1%\". It is last style." -msgstr "Negalima ištrinti \"%1%\" stiliaus, nes jis yra paskutinis." +msgstr "Negalima ištrinti „%1%“. Tai yra paskutinis stilius." #, boost-format msgid "Can't delete temporary style \"%1%\"." -msgstr "Negalima pašalinti laikino \"%1%\" stiliaus." +msgstr "Negalima ištrinti laikino stiliaus „%1%“." #, boost-format msgid "Modified style \"%1%\"" -msgstr "Pakeistas \"%1%\" stilius" +msgstr "Modifikuotas stilius „%1%“" #, boost-format msgid "Current style is \"%1%\"" -msgstr "Dabartinis stilius yra \"%1%\"" +msgstr "Dabartinis stilius yra „%1%“" #, boost-format msgid "" @@ -1043,7 +1030,7 @@ msgid "" "\n" "Would you like to continue anyway?" msgstr "" -"Stilius bus pakeistas į \"%1%“. Dėl to bus panaikinti visi dabartinio stiliaus pakeitimai.\n" +"Keičiant stilių į „%1%“, visi dabartinio stiliaus modifikavimai bus atmesti.\n" "\n" "Ar vis tiek norite tęsti?" @@ -1052,7 +1039,7 @@ msgstr "Netinkamas stilius." #, boost-format msgid "Style \"%1%\" can't be used and will be removed from a list." -msgstr "\"%1%\" stilius negali būti naudojimas, todėl bus pašalintas iš sąrašo." +msgstr "Stiliaus „%1%“ naudoti negalima, todėl jis bus pašalintas iš sąrašo." msgid "Unset italic" msgstr "Išjungti kursyvą" @@ -1083,7 +1070,7 @@ msgid "Revert using of model surface." msgstr "Atstatyti modelio paviršiaus naudojimą." msgid "Revert Transformation per glyph." -msgstr "Atstatyti simbolio pakeitimus." +msgstr "Atstatyti kiekvieno simbolio transformaciją." msgid "Set global orientation for whole text." msgstr "Nustatyti viso teksto bendrą orientaciją." @@ -1093,27 +1080,27 @@ msgstr "Nustatyti kiekvieno simbolio atskirą poziciją ir orientaciją." msgctxt "Alignment" msgid "Left" -msgstr "Kairė" +msgstr "Kairėje" msgctxt "Alignment" msgid "Center" -msgstr "Centras" +msgstr "Centre" msgctxt "Alignment" msgid "Right" -msgstr "Dešinė" +msgstr "Dešinėje" msgctxt "Alignment" msgid "Top" -msgstr "Viršutinis" +msgstr "Viršuje" msgctxt "Alignment" msgid "Middle" -msgstr "Vidurys" +msgstr "Viduryje" msgctxt "Alignment" msgid "Bottom" -msgstr "Apatinis" +msgstr "Apačioje" msgid "Revert alignment." msgstr "Atstatyti lygiavimą." @@ -1147,7 +1134,7 @@ msgid "Italic strength ratio" msgstr "Kursyvo pasvirimo kampas" msgid "Undo translation" -msgstr "Panaikinti vertimą" +msgstr "Panaikinti slinkimą" msgid "Distance of the center of the text to the model surface." msgstr "Atstumas nuo teksto centro iki modelio paviršiaus." @@ -1168,7 +1155,7 @@ msgid "Select from True Type Collection." msgstr "Pasirinkti iš TrueType rinkinio." msgid "Set text to face camera" -msgstr "Pasukti tekstą taip, kad jis žiūrėtų į kamerą" +msgstr "Nukreipti tekstą į kamerą" msgid "Orient the text towards the camera." msgstr "Pasukti tekstą į kameros pusę." @@ -1179,7 +1166,7 @@ msgstr "Šrifto „%1%“ negalima naudoti. Pasirinkite kitą." #, 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 "Negalima įkelti lygiai tokio paties šrifto (\"%1%\"). Programa pasirinko panašų šriftą(\"%2%\"). Turite nurodyti šriftą, kad būtų galima redaguoti tekstą." +msgstr "Nepavyko įkelti lygiai tokio paties šrifto („%1%“). Programa parinko panašų šriftą („%2%“). Norėdami redaguoti tekstą, turite nurodyti šriftą." msgid "No symbol" msgstr "Nėra simbolio" @@ -1222,7 +1209,7 @@ msgstr "Tarpas tarp eilučių" #. TRN - Input label. Be short as possible msgid "Boldness" -msgstr "Pastorintas" +msgstr "Storis" #. TRN - Input label. Be short as possible #. Like Font italic @@ -1240,7 +1227,7 @@ msgstr "Nuo paviršiaus" #. TRN - Input label. Be short as possible #. Keep vector from bottom to top of text aligned with printer Y axis msgid "Keep up" -msgstr "Laikyti viršun" +msgstr "Išlaikyti vertikalumą" #. TRN - Input label. Be short as possible. #. Some Font file contain multiple fonts inside and @@ -1254,13 +1241,13 @@ msgstr "SVG sukimas" #. TRN - Title in Undo/Redo stack after move with SVG along emboss axe - From surface msgid "SVG move" -msgstr "SVG perkėlimas" +msgstr "SVG slinkimas" msgid "Enter SVG gizmo" -msgstr "Pasirinkti SVG įrankį" +msgstr "Įjungti SVG manipuliatorių" msgid "Leave SVG gizmo" -msgstr "Išeiti iš SVG įrankio" +msgstr "Išjungti SVG manipuliatorių" msgid "SVG actions" msgstr "SVG veiksmai" @@ -1270,7 +1257,7 @@ msgstr "SVG" #, boost-format msgid "Opacity (%1%)" -msgstr "Permatomumas (%1%)" +msgstr "Neskaidrumas (%1%)" #, boost-format msgid "Color gradient (%1%)" @@ -1283,39 +1270,39 @@ msgid "Linear gradient" msgstr "Linijinis gradientas" msgid "Radial gradient" -msgstr "Centrinis gradientas" +msgstr "Radialinis gradientas" msgid "Open filled path" -msgstr "Atidaryti uždarą kontūrą" +msgstr "Atviras užpildytas kontūras" msgid "Undefined stroke type" msgstr "Nenustatytas brūkšnio stilius" msgid "Path can't be healed from self-intersection and multiple points." -msgstr "Kelias negali būti sutvarkytas dėl savaiminio susikirtimo ir kelių taškų." +msgstr "Kontūro (kelio) nepavyko sutvarkyti dėl savaiminio susikirtimo ar besidubliuojančių taškų." msgid "Final shape contains self-intersection or multiple points with same coordinate." -msgstr "Galutinėje formoje yra savaiminė sankirta arba keli taškai su tomis pačiomis koordinatėmis." +msgstr "Galutinėje formoje yra savaiminių susikirtimų arba keli taškai su ta pačia koordinate." #, boost-format msgid "Shape is marked as invisible (%1%)." -msgstr "Figūra pažymėta kaip nematoma (%1%)." +msgstr "Forma pažymėta kaip nematoma (%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 "Figūros %1% užpildas turi nepalaikomą %2%." +msgstr "Formos (%1%) užpilde yra nepalaikomų elementų: %2%." #, boost-format msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)." -msgstr "Figūros (%1%) brūkšnys per plonas (minimalus plotis - %2% mm)." +msgstr "Formos (%1%) kontūras yra per plonas (minimalus plotis – %2% mm)." #, boost-format msgid "Stroke of shape (%1%) contains unsupported: %2%." -msgstr "Figūros (%1%) brūkšnys turi nepalaikomą %2%." +msgstr "Formos (%1%) kontūre yra nepalaikomų elementų: %2%." msgid "Face the camera" -msgstr "Pasukti į kamerą" +msgstr "Nukreipti į kamerą" #. TRN - Preview of filename after clear local filepath. msgid "Unknown filename" @@ -1323,7 +1310,7 @@ msgstr "Nežinomas failo pavadinimas" #, boost-format msgid "SVG file path is \"%1%\"" -msgstr "SVG failo kelias yra \"%1%\"" +msgstr "SVG failo kelias yra „%1%“" msgid "Reload SVG file from disk." msgstr "Pakartotinai įkelti SVG failą iš disko." @@ -1331,9 +1318,8 @@ msgstr "Pakartotinai įkelti SVG failą iš disko." msgid "Change file" msgstr "Pakeisti failą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Change to another SVG file." -msgstr "Pakeisti į kitą .svg failą" +msgstr "Pakeisti į kitą SVG failą." msgid "Forget the file path" msgstr "Pamiršti failo kelią" @@ -1347,11 +1333,11 @@ msgstr "" #. TRN: An menu option to convert the SVG into an unmodifiable model part. msgid "Bake" -msgstr "Perkelti detales" +msgstr "Sujungti negrįžtamai" #. TRN: Tooltip for the menu item. msgid "Bake into model as uneditable part" -msgstr "Perkelti į modelį kaip netaisomas dalis" +msgstr "Įrašyti į modelį kaip neredaguojamą dalį" msgid "Save as" msgstr "Išsaugoti kaip" @@ -1360,10 +1346,10 @@ msgid "Save SVG file" msgstr "Išsaugoti SVG failą" msgid "Save as SVG file." -msgstr "Išsaugoti kaip \".svg\" failą" +msgstr "Išsaugoti kaip SVG failą." msgid "Size in emboss direction." -msgstr "Išspaudimo aukštis." +msgstr "Dydis išspaudimo kryptimi." #. TRN: The placeholder contains a number. #, boost-format @@ -1377,10 +1363,10 @@ msgid "Height of SVG." msgstr "SVG aukštis." msgid "Lock/unlock the aspect ratio of the SVG." -msgstr "Įjungti / Išjungti SVG proporcijų laikymąsi." +msgstr "Rakinti / atrakinti SVG proporcijas." msgid "Reset scale" -msgstr "Iš naujo nustatyti skalę" +msgstr "Atstatyti mastelį" msgid "Distance of the center of the SVG to the model surface." msgstr "Atstumas nuo SVG centro iki modelio paviršiaus." @@ -1389,7 +1375,7 @@ msgid "Reset distance" msgstr "Atstatyti atstumą į numatytąjį" msgid "Lock/unlock rotation angle when dragging above the surface." -msgstr "Įjungti / išjungti sukimosi kampą tempiant paviršiumi." +msgstr "Rakinti / atrakinti sukimosi kampą velkant paviršiumi." msgid "Mirror vertically" msgstr "Atspindėti vertikaliai" @@ -1403,7 +1389,7 @@ msgstr "Keisti SVG tipą" #. TRN - Input label. Be short as possible msgid "Mirror" -msgstr "Atspindys" +msgstr "Atspindėti" msgid "Choose SVG file for emboss:" msgstr "Pasirinkti SVG failą išspaudimui:" @@ -1414,7 +1400,7 @@ msgstr "Failas neegzistuoja (%1%)." #, boost-format msgid "Filename has to end with \".svg\" but you selected %1%" -msgstr "Failo pavadinimas turi turėti plėtinį \".svg\", o jūs pasirinkote %1%" +msgstr "Failo pavadinimas turi baigtis „.svg“, bet jūs pasirinkote %1%" #, boost-format msgid "Nano SVG parser can't load from file (%1%)." @@ -1425,7 +1411,7 @@ msgid "SVG file does NOT contain a single path to be embossed (%1%)." msgstr "SVG failas NETURI nė vieno kontūro, tinkamo išspaudimui (%1%)." msgid "No feature" -msgstr "Nėra funkcijos" +msgstr "Nėra geometrinio elemento" msgid "Vertex" msgstr "Viršūnė" @@ -1464,23 +1450,23 @@ msgid "Restart selection" msgstr "Pasirinkti iš naujo" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Cancel a feature until exit" -msgstr "Atšaukti funkciją, kol išeisite" +msgstr "Atmesti elementą iki išėjimo" msgid "Measure" msgstr "Matuoti" msgid "Please confirm explosion ratio = 1, and please select at least one object." -msgstr "Patvirtinkite išplėtimo koeficientą = 1 ir pasirinkite bent vieną objektą." +msgstr "Įsitikinkite, kad išskaidymo (explosion) koeficientas = 1, ir pasirinkite bent vieną objektą." msgid "Edit to scale" msgstr "Taisyti masteliui" msgctxt "Verb" msgid "Scale all" -msgstr "Bendras mastelis" +msgstr "Keisti visų mastelį" msgid "None" msgstr "Nieko" @@ -1495,7 +1481,7 @@ msgid "Selection" msgstr "Pasirinkimas" msgid " (Moving)" -msgstr " (Perkėlimas)" +msgstr " (Judantis)" msgid "" "Select 2 faces on objects and \n" @@ -1515,7 +1501,7 @@ msgid "Face" msgstr "Paviršius" msgid " (Fixed)" -msgstr " (Pataisyta)" +msgstr " (Fiksuotas)" msgid "Point" msgstr "Taškas" @@ -1524,8 +1510,8 @@ msgid "" "Feature 1 has been reset, \n" "feature 2 has been feature 1" msgstr "" -"1 funkcija buvo iš naujo nustatyta, \n" -"2 funkcija buvo 1 funkcija" +"1 elementas buvo nustatytas iš naujo, \n" +"2 elementas tapo 1 elementu" msgid "Copy to clipboard" msgstr "Nukopijuoti į iškarpinę" @@ -1564,49 +1550,52 @@ msgid "Flip by Face 2" msgstr "Apversti pagal paviršių 2" msgid "Entering Measure gizmo" -msgstr "" +msgstr "Įjungiamas matavimo manipuliatorius" msgid "Leaving Measure gizmo" -msgstr "" +msgstr "Išjungiamas matavimo manipuliatorius" msgid "Assemble" msgstr "Surinkti" msgid "Please confirm explosion ratio = 1 and select at least two volumes." -msgstr "" +msgstr "Įsitikinkite, kad išskaidymo koeficientas = 1, ir pasirinkite bent du tūrius." msgid "Please select at least two volumes." -msgstr "" +msgstr "Pasirinkite bent du tūrius." msgid "(Moving)" -msgstr "" +msgstr "(Judantis)" msgid "Point and point assembly" -msgstr "" +msgstr "Sujungimas pagal taškus" msgid "Warning: please select two different meshes." -msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." +msgstr "Įspėjimas: pasirinkite du skirtingus poligoninius tinklus (meshes)." msgid "Warning: please select Plane's feature." -msgstr "Įspėjimas: pasirinkite Plokštumos funkciją." +msgstr "Įspėjimas: pasirinkite plokštumos elementą." msgid "Warning: please select Point's or Circle's feature." -msgstr "Įspėjimas: pasirinkite Taško arba Apskritimo funkciją." +msgstr "Įspėjimas: pasirinkite taško arba apskritimo elementą." msgid "" "It is recommended to assemble objects first,\n" "because they are restricted to the bed \n" "and only parts can be lifted." msgstr "" +"Rekomenduojama pirmiausia surinkti objektus, \n" +"nes jie yra pritvirtinti prie platformos \n" +"ir pakelti galima tik atskiras dalis." msgid "Face and face assembly" -msgstr "" +msgstr "Sujungimas pagal paviršius" msgid "Entering Assembly gizmo" -msgstr "" +msgstr "Įjungiamas surinkimo manipuliatorius" msgid "Leaving Assembly gizmo" -msgstr "" +msgstr "Išjungiamas surinkimo manipuliatorius" msgid "Ctrl+" msgstr "Ctrl+" @@ -1615,9 +1604,8 @@ msgid "Alt+" msgstr "Alt+" msgid "Notice" -msgstr "Įspėjimas" +msgstr "Pastaba" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Undefined" msgstr "Neapibrėžtas" @@ -1632,98 +1620,115 @@ msgid "Some values have been replaced. Please check them:" msgstr "Kai kurios vertės buvo pakeistos. Prašome jas patikrinti:" msgid "Process" -msgstr "Vykdyti" +msgstr "Procesas" msgid "Filament" msgstr "Gija" msgid "Machine" -msgstr "Įrenginys" +msgstr "Spausdintuvas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The configuration package was loaded, but some values were not recognized." -msgstr "Konfigūracijos paketas buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The configuration file “%1%” was loaded, but some values were not recognized." -msgstr "Konfigūracijos failas „%1%“ buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." +msgstr "" msgid "Loading configuration" msgstr "Įkeliama konfigūracija" msgid "STEP files" -msgstr "" +msgstr "STEP failai" msgid "STL files" -msgstr "" +msgstr "STL failai" msgid "OBJ files" -msgstr "" +msgstr "OBJ failai" msgid "AMF files" -msgstr "" +msgstr "AMF failai" msgid "3MF files" -msgstr "" +msgstr "3MF failai" msgid "G-code 3MF files" -msgstr "" +msgstr "G-code 3MF failai" msgid "G-code files" -msgstr "" +msgstr "G-code failai" msgid "Supported files" -msgstr "" +msgstr "Palaikomi failai" msgid "ZIP files" -msgstr "" +msgstr "ZIP failai" msgid "Project files" -msgstr "" +msgstr "Projekto failai" msgid "Known files" -msgstr "" +msgstr "Žinomi failai" msgid "INI files" -msgstr "" +msgstr "INI failai" msgid "SVG files" -msgstr "" +msgstr "SVG failai" msgid "Texture" msgstr "Tekstūra" msgid "Masked SLA files" -msgstr "" +msgstr "Maskuoti SLA failai" msgid "Draco files" -msgstr "" +msgstr "Draco failai" 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 nenumatytai užsidarys, nes pritrūko atminties. Tai gali būti programinės įrangos klaida. Jei galite, praneškite apie šią problemą mūsų komandai." +msgstr "„OrcaSlicer“ darbas bus nutrauktas, nes pritrūko atminties. Tai gali būti programos klaida. Būtume dėkingi, jei praneštumėte apie šią problemą mūsų komandai." msgid "Fatal error" msgstr "Lemtinga klaida" msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened." -msgstr "OrcaSlicer užsidarys dėl vertimo klaidos. Būtume dėkingi, jei praneštumėte apie konkrečią situaciją, kai kilo ši problema." +msgstr "„OrcaSlicer“ darbas bus nutrauktas dėl lokalizacijos (vertimo) klaidos. Būtume dėkingi, jei praneštumėte, kokiomis aplinkybėmis ši problema iškilo." msgid "Critical error" msgstr "Kritinė klaida" #, boost-format msgid "OrcaSlicer got an unhandled exception: %1%" -msgstr "OrcaSlicer susidūrė su neapdorota klaida: %1%" +msgstr "„OrcaSlicer“ gavo neapdorotą išimtį: %1%" msgid "Untitled" msgstr "Be pavadinimo" -msgid "Reloading network plug-in..." +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." msgstr "" +"Nuo 2.4.0 versijos OrcaSlicer sinchronizuoja naudotojo profilius per Orca Cloud, o ne Bambu Cloud.\n" +"\n" +"Norėdami perkelti esamus profilius, prisijunkite prie Orca Cloud ir jie bus perkelti automatiškai. Norėdami sužinoti daugiau apie tai, kaip OrcaSlicer saugo ir sinchronizuoja jūsų profilius, arba norėdami perkelti profilius rankiniu būdu, apsilankykite mūsų wiki.\n" +"\n" +"Jei profiliams sinchronizuoti nenaudojote Bambu Cloud, šis pakeitimas jums neaktualus ir šį pranešimą galite ignoruoti." + +msgid "Profile syncing change" +msgstr "Profilio sinchronizavimo pakeitimas" + +msgid "Learn more" +msgstr "Sužinokite daugiau" + +msgid "Reloading network plug-in..." +msgstr "Tinklo papildinys įkeliamas iš naujo..." msgid "Downloading Network Plug-in" -msgstr "" +msgstr "Atsisiunčiamas tinklo papildinys" msgid "Downloading Bambu Network Plug-in" msgstr "Siunčiamas Bambu tinklo papildinys" @@ -1746,7 +1751,16 @@ msgstr "" "Spustelėkite „Taip“, kad ją įdiegtumėte dabar." msgid "WebView2 Runtime" -msgstr "\"WebView2\" paleidimo terpė" +msgstr "„WebView2“ paleidimo terpė" + +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"Nepavyko įdiegti „Microsoft WebView2 Runtime“.\n" +"Kol tai nebus įdiegta, kai kurios funkcijos, įskaitant diegimo vedlį, gali būti tuščios.\n" +"Prašome įdiegti rankiniu būdu iš https://developer.microsoft.com/microsoft-edge/webview2/ ir iš naujo paleisti „Orca Slicer“." #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" @@ -1767,42 +1781,42 @@ msgstr "Prisiminti mano pasirinkimą" msgid "Click to download new version in default browser: %s" msgstr "Spustelėkite, kad atsisiųstumėte naują versiją numatytoje naršyklėje: %s" -# TODO: Review, changed by lang refactor. PR 14254 msgid "OrcaSlicer needs an update" -msgstr "OrcaSlicer reikia atnaujinti" +msgstr "„OrcaSlicer“ programą reikia atnaujinti" msgid "This is the newest version." msgstr "Čia yra naujausia versija." msgid "Info" -msgstr "" +msgstr "Informacija" msgid "Loading printer & filament profiles" -msgstr "" +msgstr "Įkeliami spausdintuvo ir gijų profiliai" msgid "Creating main window" -msgstr "" +msgstr "Kuriamas pagrindinis langas" msgid "Loading current preset" -msgstr "" +msgstr "Įkeliamas esamas profilis" msgid "Showing main window" -msgstr "" +msgstr "Rodomas pagrindinis langas" 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 konfigūracijos failas gali būti sugadintas ir jo negalima apdoroti.\n" -"OrcaSlicer bandė iš naujo sukurti konfigūracijos failą.\n" -"Atkreipkite dėmesį, kad programos nustatymai bus prarasti, tačiau spausdintuvo profiliai neturėtų būti paveikti." +"„OrcaSlicer“ konfigūracijos failas gali būti sugadintas, jo nepavyksta apdoroti.\n" +"„OrcaSlicer“ bandė sukurti konfigūracijos failą iš naujo.\n" +"Atkreipkite dėmesį, kad programos nustatymai bus prarasti, \n" +"tačiau tai neturės įtakos spausdintuvo profiliams." msgid "Rebuild" msgstr "Perkurti" msgid "Loading current presets" -msgstr "Įkeliami dabartiniai nustatymai" +msgstr "Įkeliami esami profiliai" msgid "Loading a mode view" msgstr "Įkeliamas režimo rodinys" @@ -1823,29 +1837,28 @@ msgid "Choose one file (GCODE/3MF):" msgstr "Pasirinkite vieną failą (GCODE/3MF):" msgid "Ext" -msgstr "" +msgstr "Ext" msgid "Some presets are modified." -msgstr "Kai kurie nustatymai pakeisti." +msgstr "Kai kurie profiliai yra modifikuoti." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project, discard, or save changes as new presets." -msgstr "Pakeistus išankstinius nustatymus galite išsaugoti naujame projekte, išmesti arba išsaugoti pakeitimus kaip naujus išankstinius nustatymus." +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 "" +msgstr "Šiuo metu esate slaptame („Stealth“) režime. Norėdami prisijungti prie debesies, pirmiausia turite išjungti „Stealth“ režimą." msgid "Stealth Mode" -msgstr "" +msgstr "Slaptasis (Stealth) režimas" msgid "Quit Stealth Mode" -msgstr "" +msgstr "Išjungti „Stealth“ režimą" msgid "new or open project file is not allowed during the slicing process!" -msgstr "negalima kurti ar atidaryti naujo projekto failo, kai vyksta sluoksniavimo procesas!" +msgstr "Kurti ar atidaryti naujo projekto failo sluoksniavimo (slicing) metu negalima!" msgid "Open Project" msgstr "Atidaryti projektą" @@ -1853,23 +1866,30 @@ msgstr "Atidaryti projektą" 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 "OrcaSlicer versija yra pasenusi. Norint naudotis, reikia ją atnaujinti į naujausią versiją." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1877,24 +1897,32 @@ msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" "Do you want to continue?" msgstr "" +"Naudojant „Force Push“ („Priverstinai įkelti“) funkciją, debesies kopija bus perrašyta jūsų vietiniais profilių pakeitimais.\n" +"Ar norite tęsti?" + +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" msgid "Resolve cloud sync conflict" -msgstr "" +msgstr "Išspręsti debesų sinchronizavimo konfliktą" msgid "Retrieving printer information, please try again later." -msgstr "" +msgstr "Gaunama spausdintuvo informacija, bandykite vėliau." msgid "Please try updating OrcaSlicer and then try again." -msgstr "" +msgstr "Atnaujinkite „OrcaSlicer“ programą ir bandykite dar kartą." msgid "The certificate has expired. Please check the time settings or update OrcaSlicer and try again." -msgstr "" +msgstr "Sertifikato galiojimas baigėsi. Patikrinkite laiko nustatymus arba atnaujinkite „OrcaSlicer“ ir bandykite dar kartą." msgid "The certificate is no longer valid and the printing functions are unavailable." -msgstr "" +msgstr "Sertifikatas nebegalioja, todėl spausdinimo funkcijos neprieinamos." msgid "Internal error. Please try upgrading the firmware and OrcaSlicer version. If the issue persists, contact support." -msgstr "" +msgstr "Vidinė klaida. Pabandykite atnaujinti aparatinę programinę įrangą (firmware) ir „OrcaSlicer“ versiją. Problemai išlikus, susisiekite su palaikymo komanda." msgid "" "To use OrcaSlicer with Bambu Lab printers, you need to enable LAN mode and Developer mode on your printer.\n" @@ -1905,23 +1933,30 @@ msgid "" "\n" "Developer mode allows the printer to work exclusively through local network access, enabling full functionality with OrcaSlicer." msgstr "" +"Norėdami naudoti „OrcaSlicer“ su „Bambu Lab“ spausdintuvais, spausdintuve turite įjungti LAN režimą ir kūrėjo (Developer) režimą.\n" +"\n" +"Eikite į spausdintuvo nustatymus ir:\n" +"1. Įjunkite LAN režimą\n" +"2. Įjunkite kūrėjo (Developer) režimą\n" +"\n" +"Kūrėjo režimas leidžia spausdintuvui veikti išskirtinai per vietinį tinklą, užtikrinant visišką funkcionalumą su „OrcaSlicer“." msgid "Network Plug-in Restriction" -msgstr "" +msgstr "Tinklo papildinio ribojimas" msgid "Privacy Policy Update" msgstr "Privatumo politikos atnaujinimas" #, c-format, boost-format msgid "your Orca Cloud profile (user ID: \"%s\")" -msgstr "" +msgstr "jūsų „Orca Cloud“ profilis (vartotojo ID: „%s“)" msgid "your default profile" -msgstr "" +msgstr "jūsų numatytasis profilis" #, c-format, boost-format msgid "a user profile (folder: \"%s\")" -msgstr "" +msgstr "vartotojo profilis (aplankas: „%s“)" #, c-format, boost-format msgid "" @@ -1929,50 +1964,56 @@ 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 rasti esami naudotojo profiliai.\n" +"Ar norite juos perkelti į savo „OrcaCloud“ profilį? \n" +"Tai nukopijuos jūsų profilius, kad jie būtų prieinami jūsų naujoje paskyroje." msgid "Migrate User Presets" -msgstr "" +msgstr "Perkelti naudotojo profilius" #, c-format, boost-format msgid "" "Failed to migrate user presets:\n" "%s" msgstr "" +"Nepavyko perkelti naudotojo profilių:\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 "Pasiektas debesyje saugomų naudotojo nustatymų limitas. Naujai sukurti naudotojo nustatymai bus prieinami tik šiame įrenginyje." +msgstr "Pasiektas debesyje saugomų naudotojo profilių limitas. Naujai sukurti naudotojo profiliai bus prieinami tik šiame įrenginyje." msgid "Sync user presets" -msgstr "Sinchronizuoti naudotojo nustatymus" +msgstr "Sinchronizuoti naudotojo profilius" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" -msgstr "" +msgstr "%s atnaujinta iš %s į %s" #, c-format, boost-format msgid "%s has been downloaded." -msgstr "" +msgstr "%s buvo atsisiųstas." #, c-format, boost-format msgid "Bundle %s is no longer available." -msgstr "" +msgstr "Rinkinys %s nebeprieinamas." #, c-format, boost-format msgid "Bundle %s access is unauthorized." -msgstr "" +msgstr "Prieiga prie rinkinio %s nesuteikta." msgid "Loading user preset" -msgstr "Įkeliami naudotojo nustatymai" +msgstr "Įkeliamas naudotojo profilis" #, c-format, boost-format msgid "%s has been removed." -msgstr "" +msgstr "%s buvo pašalintas." msgid "Switching application language" -msgstr "Perjungiama programoskalba" +msgstr "Perjungiama programos kalba" msgid "Select the language" msgstr "Pasirinkite kalbą" @@ -2017,12 +2058,11 @@ msgid "Rename" msgstr "Pervardyti" msgid "Orca Slicer GUI initialization failed" -msgstr "OrcaSlicer grafinės vartotojo sąsajos inicijavimas nepavyko" +msgstr "Nepavyko inicijuoti „OrcaSlicer“ grafinės naudotojo sąsajos" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Fatal error, exception: %1%" -msgstr "Fatališka klaida, užfiksuota išimtis: %1%" +msgstr "" msgid "Quality" msgstr "Kokybė" @@ -2031,13 +2071,13 @@ msgid "Shell" msgstr "Apvalkalas" msgid "Infill" -msgstr "Užpildymas" +msgstr "Užpildas" msgid "Support" msgstr "Atramos" msgid "Flush options" -msgstr "Gijos išleidimo nustatymai" +msgstr "Gijos išvalymo nustatymai" msgid "Speed" msgstr "Greitis" @@ -2045,24 +2085,20 @@ msgstr "Greitis" msgid "Strength" msgstr "Stiprumas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top solid layers" msgstr "Viršutiniai vientisi sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top minimum shell thickness" -msgstr "Mažiausias viršutinio apvalkalo storis" +msgstr "" msgid "Top Surface Density" msgstr "Viršutinio paviršiaus tankis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom solid layers" -msgstr "Apatiniai ištisiniai sluoksniai" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom minimum shell thickness" -msgstr "Mažiausias apatinio apvalkalo storis" +msgstr "" msgid "Bottom Surface Density" msgstr "Apatinio paviršiaus tankis" @@ -2070,16 +2106,14 @@ msgstr "Apatinio paviršiaus tankis" msgid "Ironing" msgstr "Lyginimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fuzzy skin" -msgstr "Grublėtas paviršius" +msgstr "" msgid "Extruders" -msgstr "Ekstruderiai" +msgstr "Ekstruderiai (stumtuvai)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Extrusion width" -msgstr "Išspaudimo plotis" +msgstr "" msgid "Wipe options" msgstr "Valymo parinktys" @@ -2087,25 +2121,20 @@ msgstr "Valymo parinktys" msgid "Bed adhesion" msgstr "Sukibimas su pagrindu" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Part" -msgstr "Pridėti dalį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Negative Part" -msgstr "Pridėti neigiamą elementą" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Modifier" msgstr "Pridėti modifikatorių" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Blocker" -msgstr "Pridėti atramų blokatorių" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Enforcer" -msgstr "Pridėti priverstines atramas" +msgstr "" msgid "Add text" msgstr "Pridėti tekstą" @@ -2117,7 +2146,7 @@ msgid "Add text modifier" msgstr "Pridėti teksto modifikatorių" msgid "Add SVG part" -msgstr "Pridėti SVG dalį" +msgstr "Pridėti SVG detalę" msgid "Add negative SVG" msgstr "Pridėti neigiamą SVG" @@ -2135,13 +2164,13 @@ msgid "Show" msgstr "Rodyti" msgid "Del" -msgstr "" +msgstr "Del" msgid "Delete the selected object" msgstr "Ištrinti pasirinktą objektą" msgid "Backspace" -msgstr "" +msgstr "Backspace" msgid "Load..." msgstr "Įkelti..." @@ -2153,7 +2182,7 @@ msgid "Cylinder" msgstr "Cilindras" msgid "Cone" -msgstr "Konusas" +msgstr "Kūgis" msgid "Disc" msgstr "Diskas" @@ -2165,10 +2194,13 @@ msgid "Orca Cube" msgstr "Orca kubas" msgid "OrcaSliced Combo" +msgstr "„OrcaSliced“ rinkinys" + +msgid "Orca Badge" msgstr "" msgid "Orca Tolerance Test" -msgstr "Orca tolerancijos testas" +msgstr "„Orca“ tarpų (tolerancijos) testas" msgid "3DBenchy" msgstr "3DBenchy" @@ -2199,22 +2231,19 @@ msgstr "" "Ne - Nekeisti šių nustatymų" msgid "Suggestion" -msgstr "" +msgstr "Rekomendacija" msgid "Text" -msgstr "Teskstas" +msgstr "Tesktas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height Range Modifier" -msgstr "Aukščio diapazono modifikatorius" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Settings" -msgstr "Pridėti nustatymus" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Change Type" -msgstr "Keisti tipą" +msgstr "" msgid "Negative Part" msgstr "Neigiama dalis" @@ -2226,15 +2255,13 @@ msgid "Support Enforcer" msgstr "Priverstinės atramos" msgid "Change part type" +msgstr "Pakeisti detalės tipą" + +msgid "Set as An Individual Object" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Set as An Individual Object" -msgstr "Nustatyti kaip atskirą objektą" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set as Individual Objects" -msgstr "Nustatyti kaip atskirus objektus" +msgstr "" msgid "Fill bed with copies" msgstr "Užpildyti pagrindą kopijomis" @@ -2246,14 +2273,13 @@ msgid "Printable" msgstr "Galima spausdinti" msgid "Auto Drop" -msgstr "" +msgstr "Automatinis nuleidimas" msgid "Automatically drops the selected object to the build plate." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fix Model" -msgstr "Sutaisyti objektą" +msgstr "" msgid "Export as one STL" msgstr "Eksportuoti kaip vieną STL" @@ -2262,28 +2288,28 @@ msgid "Export as STLs" msgstr "Eksportuoti kaip kelis STL" msgid "Export as one DRC" -msgstr "" +msgstr "Eksportuoti kaip vieną DRC" msgid "Export as DRCs" -msgstr "" +msgstr "Eksportuoti kaip DRC failus" msgid "Reload from disk" msgstr "Iš naujo įkelti iš disko" msgid "Reload the selected parts from disk" -msgstr "Iš naujo įkelti pasirinktas dalis iš disko" +msgstr "Iš naujo įkelti pasirinktas detales iš disko" msgid "Replace 3D file" -msgstr "" +msgstr "Pakeisti 3D failą" msgid "Replace the selected part with a new 3D file" -msgstr "" +msgstr "Pakeisti pasirinktą detalę nauju 3D failu" msgid "Replace all with 3D files" -msgstr "" +msgstr "Viską pakeisti 3D failais" msgid "Replace all selected parts with 3D files from folder" -msgstr "" +msgstr "Pakeisti visas pasirinktas detales 3D failais iš aplanko" msgid "Change filament" msgstr "Pakeisti giją" @@ -2292,7 +2318,7 @@ msgid "Set filament for selected items" msgstr "Nustatyti giją pasirinktiems elementams" msgid "Default" -msgstr "Numatytas" +msgstr "Numatytasis" #, c-format, boost-format msgid "Filament %d" @@ -2302,79 +2328,68 @@ msgid "current" msgstr "dabartinė" msgid "Scale to build volume" -msgstr "Mastelis pagal spausdinimo plotą" +msgstr "Keisti mastelį pagal spausdinimo tūrį" msgid "Scale an object to fit the build volume" -msgstr "Pritaikyti objekto dydį spausdintuvui" +msgstr "Keisti objekto mastelį, kad tilptų spausdinimo tūryje" msgid "Flush Options" -msgstr "Gijos išleidimo nustatymai" +msgstr "Gijos išvalymo nustatymai" msgid "Flush into objects' infill" -msgstr "Nuvalyti į objektų užpildą" +msgstr "Išvalyti į objektų užpildą" msgid "Flush into this object" -msgstr "Nuvalyti į šį objektą" +msgstr "Išvalyti į šį objektą" msgid "Flush into objects' support" -msgstr "Nuvalyti į objekto atramas" +msgstr "Išvalyti į objektų atramas" msgid "Edit in Parameter Table" msgstr "Taisyti Parametrų lentelėje" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Inches" -msgstr "Konvertuoti iš colių" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Inch" -msgstr "Grąžinti į colius" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Meters" -msgstr "Konvertuoti iš metrų" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Meter" -msgstr "Grąžinti į metrus" +msgstr "" msgid "Assemble the selected objects into an object with multiple parts" -msgstr "Sujungti pasirinktus objektus į daugiadalį objektą" +msgstr "Sujungti pasirinktus objektus į objektą iš kelių detalių" msgid "Assemble the selected objects into an object with single part" -msgstr "Sujungti pasirinktus objektus į vienadalį objektą" +msgstr "Sujungti pasirinktus objektus į objektą iš vienos detalės" msgid "Mesh boolean" -msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" +msgstr "Poligoninių tinklų logikos (Boolean) operacijos" msgid "Mesh boolean operations including union and subtraction" -msgstr "Įrankiai modeliams sujungti ir iškirpti" +msgstr "Logikos (Boolean) operacijos, įskaitant sujungimą ir atimtį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along X Axis" -msgstr "Išilgai X ašies" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the X Axis" -msgstr "Atspindėti pagal X ašį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Y Axis" -msgstr "Išilgai Y ašies" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Y Axis" -msgstr "Atspindėti pagal Y ašį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Z Axis" -msgstr "Išilgai Z ašies" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Z Axis" -msgstr "Atspindėti pagal Z ašį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror object" msgstr "Atspindėti objektą" @@ -2391,10 +2406,10 @@ msgid "Change SVG source file, projection, size, ..." msgstr "Keičiamas SVG šaltinis, projekcija, dydis..." msgid "Invalidate cut info" -msgstr "Atnaujinti pjovimo informaciją" +msgstr "Panaikinti pjovimo informacijos galiojimą" msgid "Add Primitive" -msgstr "Pridėti paprastą figūrą" +msgstr "Pridėti primityvą" msgid "Add Handy models" msgstr "Pridėti patogius modelius" @@ -2405,19 +2420,17 @@ msgstr "Pridėti modelius" msgid "Show Labels" msgstr "Rodyti etiketes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Objects" -msgstr "Į objektus" +msgstr "" msgid "Split the selected object into multiple objects" msgstr "Suskaidyti pasirinktą objektą į kelis objektus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Parts" -msgstr "Į dalis" +msgstr "" msgid "Split the selected object into multiple parts" -msgstr "Suskaidyti pasirinktą objektą į kelias dalis" +msgstr "Skaidyti pasirinktą objektą į kelias detales" msgid "Split" msgstr "Padalinti" @@ -2429,54 +2442,52 @@ msgid "Auto orientation" msgstr "Automatinė padėtis" msgid "Auto orient the object to improve print quality" -msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui." +msgstr "Automatiškai nustatoma padėtis spausdinimo kokybės pagerinimui" msgid "Edit" msgstr "Redaguoti" msgid "Merge with" -msgstr "" +msgstr "Sujungti su" msgid "Delete this filament" -msgstr "" +msgstr "Ištrinti šią giją" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Select All" msgstr "Pasirinkti viską" msgid "Select all objects on the current plate" -msgstr "pasirinkti visus objektus pasirinktoje plokštėje" +msgstr "Pasirinkti visus objektus dabartinėje plokštėje" msgid "Select All Plates" -msgstr "" +msgstr "Pasirinkti visas plokštes" msgid "Select all objects on all plates" -msgstr "" +msgstr "Pasirinkti visus objektus visose plokštėse" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete All" msgstr "Ištrinti visus" msgid "Delete all objects on the current plate" -msgstr "ištrinti visus objektus pasirinktoje plokštėje" +msgstr "Ištrinti visus objektus dabartinėje plokštėje" msgid "Arrange" msgstr "Išdėstyti" msgid "Arrange current plate" -msgstr "išdėstyti dabartinės plokštės objektus" +msgstr "Išdėstyti dabartinės plokštės objektus" msgid "Reload All" -msgstr "Pakartotinai užkrauti viską" +msgstr "Įkelti viską iš naujo" msgid "Reload all from disk" -msgstr "dar kartą užkrauti viską iš disko" +msgstr "Įkelti viską iš naujo iš disko" msgid "Auto Rotate" msgstr "Automatinis pasukimas" msgid "Auto rotate current plate" -msgstr "utomatiškai pasukti dabartinę plokštę" +msgstr "Automatiškai pasukti dabartinę plokštę" msgid "Delete Plate" msgstr "Ištrinti plokštę" @@ -2485,28 +2496,28 @@ msgid "Remove the selected plate" msgstr "Pašalinti pasirinktą plokštę" msgid "Add instance" -msgstr "" +msgstr "Pridėti kopiją (kopiją-atvaizdą)" msgid "Add one more instance of the selected object" -msgstr "" +msgstr "Pridėti dar vieną pasirinkto objekto kopiją" msgid "Remove instance" -msgstr "" +msgstr "Pašalinti kopiją" msgid "Remove one instance of the selected object" -msgstr "" +msgstr "Pašalinti vieną pasirinkto objekto kopiją" msgid "Set number of instances" -msgstr "" +msgstr "Nustatyti kopijų skaičių" msgid "Change the number of instances of the selected object" -msgstr "" +msgstr "Keisti pasirinkto objekto kopijų skaičių" msgid "Fill bed with instances" -msgstr "" +msgstr "Užpildyti pagrindą kopijomis" msgid "Fill the remaining area of bed with instances of the selected object" -msgstr "" +msgstr "Užpildyti likusią pagrindo vietą pasirinkto objekto kopijomis" msgid "Clone" msgstr "Klonuoti" @@ -2515,25 +2526,25 @@ msgid "Simplify Model" msgstr "Supaprastinti modelį" msgid "Subdivision mesh" -msgstr "" +msgstr "Skaidomas paviršius" msgid "(Lost color)" -msgstr "" +msgstr "(Prarasta spalva)" msgid "Center" msgstr "Centras" msgid "Drop" -msgstr "Pamiršti" +msgstr "Nuleisti" msgid "Edit Process Settings" msgstr "Taisyti proceso nustatymus" msgid "Copy Process Settings" -msgstr "" +msgstr "Kopijuoti proceso nustatymus" msgid "Paste Process Settings" -msgstr "" +msgstr "Įklijuoti proceso nustatymus" msgid "Edit print parameters for a single object" msgstr "Taisyti atskiro objekto spausdinimo parametrus" @@ -2542,7 +2553,7 @@ msgid "Change Filament" msgstr "Keisti giją" msgid "Set Filament for selected items" -msgstr "Nsutatyti giją pasirinktiems objektams" +msgstr "Nustatyti giją pasirinktiems elementams" msgid "Automatically snaps the selected object to the build plate." msgstr "" @@ -2560,7 +2571,7 @@ msgid "Name" msgstr "Pavadinimas" msgid "Fila." -msgstr "Gija." +msgstr "Gija" #, c-format, boost-format msgid "%1$d error repaired" @@ -2572,9 +2583,9 @@ msgstr[2] "Ištaisyta %1$d klaidų" #, c-format, boost-format msgid "Error: %1$d non-manifold edge." msgid_plural "Error: %1$d non-manifold edges." -msgstr[0] "Klaida: %1$d neuždara briauna." -msgstr[1] "Klaida: %1$d neuždaros briaunos." -msgstr[2] "Klaida: %1$d neuždarų briaunų." +msgstr[0] "Klaida: %1$d ne daugialypė (non-manifold) briauna." +msgstr[1] "Klaida: %1$d ne daugialypės (non-manifold) briaunos." +msgstr[2] "Klaida: %1$d ne daugialypių (non-manifold) briaunų." msgid "Remaining errors" msgstr "Likusios klaidos" @@ -2582,34 +2593,30 @@ msgstr "Likusios klaidos" #, c-format, boost-format msgid "%1$d non-manifold edge" msgid_plural "%1$d non-manifold edges" -msgstr[0] "%1$d neuždara briauna" -msgstr[1] "%1$d neuždaros briaunos" -msgstr[2] "%1$d neuždarų briaunų" +msgstr[0] "%1$d ne daugialypė (non-manifold) briauna" +msgstr[1] "%1$d ne daugialypės (non-manifold) briaunos" +msgstr[2] "%1$d ne daugialypių (non-manifold) briaunų" msgid "Click the icon to repair model object" msgstr "Spustelėkite piktogramą, kad pataisytumėte modelio objektą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object settings" -msgstr "Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto nustatymus" +msgstr "" msgid "Click the icon to reset all settings of the object" msgstr "Spustelėkite piktogramą, kad atstatytumėte visus objekto nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object printable property" -msgstr "Dešiniuoju pelės mygtuku spustelėkite piktogramą, kad išskleistumėte objekto spausdinimo savybių meniu" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to toggle printable properties of the object" -msgstr "Spustelėkite piktogramą, kad įjungtumėte / išjungtumėte objekto spausdinimo galimybę" +msgstr "" msgid "Click the icon to edit support painting of the object" msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto atramų piešimą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to edit color painting for the object" -msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto spalvinimą" +msgstr "" msgid "Click the icon to shift this object to the bed" msgstr "Spustelėkite piktogramą, kad perkeltumėte šį objektą ant pagrindo" @@ -2639,7 +2646,7 @@ msgid "Delete connector from object which is a part of cut" msgstr "Pašalinkite jungtį nuo objekto, kuris yra pjūvio dalis" msgid "Delete solid part from object which is a part of cut" -msgstr "Ištrinti vientisą objekto dalį, kuri yra pjūvio dalis" +msgstr "Ištrinti geometrinę detalę iš objekto, kuris yra pjūvio dalis" msgid "Delete negative volume from object which is a part of cut" msgstr "Pašalinkite neigiamą tūrį iš pjūvyje esančio objekto" @@ -2647,26 +2654,21 @@ msgstr "Pašalinkite neigiamą tūrį iš pjūvyje esančio objekto" msgid "To save cut correspondence you can delete all connectors from all related objects." msgstr "Norėdami nutraukti ryšius, galite ištrinti visus jungtis iš visų susijusių objektų." -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"Šis veiksmas nutrauks sluoksniavimo atitikmenį.\n" -"Po to modelio nuoseklumas negali būti užtikrintas.\n" -"\n" -"Norėdami manipuliuoti su vientisomis dalimis arba neigiamais tūriais, pirmiausia turite panaikinti pjūvio informaciją." msgid "Delete all connectors" msgstr "Ištrinti visas jungtis" msgid "Deleting the last solid part is not allowed." -msgstr "Neleidžiama ištrinti paskutinės ištisinės dalies." +msgstr "Neleidžiama ištrinti paskutinės geometrinės detalės." msgid "The target object contains only one part and can not be split." -msgstr "Objektas turi tik vieną dalį ir negali būti padalintas." +msgstr "Tikslinis objektas turi tik vieną detalę ir negali būti išskaidytas." msgid "Assembly" msgstr "Surinkimas" @@ -2680,23 +2682,20 @@ msgstr "Manipuliavimas objektu" msgid "Group manipulation" msgstr "Manipuliavimas grupe" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object Settings to Modify" -msgstr "Keičiami objekto parametrai" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Part Settings to Modify" -msgstr "Dalies nustatymai keitimui" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer Range Settings to Modify" -msgstr "Keičiami sluoksnių ribų nustatymai" +msgstr "" msgid "Part manipulation" msgstr "Manipuliavimas detale" msgid "Instance manipulation" -msgstr "Manipuliavimas egzemplioriumi" +msgstr "Manipuliavimas kopija" msgid "Height ranges" msgstr "Aukščio diapazonai" @@ -2714,17 +2713,16 @@ msgid "If the first selected item is an object, the second should also be an obj msgstr "Jei pirmasis pasirinktas elementas yra objektas, tuomet ir antrasis privalo būti objektas." msgid "If the first selected item is a part, the second should be a part in the same object." -msgstr "Jei pirmasis pasirinktas elementas ira dalis, tuomet antrasis taip pat privalo būti to paties objekto dalis." +msgstr "Jei pirmasis pasirinktas elementas yra detalė, tuomet antrasis privalo būti to paties objekto detalė." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The type of the last solid object part cannot be changed." -msgstr "Paskutinės vientiso objekto dalies tipas negali būti keičiamas." +msgstr "" msgid "Type:" msgstr "Tipas:" msgid "Choose part type" -msgstr "Pasirinkite dalies tipą" +msgstr "Pasirinkite detalės tipą" msgid "Enter new name" msgstr "Įvesti naują pavadinimą" @@ -2734,29 +2732,29 @@ msgstr "Pervadinama" msgid "The following model object has been repaired" msgid_plural "The following model objects have been repaired" -msgstr[0] "Šis modelio objektas buvo sutaisytas" -msgstr[1] "Šie modelio objektai buvo sutaisyti" -msgstr[2] "Šių modelio objektų buvo sutaisyta" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" msgid "Failed to repair the following model object" msgid_plural "Failed to repair the following model objects" -msgstr[0] "Nepavyko pataisyti šio modelio objekto" -msgstr[1] "Nepavyko pataisyti šio modelio objektų" -msgstr[2] "Nepavyko pataisyti šio modelio objektų" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" msgid "Repairing was canceled" msgstr "Taisymas buvo atšauktas" #, 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 "" +msgstr "„%s“ po šio padalijimo (subdivision) viršys 1 milijoną poligonų (faces), todėl gali pailgėti sluoksniavimo (slicing) laikas. Ar norite tęsti?" #, c-format, boost-format msgid "\"%s\" part's mesh contains errors. Please repair it first." -msgstr "" +msgstr "Detalės „%s“ poligoninis tinklas (mesh) turi klaidų. Pirmiausia jas sutaisykite." msgid "Additional process preset" -msgstr "Papildomas apdorojimo nustatymas" +msgstr "Papildomas proceso profilis" msgid "Remove parameter" msgstr "Pašalinti parametrą" @@ -2773,9 +2771,8 @@ msgstr "Pridėti aukščio ribas" msgid "Invalid numeric." msgstr "Netinkamas skaičius." -# TODO: Review, changed by lang refactor. PR 14254 msgid "One cell can only be copied to one or more cells in the same column." -msgstr "vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio langelių" +msgstr "Vieną langelį galima nukopijuoti tik į vieną ar daugiau to paties stulpelio langelių." msgid "Copying multiple cells is not supported." msgstr "Kelių langelių kopijavimas nepalaikomas." @@ -2787,16 +2784,16 @@ msgid "Layer height" msgstr "Sluoksnio aukštis" msgid "Wall loops" -msgstr "Sienelės linijos" +msgstr "Sienelės kontūrai" msgid "Infill density(%)" msgstr "Užpildo tankis (%)" msgid "Auto Brim" -msgstr "Automatinis pagrindo sluoksnis" +msgstr "Automatinis kraštas" msgid "Mouse ear" -msgstr "Pelės ausis" +msgstr "Kampų fiksatoriai („Pelės ausys“)" msgid "Painted" msgstr "Piešta" @@ -2811,54 +2808,50 @@ msgid "Outer and inner brim" msgstr "Išorinis ir vidinis kraštai" msgid "No-brim" -msgstr "Nėra pagrindo sluoksnio" +msgstr "Nėra krašto" msgid "Outer wall speed" msgstr "Išorinių sienų greitis" msgid "Plate" -msgstr "Plokštė" +msgstr "Spausdinimo plokštė" msgid "Brim" msgstr "Kraštas" msgid "Object/Part Settings" -msgstr "" +msgstr "Objekto / detalės parametrai" msgid "Reset parameter" msgstr "Grąžinti į pradinį" msgid "Multicolor Print" -msgstr "Spalvotas spausdinimas" +msgstr "Daugiaspalvis spausdinimas" msgid "Line Type" msgstr "Linijos tipas" #, c-format, boost-format msgid "1x1 Grid: %d mm" -msgstr "" +msgstr "1x1 tinklelis: %d mm" -# TODO: Review, changed by lang refactor. PR 14254 msgid "More" msgstr "Daugiau" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open Preferences" -msgstr "Atidaryti nuostatas." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open next tip" -msgstr "Kitas patarimas." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open documentation in web browser" -msgstr "Atidaryti dokumentaciją žiniatinklio naršyklėje." +msgstr "" msgid "Color" msgstr "Spalva" msgid "Pause" -msgstr "Pristabdyti" +msgstr "Pauzė" msgid "Template" msgstr "Šablonas" @@ -2879,15 +2872,13 @@ msgid "Custom G-code" msgstr "Pasirinktinis G-kodas" msgid "Enter Custom G-code used on current layer:" -msgstr "Įveskite pasirinktinį kodą dabartiniam sluoksniui:" +msgstr "Įveskite pasirinktinį G-kodą dabartiniam sluoksniui:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Jump to layer" -msgstr "Peršokti į sluoksnį" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please enter the layer number." -msgstr "Įveskite sluoksnio numerį" +msgstr "" msgid "Add Pause" msgstr "Pridėti pauzę" @@ -2964,25 +2955,23 @@ msgstr "Jungiamasi..." msgid "Auto Refill" msgstr "Automatinis papildymas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Load" msgstr "Įkelti" msgid "Unload" -msgstr "Išleisti" +msgstr "Iškrauti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." -msgstr "Pasirinkite AMS angą, tada paspauskite \"Įkelti\" arba \"išstumti\" mygtuką, kad automatiškai įkeltumėte arba išstumtumėte gijas." +msgstr "" msgid "Filament type is unknown which is required to perform this action. Please set target filament's informations." -msgstr "" +msgstr "Šiam veiksmui atlikti reikalingas gijos tipas yra nežinomas. Nustatykite tikslinės gijos informaciją." msgid "Changing fan speed during printing may affect print quality, please choose carefully." -msgstr "" +msgstr "Ventiliatoriaus greičio keitimas spausdinimo metu gali paveikti spausdinimo kokybę, pasirinkite atsakingai." msgid "Change Anyway" -msgstr "" +msgstr "Vis tiek pakeisti" msgid "Off" msgstr "Išjungta" @@ -2991,13 +2980,13 @@ msgid "Filter" msgstr "Filtras" msgid "Enabling filtration redirects the right fan to filter gas, which may reduce cooling performance." -msgstr "" +msgstr "Įjungus filtravimą, dešinysis ventiliatorius nukreipiamas dujų filtravimui, todėl gali sumažėti aušinimo našumas." msgid "Enabling filtration during printing may reduce cooling and affect print quality. Please choose carefully." -msgstr "" +msgstr "Filtravimo įjungimas spausdinimo metu gali sumažinti aušinimą ir paveikti spausdinimo kokybę. Pasirinkite atsakingai." msgid "The selected material only supports the current fan mode, and it can't be changed during printing." -msgstr "" +msgstr "Pasirinkta medžiaga palaiko tik dabartinį ventiliatoriaus režimą, jo negalima keisti spausdinimo metu." msgid "Cooling" msgstr "Aušinimas" @@ -3006,74 +2995,74 @@ msgid "Heating" msgstr "Šildymas" msgid "Exhaust" -msgstr "" +msgstr "Ištraukimas" msgid "Full Cooling" -msgstr "" +msgstr "Maksimalus aušinimas" msgid "Init" -msgstr "" +msgstr "Init" msgid "Chamber" msgstr "Kamera" msgid "Innerloop" -msgstr "" +msgstr "Vidinė cirkuliacija" #. TRN To be shown in the main menu View->Top msgid "Top" msgstr "Viršutinis" 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 "" +msgstr "Ventiliatorius kontroliuoja temperatūrą spausdinimo metu, kad pagerintų spausdinimo kokybę. Sistema automatiškai sureguliuoja ventiliatoriaus būseną ir greitį pagal skirtingas spausdinimo medžiagas." msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials and filters the chamber air." -msgstr "" +msgstr "Aušinimo režimas tinka spausdinant PLA/PETG/TPU medžiagas ir filtruoja kameros orą." msgid "Heating mode is suitable for printing ABS/ASA/PC/PA materials and circulates filters the chamber air." -msgstr "" +msgstr "Šildymo režimas tinka spausdinant ABS/ASA/PC/PA medžiagas, jis cirkuliuoja ir filtruoja kameros orą." msgid "Strong cooling mode is suitable for printing PLA/TPU materials. In this mode, the printouts will be fully cooled." -msgstr "" +msgstr "Intensyvaus aušinimo režimas tinka spausdinant PLA/TPU medžiagas. Šiame režime spaudiniai bus visiškai ataušinami." msgid "Cooling mode is suitable for printing PLA/PETG/TPU materials." -msgstr "" +msgstr "Aušinimo režimas tinka spausdinant PLA/PETG/TPU medžiagas." msgctxt "air_duct" msgid "Right(Aux)" -msgstr "" +msgstr "Dešinysis (papildomas)" msgctxt "air_duct" msgid "Right(Filter)" -msgstr "" +msgstr "Dešinysis (filtras)" msgctxt "air_duct" msgid "Left(Aux)" -msgstr "" +msgstr "Kairysis (papildomas)" msgid "Hotend" -msgstr "Hotend" +msgstr "Kaitinimo blokas (Hotend)" msgid "Parts" -msgstr "" +msgstr "Detalės" msgid "Aux" msgstr "Papild" msgid "Nozzle1" -msgstr "" +msgstr "Purkštukas 1" msgid "MC Board" -msgstr "" +msgstr "Valdymo plokštė (MC Board)" msgid "Heat" -msgstr "" +msgstr "Kaitinimas" msgid "Fan" msgstr "Ventiliatorius" msgid "Idling..." -msgstr "Laisvinama..." +msgstr "Laukimo režimas..." msgid "Heat the nozzle" msgstr "Įkaitinti purkštuką" @@ -3081,18 +3070,17 @@ msgstr "Įkaitinti purkštuką" msgid "Cut filament" msgstr "Nukirpti giją" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Pull back the current filament" -msgstr "Išstumti atgal dabartinę giją" +msgstr "" msgid "Push new filament into extruder" msgstr "Įstumti naują giją į ekstruderį" msgid "Grab new filament" -msgstr "Pasirinkti naują giją" +msgstr "Sugriebti naują giją" msgid "Purge old filament" -msgstr "Išmesti seną giją" +msgstr "Išvalyti seną giją" msgid "Confirm extruded" msgstr "Patvirtinti, kad išspausta" @@ -3101,64 +3089,62 @@ msgid "Check filament location" msgstr "Patikrinti gijos padėtį" msgid "The maximum temperature cannot exceed " -msgstr "" +msgstr "Maksimali temperatūra negali viršyti " msgid "The minmum temperature should not be less than " -msgstr "" +msgstr "Minimali temperatūra neturi būti mažesnė nei " msgid "Type to filter..." -msgstr "" +msgstr "Įveskite tekstą filtravimui..." msgid "All" msgstr "Visi" msgid "No selected items..." -msgstr "" +msgstr "Nėra pasirinktų elementų..." msgid "All items selected..." -msgstr "" +msgstr "Visi elementai pažymėti..." msgid "No matching items..." -msgstr "" +msgstr "Nerasta atitinkančių elementų..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deselect All" -msgstr "Atšaukti visus" +msgstr "Panaikinti viso pasirinkimą" msgid "Select visible" -msgstr "" +msgstr "Pasirinkti matomus" msgid "Deselect visible" -msgstr "" +msgstr "Panaikinti matomų pasirinkimą" msgid "Filter selected" -msgstr "" +msgstr "Filtruoti pasirinktus" msgid "Filter nonSelected" -msgstr "" +msgstr "Filtruoti nepasirinktus" msgid "Simple settings" -msgstr "" +msgstr "Paprasti nustatymai" msgid "Advanced settings" -msgstr "" +msgstr "Sudėtingesni parametrai" msgid "Expert settings" -msgstr "" +msgstr "Eksperto parametrai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Developer mode" msgstr "Kūrėjo režimas" msgid "Launch troubleshoot center" -msgstr "" +msgstr "Atidaryti trikčių šalinimo centrą" msgid "" "All the selected objects are on a locked plate.\n" "Cannot auto-arrange these objects." msgstr "" -"Visi pažymėti objektai yra ant užrakintos plokštės.\n" -"Automatinio išdėstymo šiems objektams atlikti negalima." +"Visi pasirinkti objektai yra užrakintoje spausdinimo plokštėje.\n" +"Šių objektų automatiškai išdėstyti negalima." msgid "No arrangeable objects are selected." msgstr "Nėra pasirinkta jokių tvarkytinų objektų." @@ -3179,9 +3165,8 @@ msgstr "Išdėstymas" msgid "Arranging canceled." msgstr "Išdėstymas atšauktas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Arranging complete, but some items were not able to be arranged. Reduce spacing and try again." -msgstr "Išdėstymas atliktas, tačiau liko neapdorotų objektų. Sumažinkite tarpus ir pabandykite dar kartą." +msgstr "" msgid "Arranging done." msgstr "Išdėstymas atliktas." @@ -3212,13 +3197,13 @@ msgstr "" "Automatinio objektų orientavimo šioje plokštėje atlikti negalima." msgid "Orienting..." -msgstr "Orientuojama..." +msgstr "Nustatoma padėtis..." msgid "Orienting" -msgstr "Orientuojama" +msgstr "Padėties nustatymas" msgid "Orienting canceled." -msgstr "Orientavimas atšauktas." +msgstr "Padėties nustatymas atšauktas." msgid "Filling" msgstr "Užpildoma" @@ -3230,13 +3215,13 @@ msgid "Bed filling done." msgstr "Pagrindo užpildymas atliktas." msgid "Searching for optimal orientation" -msgstr "Optimalios orientacijos paieška" +msgstr "Optimalios padėties paieška" msgid "Orientation search canceled." -msgstr "Orientacijos paieška atšaukta." +msgstr "Padėties paieška atšaukta." msgid "Orientation found." -msgstr "Orientacija rasta." +msgstr "Padėtis rasta." msgid "Logging in" msgstr "Jungiamasi" @@ -3247,9 +3232,8 @@ msgstr "Prisijungti nepavyko" msgid "Please check the printer network connection." msgstr "Prašome patikrinti spausdintuvo kompiuterinio tinklo jungtį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Abnormal print file data: please slice again." -msgstr "Nenormalūs spausdinimo failo duomenys. Prašome susluoksniuoti dar kartą." +msgstr "" msgid "Task canceled." msgstr "Užduotis atšaukta." @@ -3260,9 +3244,8 @@ msgstr "Įkėlimo užduotis viršijo laukimo laiką. Prašome patikrinti tinklo msgid "Cloud service connection failed. Please try again." msgstr "Nepavyko prisijungti prie debesies paslaugos. Prašome bandyti iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice again." -msgstr "Nerastas spausdinimo failas. Prašome išsluoksniuoti iš naujo." +msgstr "" msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again." msgstr "Spausdinimo failas viršija didžiausią leistiną dydį (1GB). Prašome supaprastinti modelį ir išsluoksniuoti iš naujo." @@ -3273,20 +3256,17 @@ msgstr "Nepavyko išsiųsti spausdinimo užduoties. Prašome bandyti iš naujo." msgid "Failed to upload file to ftp. Please try again." msgstr "Nepavyko failo įkelti į ftp serverį. Prašome pabandyti iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Check the current status of the Bambu Lab server by clicking on the link above." -msgstr "Paspaudę nuorodą viršuje, galite patikrinti aktualią Bambu serverio būseną." +msgstr "" msgid "The size of the print file is too large. Please adjust the file size and try again." msgstr "Spausdinimo failo dydis per didelis. Prašome pakoreguoti dydį ir bandyti pakartotinai." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice it again and send it for printing." -msgstr "Nerastas spausdinimo failas. Prašome dar kartą išsluoksniuoti ir išsiųsti spausdinimui." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Failed to upload print file via FTP. Please check the network status and try again." -msgstr "Nepavyko spausdinimo failo įkelti į FTP serverį. Patikrinkite tinklo būseną ir bandykite dar kartą." +msgstr "" msgid "Sending print job over LAN" msgstr "Spausdinimo užduotis siunčiama vietiniu tinklu" @@ -3319,24 +3299,23 @@ msgid "Access code:%s IP address:%s" msgstr "Prieigos kodas: %s IP adresas: %s" msgid "A Storage needs to be inserted before printing via LAN." -msgstr "" +msgstr "Prieš spausdinant per vietinį tinklą (LAN), būtina įdėti atminties laikmeną." msgid "Sending print job over LAN, but the Storage in the printer is abnormal and print-issues may be caused by this." -msgstr "" +msgstr "Spausdinimo užduotis siunčiama vietiniu tinklu (LAN), tačiau spausdintuvo atminties laikmenos veikla yra sutrikusi, todėl gali kilti spausdinimo problemų." msgid "The Storage in the printer is abnormal. Please replace it with a normal Storage before sending print job to printer." -msgstr "" +msgstr "Spausdintuvo atminties laikmenos veikla yra sutrikusi. Pakeiskite ją tvarkinga laikmena prieš siųsdami užduotį į spausdintuvą." msgid "The Storage in the printer is read-only. Please replace it with a normal Storage before sending print job to printer." -msgstr "" +msgstr "Spausdintuvo atminties laikmena yra apsaugota nuo įrašymo (tik skaitymui). Pakeiskite ją tvarkinga laikmena prieš siųsdami užduotį į spausdintuvą." msgid "Encountered an unknown error with the Storage status. Please try again." -msgstr "" +msgstr "Įvyko nežinoma klaida, susijusi su atminties laikmenos būsena. Bandykite dar kartą." msgid "Sending G-code file over LAN" msgstr "Vietiniu tinklu siunčiamas G-kodo failas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sending G-code file to SD card" msgstr "Į SD kortelę siunčiamas G-kodo failas" @@ -3345,71 +3324,70 @@ msgid "Successfully sent. Close current page in %s s" msgstr "Sėkmingai išsiųsta. Dabartinis puslapis užsivers po %s sek" msgid "Storage needs to be inserted before sending to printer." -msgstr "" +msgstr "Prieš siunčiant užduotį į spausdintuvą, būtina įdėti atminties laikmeną." msgid "Sending G-code file over LAN, but the Storage in the printer is abnormal and print-issues may be caused by this." -msgstr "" +msgstr "G-kodo failas siunčiamas vietiniu tinklu (LAN), tačiau spausdintuvo atminties laikmenos veikla yra sutrikusi, todėl gali kilti spausdinimo problemų." msgid "The Storage in the printer is abnormal. Please replace it with a normal Storage before sending to printer." -msgstr "" +msgstr "Spausdintuvo atminties laikmena yra apsaugota nuo įrašymo (tik skaitymui). Pakeiskite ją tvarkinga laikmena prieš siųsdami failą į spausdintuvą." msgid "The Storage in the printer is read-only. Please replace it with a normal Storage before sending to printer." -msgstr "" +msgstr "The Storage in the printer is read-only. Please replace it with a normal Storage before sending to printer." msgid "Bad input data for EmbossCreateObjectJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „EmbossCreateObjectJob“." msgid "Add Emboss text object" -msgstr "" +msgstr "Pridėti iškiliojo teksto (Emboss) objektą" msgid "Bad input data for EmbossUpdateJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „EmbossUpdateJob“." msgid "Created text volume is empty. Change text or font." -msgstr "" +msgstr "Sukurtas teksto tūris yra tuščias. Pakeiskite tekstą arba šriftą." msgid "Bad input data for CreateSurfaceVolumeJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „CreateSurfaceVolumeJob“." msgid "Bad input data for UseSurfaceJob." -msgstr "" +msgstr "Klaidingi įvesties duomenys užduočiai „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 "" +msgstr "Iškilumo (Emboss) atributo keitimas" msgid "Add Emboss text Volume" -msgstr "" +msgstr "Pridėti iškiliojo teksto (Emboss) tūrį" msgid "Font doesn't have any shape for given text." -msgstr "" +msgstr "Šriftas neturi geometrinės formos (shape) pateiktam tekstui." msgid "There is no valid surface for text projection." -msgstr "" +msgstr "Nėra tinkamo paviršiaus teksto projekcijai." msgid "An unexpected error occurred" -msgstr "" +msgstr "Įvyko netikėta klaida" msgid "Thermal Preconditioning for first layer optimization" -msgstr "" +msgstr "Terminis paruošimas (Preconditioning) pirmojo sluoksnio optimizavimui" msgid "Remaining time: Calculating..." -msgstr "" +msgstr "Liko laiko: skaičiuojama..." msgid "The heated bed's thermal preconditioning helps optimize the first layer print quality. Printing will start once preconditioning is complete." -msgstr "" +msgstr "Šildomo pagrindo terminis paruošimas padeda optimizuoti pirmojo sluoksnio spausdinimo kokybę. Spausdinimas prasidės iškart, kai pasibaigs paruošimo procesas." #, c-format, boost-format msgid "Remaining time: %dmin%ds" -msgstr "" +msgstr "Liko laiko: %d min. %d sek." msgid "Importing SLA archive" msgstr "Importuojamas SLA archyvas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer presets first before importing that SLA archive." -msgstr "SLA archyve nėra jokių išankstinių nustatymų. Prieš importuodami SLA archyvą, pirmiausia suaktyvinkite SLA spausdintuvo nustatymą." +msgstr "" msgid "Importing canceled." msgstr "Importavimas atšauktas." @@ -3420,12 +3398,11 @@ msgstr "Importavimas atliktas." msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." msgstr "Importuotame SLA archyve nebuvo jokių išankstinių nustatymų. Dabartiniai SLA nustatymai buvo naudojami kaip atsarginiai." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You cannot load an SLA project with a multi-part object on the bed" -msgstr "Negalite įkelti SLA projekto su kelių dalių objektu ant pagrindo" +msgstr "" msgid "Please check your object list before preset changing." -msgstr "Prieš keisdami išankstinius nustatymus, patikrinkite objektų sąrašą." +msgstr "Prieš keisdami profilį, patikrinkite objektų sąrašą." msgid "Attention!" msgstr "Dėmesio!" @@ -3448,9 +3425,8 @@ msgstr "Diegiama" msgid "Install failed" msgstr "Diegimas nepavyko" -# TODO: Review, changed by lang refactor. PR 14254 msgid "License Info" -msgstr "Dalys saugomos autorių teisių" +msgstr "" msgid "Copyright" msgstr "Autorių teisės" @@ -3478,13 +3454,13 @@ msgid "About %s" msgstr "Apie %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 "" +msgstr "Atvirojo kodo paruošimas spausdinimui (slicing) remiasi bendradarbiavimo ir autorystės pripažinimo tradicija. Pagrindą padėjo „Slic3r“, kurį sukūrė Alessandro Ranellucci ir „RepRap“ bendruomenė. „Prusa Research“ sukurta „PrusaSlicer“ programa buvo pagrįsta šiuo darbu, „Bambu Studio“ atsiskyrė nuo „PrusaSlicer“, o „SuperSlicer“ ją išplėtė, įtraukdama bendruomenės siūlomus patobulinimus. Kiekvienas projektas tęsė savo pirmtakų darbą, nurodydamas ankstesnių kūrėjų indėlį." 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 "" +msgstr "„OrcaSlicer“ buvo sukurtas vadovaujantis ta pačia dvasia, remiantis „PrusaSlicer“, „BambuStudio“, „SuperSlicer“ ir „CuraSlicer“ programomis. Tačiau nuo to laiko jis smarkiai išsiplėtė ir dabar siūlo pažangius kalibravimo įrankius, tikslų sienelių ir siūlių valdymą bei šimtus kitų funkcijų." 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 "" +msgstr "Šiandien „OrcaSlicer“ yra plačiausiai naudojama ir aktyviausiai tobulinama atvirojo kodo paruošimo spausdinimui (slicer) programa 3D spausdinimo bendruomenėje.. Daugelis jos naujovių buvo perimtos kitų pjaustymo programų, todėl ji tapo visos pramonės varomąja jėga." msgid "Version" msgstr "Versija" @@ -3509,26 +3485,26 @@ msgid "max" msgstr "maks" msgid "min" -msgstr "" +msgstr "min" #, boost-format msgid "The input value should be greater than %1% and less than %2%" msgstr "Įvesties reikšmė turi būti didesnė nei %1% ir mažesnė nei %2%" msgid "SN" -msgstr "" +msgstr "SN" msgid "Factors of Flow Dynamics Calibration" -msgstr "Dinaminio srauto kalibravimo veiksniai" +msgstr "Srauto dinamikos kalibravimo koeficientai" msgid "PA Profile" -msgstr "PA sąranka" +msgstr "PA profilis" msgid "Factor K" -msgstr "Faktorius K" +msgstr "Koeficientas K" msgid "Factor N" -msgstr "Faktorius N" +msgstr "Koeficientas N" msgid "Setting AMS slot information while printing is not supported" msgstr "Negalima pakeisti AMS angos informacijos kol vyksta spausdinimas" @@ -3554,6 +3530,8 @@ msgid "" "The nozzle flow is not set. Please set the nozzle flow rate before editing the filament.\n" "'Device -> Print parts'" msgstr "" +"Purkštuko srautas nenustatytas. Nustatykite purkštuko srauto greitį prieš redaguodami giją\n" +"„Įrenginys -> Detalių spausdinimas“" msgid "AMS" msgstr "AMS" @@ -3564,17 +3542,15 @@ msgstr "Kita spalva" msgid "Custom Color" msgstr "Pasirinktinė spalva" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Dynamic flow calibration" msgstr "Dinaminis srauto kalibravimas" 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 "Purkštuko temperatūra ir didžiausias tūrinis greitis įtakoja kalibravimo rezultatus. Prašome įvesti tokias pat reikšmes, kaip ir įprastam spausdinime. Jas galima automatiškai užpildyti pasirinkus gijų parametrų sąranką." +msgstr "Purkštuko temperatūra ir maksimalus tūrinis greitis turi įtakos kalibravimo rezultatams. Įveskite tokias pačias reikšmes, kokios bus naudojamos tikrojo spausdinimo metu. Jas galima užpildyti automatiškai, pasirinkus gijos profilį." msgid "Nozzle Diameter" -msgstr "Purkštuko diametras" +msgstr "Purkštuko skersmuo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate Type" msgstr "Plokštės tipas" @@ -3596,22 +3572,21 @@ msgstr "Pagrindo temperatūra" msgid "mm³" msgstr "mm³" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Start" -msgstr "Pradėti kalibravimą" +msgstr "" msgid "Next" -msgstr "Kitas" +msgstr "Toliau" 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 "Kalibravimas baigtas. Raskite tolydžiausiai išspausdintą liniją ant kaitinamo pagrindo, (tokią kaip paveikslėlyje žemiau) ir įveskite kairėje pusėje esančią reikšmę į faktoriaus K įvesties laukelį." +msgstr "Kalibravimas baigtas. Raskite tolygiausią ekstruzijos liniją ant kaitinamo pagrindo (kaip parodyta paveikslėlyje žemiau) ir įveskite jos kairėje pusėje esančią reikšmę į koeficiento K įvesties laukelį." msgid "Save" msgstr "Išsaugoti" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" -msgstr "Gale" +msgstr "Atgal" msgid "Example" msgstr "Pavyzdys" @@ -3631,37 +3606,46 @@ msgid "Step" msgstr "Žingsnis" msgid "Unmapped" -msgstr "" +msgstr "Nepriskirta" 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 "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: kai nepriskirta, bus naudojama gija iš originalaus projekto.\n" +"Galite spustelėti, kad pakeistumėte" msgid "" "Upper half area: Original\n" "Lower half area: Filament in AMS\n" "And you can click it to modify" msgstr "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: gija esanti AMS\n" +"Galite spustelėti, kad pakeistumėte" msgid "" "Upper half area: Original\n" "Lower half area: Filament in AMS\n" "And you cannot click it to modify" msgstr "" +"Viršutinė srities pusė: originali\n" +"Apatinė srities pusė: gija esanti AMS\n" +"Spustelėti pakeitimui negalite" msgid "AMS Slots" msgstr "AMS angos" msgid "Please select from the following filaments" -msgstr "" +msgstr "Pasirinkite iš šių gijų" msgid "Select filament that installed to the left nozzle" -msgstr "" +msgstr "Pasirinkite giją, įstatytą į kairįjį purkštuką" msgid "Select filament that installed to the right nozzle" -msgstr "" +msgstr "Pasirinkite giją, įstatytą į dešinįjį purkštuką" msgid "Left AMS" msgstr "Kairysis AMS" @@ -3670,71 +3654,66 @@ msgid "External" msgstr "Išorinis" msgid "Reset current filament mapping" -msgstr "" +msgstr "Atkurti dabartinį gijų priskyrimą" msgid "Right AMS" msgstr "Dešinysis AMS" msgid "Left Nozzle" -msgstr "" +msgstr "Kairysis purkštukas" msgid "Right Nozzle" -msgstr "" +msgstr "Dešinysis purkštukas" msgid "Nozzle" msgstr "Purkštukas" #, 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 "" +msgstr "Pastaba: gijos tipas (%s) nesutampa su gijos tipu (%s) paruoštame spausdinimo faile. Jei norite naudoti šią angą, vietoj %s galite įstatyti %s ir pakeisti angos informaciją puslapyje „Įrenginys“." #, 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 "" +msgstr "Pastaba: anga yra tuščia arba neapibrėžta. Jei norite naudoti šią angą, galite įstatyti %s ir pakeisti angos informaciją puslapyje „Įrenginys“." msgid "Note: Only filament-loaded slots can be selected." -msgstr "" +msgstr "Pastaba: galima pasirinkti tik tas angas, į kurias yra įkelta gija." msgid "Enable AMS" msgstr "Įjungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in the AMS" -msgstr "Spausdinti su gijomis iš AMS" +msgstr "" msgid "Disable AMS" msgstr "Išjungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament on external spool" -msgstr "Spausdinti su ant dėžės sumontuota gija" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 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 takes a few hours to absorb the moisture, and low temperatures also slow down the process." -msgstr "Pasikeiskite drėgmės sugėriklį, kai jis sudrėgsta. Indikatorius gali veikti netiksliai šiais atvejais: kai atidarytas dangtelis, arba pakeistas drėgmės sugėriklio pakelis. Drėgmės sugėrimui reikia keleto valandų. Žema temperatūra taip pat sulėtina šį procesą." +msgstr "" msgid "Configure which AMS slot should be used for a filament used in the print job." -msgstr "Sukonfigūruokite, kuris AMS lizdas turėtų būti naudojamas spausdinimo užduotyje naudojamai gijai." +msgstr "Konfigūruokite, kuri AMS anga turi būti naudojama spausdinimo užduoties gijai." msgid "Filament used in this print job" msgstr "Šiame spausdinime naudojama gija" msgid "AMS slot used for this filament" -msgstr "Šiam spausdinimui naudojamas AMS lizdas" +msgstr "Šiai gijai naudojama AMS anga" msgid "Click to select AMS slot manually" -msgstr "Paspauskite, norėdami rankiniu būdu pasirinkti AMS lizdą" +msgstr "Spustelėkite, kad pasirinktumėte AMS angą rankiniu būdu" msgid "Do not Enable AMS" msgstr "Nejungti AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print using filament on external spool." -msgstr "Spausdinkite naudodami išorinėje ritėje esančią giją" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in AMS" -msgstr "Spausdinti AMS gijomis" +msgstr "" msgid "Left" msgstr "Kairė" @@ -3746,25 +3725,26 @@ msgid "When the current material run out, the printer will continue to print in msgstr "Pasibaigus esamai medžiagai, spausdintuvas toliau spausdins šia tvarka." msgid "Identical filament: same brand, type and color." -msgstr "" +msgstr "Identiška gija: tas pats gamintojas, tipas ir spalva." msgid "Group" msgstr "Grupė" msgid "When the current material runs out, the printer would use identical filament to continue printing." -msgstr "" +msgstr "Kai pasibaigs dabartinė medžiaga, spausdintuvas naudos identišką giją spausdinimui tęsti." msgid "The printer does not currently support auto refill." msgstr "Šiuo metu spausdintuvas nepalaiko automatinio papildymo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament backup is not enabled; please enable it in the AMS settings." -msgstr "AMS atsarginė gija neįjungta, įjunkite ją AMS nustatymuose." +msgstr "" 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 "" +"Kai pasibaigs dabartinė gija, spausdintuvas naudos identišką giją spausdinimui tęsti.\n" +"*Identiška gija: tas pats gamintojas, tipas ir spalva." msgid "DRY" msgstr "SAUSA" @@ -3778,9 +3758,8 @@ msgstr "AMS nustatymai" msgid "Insertion update" msgstr "Įdėklo atnaujinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament spool. This takes about 20 seconds." -msgstr "Įdėjus naują Bambu Lab giją, AMS automatiškai nuskaitys jos informaciją. Tai trunka apie 20 sekundžių." +msgstr "" msgid "Note: if a new filament is inserted during printing, the AMS will not automatically read any information until printing is completed." msgstr "Pastaba: jei spausdinimo metu įdedama nauja gija, AMS automatiškai nenuskaitys jokios informacijos, kol spausdinimas nebus baigtas." @@ -3788,22 +3767,20 @@ msgstr "Pastaba: jei spausdinimo metu įdedama nauja gija, AMS automatiškai nen msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." msgstr "Įdėjus naują giją, AMS automatiškai nenuskaitys jos informacijos, todėl ją reikės įvesti rankiniu būdu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Update on startup" -msgstr "Įjungimo metu atnaujinimas" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute. The reading process will rotate the filament spools." -msgstr "AMS paleidimo metu automatiškai nuskaitys įdėts gijos informaciją. Tai užtruks apie 1 minutę. Nuskaitymo procesas sukels gijos ritės sukimąsi." +msgstr "" 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 "Paleidimo metu AMS automatiškai nenuskaitys įdėtos gijos informacijos ir toliau naudosis prieš paskutinį išjungimą įrašyta informacija." msgid "Update remaining capacity" -msgstr "Atnaujinti likusį gijos kiekį" +msgstr "Įvertinti likusį gijos kiekį" msgid "AMS will attempt to estimate the remaining capacity of the Bambu Lab filaments." -msgstr "" +msgstr "AMS bandys įvertinti likusį „Bambu Lab“ gijų kiekį (talpą)." msgid "AMS filament backup" msgstr "AMS atsarginė gija" @@ -3812,31 +3789,31 @@ msgid "AMS will continue to another spool with matching filament properties auto msgstr "Kai baigsis dabartinė gija, AMS automatiškai tęs darbą kitoje ritėje su tokiomis pačiomis gijos savybėmis." msgid "Air Printing Detection" -msgstr "Filamento išspaudimo nebuvimo aptikimas" +msgstr "Spausdinimo ore (Air Printing) aptikimas" msgid "Detects clogging and filament grinding, halting printing immediately to conserve time and filament." msgstr "Aptikusi užsikimšimą arba gijos gremžimą, taupant laiką ir giją, sistema iš karto sustabdo spausdinimą." msgid "AMS Type" -msgstr "" +msgstr "AMS tipas" msgid "Switching" -msgstr "" +msgstr "Perjungiama" msgid "The printer is busy and cannot switch AMS type." -msgstr "" +msgstr "Spausdintuvas užimtas, negalima pakeisti AMS tipo." msgid "Please unload all filament before switching." -msgstr "" +msgstr "Prieš perjungdami, išimkite (unload) visas gijas." msgid "AMS type switching needs firmware update, taking about 30s. Switch now?" -msgstr "" +msgstr "Norint pakeisti AMS tipą, reikia atnaujinti aparatinę programinę įrangą (firmware), tai užtruks apie 30 sek. Perjungti dabar?" msgid "Arrange AMS Order" -msgstr "" +msgstr "Tvarkyti AMS eiliškumą" 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 "" +msgstr "AMS ID bus nustatyti iš naujo. Jei norite tam tikros ID sekos, prieš nustatymą iš naujo atjunkite visus AMS įrenginius, o po jo prijunkite juos norima tvarka." msgid "File" msgstr "Failas" @@ -3847,18 +3824,17 @@ msgstr "Kalibravimas" msgid "Failed to download the plug-in. Please check your firewall settings and VPN software and retry." msgstr "Nepavyko atsisiųsti papildinio. Patikrinkite savo užkardos nustatymus ir VPN programinę įrangą, ir bandykite dar kartą." -# TODO: Review, changed by lang refactor. PR 14254 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 has been deleted by anti-virus software." -msgstr "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 "" msgid "Click here to see more info" -msgstr "spustelėkite norėdami gauti daugiau informacijos" +msgstr "Spustelėkite norėdami gauti daugiau informacijos" msgid "The network plug-in was installed but could not be loaded. Please restart the application." -msgstr "" +msgstr "Tinklo papildinys įdiegtas, tačiau jo nepavyko įkelti. Paleiskite programą iš naujo." msgid "Restart Required" -msgstr "" +msgstr "Būtina paleisti iš naujo" msgid "Please home all axes (click " msgstr "Prašome sugrąžinti visas ašis į pradinę padėtį (spauskite " @@ -3869,24 +3845,21 @@ msgstr ") norėdami nustatyti spausdinimo galvutės padėtį. Taip išvengiama, msgid "Go Home" msgstr "Grįžti į pradinę padėtį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An error occurred. The system may have run out of memory, or a bug may have occurred." -msgstr "Įvyko klaida. Sistemoje galėjo pritrūkti atminties arba įvyko programos klaida" +msgstr "" #, boost-format msgid "A fatal error occurred: \"%1%\"" msgstr "Įvyko lemtinga klaida: „%1%“" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please save your project and restart the application." -msgstr "Išsaugokite projektą ir iš naujo paleiskite programą." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing G-Code from previous file…" -msgstr "Vykdomas G-kodas iš prieš tai buvusio failo..." +msgstr "" msgid "Slicing complete" -msgstr "Sluoksniavimas baigtas" +msgstr "Paruošimas spausdinimui baigtas" msgid "Access violation" msgstr "Prieigos pažeidimas" @@ -3901,7 +3874,7 @@ msgid "Overflow" msgstr "Perpildymas" msgid "Underflow" -msgstr "Perteklius" +msgstr "Nepakankamas užpildymas" msgid "Floating reserved operand" msgstr "Slankusis rezervuotas operandas" @@ -3946,9 +3919,8 @@ msgstr "Laikinojo G-kodo kopijavimas baigtas, bet eksportuoto kodo nepavyko atid msgid "G-code file exported to %1%" msgstr "G-kodo failas eksportuotas į %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown error with G-code export" -msgstr "Nežinoma G kodo eksporto klaida." +msgstr "" #, boost-format msgid "" @@ -3960,16 +3932,15 @@ msgstr "" "Klaidos pranešimas: %1%.\n" "Šaltinio failas: %2%." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Copying of the temporary G-code to the output G-code failed." -msgstr "Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą" +msgstr "" #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" -msgstr "Planuojamas įkėlimas į „%1%“. Žr. Langas -> Tinklinio spausdinimo įkėlimo eilė" +msgstr "Planuojamas įkėlimas į „%1%“. Žr. Langas -> Serverio įkėlimų eilė (Print Host Upload Queue)" msgid "Origin" -msgstr "Pradžia" +msgstr "Koordinačių pradžia (Origin)" msgid "Size in X and Y of the rectangular plate." msgstr "Stačiakampės plokštės dydis X ir Y." @@ -3984,13 +3955,13 @@ msgid "Rectangular" msgstr "Stačiakampis" msgid "Circular" -msgstr "Apvalus" +msgstr "Apskritas" msgid "Load shape from STL..." msgstr "Įkelti formą iš STL..." msgid "Settings" -msgstr "Nustatymai" +msgstr "Parametrai" msgid "Remove" msgstr "Pašalinti" @@ -4007,19 +3978,17 @@ msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo formą:" msgid "Invalid file format." msgstr "Netinkamas failo formatas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error: invalid model" -msgstr "Klaida! Netinkamas modelis" +msgstr "" msgid "The selected file contains no geometry." msgstr "Pasirinktame faile nėra geometrijos." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The selected file contains several disjointed areas. This is not supported." -msgstr "Pasirinktame faile yra keletas nesusijusių sričių. Tai nepalaikoma." +msgstr "" msgid "Choose a file to import bed texture from (PNG/SVG):" -msgstr "Pasirinti failą, iš kurio norite importuoti pagrindo tekstūrą (PNG / SVG):" +msgstr "Pasirinkite failą pagrindo tekstūros importavimui (PNG / SVG):" msgid "Choose an STL file to import bed model from:" msgstr "Pasirinkite STL failą, iš kurio norite importuoti pagrindo modelį:" @@ -4030,10 +3999,14 @@ msgstr "Pagrindo forma" #, c-format, boost-format msgid "A minimum temperature above %d℃ is recommended for %s.\n" msgstr "" +"Medžiagai „%2$s“ rekomenduojama minimali temperatūra, aukštesnė nei %1$d ℃.\n" +"\n" #, c-format, boost-format msgid "A maximum temperature below %d℃ is recommended for %s.\n" msgstr "" +"Medžiagai „%2$s“ rekomenduojama maksimali temperatūra, žemesnė nei %1$d ℃.\n" +"\n" msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n" msgstr "Rekomenduojama minimali temperatūra negali būti aukštesnė už rekomenduojamą maksimalią temperatūrą.\n" @@ -4041,51 +4014,41 @@ msgstr "Rekomenduojama minimali temperatūra negali būti aukštesnė už rekome msgid "Please check.\n" msgstr "Prašome patikrinti.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The nozzle may become clogged when the temperature is out of the recommended range.\n" "Please make sure whether to use this temperature to print.\n" "\n" msgstr "" -"Spausdinimo galvutė gali užsikimšti, jei temperatūra nėra rekomenduojamose ribose.\n" -"Pasitikrinkite, ar tikrai norite spausdinti šia temperatūra.\n" -"\n" #, c-format, boost-format msgid "The recommended nozzle temperature for this filament type is [%d, %d] degrees Celsius." -msgstr "Rekomenduojama šio tipo gijos spausdinimo temperatūra yra nuo %d iki %d laipsnių Celsijaus." +msgstr "Rekomenduojama šio tipo gijos purkštuko temperatūra yra [%d, %d] laipsnių Celsijaus." msgid "Adaptive Pressure Advance model validation failed:\n" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Too small max volumetric speed.\n" "Value was reset to 0.5" msgstr "" -"Per mažas maksimalus tūrinis greitis.\n" -"Atstatyta į 0,5." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" -msgstr "Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos temperatūrą, dėl to medžiaga gali suminkštėti ir užkimšti spausdinimo galvutę. Maksimali saugi medžiagos temperatūra yra %d laipsnių Celsijaus" +msgstr "" + +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" "It has been reset to 0.2" msgstr "" -"Per mažas sluoksnio aukštis.\n" -"Atstatyta į 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Ironing spacing too small\n" "It has been reset to 0.1" msgstr "" -"Per mažas lyginimo tarpas.\n" -"Atstatyta į 0,1." msgid "" "Zero initial layer height is invalid.\n" @@ -4094,22 +4057,15 @@ msgid "" msgstr "" "Nulinis pradinio sluoksnio aukštis yra netinkamas.\n" "\n" -"Pirmojo sluoksnio aukštis bus atstatytas į 0,2." +"Pirmojo sluoksnio aukštis bus nustatytas iš naujo į 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This setting is only used for tuning model size by small amounts.\n" "For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"Šis nustatymas naudojamas tik nedideliu mastu koreguoti modelio dydį tam tikrais atvejais.\n" -"Pavyzdžiui, kai modelio dydis turi nedidelę paklaidą ir jį sunku surinkti.\n" -"Didelio dydžio koregavimui naudokite modelio mastelio keitimo funkciją.\n" -"\n" -"Ši vertė bus atstatyta į 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The elephant foot compensation value is too large.\n" "If there are significant elephant foot issues, please check other settings.\n" @@ -4117,14 +4073,9 @@ msgid "" "\n" "The value will be reset to 0." msgstr "" -"Per didelė dramblio pėdos kompensacija yra nepagrįsta.\n" -"Jei iš tikrųjų pasireiškia rimtas dramblio pėdos efektas, patikrinkite kitus nustatymus.\n" -"Pavyzdžiui, ar pagrindo temperatūra nėra per aukšta.\n" -"\n" -"Reikšmė bus atstatyta į 0." msgid "Alternate extra wall does't work well when ensure vertical shell thickness is set to All." -msgstr "Papildoma alternatyvi sienelė neveikia gerai, kai vertikalaus apvalkalo storis nustatytas į Visi." +msgstr "Alternatyvi papildoma sienelė veikia prastai, kai vertikalaus apvalkalo storio užtikrinimas nustatytas į „Visi“." msgid "" "Change these settings automatically?\n" @@ -4132,8 +4083,8 @@ msgid "" "No - Don't use alternate extra wall" msgstr "" "Automatiškai pakeisti šiuos nustatymus?\n" -"Taip - pakeiskite vertikalaus apvalkalo storį į vidutinį ir įjunkite pakaitinę papildomą sienelę\n" -"Ne - nenaudoti alternatyvios papildomos sienelės" +"Taip – pakeisti vertikalaus apvalkalo storio užtikrinimą į „Vidutinis“ ir įjungti alternatyvią papildomą sienelę\n" +"Ne – nenaudoti alternatyvios papildomos sienelės" msgid "" "Prime tower does not work when Adaptive Layer Height or Independent Support Layer Height is on.\n" @@ -4141,10 +4092,10 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height and Independent Support Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\" arba \"Nepriklausomas atramų sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\" ir \"Nepriklausomą atramų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas adaptyvus sluoksnio aukštis arba nepriklausomas atramų sluoksnio aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti adaptyvų sluoksnio aukštį ir nepriklausomą atramų sluoksnio aukštį" msgid "" "Prime tower does not work when Adaptive Layer Height is on.\n" @@ -4152,10 +4103,10 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Adaptive Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Adaptyvus sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Adaptyvų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas adaptyvus sluoksnio aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti adaptyvų sluoksnio aukštį" msgid "" "Prime tower does not work when Independent Support Layer Height is on.\n" @@ -4163,29 +4114,28 @@ msgid "" "YES - Keep Prime Tower\n" "NO - Keep Independent Support Layer Height" msgstr "" -"Valymo bokštas neveikia, kai įjungtas \"Nepriklausomas atramų sluoksnio aukštis\".\n" -"Ką norite išlaikyti?\n" -"TAIP - Išlaikyti valymo bokštą\n" -"NE - Išlaikyti \"Nepriklausomą atramų sluoksnio aukštį\"" +"Valymo bokštas neveikia, kai įjungtas nepriklausomas atramų sluoksnio aukštis.\n" +"Ką norite palikti?\n" +"TAIP – palikti valymo bokštą\n" +"NE – palikti nepriklausomą atramų sluoksnio aukštį" msgid "" "seam_slope_start_height need to be smaller than layer_height.\n" "Reset to 0." msgstr "" -"seam_slope_start_height turi būti mažesnis nei layer_height.\n" -"Atstatoma į 0." +"„seam_slope_start_height“ turi būti mažesnis už „layer_height“\n" +"Nustatoma iš naujo į 0." -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "" "Lock depth should smaller than skin depth.\n" "Reset to 50% of skin depth." msgstr "" -"Fiksavimo gylis turėtų būti mažesnis už paviršiaus gylį.\n" -"Atstatykite iki 50 % paviršiaus gylio." +"Fiksavimo gylis turėtų būti mažesnis už išorinio sluoksnio gylį.\n" +"Atstatyta į 50 % išorinio sluoksnio gylio." msgid "Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall Generator to be enabled." -msgstr "Abu „Grublėto paviršiaus“ režimai – „Išspaudimas“ ir „kombinuotasis“ – reikalauja, kad būtų įjungtas „Arachnės Sienų Generatorius“." +msgstr "Abiems „Šiurkštaus paviršiaus“ režimams – „Ekstruzija“ ir „Kombinuotas“ – reikalaujama įjungti „Arachne“ sienelių generatorių." msgid "" "Change these settings automatically?\n" @@ -4193,24 +4143,20 @@ msgid "" "No - Disable Arachne Wall Generator and set [Displacement] mode of the Fuzzy Skin" msgstr "" "Automatiškai pakeisti šiuos nustatymus?\n" -"Taip – įjungti „Arachnės Sienų Generatorių“\n" -"Ne – išjungti „Arachnės Sienų Generatorių“ ir nustatyti „Grublėtas paviršius“ [Perkėlimas] režimą" +"Taip – įjungti „Arachne“ sienelių generatorių\n" +"Ne – išjungti „Arachne“ sienelių generatorių ir nustatyti „Šiurkštaus paviršius“ režimą [Slinktis]" 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 "" +msgstr "Spiralinis režimas veikia tik tada, kai sienelės kilpų skaičius yra 1, atramos išjungtos, sulipimo aptikimas zonduojant išjungtas, viršutinių apvalkalo sluoksnių yra 0, reto užpildo tankis yra 0 %, o laiko intervalų vaizdo įrašo tipas – tradicinis." msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Tačiau spausdintuvai su I3 konstrukcija negeneruos pakadrinių vaizdo įrašų." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" "No - Cancel enabling spiral mode" msgstr "" -"Ar pakeisti šiuos nustatymus automatiškai?\n" -"Taip - Pakeisti nurodytus parametrus ir automatiškai įjungti spiralės režimą.\n" -"Ne - Šį kartą nenaudoti spiralės režimo" msgid "Printing" msgstr "Spausdinimas" @@ -4222,7 +4168,7 @@ msgid "Heatbed preheating" msgstr "Spausdinimo pagrindo pašildymas iš anksto" msgid "Vibration compensation" -msgstr "Vibracijos kompensacija" +msgstr "Vibracijų kompensavimas" msgid "Changing filament" msgstr "Gijos keitimas" @@ -4231,13 +4177,13 @@ msgid "M400 pause" msgstr "M400 pauzė" msgid "Paused (filament ran out)" -msgstr "" +msgstr "Pauzė (pasibaigė gija)" msgid "Heating nozzle" -msgstr "" +msgstr "Kaitinamas purkštukas" msgid "Calibrating dynamic flow" -msgstr "" +msgstr "Kalibruojamas dinaminis srautas" msgid "Scanning bed surface" msgstr "Skenuojamas pagrindo paviršius" @@ -4255,139 +4201,139 @@ msgid "Homing toolhead" msgstr "Galvutės grąžinimas į pradinę padėtį" msgid "Cleaning nozzle tip" -msgstr "Purkštuko galiuko valymas" +msgstr "Valomas purkštuko galiukas" msgid "Checking extruder temperature" -msgstr "Tikrinama ekstruderio temperatūra" +msgstr "Tikrinama ekstruderio (stūmiklio) temperatūra" msgid "Paused by the user" -msgstr "" +msgstr "Pauzė (sustabdė naudotojas)" msgid "Pause (front cover fall off)" -msgstr "" +msgstr "Pauzė (nukrito priekinis dangtelis)" msgid "Calibrating the micro lidar" msgstr "Mikro lidaro kalibravimas" msgid "Calibrating flow ratio" -msgstr "" +msgstr "Kalibruojamas srauto santykis" msgid "Pause (nozzle temperature malfunction)" -msgstr "" +msgstr "Pauzė (purkštuko temperatūros sutrikimas)" msgid "Pause (heatbed temperature malfunction)" -msgstr "" +msgstr "Pauzė (pagrindo temperatūros sutrikimas)" msgid "Filament unloading" -msgstr "Gija išstumiama" +msgstr "Gijos išstūmimas" msgid "Pause (step loss)" -msgstr "" +msgstr "Pauzė (žingsnių praradimas)" msgid "Filament loading" -msgstr "Gija įtraukiama" +msgstr "Gijos įtraukimas" msgid "Motor noise cancellation" -msgstr "Variklių garso sumažinimas" +msgstr "Variklių triukšmo slopinimas" msgid "Pause (AMS offline)" -msgstr "" +msgstr "Pauzė (AMS nepasiekiamas)" msgid "Pause (low speed of the heatbreak fan)" -msgstr "" +msgstr "Pauzė (per mažas „heatbreak“ ventiliatoriaus greitis)" msgid "Pause (chamber temperature control problem)" -msgstr "" +msgstr "Pauzė (kameros temperatūros kontrolės problema)" msgid "Cooling chamber" msgstr "Aušinama kamera" msgid "Pause (G-code inserted by user)" -msgstr "" +msgstr "Pauzė (naudotojo įterptas G-kodas)" msgid "Motor noise showoff" -msgstr "Variklio triukšmo demonstravimas" +msgstr "Variklių triukšmo demonstravimas" msgid "Pause (nozzle clumping)" -msgstr "" +msgstr "Pauzė (medžiagos sankaupa ant purkštuko)" msgid "Pause (cutter error)" -msgstr "" +msgstr "Pauzė (kirpiklio klaida)" msgid "Pause (first layer error)" -msgstr "" +msgstr "Pauzė (pirmojo sluoksnio klaida)" msgid "Pause (nozzle clog)" -msgstr "" +msgstr "Pauzė (purkštuko užsikimšimas)" msgid "Measuring motion precision" -msgstr "" +msgstr "Matuojamas judesio tikslumas" msgid "Enhancing motion precision" -msgstr "" +msgstr "Didinamas judesio tikslumas" msgid "Measure motion accuracy" -msgstr "" +msgstr "Matuoti judesio tikslumą" msgid "Nozzle offset calibration" -msgstr "" +msgstr "Purkštuko poslinkio kalibravimas" msgid "High temperature auto bed leveling" -msgstr "" +msgstr "Aukštos temperatūros automatinis pagrindo lyginimas" msgid "Auto Check: Quick Release Lever" -msgstr "" +msgstr "Automatinis patikrinimas: greitojo atlaisvinimo svirtis" msgid "Auto Check: Door and Upper Cover" -msgstr "" +msgstr "Automatinis patikrinimas: durelės ir viršutinis dangtis" msgid "Laser Calibration" -msgstr "" +msgstr "Lazerio kalibravimas" msgid "Auto Check: Platform" -msgstr "" +msgstr "Automatinis patikrinimas: platforma" msgid "Confirming BirdsEye Camera location" -msgstr "" +msgstr "Patvirtinama „BirdsEye“ kameros vieta" msgid "Calibrating BirdsEye Camera" -msgstr "" +msgstr "Kalibruojama „BirdsEye“ kamera" msgid "Auto bed leveling -phase 1" -msgstr "" +msgstr "Automatinis pagrindo lyginimas – 1 fazė" msgid "Auto bed leveling -phase 2" -msgstr "" +msgstr "Automatinis pagrindo lyginimas – 2 fazė" msgid "Heating chamber" -msgstr "" +msgstr "Kaitinama kamera" msgid "Cooling heatbed" -msgstr "" +msgstr "Aušinamas spausdinimo pagrindas" msgid "Printing calibration lines" -msgstr "" +msgstr "Spausdinamos kalibravimo linijos" msgid "Auto Check: Material" -msgstr "" +msgstr "Automatinis patikrinimas: medžiaga" msgid "Live View Camera Calibration" -msgstr "" +msgstr "Tiesioginio vaizdo kameros kalibravimas" msgid "Waiting for heatbed to reach target temperature" -msgstr "" +msgstr "Laukiama, kol pagrindas pasieks tikslinę temperatūrą" msgid "Auto Check: Material Position" -msgstr "" +msgstr "Automatinis patikrinimas: medžiagos padėtis" msgid "Cutting Module Offset Calibration" -msgstr "" +msgstr "Kirpimo modulio poslinkio kalibravimas" msgid "Measuring Surface" -msgstr "" +msgstr "Matuojamas paviršius" msgid "Calibrating the detection position of nozzle clumping" -msgstr "" +msgstr "Kalibruojama medžiagos sankaupos ant purkštuko aptikimo padėtis" msgid "Unknown" msgstr "Nežinomas" @@ -4396,7 +4342,7 @@ msgid "Update successful." msgstr "Atnaujinimas sėkmingas." msgid "Downloading failed." -msgstr "Parsisuntimas nepavyko." +msgstr "Atsisiuntimas nepavyko." msgid "Verification failed." msgstr "Patikrinimas nepavyko." @@ -4405,37 +4351,36 @@ msgid "Update failed." msgstr "Atnaujinimas nepavyko." msgid "Timelapse is not supported on this printer." -msgstr "" +msgstr "Laiko intervalų vaizdo įrašai (timelapse) šiuame spausdintuve nepalaikomi." msgid "Timelapse is not supported while the storage does not exist." -msgstr "" +msgstr "Laiko intervalų vaizdo įrašai nepalaikomi, nes nėra atminties laikmenos." msgid "Timelapse is not supported while the storage is unavailable." -msgstr "" +msgstr "Laiko intervalų vaizdo įrašai nepalaikomi, nes atminties laikmena nepasiekiama." msgid "Timelapse is not supported while the storage is readonly." -msgstr "" +msgstr "Laiko intervalų vaizdo įrašai nepalaikomi, nes atminties laikmena yra tik skaitoma." msgid "To ensure your safety, certain processing tasks (such as laser) can only be resumed on printer." -msgstr "" +msgstr "Siekiant užtikrinti saugumą, tam tikras apdorojimo užduotis (pavyzdžiui, lazerio) galima pratęsti tik pačiame spausdintuve." #, 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 "" +msgstr "Kameros temperatūra per aukšta, todėl gija gali suminkštėti. Palaukite, kol kameros temperatūra nukris žemiau %d ℃. Norėdami pagreitinti aušinimą, galite atidaryti priekines dureles arba įjungti ventiliatorius." #, 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 "" +msgstr "AMS temperatūra per aukšta, todėl gija gali suminkštėti. Palaukite, kol AMS temperatūra nukris žemiau %d ℃." -# TODO: Review, changed by lang refactor. PR 14254 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 "Dabartinė kameros temperatūra arba tikslinė kameros temperatūra viršija 45 ℃. Norint išvengti ekstruderio užsikimšimo, negalima įkelti žemos temperatūros gijų (PLA/PETG/TPU)." +msgstr "Dabartinė arba tikslinė kameros temperatūra viršija 45 ℃. Siekiant išvengti ekstruderio (stūmiklio) užsikimšimo, žemos temperatūros gijų (PLA/PETG/TPU) įverti neleidžiama." 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 "" +msgstr "Ekstruderyje (stūmiklyje) yra įverta žemos temperatūros gija (PLA/PETG/TPU). Siekiant išvengti ekstruderio užsikimšimo, nustatyti kameros temperatūros neleidžiama." 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 "Nustačius kameros temperatūrą žemesnę nei 40 ℃, kameros temperatūros valdymas nebus aktyvuotas. Automatiniu būdu tikslinė kameros temperatūra bus nustatyta į 0 ℃." +msgstr "Nustačius kameros temperatūrą žemesnę nei 40 ℃, kameros temperatūros valdymas nebus aktyvuotas, o tikslinė kameros temperatūra automatiškai bus nustatyta į 0 ℃." msgid "Failed to start print job" msgstr "Nepavyko pradėti spausdinimo" @@ -4444,10 +4389,10 @@ msgid "This calibration does not support the currently selected nozzle diameter" msgstr "Ši kalibravimo procedūra nepalaiko šiuo metu pasirinkto purkštuko skersmens" msgid "Current flowrate cali param is invalid" -msgstr "Dabartinis ekstruzijos srauto kalibravimo parametras yra neteisingas" +msgstr "Dabartinis srauto santykio kalibravimo parametras yra netinkamas" msgid "Selected diameter and machine diameter do not match" -msgstr "Pasirinktas diametras ir įrenginio diametras nesutampa" +msgstr "Pasirinktas skersmuo ir įrenginio skersmuo nesutampa" msgid "Failed to generate cali G-code" msgstr "Nepavyko sugeneruoti kalibravimo G-kodo" @@ -4459,92 +4404,92 @@ msgid "Resume Printing" msgstr "Tęsti spausdinimą" msgid "Resume (defects acceptable)" -msgstr "" +msgstr "Tęsti (defektai priimtini)" msgid "Resume (problem solved)" -msgstr "" +msgstr "Tęsti (problema išspręsta)" msgid "Stop Printing" msgstr "Nutraukti spausdinimą" msgid "Check Assistant" -msgstr "Patikrinimo asistentas" +msgstr "Patikros asistentas" msgid "Filament Extruded, Continue" -msgstr "Gijos išspaustos, tęsti" +msgstr "Gija išspausta, tęsti" msgid "Not Extruded Yet, Retry" -msgstr "Dar neišspausta, bandykite dar kartą" +msgstr "Dar neišspausta, bandyti vėl" msgid "Finished, Continue" -msgstr "Baigta, Tęsti" +msgstr "Baigta, tęsti" msgid "Filament Loaded, Resume" -msgstr "Įdėta gija, tęsti" +msgstr "Gija įverta, tęsti" msgid "View Liveview" -msgstr "Peržiūrėti tiesioginį vaizdą" +msgstr "Rodyti tiesioginį vaizdą" msgid "No Reminder Next Time" -msgstr "" +msgstr "Daugiau nepriminti" msgid "Ignore. Don't Remind Next Time" -msgstr "" +msgstr "Ignoruoti. Daugiau nepriminti" msgid "Ignore this and Resume" -msgstr "" +msgstr "Ignoruoti ir tęsti" msgid "Problem Solved and Resume" -msgstr "" +msgstr "Problema išspręsta, tęsti" msgid "Got it, Turn off the Fire Alarm." -msgstr "" +msgstr "Supratau, išjungti gaisro pavojaus signalą." msgid "Retry (problem solved)" -msgstr "" +msgstr "Bandyti vėl (problema išspręsta)" msgid "Stop Drying" -msgstr "" +msgstr "Stabdyti džiovinimą" msgid "Proceed" -msgstr "" +msgstr "Tęsti" msgid "Retry" msgstr "Kartoti" msgid "Resume" -msgstr "Pratęsti" +msgstr "Tęsti" msgid "Unknown error." msgstr "Nežinoma klaida." msgid "default" -msgstr "numatytas" +msgstr "numatytasis" #, boost-format msgid "Edit Custom G-code (%1%)" msgstr "Redaguoti pasirinktinį G-kodą (%1%)" msgid "Built-in placeholders (Double click item to add to G-code)" -msgstr "Integruoti G-kodo fragmentai (dukart spustelėkite elementą, kad įterptumėte į G-kodą)" +msgstr "Integruoti kintamieji (dukart spustelėkite elementą, kad įterptumėte į G-kodą)" msgid "Search G-code placeholders" -msgstr "Ieškoti G-kodo elementų" +msgstr "Ieškoti G-kodo kintamųjų" msgid "Add selected placeholder to G-code" -msgstr "Įtraukti pasirinktą elementą į G-kodą" +msgstr "Įtraukti pasirinktą kintamąjį į G-kodą" msgid "Select placeholder" -msgstr "Pasirinkti elementą" +msgstr "Pasirinkti kintamąjį" msgid "[Global] Slicing State" -msgstr "[Globali] Sluoksniavimo būsena" +msgstr "[Visuotinė] Sluoksniavimo būsena" msgid "Read Only" msgstr "Tik skaitoma" msgid "Read Write" -msgstr "Skaityti ir rašyti" +msgstr "Skaitymas ir rašymas" msgid "Slicing State" msgstr "Sluoksniavimo būsena" @@ -4553,10 +4498,10 @@ msgid "Print Statistics" msgstr "Spausdinimo statistika" msgid "Objects Info" -msgstr "Objekto informacija" +msgstr "Objektų informacija" msgid "Dimensions" -msgstr "Išmatavimai" +msgstr "Matmenys" msgid "Temperatures" msgstr "Temperatūros" @@ -4574,12 +4519,11 @@ msgstr "Profiliai" msgid "Print settings" msgstr "Spausdinimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" -msgstr "Gijos parametrai" +msgstr "Gijos nustatymai" msgid "SLA Materials settings" -msgstr "SLA medžiagų parametrai" +msgstr "SLA medžiagų nustatymai" msgid "Printer settings" msgstr "Spausdintuvo nustatymai" @@ -4597,23 +4541,22 @@ msgid "Empty string" msgstr "Tuščia eilutė" msgid "Value is out of range." -msgstr "Dydis netelpa į ribas." +msgstr "Reikšmė yra už ribų." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "%s can’t be a percentage" -msgstr "%s negali būti procentai" +msgstr "" #, c-format, boost-format msgid "Value %s is out of range, continue?" -msgstr "Dydis %s netelpa į ribas. Tęsti?" +msgstr "Reikšmė %s yra už ribų, tęsti?" msgid "Parameter validation" msgstr "Parametrų patvirtinimas" #, c-format, boost-format msgid "Value %s is out of range. The valid range is from %d to %d." -msgstr "Dydis %s netelpa į ribas. Tinkami dydžiai yra nuo %d iki %d." +msgstr "Reikšmė %s yra už ribų. Galimas diapazonas yra nuo %d iki %d." #, c-format, boost-format msgid "" @@ -4630,13 +4573,13 @@ msgid "Invalid input format. Expected vector of dimensions in the following form msgstr "Netinkamas įvesties formatas. Numatytas matmenų vektorius tokiu formatu: \"%1%\"" msgid "Input value is out of range" -msgstr "Įvesties vertė viršija ribas" +msgstr "Įvesta reikšmė yra už ribų" msgid "Some extension in the input is invalid" -msgstr "Kai kurie įvesties plėtiniai yra netinkami" +msgstr "Kai kurie įvesties formato plėtiniai yra netinkami" msgid "This parameter expects a valid template." -msgstr "Šis parametras reikalauja galiojančio šablono." +msgstr "Šiam parametrui reikalingas tinkamas šablonas." 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 "Neteisingas šablonas. Naudokite N, N#K arba kableliais atskirtą sąrašą su pasirinktiniu #K kiekvienam įrašui. Pavyzdžiai: 5, 5#2, 1,7,9, 5,9#2,18." @@ -4646,10 +4589,10 @@ msgid "Invalid format. Expected vector format: \"%1%\"" msgstr "Netinkamas formatas. Tinkamas vektorinis formatas: \"%1%\"" msgid "N/A" -msgstr "" +msgstr "N/A" msgid "Pick" -msgstr "Pasirinkite" +msgstr "Paimti" msgid "Summary" msgstr "Santrauka" @@ -4667,7 +4610,7 @@ msgid "Acceleration" msgstr "Pagreitis" msgid "Jerk" -msgstr "Jerk" +msgstr "Trūktelėjimas" msgid "Fan Speed" msgstr "Ventiliatoriaus greitis" @@ -4688,49 +4631,49 @@ msgid "Layer Time (log)" msgstr "Sluoksnio laikas (log)" msgid "Pressure Advance" -msgstr "Pressure Advance" +msgstr "Slėgio išankstinis valdymas (Pressure Advance)" msgid "Noop" -msgstr "" +msgstr "Tuščia operacija (Noop)" msgid "Retract" -msgstr "Įtraukti" +msgstr "Gijos įtraukimas (Retract)" msgid "Unretract" -msgstr "Išleisti" +msgstr "Gijos grąžinimas (Unretract)" msgid "Seam" msgstr "Siūlė" msgid "Tool Change" -msgstr "Įrankių keitimas" +msgstr "Įrankio keitimas" msgid "Color Change" -msgstr "" +msgstr "Spalvos keitimas" msgid "Pause Print" -msgstr "" +msgstr "Spausdinimo pristabdymas" msgid "Travel" -msgstr "Judėjimas" +msgstr "Tuščioji eiga (Travel)" msgid "Wipe" -msgstr "Valymas" +msgstr "Valymas (Wipe)" msgid "Extrude" -msgstr "" +msgstr "Ekstruzija (Išspaudimas)" msgid "Inner wall" -msgstr "Vidinė siena" +msgstr "Vidinė sienelė" msgid "Outer wall" -msgstr "Išorinė siena" +msgstr "Išorinė sienelė" msgid "Overhang wall" -msgstr "Išsikišusi siena" +msgstr "Pakibusios dalies sienelė (Overhang)" msgid "Sparse infill" -msgstr "Retas užpildymas" +msgstr "Retas užpildas" msgid "Internal solid infill" msgstr "Vidinis vientisas užpildas" @@ -4742,7 +4685,7 @@ msgid "Bridge" msgstr "Tiltas" msgid "Gap infill" -msgstr "Tarpų užpildymas" +msgstr "Tarpų užpildas" msgid "Skirt" msgstr "Apvadas" @@ -4757,13 +4700,13 @@ msgid "Bottom surface" msgstr "Apatinis paviršius" msgid "Internal bridge" -msgstr "" +msgstr "Vidinis tiltelis" msgid "Support transition" msgstr "Atramų perėjimas" msgid "Mixed" -msgstr "" +msgstr "Mišrus" msgid "Height: " msgstr "Aukštis: " @@ -4784,16 +4727,16 @@ msgid "Layer Time: " msgstr "Sluoksnio laikas: " msgid "Tool: " -msgstr "" +msgstr "Įrankis: " msgid "Color: " -msgstr "" +msgstr "Spalva: " msgid "Acceleration: " -msgstr "" +msgstr "Pagreitis: " msgid "Jerk: " -msgstr "Jerk: " +msgstr "Trūktelėjimas: " msgid "PA: " msgstr "PA: " @@ -4808,7 +4751,7 @@ msgid "mm³/s" msgstr "mm³/s" msgid "Flow rate" -msgstr "Srauto greitis" +msgstr "Tūrinis srautas (Flow rate)" msgid "Fan speed" msgstr "Ventiliatoriaus greitis" @@ -4823,7 +4766,7 @@ msgid "Speed: " msgstr "Greitis: " msgid "Actual speed profile" -msgstr "" +msgstr "Faktinis greičio profilis" msgid "Statistics of All Plates" msgstr "Visų plokščių statistika" @@ -4840,9 +4783,8 @@ msgstr "Bokštas" msgid "Total" msgstr "Iš viso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Total estimation" -msgstr "Bendra sąmata" +msgstr "" msgid "Total time" msgstr "Bendras laikas" @@ -4851,67 +4793,67 @@ msgid "Total cost" msgstr "Bendra kaina" msgid "Automatically re-slice according to the optimal filament grouping, and the grouping results will be displayed after slicing." -msgstr "" +msgstr "Automatiškai pjaustyti iš naujo pagal optimalų gijų grupavimą, o grupavimo rezultatai bus parodyti po pjaustymo." msgid "Filament Grouping" -msgstr "" +msgstr "Gijų grupavimas" msgid "Why this grouping" -msgstr "" +msgstr "Kodėl šis grupavimas" msgid "Left nozzle" -msgstr "" +msgstr "Kairysis purkštukas" msgid "Right nozzle" -msgstr "" +msgstr "Dešinysis purkštukas" msgid "Please place filaments on the printer based on grouping result." -msgstr "" +msgstr "Prašome sudėti gijas spausdintuve vadovaujantis grupavimo rezultatais." msgid "Tips:" msgstr "Patarimai:" msgid "Current grouping of slice result is not optimal." -msgstr "" +msgstr "Dabartinis pjaustymo rezultatų grupavimas nėra optimalus." #, boost-format msgid "Increase %1%g filament and %2% changes compared to optimal grouping." -msgstr "" +msgstr "Sunaudojama %1% g daugiau gijos ir atliekama %2% keitimų daugiau, lyginant su optimaliu grupavimu." #, boost-format msgid "Increase %1%g filament and save %2% changes compared to optimal grouping." -msgstr "" +msgstr "Sunaudojama %1% g daugiau gijos ir sutaupoma %2% keitimų, lyginant su optimaliu grupavimu." #, boost-format msgid "Save %1%g filament and increase %2% changes compared to optimal grouping." -msgstr "" +msgstr "Sutaupoma %1% g gijos ir atliekama %2% keitimų daugiau, lyginant su optimaliu grupavimu." #, boost-format msgid "Save %1%g filament and %2% changes compared to a printer with one nozzle." -msgstr "" +msgstr "Sutaupoma %1% g gijos ir %2% keitimų, lyginant su vieno purkštuko spausdintuvu." #, boost-format msgid "Save %1%g filament and increase %2% changes compared to a printer with one nozzle." -msgstr "" +msgstr "Sutaupoma %1% g gijos ir atliekama %2% keitimų daugiau, lyginant su vieno purkštuko spausdintuvu." #, boost-format msgid "Increase %1%g filament and save %2% changes compared to a printer with one nozzle." -msgstr "" +msgstr "Sunaudojama %1% g daugiau gijos ir sutaupoma %2% keitimų, lyginant su vieno purkštuko spausdintuvu." msgid "Set to Optimal" -msgstr "" +msgstr "Nustatyti į optimalų" msgid "Regroup filament" -msgstr "" +msgstr "Pergrupuoti gijas" msgid "Wiki Guide" -msgstr "" +msgstr "Wiki vadovas" msgid "up to" msgstr "iki" msgid "above" -msgstr "aukščiau" +msgstr "virš" msgid "from" msgstr "nuo" @@ -4919,13 +4861,11 @@ msgstr "nuo" msgid "Usage" msgstr "Naudojimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height (mm)" -msgstr "Sluoksnio aukštis (mm)" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width (mm)" -msgstr "Linijos plotis (mm)" +msgstr "" msgid "Speed (mm/s)" msgstr "Greitis (mm/s)" @@ -4934,14 +4874,13 @@ msgid "Actual Speed (mm/s)" msgstr "Faktinis greitis (mm/s)" msgid "Acceleration (mm/s²)" -msgstr "" +msgstr "Pagreitis (mm/s²)" msgid "Jerk (mm/s)" -msgstr "Jerk (mm/s)" +msgstr "Trūktelėjimas (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fan speed (%)" -msgstr "Ventiliatoriaus greitis (%)" +msgstr "" msgid "Temperature (°C)" msgstr "Temperatūra (°C)" @@ -4950,12 +4889,11 @@ msgid "Volumetric flow rate (mm³/s)" msgstr "Tūrinis srautas (mm³/s)" msgid "Actual volumetric flow rate (mm³/s)" -msgstr "" +msgstr "Faktinis tūrinis srautas (mm³/s)" msgid "Seams" msgstr "Siūlės" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament changes" msgstr "Gijos keitimai" @@ -4963,7 +4901,7 @@ msgid "Options" msgstr "Parinktys" msgid "Extruder" -msgstr "Ekstruderis" +msgstr "Ekstruderis (Stūmiklis)" msgid "Cost" msgstr "Kaina" @@ -4972,29 +4910,29 @@ msgid "Filament change times" msgstr "Gijų keitimo laikai" msgid "Tool changes" -msgstr "" +msgstr "Įrankio keitimai" msgid "Color change" -msgstr "Spalvos pakeitimas" +msgstr "Spalvos keitimas" +msgctxt "Noun" msgid "Print" msgstr "Spausdinti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Spausdintuvas" msgid "Time Estimation" -msgstr "Lako sąnaudos" +msgstr "Laiko įvertis (skaičiavimas)" msgid "Normal mode" -msgstr "Normalus režimas" +msgstr "Normalusis režimas" msgid "Total Filament" -msgstr "Iš viso gijos" +msgstr "Gijos iš viso" msgid "Model Filament" -msgstr "Gijos modeliams" +msgstr "Modelio gija" msgid "Prepare time" msgstr "Paruošimo laikas" @@ -5003,146 +4941,153 @@ msgid "Model printing time" msgstr "Modelio spausdinimo laikas" msgid "Show stealth mode" -msgstr "" +msgstr "Rodyti slaptąjį režimą" msgid "Show normal mode" -msgstr "" +msgstr "Rodyti normalųjį režimą" 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 "" +"Objektas yra pastatytas tik kairiajam / dešiniajam purkštukui skirtoje zonoje arba viršija kairiojo purkštuko spausdinimo aukštį.\n" +"Įsitikinkite, kad šio objekto naudojamos gijos nėra priskirtos kitiems purkštukams." 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 "" -"Objektas yra padėtas ant plokštės ribos arba viršija aukščio ribą.\n" -"Išspręskite problemą, visiškai perkeldami jį ant plokštės arba nuimdami nuo jos ir patikrinkite, ar aukštis neviršija spausdintuvo tūrio." +"Objektas peržengia plokštės ribas arba viršija aukščio ribą.\n" +"Išspręskite problemą visiškai perkeliami jį ant plokštės arba nuimdami nuo jos ir įsitikindami, kad aukštis neviršija spausdinimo tūrio." msgid "Variable layer height" msgstr "Kintamas sluoksnio aukštis" msgid "Adaptive" -msgstr "Prisitaikantis" +msgstr "Adaptyvus" msgid "Quality / Speed" msgstr "Kokybė / Greitis" msgid "Smooth" -msgstr "Glotniai" +msgstr "Glotnus" msgid "Radius" msgstr "Spindulys" msgid "Keep min" -msgstr "Laikyti min" +msgstr "Išlaikyti minimumą" msgid "Add detail" -msgstr "Pridėti elementą" +msgstr "Pridėti detalumą" msgid "Remove detail" -msgstr "Pašalinti elementą" +msgstr "Pašalinti detalumą" msgid "Reset to base" -msgstr "Iš naujo nustatyti į pagrindinį" +msgstr "Atstatyti į pradinį" msgid "Smoothing" msgstr "Glotninimas" msgid "Increase/decrease edit area" -msgstr "Padidinti / sumažinti redagavimo sritį" +msgstr "Padidinti / sumažinti redagavimo plotą" msgid "Sequence" msgstr "Seka" msgid "Object selection" -msgstr "" +msgstr "Objekto pasirinkimas" msgid "number keys" msgstr "skaičių klavišai" msgid "Number keys can quickly change the color of objects" -msgstr "skaičių klavišais galima greitai pakeisti objektų spalvą" +msgstr "Skaičių klavišais galima greitai pakeisti objektų spalvas" msgid "Following objects are laid over the boundary of plate or exceeds the height limit:\n" -msgstr "" +msgstr "Šie objektai peržengia plokštės ribas arba viršija aukščio ribą:\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 "" +"Išspręskite problemą visiškai perkeldami objektą ant plokštės arba nuimdami nuo jos ir įsitikindami, kad aukštis neviršija spausdinimo tūrio.\n" +"\n" msgid "left nozzle" -msgstr "" +msgstr "kairysis purkštukas" msgid "right nozzle" -msgstr "" +msgstr "dešinysis purkštukas" #, c-format, boost-format msgid "The position or size of some models exceeds the %s's printable range." -msgstr "" +msgstr "Kai kurių modelių padėtis arba dydis viršija „%s“ spausdinimo sritį." #, c-format, boost-format msgid "The position or size of the model %s exceeds the %s's printable range." -msgstr "" +msgstr "Modelio %s padėtis arba dydis viršija „%s“ spausdinimo sritį." msgid " Please check and adjust the part's position or size to fit the printable range:\n" -msgstr "" +msgstr "Patikrinkite ir pakoreguokite detalės padėtį arba dydį, kad ji tilptų į spausdinimo sritį:\n" #, boost-format msgid "Left nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" msgstr "" +"Kairysis purkštukas: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" +"\n" #, boost-format msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" +msgstr "Dešinysis purkštukas: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" + +msgid "Tool move" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Tool move" -msgstr "Įrankio judėjimas" - msgid "Tool Rotate" -msgstr "Įrankio sukimas" +msgstr "Įrankis: sukimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move object" -msgstr "Perkelti objektą" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto orientation options" -msgstr "Automatinio orientavimo parametrai" +msgstr "" msgid "Enable rotation" -msgstr "Leisti sukimąsi" +msgstr "Leisti sukimą" msgid "Optimize support interface area" -msgstr "Optimizuoti atramų sąlyčio plotą" +msgstr "Optimizuoti atramų sąsajos plotą" msgid "Orient" -msgstr "Orientuoti" +msgstr "Orientacija" msgid "Arrange options" msgstr "Išdėstymo parinktys" msgid "0 means auto spacing." -msgstr "0 reiškia automatinius tarpus." +msgstr "0 reiškia automatinį atstumą." msgid "Auto rotate for arrangement" -msgstr "Automatiškai pasukti išdėstymui" +msgstr "Automatinis pasukimas išdėstant" msgid "Allow multiple materials on same plate" msgstr "Leisti skirtingas medžiagas ant tos pačios plokštės" msgid "Avoid extrusion calibration region" -msgstr "Vengti išspaudimo kalibravimo ploto" +msgstr "Vengti ekstruzijos kalibravimo srities" msgid "Align to Y axis" msgstr "Išlygiuoti pagal Y ašį" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Atgal" + +msgctxt "Camera View" msgid "Left" msgstr "Kairė" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Dešinė" @@ -5153,10 +5098,10 @@ msgid "Add plate" msgstr "Įtraukti plokštę" msgid "Auto orient all/selected objects" -msgstr "Automatiškai orientuoti visi/pasirinkti objektai" +msgstr "Automatiškai orientuoti visus / pasirinktus objektus" msgid "Auto orient all objects on current plate" -msgstr "Automatiškai orientuoti visus objektus pasirinktoje plokštėje" +msgstr "Automatiškai orientuoti visus objektus dabartinėje plokštėje" msgid "Arrange all objects" msgstr "Išdėstyti visus objektus" @@ -5177,10 +5122,10 @@ msgid "Select Plate" msgstr "Pasirinkti plokštę" msgid "Slicing" -msgstr "Sluoksniuojama" +msgstr "Pjaustoma (Sluoksniuojama)" msgid "Slice all" -msgstr "Sluoksniuoti viską" +msgstr "Pjaustyti (Sluoksniuoti) viską" msgid "Failed" msgstr "Nepavyko" @@ -5191,57 +5136,65 @@ msgstr "Visos plokštės" msgid "Stats" msgstr "Statistika" +msgid "Slice" +msgstr "Sluoksniuoti" + +msgid "Review" +msgstr "" + msgid "Assembly Return" -msgstr "Sugrąžinti surinkimą" +msgstr "Grįžti iš surinkimo vaizdo" msgid "Return" msgstr "Grąžinti" msgid "Canvas Toolbar" -msgstr "" +msgstr "Drobės įrankių juosta" msgid "Fit camera to scene or selected object." -msgstr "" +msgstr "Talpinti kamerą pagal sceną arba pasirinktą objektą." msgid "3D Navigator" -msgstr "" +msgstr "3D navigatorius" msgid "Zoom button" -msgstr "" +msgstr "Mastelio keitimo (artinimo) mygtukas" msgid "Overhangs" msgstr "Iškyšos" msgid "Outline" +msgstr "Kontūras" + +msgid "Wireframe" msgstr "" msgid "Realistic View" -msgstr "" +msgstr "Realistiškas vaizdas" msgid "Perspective" -msgstr "" +msgstr "Perspektyva" msgid "Axes" -msgstr "" +msgstr "Ašys" msgid "Gridlines" -msgstr "" +msgstr "Tinklelio linijos" msgid "Labels" -msgstr "" +msgstr "Etiketės (Užrašai)" msgid "Paint Toolbar" msgstr "Piešimo įrankių juosta" msgid "Explosion Ratio" -msgstr "Plėtimosi santykis" +msgstr "Išskaidymo koeficientas (Explosion Ratio)" msgid "Section View" -msgstr "Sekcijos peržiūra" +msgstr "Pjūvio vaizdas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Assembly Control" -msgstr "Surinkimo valdymas" +msgstr "" msgid "Selection Mode" msgstr "Pasirinkimo režimas" @@ -5260,68 +5213,67 @@ msgstr "Dydis:" #, 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 "Rasta G-kode judėjimo kelių konfliktų %d sluoksnyje, Z = %.2lfmm. Prašome labiau atskirti konfliktinius objektus (%s <-> %s)." +msgstr "Rasta G-kodo trajektorijų konfliktų %d sluoksnyje, Z = %.2lfmm. Prašome labiau atskirti konfliktuojančius objektus (%s <-> %s)." msgid "An object is laid over the plate boundaries." -msgstr "Objektas yra už spausdinimo pagrindo ribų." +msgstr "Objektas peržengia plokštės ribas." msgid "A G-code path goes beyond the max print height." -msgstr "G-kode judėjimo maršrutas viršija maksimalų spausdinimo aukštį." +msgstr "G-kodo trajektorija viršija maksimalų spausdinimo aukštį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A G-code path goes beyond plate boundaries." -msgstr "G-kode judėjimo maršrutas išeina už spausdinimo plokštės ribų." +msgstr "" msgid "Not support printing 2 or more TPU filaments." -msgstr "" +msgstr "Nepalaikomas 2 ar daugiau TPU gijų spausdinimas." #, c-format, boost-format msgid "Tool %d" -msgstr "" +msgstr "%d įrankis" #, 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 "" +msgstr "Gija %s yra įstatyta į „%s“, tačiau sugeneruota G-kodo trajektorija viršija „%s“ spausdinimo sritį." #, 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 "" +msgstr "Gijos %s yra įstatytos į „%s“, tačiau sugeneruota G-kodo trajektorija viršija „%s“ spausdinimo sritį." #, 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 "" +msgstr "Gija %s yra įstatyta į „%s“, tačiau sugeneruota G-kodo trajektorija viršija „%s“ spausdinimo aukštį." #, 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 "" +msgstr "Gijos %s yra įstatytos į „%s“, tačiau sugeneruota G-kodo trajektorija viršija „%s“ spausdinimo aukštį." msgid "Open wiki for more information." -msgstr "" +msgstr "Atidaryti „wiki“ puslapį, norint gauti daugiau informacijos." msgid "Only the object being edited is visible." msgstr "Matomas tik redaguojamas objektas." #, c-format, boost-format msgid "Filaments %s cannot be printed directly on the surface of this plate." -msgstr "" +msgstr "Gijų %s negalima spausdinti tiesiai ant šios plokštės paviršiaus." msgid "PLA and PETG filaments detected in the mixture. Adjust parameters according to the Wiki to ensure print quality." -msgstr "" +msgstr "Mišinyje aptiktos PLA ir PETG gijos. Norėdami užtikrinti spausdinimo kokybę, pakoreguokite parametrus pagal „Wiki“ vadovą." msgid "The prime tower extends beyond the plate boundary." -msgstr "" +msgstr "Valymo bokštas peržengia plokštės ribas." msgid "Partial flushing volume set to 0. Multi-color printing may cause color mixing in models. Please readjust flushing settings." -msgstr "" +msgstr "Dalinio valymo tūris nustatytas į 0. Spausdinant keliomis spalvomis, modeliuose gali susimaišyti spalvos. Iš naujo sureguliuokite valymo nustatymus." msgid "Click Wiki for help." -msgstr "" +msgstr "Spustelėkite „Wiki“, jei reikia pagalbos." msgid "Click here to regroup" -msgstr "" +msgstr "Spustelėkite čia, kad pergrupuotumėte" msgid "Flushing Volume" -msgstr "" +msgstr "Valymo tūris" msgid "Calibration step selection" msgstr "Kalibravimo žingsnio pasirinkimas" @@ -5329,15 +5281,14 @@ msgstr "Kalibravimo žingsnio pasirinkimas" msgid "Micro lidar calibration" msgstr "Mikro lidaro kalibravimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bed leveling" msgstr "Spausdinimo pagrindo išlyginimas" msgid "High-temperature Heatbed Calibration" -msgstr "" +msgstr "Aukštos temperatūros pagrindo kalibravimas" msgid "Nozzle clumping detection Calibration" -msgstr "" +msgstr "Medžiagos sankaupos ant purkštuko aptikimo kalibravimas" msgid "Calibration program" msgstr "Kalibravimo programa" @@ -5368,22 +5319,22 @@ msgid "Auto-record Monitoring" msgstr "Automatinio įrašymo stebėjimas" msgid "Go Live" -msgstr "Įjungti spausdinimo stebėjimą" +msgstr "Rodyti tiesioginį vaizdą" msgid "Liveview Retry" -msgstr "Pakartoti stebėjimą realiu laiku" +msgstr "Pakartoti tiesioginio vaizdo įkėlimą" msgid "Resolution" msgstr "Skiriamoji geba" msgid "Enable" -msgstr "Įgalinti" +msgstr "Įjungti" msgid "Hostname or IP" -msgstr "Hosto vardas arba IP" +msgstr "Mazgo vardas (Hostname) arba IP" msgid "Custom camera source" -msgstr "Pasirinktinės kameros šaltinis" +msgstr "Pasirinktinis kameros šaltinis" msgid "Show \"Live Video\" guide page." msgstr "Rodyti tiesioginio vaizdo vadovo puslapį." @@ -5392,21 +5343,24 @@ msgid "Connect Printer (LAN)" msgstr "Prijungti spausdintuvą (LAN)" msgid "Please input the printer access code:" -msgstr "Prašome įvesti spausdintuvo prieigos kodą:" +msgstr "Įveskite spausdintuvo prieigos kodą:" msgid "" "You can find it in \"Settings > Network > Access code\"\n" "on the printer, as shown in the figure:" msgstr "" +"Jį rasite spausdintuvo meniu „Nustatymai > Tinklas > Prieigos kodas“,\n" +" kaip parodyta paveikslėlyje:" msgid "" "You can find it in \"Setting > Setting > LAN only > Access Code\"\n" "on the printer, as shown in the figure:" msgstr "" +"Jį rasite spausdintuvo meniu „Nustatymai > Nustatymai > Tik LAN > Prieigos kodas“, \n" +"kaip parodyta paveikslėlyje:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Invalid input" -msgstr "Netinkama įvestis." +msgstr "" msgid "New Window" msgstr "Naujas langas" @@ -5414,12 +5368,11 @@ msgstr "Naujas langas" msgid "Open a new window" msgstr "Atidaryti naują langą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Closing application" -msgstr "Programa uždaroma" +msgstr "" msgid "Closing Application while some presets are modified." -msgstr "Programa bus uždaryta, nors kai kurie nustatymai neįrašyti." +msgstr "Programa uždaroma, nors kai kurie profiliai yra pakeisti." msgid "Logging" msgstr "Registravimas" @@ -5434,7 +5387,7 @@ msgid "Device" msgstr "Įrenginys" msgid "Multi-device" -msgstr "Multiįrenginys" +msgstr "Kelių įrenginių valdymas (Multi-device)" msgid "Project" msgstr "Projektas" @@ -5446,10 +5399,10 @@ msgid "No" msgstr "Ne" msgid "will be closed before creating a new model. Do you want to continue?" -msgstr "bus uždaryta prieš sukuriant modelį. Ar norite tęsti?" +msgstr "bus uždarytas prieš sukuriant naują modelį. Ar norite tęsti?" msgid "Slice plate" -msgstr "Sluoksniuoti plokštę" +msgstr "Pjaustyti (Sluoksniuoti) plokštę" msgid "Print plate" msgstr "Spausdinti plokštę" @@ -5457,14 +5410,18 @@ msgstr "Spausdinti plokštę" msgid "Export G-code file" msgstr "Eksportuoti G-kodo failą" +msgctxt "Verb" +msgid "Print" +msgstr "Spausdinti" + msgid "Export plate sliced file" -msgstr "Eksportuoti sluoksniuotos plokštės failą" +msgstr "Eksportuoti supjaustytos plokštės failą" msgid "Send" msgstr "Siųsti" msgid "Export all sliced file" -msgstr "Eksportuoti visko sluoksniuoto failą" +msgstr "Eksportuoti visko supjaustyto failą" msgid "Print all" msgstr "Spausdinti viską" @@ -5473,10 +5430,10 @@ msgid "Send all" msgstr "Siųsti viską" msgid "Send to Multi-device" -msgstr "Siųsti į multiįrenginį" +msgstr "Siųsti į kelis įrenginius" msgid "Keyboard Shortcuts" -msgstr "Klaviatūros nuorodos" +msgstr "Spartieji klavišai" msgid "Show the list of keyboard shortcuts" msgstr "Rodyti sparčiųjų klavišų sąrašą" @@ -5488,7 +5445,7 @@ msgid "Show Configuration Folder" msgstr "Rodyti konfigūravimo katalogą" msgid "Troubleshoot Center" -msgstr "" +msgstr "Pagalbos centras" msgid "Open Network Test" msgstr "Atidaryti tinklo testą" @@ -5507,17 +5464,17 @@ msgid "Upload Models" msgstr "Įkelti modelius" msgid "Download Models" -msgstr "Parsisiųsti modelius" +msgstr "Atsisiųsti modelius" msgid "Default View" -msgstr "Numatytas vaizdas" +msgstr "Numatytasis vaizdas" msgid "Top View" msgstr "Vaizdas iš viršaus" #. TRN To be shown in the main menu View->Bottom msgid "Bottom" -msgstr "Apatinis" +msgstr "Apačia" msgid "Bottom View" msgstr "Vaizdas iš apačios" @@ -5541,7 +5498,7 @@ msgid "Right View" msgstr "Vaizdas iš dešinės" msgid "Start a new window" -msgstr "Pradėti naują langą" +msgstr "Atidaryti naują langą" msgid "New Project" msgstr "Naujas projektas" @@ -5553,7 +5510,7 @@ msgid "Open a project file" msgstr "Atidaryti projekto failą" msgid "Recent files" -msgstr "Naujausi failai" +msgstr "Paskutinieji failai" msgid "Save Project" msgstr "Išsaugoti projektą" @@ -5562,10 +5519,10 @@ msgid "Save current project to file" msgstr "Išsaugoti dabartinį projektą į failą" msgid "Save Project as" -msgstr "Išsaugoti projektą kaip" +msgstr "Įrašyti projektą kaip" msgid "Save current project as" -msgstr "Išsaugoti dabartinį projektą kaip" +msgstr "Įrašyti dabartinį projektą kaip" msgid "Import 3MF/STL/STEP/SVG/OBJ/AMF" msgstr "Importuoti 3MF/STL/STEP/SVG/OBJ/AMF" @@ -5583,7 +5540,7 @@ msgid "Import Configs" msgstr "Importuoti konfigūracijas" msgid "Load configs" -msgstr "Užkrauti konfigūracijas" +msgstr "Įkelti konfigūracijas" msgid "Import" msgstr "Importuoti" @@ -5595,22 +5552,22 @@ msgid "Export all objects as STLs" msgstr "Eksportuoti visus objektus kaip STL" msgid "Export all objects as one DRC" -msgstr "" +msgstr "Export all objects as one DRC" msgid "Export all objects as DRCs" -msgstr "" +msgstr "Export all objects as DRCs" msgid "Export Generic 3MF" -msgstr "Eksportuoti pagrindinį 3MF" +msgstr "Eksportuoti bendrąjį (Generic) 3MF" msgid "Export 3MF file without using some 3mf-extensions" msgstr "Eksportuoti 3MF failą nenaudojant kai kurių 3MF plėtinių" msgid "Export current sliced file" -msgstr "Eksportuoti dabartinį sluoksniuotą failą" +msgstr "Eksportuoti dabartinį supjaustytą failą" msgid "Export all plate sliced file" -msgstr "Eksportuoti visų sluoksniuotų plokščių failą" +msgstr "Eksportuoti visų supjaustytų plokščių failą" msgid "Export G-code" msgstr "Eksportuoti G-kodą" @@ -5622,7 +5579,7 @@ msgid "Export toolpaths as OBJ" msgstr "Eksportuoti įrankių trajektorijas OBJ formatu" msgid "Export Preset Bundle" -msgstr "Eksportuoti parametrų rinkinį" +msgstr "Eksportuoti profilių rinkinį" msgid "Export current configuration to files" msgstr "Eksportuoti dabartinę konfigūraciją į failus" @@ -5631,25 +5588,25 @@ msgid "Export" msgstr "Eksportuoti" msgid "Sync Presets" -msgstr "" +msgstr "Sinchronizuoti profilius" msgid "Pull and apply the latest presets from OrcaCloud" -msgstr "" +msgstr "Atsisiųsti ir pritaikyti naujausius profilius iš „OrcaCloud“" msgid "You must be logged in to sync presets from cloud." -msgstr "" +msgstr "Norėdami sinchronizuoti profilius iš debesies, turite būti prisijungę." msgid "Quit" msgstr "Išeiti" msgid "Undo" -msgstr "Anuliuoti" +msgstr "Atšaukti" msgid "Redo" msgstr "Perdaryti" msgid "Cut selection to clipboard" -msgstr "Iškirpti pasirinktą į iškarpinę" +msgstr "Iškirpti pasirinkimą į mainų sritį" msgid "Copy" msgstr "Kopijuoti" @@ -5661,33 +5618,31 @@ msgid "Paste" msgstr "Įklijuoti" msgid "Paste clipboard" -msgstr "Įklijuoti iškarpinės turinį" +msgstr "Įklijuoti iš mainų srities" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete Selected" -msgstr "Ištrinti pasirinktus" +msgstr "" msgid "Deletes the current selection" -msgstr "Ištrina pasirinktus" +msgstr "Ištrina dabartinį pasirinkimą" msgid "Deletes all objects" msgstr "Ištrina visus objektus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clone Selected" -msgstr "Klonuoti pasirinktą" +msgstr "" msgid "Clone copies of selections" -msgstr "Klonuoti pasirinktų kopijas" +msgstr "Klonuoti pasirinktus objektus" msgid "Duplicate Current Plate" msgstr "Dubliuoti dabartinę plokštę" msgid "Duplicate the current plate" -msgstr "Dubliuoti dabartinę plokštelę" +msgstr "Dubliuoti dabartinę plokštę" msgid "Selects all objects" -msgstr "Parenka visus objektus" +msgstr "Pasirenka visus objektus" msgid "Deselects all objects" msgstr "Panaikina visų objektų pasirinkimą" @@ -5696,31 +5651,31 @@ msgid "Use Perspective View" msgstr "Naudoti perspektyvinį vaizdą" msgid "Use Orthogonal View" -msgstr "Naudoti ortogonalų vaizdą" +msgstr "Naudoti ortografinį vaizdą" msgid "Auto Perspective" msgstr "Automatinė perspektyva" msgid "Automatically switch between orthographic and perspective when changing from top/bottom/side views." -msgstr "Automatiškai perjungti ortografinį ir perspektyvinį vaizdą, kai perjungiamas vaizdas iš viršaus / apačios / šono." +msgstr "Automatiškai perjungti tarp ortografinio ir perspektyvinio vaizdo, keičiant vaizdus iš viršaus / apačios / šonų." msgid "Show &G-code Window" msgstr "Rodyti &G-kodo langą" msgid "Show G-code window in Preview scene." -msgstr "Rodyti g-kodo langą peržiūros vaizde." +msgstr "Rodyti G-kodo langą peržiūros režime." msgid "Show 3D Navigator" msgstr "Rodyti 3D navigatorių" msgid "Show 3D navigator in Prepare and Preview scene." -msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros scenose." +msgstr "Rodyti 3D navigatorių paruošimo ir peržiūros režimuose." msgid "Show Gridlines" -msgstr "" +msgstr "Rodyti tinklelio linijas" msgid "Show Gridlines on plate" -msgstr "" +msgstr "Rodyti tinklelio linijas ant plokštės" msgid "Reset Window Layout" msgstr "Atstatyti lango išdėstymą" @@ -5729,16 +5684,16 @@ msgid "Reset to default window layout" msgstr "Atstatyti į pradinį lango išdėstymą" msgid "Show &Labels" -msgstr "Rodyti etiketes" +msgstr "Rodyti &užrašus (etiketes)" msgid "Show object labels in 3D scene." -msgstr "3D scenoje rodyti objektų etiketes." +msgstr "3D scenoje rodyti objektų užrašus." msgid "Show &Overhang" -msgstr "Rodyti iškyšas" +msgstr "Rodyti paki&busias dalis (Overhangs)" msgid "Show object overhang highlight in 3D scene." -msgstr "3D scenoje paryškinti iškyšas." +msgstr "3D scenoje paryškinti pakibusias dalis (overhangs)." msgid "Show Selected Outline (beta)" msgstr "Rodyti pasirinktą kontūrą (beta)" @@ -5753,10 +5708,10 @@ msgid "View" msgstr "Vaizdas" msgid "Preset Bundle" -msgstr "" +msgstr "Profilių rinkinys" msgid "Syncing presets from cloud…" -msgstr "" +msgstr "Sinchronizuojami profiliai iš debesies…" msgid "Help" msgstr "Pagalba" @@ -5765,40 +5720,40 @@ msgid "Temperature Calibration" msgstr "Temperatūros kalibravimas" msgid "Max flowrate" -msgstr "Maks srautas" +msgstr "Maksimalus tūrinis srautas" msgid "Pressure advance" -msgstr "Filamento tiekimas posūkio metu" +msgstr "Slėgio kompensavimas (Pressure Advance)" msgid "Flow ratio" msgstr "Srauto santykis" msgid "Flow Rate Calibration" -msgstr "Srauto kalibravimas" +msgstr "Tūrinio srauto kalibravimas" msgid "Retraction" -msgstr "Įtraukimas" +msgstr "Atitraukimas (Retraction)" msgid "Cornering" msgstr "Posūkiai" msgid "Cornering calibration" -msgstr "" +msgstr "Posūkių (greičio valdymo) kalibravimas" msgid "Input Shaping Frequency" msgstr "Įvesties formavimo dažnis" msgid "Input Shaping Damping/zeta factor" -msgstr "Įvesties formavimo Slopinimas/zeta koeficientas" +msgstr "Įvesties formavimo slopinimo (zeta) koeficientas" msgid "Input Shaping" msgstr "Įvesties formavimas" msgid "VFA" -msgstr "VFA" +msgstr "VFA (smulkūs vertikalūs artefaktai)" msgid "Calibration Guide" -msgstr "" +msgstr "Kalibravimo vadovas" msgid "&Open G-code" msgstr "Atidaryti G-kodą" @@ -5810,16 +5765,16 @@ msgid "Re&load from Disk" msgstr "Iš naujo įke<i iš disko" msgid "Reload the plater from disk" -msgstr "Iš naujo įkelkite plokštę iš disko" +msgstr "Iš naujo įkelti plokštę (modelius) iš disko" msgid "Export &Toolpaths as OBJ" -msgstr "Eksportas ir įrankių trajektorijos kaip OBJ" +msgstr "Eksportuoti įrankių &trajektorijas kaip OBJ" msgid "Open &Slicer" -msgstr "Atidaryti &sluoksniuotoją" +msgstr "Atidaryti &pjaustyklę (Slicer)" msgid "Open Slicer" -msgstr "Atidaryti sluoksniuotoją" +msgstr "Atidaryti pjaustyklę (Slicer)" msgid "&Quit" msgstr "Išeiti" @@ -5835,63 +5790,60 @@ msgid "&View" msgstr "&Vaizdas" msgid "&Help" -msgstr "Pagalba" +msgstr "&Pagalba" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A file exists with the same name: %s. Do you want to overwrite it?" -msgstr "Failas tokiu pavadinimu jau egzistuoja: %s. Ar norite jį pakeisti?" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A config exists with the same name: %s. Do you want to overwrite it?" -msgstr "Konfigūracija tokiu pavadinimu jau egzistuoja: %s. Ar norite ją pakeisti?" +msgstr "" msgid "Overwrite file" -msgstr "Perrašyti failą" +msgstr "Pakeisti (perrašyti) failą" msgid "Overwrite config" -msgstr "Perrašyti konfigūraciją" +msgstr "Pakeisti (perrašyti) konfigūraciją" msgid "Yes to All" -msgstr "Taip viskam" +msgstr "Taip visiems" msgid "No to All" -msgstr "Ne viskam" +msgstr "Ne visiems" msgid "Choose a directory" -msgstr "Pasirinkite katalogą" +msgstr "Pasirinkite aplanką (katalogą)" #, 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] "Eksportuota %d konfigūracija. (tik nesisteminė konfigūracija)" -msgstr[1] "Eksportuotos %d konfigūracijos. (tik nesisteminės konfigūracijos)" -msgstr[2] "Eksportuota %d konfigūracijų. (tik nesisteminės konfigūracijos)" +msgstr[0] "Eksportuotas %d profilis. (Tik nesisteminiai profiliai)" +msgstr[1] "Eksportuoti %d profiliai. (Tik nesisteminiai profiliai)" +msgstr[2] "Eksportuota %d profilių. (Tik nesisteminiai profiliai)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export Result" -msgstr "Eksportuoti rezultatą" +msgstr "" msgid "Select profile to load:" -msgstr "Pasirinkite profilį įkėlimui:" +msgstr "Pasirinkite įkeliamą profilį:" #, 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] "Įkelta %d konfigūracija. (Tik nesisteminė ir suderinama konfigūracija)" -msgstr[1] "Įkeltos %d konfigūracijos. (Tik nesisteminės ir suderinamos konfigūracijos)" -msgstr[2] "Įkelta %d konfigūracijų. (Tik nesisteminės ir suderinamos konfigūracijos)" +msgstr[0] "Importuotas %d profilis. (Tik nesisteminiai ir suderinami profiliai)" +msgstr[1] "Importuoti %d profiliai. (Tik nesisteminiai ir suderinami profiliai)" +msgstr[2] "Importuota %d profilių. (Tik nesisteminiai ir suderinami profiliai)" msgid "" "\n" "Hint: Make sure you have added the corresponding printer before importing the configs." msgstr "" "\n" -"Pastaba: Prieš įkeliant konfigūracijas įsitikinkite, kad pridėjote atitinkamą spausdintuvą." +"Patarimas: prieš importuodami profilius įsitikinkite, kad pridėjote atitinkamą spausdintuvą." msgid "Import result" -msgstr "Importuoti rezultatą" +msgstr "Importavimo rezultatas" msgid "File is missing" msgstr "Trūksta failo" @@ -5906,66 +5858,69 @@ msgid "" "2. The Filament presets\n" "3. The Printer presets" msgstr "" +"Ar norite sinchronizuoti savo asmeninius duomenis iš „Orca Cloud“?\n" +"Juose yra ši informacija:\n" +"1. Spausdinimo procesų profiliai\n" +"2. Gijų profiliai\n" +"3. Spausdintuvų profiliai" msgid "Synchronization" msgstr "Sinchronizacija" msgid "The device cannot handle more conversations. Please retry later." -msgstr "Įrenginys, su kuriuo bandote bendrauti, šiuo metu yra perkrautas ir negali palaikyti daugiau pokalbių. Pabandykite vėliau." +msgstr "Įrenginys negali apdoroti daugiau užklausų. Pabandykite vėliau." msgid "Player is malfunctioning. Please reinstall the system player." msgstr "Grotuvas neveikia tinkamai. Prašome iš naujo įdiegti sistemos grotuvą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The player is not loaded; please click the \"play\" button to retry." -msgstr "Grotuvas neįkeltas. Spustelėkite \"paleisti\" mygtuką, kad bandytumėte iš naujo." - -msgid "The player is not loaded because the GStreamer GTK video sink is missing or failed to initialize." msgstr "" +msgid "The player is not loaded because the GStreamer GTK video sink is missing or failed to initialize." +msgstr "Grotuvas neįkeltas, nes trūksta „GStreamer GTK“ vaizdo išvesties (video sink) arba nepavyko jos inicijuoti." + msgid "Please confirm if the printer is connected." -msgstr "Prašome patvirtinti, kas spausdintuvas prijungtas." +msgstr "Įsitikinkite (patikrinkite), ar spausdintuvas prijungtas." msgid "The printer is currently busy downloading. Please try again after it finishes." -msgstr "Spausdintuvas šiuo metu siunčiasi naujinį. Pabandykite dar kartą, kai atsisiuntimas bus baigtas." +msgstr "Spausdintuvas šiuo metu siunčiasi duomenis. Pabandykite dar kartą, kai atsisiuntimas bus baigtas." msgid "Printer camera is malfunctioning." msgstr "Spausdintuvo kamera neveikia tinkamai." msgid "A problem occurred. Please update the printer firmware and try again." -msgstr "Iškilo problema. Atnaujinkite spausdintuvo programinę įrangą ir bandykite dar kartą." +msgstr "Įvyko klaida. Atnaujinkite spausdintuvo programinę aparatinę įrangą (firmware) ir bandykite dar kartą." msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." -msgstr "LAN tiesioginė peržiūra („Liveview“) išjungta. Įjunkite tiesioginę peržiūrą spausdintuvo ekrane." +msgstr "Tiesioginis vaizdas tik per LAN („LAN Only Liveview“) yra išjungtas. Įjunkite tiesioginį vaizdą spausdintuvo ekrane." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please enter the IP of the printer to connect." -msgstr "Prašome įvesti norimo prijungti spausdintuvo IP adresą." +msgstr "" msgid "Initializing..." msgstr "Inicializuojama..." msgid "Connection Failed. Please check the network and try again" -msgstr "Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą" +msgstr "Nepavyko prisijungti. Patikrinkite tinklo ryšį ir bandykite dar kartą." msgid "Please check the network and try again. You can restart or update the printer if the issue persists." -msgstr "Ryšio klaida. Patikrinkite tinklą ir bandykite dar kartą. Jei problema neišnyksta, galite pabandyti iš naujo paleisti arba atnaujinti spausdintuvą." +msgstr "Patikrinkite tinklo ryšį ir bandykite dar kartą. Jei problema išlieka, paleiskite iš naujo arba atnaujinkite spausdintuvą." msgid "The printer has been logged out and cannot connect." -msgstr "Spausdintuvas atsijungė ir nebegali prisijungti." +msgstr "Spausdintuvas yra atjungtas nuo paskyros ir negali prisijungti." msgid "Video Stopped." msgstr "Vaizdo įrašas sustabdytas." msgid "LAN Connection Failed (Failed to start liveview)" -msgstr "LAN prisijungimo klaida (Nepavyko paleisti tiesioginės peržiūros)" +msgstr "Nepavyko prisijungti per LAN (Nepavyko paleisti tiesioginio vaizdo)" msgid "" "Virtual Camera Tools is required for this task!\n" "Do you want to install them?" msgstr "" -"Šiai užduočiai reikia Virtualios kameros įrankių!\n" -"Ar norite juos instaliuoti?" +"Šiai užduočiai atlikti reikalingi virtualios kameros įrankiai „Virtual Camera Tools“!\n" +"Ar norite juos įdiegti?" msgid "Downloading Virtual Camera Tools" msgstr "Atsisiunčiami virtualios kameros įrankiai" @@ -5976,8 +5931,8 @@ msgid "" "Do you want to stop this virtual camera?" msgstr "" "Veikia kita virtuali kamera.\n" -"Orca Slicer palaiko tik vieną virtualią kamerą.\n" -"Ar norite sustabdyti šią virtualią kamerą?" +"„Orca Slicer“ palaiko tik vieną virtualią kamerą.\n" +"Ar norite sustabdyti anksčiau paleistą virtualią kamerą?" #, c-format, boost-format msgid "Virtual camera initialize failed (%s)!" @@ -6011,19 +5966,19 @@ msgid "Group files by month, recent first." msgstr "Grupuoti failus pagal mėnesį, naujausi pirmiausia." msgid "Show all files, recent first." -msgstr "Rodyti visus failus, naujausi pradžioje." +msgstr "Rodyti visus failus, naujausius rodyti pirmiausia." msgid "Timelapse" -msgstr "Greitintas vaizdo įrašas" +msgstr "Intervalinis fotografavimas („Timelapse“)" msgid "Switch to timelapse files." -msgstr "Perjungti į pakadrinio video failus." +msgstr "Perjungti į intervalinio fotografavimo („timelapse“) failus." msgid "Video" -msgstr "" +msgstr "Vaizdo įrašai (Video)" msgid "Switch to video files." -msgstr "Perjungti į video failus." +msgstr "Perjungti į vaizdo įrašų failus." msgid "Switch to 3MF model files." msgstr "Perjungti į 3MF modelių failus." @@ -6032,13 +5987,13 @@ msgid "Delete selected files from printer." msgstr "Ištrinti pasirinktus failus iš spausdintuvo." msgid "Download" -msgstr "Parsisiųsti" +msgstr "Atsisiųsti" msgid "Download selected files from printer." msgstr "Atsisiųsti pasirinktus failus iš spausdintuvo." msgid "Batch manage files." -msgstr "Valdyti fails rinkinyje." +msgstr "Masinis failų valdymas." msgid "Refresh" msgstr "Atnaujinti" @@ -6047,7 +6002,7 @@ msgid "Reload file list from printer." msgstr "Iš naujo iš spausdintuvo įkelti failų sąrašą." msgid "No printers." -msgstr "Bėra spausdintuvų." +msgstr "Nėra spausdintuvų." msgid "Loading file list..." msgstr "Įkeliamas failų sąrašas..." @@ -6059,13 +6014,13 @@ msgid "Load failed" msgstr "Įkėlimas nepavyko" msgid "Browsing file in storage is not supported in current firmware. Please update the printer firmware." -msgstr "" +msgstr "Failų naršymas atmintinėje nepalaikomas esamoje programinėje aparatinėje įrangoje. Atnaujinkite spausdintuvo programinę įrangą." msgid "LAN Connection Failed (Failed to view sdcard)" -msgstr "LAN ryšio klaida (Nepavyko pasiekti SD kortelės)" +msgstr "Nepavyko prisijungti per LAN (Nepavyko pasiekti SD kortelės)" msgid "Browsing file in storage is not supported in LAN Only Mode." -msgstr "" +msgstr "Failų naršymas atmintinėje nėra palaikomas „Tik LAN“ režimu." #, c-format, boost-format msgid "You are going to delete %u file from printer. Are you sure to continue?" @@ -6085,7 +6040,7 @@ msgid "Delete file" msgstr "Ištrinti failą" msgid "Fetching model information..." -msgstr "Modelio informacijos rinkimas..." +msgstr "Gaunama modelio informacija..." msgid "Failed to fetch model information from printer." msgstr "Nepavyko iš spausdintuvo gauti modelio informacijos." @@ -6094,11 +6049,11 @@ msgid "Failed to parse model information." msgstr "Nepavyko apdoroti modelio informacijos." 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 faile nėra G-kodo duomenų. Susluoksniuokite failą su Orca Slicer ir eksportuokite naują .gcode.3mf failą." +msgstr "Failas „.gcode.3mf“ neturi G-kodo duomenų. Supjaustykite jį su „Orca Slicer“ ir eksportuokite naują „.gcode.3mf“ failą." #, c-format, boost-format msgid "File '%s' was lost! Please download it again." -msgstr "Failas '%s' prarastas! Prašome parsisiųsti jį dar kartą." +msgstr "Failas „%s“ nerastas! Atsisiųskite jį iš naujo." #, c-format, boost-format msgid "" @@ -6109,13 +6064,13 @@ msgstr "" "Pavadinimas: %s\n" msgid "Download waiting..." -msgstr "Laikia atsisiuntimas..." +msgstr "Laukiama atsisiuntimo..." msgid "Play" msgstr "Leisti" msgid "Open Folder" -msgstr "Atverti katalogą" +msgstr "Atidaryti aplanką" msgid "Download finished" msgstr "Atsisiuntimas baigtas" @@ -6125,13 +6080,13 @@ msgid "Downloading %d%%..." msgstr "Atsisiunčiama %d%%..." msgid "Air Condition" -msgstr "" +msgstr "Kameros vėdinimas / temperatūra" msgid "Reconnecting the printer, the operation cannot be completed immediately, please try again later." msgstr "Bandant prisijungti prie spausdintuvo, operacija negali būti atlikta iš karto. Pabandykite dar kartą vėliau." msgid "Timeout, please try again." -msgstr "" +msgstr "Baigėsi laukimo laikas, prašome bandyti vėliau." msgid "File does not exist." msgstr "Failas neegzistuoja." @@ -6146,40 +6101,42 @@ 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 "" +"Patikrinkite, ar į spausdintuvą įdėta laikmena.\n" +"Jei ji vis tiek nuskaitoma, galite pabandyti laikmeną suformatuoti." msgid "The firmware version of the printer is too low. Please update the firmware and try again." -msgstr "" +msgstr "Spausdintuvo aparatinės programinės įrangos (firmware) versija yra per sena. Atnaujinkite aparatinę programinę įrangą ir bandykite dar kartą." msgid "The file already exists, do you want to replace it?" -msgstr "" +msgstr "Failas jau egzistuoja, ar norite jį pakeisti?" msgid "Insufficient storage space, please clear the space and try again." -msgstr "" +msgstr "Nepakanka vietos laikmenoje, atlaisvinkite vietos ir bandykite dar kartą." msgid "File creation failed, please try again." -msgstr "" +msgstr "Nepavyko sukurti failo, bandykite dar kartą." msgid "File write failed, please try again." -msgstr "" +msgstr "Nepavyko įrašyti failo, bandykite dar kartą." msgid "MD5 verification failed, please try again." -msgstr "" +msgstr "MD5 patikra nepavyko, bandykite dar kartą." msgid "File renaming failed, please try again." -msgstr "" +msgstr "Nepavyko pervadinti failo, bandykite dar kartą." msgid "File upload failed, please try again." -msgstr "" +msgstr "Nepavyko įkelti failo, bandykite dar kartą." #, c-format, boost-format msgid "Error code: %d" msgstr "Klaidos kodas: %d" msgid "User cancels task." -msgstr "" +msgstr "Naudotojas atšaukė užduotį." msgid "Failed to read file, please try again." -msgstr "" +msgstr "Nepavyko nuskaityti failo, bandykite dar kartą." msgid "Speed:" msgstr "Greitis:" @@ -6194,7 +6151,7 @@ msgid "Zoom" msgstr "Padidinti" msgid "Translation/Zoom" -msgstr "Konvertavimas/Mastelio keitimas" +msgstr "Postūmis / Mastelio keitimas" msgid "3Dconnexion settings" msgstr "3Dconnexion nustatymai" @@ -6212,16 +6169,16 @@ msgid "Invert Z axis" msgstr "Apsukti Z ašį" msgid "Invert Yaw axis" -msgstr "Apsukti posūkio aplink ašį" +msgstr "Apgręžti posūkio ašį (Yaw)" msgid "Invert Pitch axis" -msgstr "Apsukti polinkio ašį" +msgstr "Apgręžti tangažo ašį (Pitch)" msgid "Invert Roll axis" -msgstr "Apsukti ritinio ašį" +msgstr "Apgręžti posvyrio ašį (Roll)" msgid "(LAN)" -msgstr "" +msgstr "(LAN)" msgid "Search" msgstr "Paieška" @@ -6238,9 +6195,8 @@ msgstr "Pasiekiamas" msgid "Input access code" msgstr "Įvesti prieigos kodą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Can't find devices?" -msgstr "Negalite rasti jūsų įrenginių?" +msgstr "" msgid "Log out successful." msgstr "Atsijungimas sėkmingas." @@ -6252,31 +6208,28 @@ msgid "Busy" msgstr "Užimtas" msgid "Modifying the device name" -msgstr "Modifikuojamas įrenginio pavadinimas" +msgstr "Keičiamas įrenginio pavadinimas" msgid "Name is invalid;" msgstr "Pavadinimas netinkamas;" msgid "illegal characters:" -msgstr "neleidžiami simboliai:" +msgstr "Neleistini simboliai:" msgid "illegal suffix:" -msgstr "neleidžiamas plėtinys:" +msgstr "Neleistinas plėtinys:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name field is not allowed to be empty." -msgstr "Neleidžiama, kad pavadinimas būtų tuščias." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to start with a space." -msgstr "Neleidžiama, kad pavadinimas prasidėtų tarpo simboliu." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to end with a space." -msgstr "Neleidžiama, kad pavadinimas baigtųsi tarpo simboliu." +msgstr "" msgid "The name is not allowed to exceed 32 characters." -msgstr "" +msgstr "Pavadinimas negali viršyti 32 simbolių." msgid "Bind with Pin Code" msgstr "Susieti su PIN kodu" @@ -6289,17 +6242,16 @@ msgid "Quit" msgstr "Išeiti" msgid "Switching..." -msgstr "" +msgstr "Perjungiama..." msgid "Switching failed" -msgstr "" +msgstr "Nepavyko perjungti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printing progress" -msgstr "Spausdinimo eiga" +msgstr "" msgid "Parts Skip" -msgstr "" +msgstr "Dalių praleidimas" msgid "Stop" msgstr "Sustabdyti" @@ -6308,18 +6260,15 @@ msgid "Layer: N/A" msgstr "Sluoksnis: N/A" msgid "Click to view thermal preconditioning explanation" -msgstr "" +msgstr "Spustelėkite, kad peržiūrėtumėte terminio paruošimo paaiškinimą" msgid "Clear" msgstr "Išvalyti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" "but synchronizing rating information has failed." msgstr "" -"Sėkmingai išspausdinote mažą modelį, tačiau \n" -"įvertinimo informacijos sinchronizavimas nepavyko." msgid "How do you like this printing file?" msgstr "Kaip jums patiko šis spausdinimo failas?" @@ -6334,7 +6283,7 @@ msgid "Camera" msgstr "Kamera" msgid "Storage" -msgstr "Saugykla" +msgstr "Laikmena" msgid "Camera Setting" msgstr "Kameros nustatymai" @@ -6343,16 +6292,16 @@ msgid "Switch Camera View" msgstr "Perjungti kameros vaizdą" msgid "Control" -msgstr "Valdyti" +msgstr "Valdymas" msgid "Printer Parts" -msgstr "Spasdintuvo dalys" +msgstr "Spausdintuvo dalys" msgid "Print Options" msgstr "Spausdinimo parametrai" msgid "Safety Options" -msgstr "" +msgstr "Saugos nustatymai" msgid "Lamp" msgstr "Apšvietimas" @@ -6364,48 +6313,47 @@ msgid "Debug Info" msgstr "Derinimo informacija" msgid "Filament loading..." -msgstr "" +msgstr "Įveriamas plastikas..." msgid "No Storage" -msgstr "Nėra saugyklos" +msgstr "Nėra laikmenos" msgid "Storage Abnormal" -msgstr "Netinkama saugykla" +msgstr "Laikmenos klaida" msgid "Cancel print" msgstr "Atšaukti spausdinimą" msgid "Are you sure you want to stop this print?" -msgstr "" +msgstr "Ar tikrai norite sustabdyti šį spausdinimą?" msgid "The printer is busy with another print job." msgstr "Spausdintuvas užimtas kitu spausdinimo darbu." msgid "When printing is paused, filament loading and unloading are only supported for external slots." -msgstr "" +msgstr "Kai spausdinimas pristabdytas, gijos įvėrimas ir išvėrimas palaikomas tik išorinėse lizduose." msgid "Current extruder is busy changing filament." -msgstr "" +msgstr "Šiuo metu ekstruderis keičia giją." msgid "Current slot has already been loaded." -msgstr "" +msgstr "Į šį lizdą gija jau įverta." msgid "The selected slot is empty." -msgstr "" +msgstr "Pasirinktas lizdas yra tuščias." msgid "Printer 2D mode does not support 3D calibration" -msgstr "" +msgstr "Spausdintuvo 2D režimas nepalaiko 3D kalibravimo" msgid "Downloading..." -msgstr "Atsisunčiama..." +msgstr "Atsisiunčiama..." msgid "Cloud Slicing..." msgstr "Sluoksniavimas debesyje..." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." -msgstr "Debesies sluoksniavimo eilėje yra dar %s užduotys priekyje." +msgstr "" #, c-format, boost-format msgid "Layer: %s" @@ -6415,55 +6363,53 @@ msgstr "Sluoksnis: %s" msgid "Layer: %d/%d" msgstr "Sluoksnis: %d/%d" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please heat the nozzle to above 170℃ before loading or unloading filament." -msgstr "Prašome prieš įtraukiant ar išstumiant giją įkaitinti purkštuką virš 170 laipsnių." +msgstr "Prieš įverdami arba išverdami giją, įkaitinkite purkštuką virš 170°C." msgid "Chamber temperature cannot be changed in cooling mode while printing." -msgstr "" +msgstr "Spausdinimo metu vėsinimo režimu negalima keisti kameros temperatūros." msgid "If the chamber temperature exceeds 40℃, the system will automatically switch to heating mode. Please confirm whether to switch." -msgstr "" +msgstr "Jei kameros temperatūra viršys 40°C, sistema automatiškai persijungs į šildymo režimą. Patvirtinkite, ar norite perjungti." msgid "Please select an AMS slot before calibration" msgstr "Prieš kalibruodami pasirinkite AMS lizdą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." -msgstr "Negaliu nuskaityti gijos informacijos: gija įdėta į įrankio galvutę, išimkite giją ir bandykite dar kartą." +msgstr "" msgid "This only takes effect during printing" msgstr "Tai turi įtakos tik spausdinimo metu" msgid "Silent" -msgstr "Tyliai" +msgstr "Tylus" msgid "Standard" msgstr "Standartinis" msgid "Sport" -msgstr "Sportiškai" +msgstr "Sportinis" msgid "Ludicrous" -msgstr "Žaibiškai" +msgstr "Ekstremalus" msgid "Turning off the lights during the task will cause the failure of AI monitoring, like spaghetti detection. Please choose carefully." -msgstr "" +msgstr "Išjungus apšvietimą užduoties metu, nustos veikti dirbtinio intelekto (AI) stebėsena, pavyzdžiui, susivėlusios gijos („spaghetti“) aptikimas. Pasirinkite atsakingai." msgid "Keep it On" -msgstr "" +msgstr "Palikti įjungtą" msgid "Turn it Off" -msgstr "" +msgstr "Išjungti" msgid "Can't start this without storage." -msgstr "" +msgstr "Negalima paleisti be laikmenos." msgid "Rate the Print Profile" msgstr "Įvertinkite spausdinimo profilį" msgid "Comment" -msgstr "Kometarai" +msgstr "Komentaras" msgid "Rate this print" msgstr "Įvertinkite šį spausdinį" @@ -6475,7 +6421,7 @@ msgid "Delete Photo" msgstr "Ištrinti nuotrauką" msgid "Submit" -msgstr "Viskas tinka" +msgstr "Pateikti" msgid "Please click on the star first." msgstr "Pirmiausia paspauskite žvaigždutę." @@ -6487,19 +6433,19 @@ msgid "Upload Pictures" msgstr "Įkelti paveikslėlius" msgid "Number of images successfully uploaded" -msgstr "Paveiksliukų skaičius sėkmingai įkeltas" +msgstr "Sėkmingai įkeltų vaizdų skaičius" msgid " upload failed" msgstr " įkėlimas nepavyko" msgid " upload config prase failed\n" -msgstr " nepavyko apdoroti konfigūracijos įkėlimo\n" +msgstr " nepavyko apdoroti įkėlimo konfigūracijos\n" msgid " No corresponding storage bucket\n" -msgstr " Nėra atitinkamo saugojimo talpyklos\n" +msgstr " Nėra atitinkamos saugyklos talpyklos\n" msgid " cannot be opened\n" -msgstr " negalima atverti\n" +msgstr " nepavyko atidaryti\n" msgid "" "The following issues occurred during the process of uploading images. Do you want to ignore them?\n" @@ -6509,7 +6455,7 @@ msgstr "" "\n" msgid "info" -msgstr "" +msgstr "Informacija" msgid "Synchronizing the printing results. Please retry a few seconds later." msgstr "Sinchronizuojami spausdinimo rezultatai. Pabandykite dar kartą po kelių akimirkų." @@ -6518,16 +6464,16 @@ msgid "Upload failed\n" msgstr "Įkėlimas nepavyko\n" msgid "Obtaining instance_id failed\n" -msgstr "nepavyko gauti instance_id\n" +msgstr "Nepavyko gauti „instance_id“\n" msgid "" "Your comment result cannot be uploaded due to the following reasons:\n" "\n" " error code: " msgstr "" -"Jūsų komentaro rezultato nepavyko įkelti dėl kelių priežasčių. Apie jas pranešama toliau:\n" +"Nepavyko įkelti jūsų komentaro dėl šių priežasčių:\n" "\n" -" klaidos kodas: " +" klaidos kodas: " msgid "error message: " msgstr "klaidos pranešimas: " @@ -6545,7 +6491,7 @@ msgid "Some of your images failed to upload. Would you like to redirect to the w msgstr "Nepavyko įkelti kai kurių jūsų vaizdų. Norite būti nukreipti į puslapį, kuriame galite įvertinti?" msgid "You can select up to 16 images." -msgstr "Jūs galite pasirinkti iki 16 paveikslėlių." +msgstr "Galite pasirinkti iki 16 vaizdų." msgid "" "At least one successful print record of this print profile is required \n" @@ -6555,7 +6501,7 @@ msgstr "" "bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu." msgid "click to add machine" -msgstr "" +msgstr "spustelėkite, kad pridėtumėte įrenginį" msgid "Status" msgstr "Būsena" @@ -6565,24 +6511,24 @@ msgid "Update" msgstr "Atnaujinti" msgid "Assistant(HMS)" -msgstr "" +msgstr "Asistentas (HMS)" #, c-format, boost-format msgid "Network plug-in v%s" -msgstr "" +msgstr "Tinklo papildinys v%s" #, c-format, boost-format msgid "Network plug-in v%s (%s)" -msgstr "" +msgstr "Tinklo papildinys v%s (%s)" msgid "Don't show again" msgstr "Daugiau nerodyti" msgid "Go to" -msgstr "" +msgstr "Eiti į" msgid "Later" -msgstr "" +msgstr "Vėliau" #, c-format, boost-format msgid "%s error" @@ -6602,7 +6548,7 @@ msgstr "%s turi įspėjimą" #, c-format, boost-format msgid "%s info" -msgstr "" +msgstr "%s info" #, c-format, boost-format msgid "%s information" @@ -6611,31 +6557,29 @@ msgstr "%s informacija" msgid "Skip" msgstr "Praleisti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Newer 3MF version" msgstr "Naujesnė 3MF versija" msgid "The 3MF file version is in Beta and it is newer than the current OrcaSlicer version." -msgstr "3MF failo versija yra Beta versijos, t.y. naujesnė, negu dabartinė Orca Slicer versija." +msgstr "3MF failo versija yra „Beta“ stadijos ir yra naujesnė už dabartinę „OrcaSlicer“ versiją." msgid "If you would like to try Orca Slicer Beta, you may click to" -msgstr "Jei norite pabandyti Orca Slicer Beta, turėtumėte spustelėti" +msgstr "Jei norite išbandyti „OrcaSlicer Beta“, spustelėkite" msgid "Download Beta Version" msgstr "Atsisiųsti Beta versiją" msgid "The 3MF file version is newer than the current OrcaSlicer version." -msgstr "3MF versija yra naujesnė, negu dabar naudojama Orca Slicer versija." +msgstr "3MF failo versija yra naujesnė už dabartinę „OrcaSlicer“ versiją." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Updating your OrcaSlicer could enable all functionality in the 3MF file." -msgstr "Atnaujinus Orca Slicer programinę įrangą galėsite naudoti visas 3MF failo funkcijas." +msgstr "Atnaujinę „OrcaSlicer“, galėsite naudotis visomis 3MF failo funkcijomis." msgid "Current Version: " msgstr "Dabartinė versija: " msgid "Latest Version: " -msgstr "Paskutinė versija: " +msgstr "Naujausia versija: " msgctxt "Software" msgid "Update" @@ -6645,13 +6589,13 @@ msgid "Not for now" msgstr "Dabar ne" msgid "Server Exception" -msgstr "Serverio išimtis" +msgstr "Serverio išimtinė klaida" msgid "The server is unable to respond. Please click the link below to check the server status." msgstr "Serveris negali atsakyti. Norėdami patikrinti serverio būseną, spustelėkite toliau pateiktą nuorodą." msgid "If the server is in a fault state, you can temporarily use offline printing or local network printing." -msgstr "Jei serveris yra sugedęs, galite laikinai naudoti spausdinimą neprisijungus arba spausdinimą vietiniame tinkle." +msgstr "Jei sutriko serverio veikimas, galite laikinai naudoti spausdinimą neprisijungus arba spausdinimą vietiniame tinkle (LAN)." msgid "How to use LAN only mode" msgstr "Kaip naudoti tik LAN režimą" @@ -6662,9 +6606,8 @@ msgstr "Daugiau nerodyti šio dialogo lango" msgid "3D Mouse disconnected." msgstr "3D pelė atjungta." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A new configuration is available. Update now?" -msgstr "Yra nauja konfigūracija. Atnaujinti dabar?" +msgstr "" msgid "Integration was successful." msgstr "Integracija sėkminga." @@ -6679,7 +6622,7 @@ msgid "New network plug-in available." msgstr "Galimas naujas tinklo papildinys." msgid "Details" -msgstr "Smulkiau" +msgstr "Išsamiau" msgid "New printer config available." msgstr "Pasiekiama nauja spausdintuvo konfigūracija." @@ -6687,23 +6630,20 @@ msgstr "Pasiekiama nauja spausdintuvo konfigūracija." msgid "Undo integration failed." msgstr "Integracijos atšaukimas nepavyko." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Exporting" -msgstr "Eksportuojama." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An update is available!" -msgstr "Yra atnaujinimas!" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Go to download page" -msgstr "Eikite į atsisiuntimo puslapį." +msgstr "" msgid "Open Folder." -msgstr "Atverti katalogą." +msgstr "Atidaryti aplanką." msgid "Safely remove hardware." -msgstr "Saugiai atjunkite įrangą." +msgstr "Saugiai išimti laikmeną." #, c-format, boost-format msgid "%1$d Object has custom supports." @@ -6715,23 +6655,23 @@ msgstr[2] "%1$d objektų turi pasirinktines atramas." #, c-format, boost-format msgid "%1$d Object has color painting." msgid_plural "%1$d Objects have color painting." -msgstr[0] "%1$d objektas yra spalvotas." -msgstr[1] "%1$d objektai yra spalvoti." -msgstr[2] "%1$d objektų yra spalvoti." +msgstr[0] "%1$d objektas turi nudažytų spalvų." +msgstr[1] "%1$d objektai turi nudažytų spalvų." +msgstr[2] "%1$d objektų turi nudažytų spalvų." #, 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 objektas įkeltas kaip sluoksniuojamo objekto dalis." -msgstr[1] "%1$d objektai įkelti kaip sluoksniuojamo objekto dalys." -msgstr[2] "%1$d objektų įkelta kaip sluoksniuojamo objekto dalis." +msgstr[0] "%1$d objektas įkeltas kaip perpjauto objekto dalis." +msgstr[1] "%1$d objektai įkelti kaip perpjauto objekto dalys." +msgstr[2] "%1$d objektų įkelta kaip perpjauto objekto dalys." #, 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 objektas buvo įkeltas su užpieštu grublėtu paviršiumi." -msgstr[1] "%1$d objektai buvo įkelti su užpieštu grublėtu paviršiumi." -msgstr[2] "%1$d objektų buvo įkelta su užpieštu grublėtu paviršiumi." +msgstr[0] "%1$d objektas įkeltas su parinkta grublėto paviršiaus („fuzzy skin“) sritimi." +msgstr[1] "%1$d objektai įkelti su parinktomis grublėto paviršiaus („fuzzy skin“) sritimis." +msgstr[2] "%1$d objektų įkelta su parinktomis grublėto paviršiaus („fuzzy skin“) sritimis." msgid "ERROR" msgstr "KLAIDA" @@ -6752,34 +6692,34 @@ msgid "Error:" msgstr "Klaida:" msgid "Warning:" -msgstr "Dėmesio:" +msgstr "Įspėjimas:" msgid "Exported successfully" msgstr "Sėkmingai eksportuota" msgid "Model file downloaded." -msgstr "Modelio failas parsiųstas." +msgstr "Modelio failas atsisiųstas." msgid "Pull" -msgstr "" +msgstr "Atsisiųsti" msgid "Force push" -msgstr "" +msgstr "Priverstinai įkelti" msgid "Shared profiles may be available for this printer." -msgstr "" +msgstr "Šiam spausdintuvui gali būti prieinami bendri profiliai." msgid "Browse shared profiles" -msgstr "" +msgstr "Naršyti bendrinamus profilius" msgid "Serious warning:" -msgstr "Svarbus įspėjimas:" +msgstr "Rimtas įspėjimas:" msgid " (Repair)" msgstr " (Taisyti)" msgid " Click here to install it." -msgstr " Spustelkite čia įdiegimui." +msgstr " Spustelėkite čia, kad įdiegtumėte." msgid "WARNING:" msgstr "ĮSPĖJIMAS:" @@ -6788,19 +6728,21 @@ msgid "Your model needs support! Please enable support material." msgstr "Jūsų modeliui reikalingos atramos! Įjunkite atraminę medžiagą." msgid "G-code path overlap" -msgstr "G-kodo kelių persidengimas" +msgstr "G-kodo trajektorijų persidengimas" msgid "Cut connectors" -msgstr "Pjūvių jungtys" +msgstr "Pjūvio kaiščiai" msgid "Layers" msgstr "Sluoksniai" msgid "The application cannot run normally because OpenGL version is lower than 3.2.\n" msgstr "" +"Programa negali tinkamai veikti, nes „OpenGL“ versija yra senesnė nei 3.2.\n" +"\n" msgid "Please upgrade your graphics card driver." -msgstr "Prašome atnaujinti jūsų grafinės plokštės programinę įrangą." +msgstr "Atnaujinkite vaizdo plokštės tvarkyklę." msgid "Unsupported OpenGL version" msgstr "Nepalaikoma OpenGL versija" @@ -6810,11 +6752,11 @@ msgid "" "Unable to load shaders:\n" "%s" msgstr "" -"Neįmanoma įkelti šeiderių:\n" +"Nepavyko įkelti šeiderių:\n" "%s" msgid "Error loading shaders" -msgstr "Įkeliant šeiderius įvyko klaida" +msgstr "Klaida įkeliant šeiderius" msgctxt "Layers" msgid "Top" @@ -6827,80 +6769,77 @@ msgstr "Apatinis" msgid "Enable detection of build plate position" msgstr "Įjungti spausdinimo pagrindo pozicijos atpažinimą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." -msgstr "Spausdinimo pagrindo lokalizavimo žymė įjungta. Spausdinimas bus pristabdytas, jei žymė išeis už nustatytų ribų." +msgstr "" msgid "Build Plate Detection" -msgstr "" +msgstr "Spausdinimo pagrindo aptikimas" msgid "Identifies the type and position of the build plate on the heatbed. Pausing printing if a mismatch is detected." -msgstr "" +msgstr "Atpažįsta spausdinimo pagrindo tipą ir padėtį ant kaitinamo pagrindo. Aptikus neatitikimą, spausdinimas pristabdomas." msgid "AI Detections" -msgstr "" +msgstr "DI aptikimai" msgid "Printer will send assistant message or pause printing if any of the following problem is detected." -msgstr "" +msgstr "Spausdintuvas atsiųs asistento pranešimą arba pristabdys spausdinimą, jei bus aptikta kuri nors iš šių problemų." msgid "Enable AI monitoring of printing" msgstr "Įjungti DI spausdinimo stebėjimą" msgid "Pausing Sensitivity:" -msgstr "" +msgstr "Pristabdymo jautrumas:" msgid "Spaghetti Detection" -msgstr "" +msgstr "„Spageti“ (susivėlimo) aptikimas" msgid "Detect spaghetti failures (scattered lose filament)." -msgstr "Aptikti spagečių gedimus (išsisklaidęs laisvas filamentas)." +msgstr "Aptikti spausdinimo nesėkmes, kai gija susivelia (išsisklaido laisva gija)." msgid "Purge Chute Pile-Up Detection" -msgstr "" +msgstr "Atliekų šachtos užsikimšimo aptikimas" msgid "Monitor if the waste is piled up in the purge chute." -msgstr "" +msgstr "Stebėti, ar atliekų šachtoje nesusikaupė gijos atliekų krūva." msgid "Nozzle Clumping Detection" -msgstr "Antgalio užsikimšimo aptikimas" +msgstr "Gijos sankaupų ant purkštuko aptikimas" msgid "Check if the nozzle is clumping by filaments or other foreign objects." -msgstr "" +msgstr "Tikrinti, ar aplink purkštuką nesikaupia gijos gniutulai ar kiti pašaliniai objektai." msgid "Detects air printing caused by nozzle clogging or filament grinding." -msgstr "" +msgstr "Aptinka „tuščią spausdinimą“, sukeltą purkštuko užsikimšimo arba gijos prasisukimo (gremžimo) tiektuve." msgid "First Layer Inspection" msgstr "Pirmojo sluoksnio apžiūra" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto-recover from step loss" -msgstr "Atstatymas po žingsnių praleidimo" +msgstr "" msgid "Store Sent Files on External Storage" -msgstr "" +msgstr "Išsaugoti išsiųstus failus išorinėje laikmenoje" msgid "Save the printing files initiated from Bambu Studio, Bambu Handy and MakerWorld on External Storage" -msgstr "" +msgstr "Išsaugoti išorinėje laikmenoje spausdinimo failus, paleistus iš „Bambu Studio“, „Bambu Handy“ ir „MakerWorld“" msgid "Allow Prompt Sound" msgstr "Leisti garsus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament Tangle Detection" -msgstr "Aptikti gijos susipainiojimus" +msgstr "" msgid "Check if the nozzle is clumping by filament or other foreign objects." -msgstr "Patikrinti, ar purkštukas neužsikimšo dėl gijos ar pašalinių objektų." +msgstr "Tikrinti, ar aplink purkštuką nesikaupia gijos gniutulai ar kiti pašaliniai objektai." msgid "Open Door Detection" -msgstr "" +msgstr "Atidarytų durelių aptikimas" msgid "Notification" -msgstr "" +msgstr "Pranešimas" msgid "Pause printing" -msgstr "" +msgstr "Pristabdyti spausdinimą" msgctxt "Nozzle Type" msgid "Type" @@ -6915,7 +6854,7 @@ msgid "Flow" msgstr "Srautas" msgid "Please change the nozzle settings on the printer." -msgstr "" +msgstr "Pakeiskite purkštuko nustatymus spausdintuve." msgid "Hardened Steel" msgstr "Grūdintas plienas" @@ -6924,28 +6863,28 @@ msgid "Stainless Steel" msgstr "Nerūdijantis plienas" msgid "Tungsten Carbide" -msgstr "" +msgstr "Volframo karbidas" msgid "Brass" msgstr "Žalvaris" msgid "High flow" -msgstr "" +msgstr "Didelio srauto (High flow)" msgid "No wiki link available for this printer." -msgstr "" +msgstr "Šiam spausdintuvui nėra „wiki“ nuorodos." msgid "Refreshing" -msgstr "" +msgstr "Atnaujinama" msgid "Unavailable while heating maintenance function is on." -msgstr "" +msgstr "Neprieinama, kol įjungta kaitinimo palaikymo funkcija." msgid "Idle Heating Protection" -msgstr "" +msgstr "Apsauga nuo kaitinimo prastovos metu" msgid "Stops heating automatically after 5 mins of idle to ensure safety." -msgstr "" +msgstr "Saugumui užtikrinti kaitinimas automatiškai sustabdomas po 5 minučių prastovos." msgid "Global" msgstr "Bendras" @@ -6954,10 +6893,10 @@ msgid "Objects" msgstr "Objektai" msgid "Cycle settings visibility" -msgstr "" +msgstr "Ciklo nustatymų matomumas" msgid "Compare presets" -msgstr "Palyginti išankstinius nustatymus" +msgstr "Palyginti profilius" msgid "View all object's settings" msgstr "Matyti visus objekto nustatymus" @@ -6981,7 +6920,7 @@ msgid "Lock current plate" msgstr "Užrakinti dabartinę plokštę" msgid "Filament grouping" -msgstr "" +msgstr "Gijų grupavimas" msgid "Edit current plate name" msgstr "Taisyti dabartinės plokštės pavadinimą" @@ -6994,25 +6933,33 @@ msgstr "Individualizuoti esamą plokštę" #, c-format, boost-format msgid "The %s nozzle can not print %s." -msgstr "" +msgstr "%s purkštukas negali spausdinti %s." #, boost-format msgid "Mixing %1% with %2% in printing is not recommended.\n" msgstr "" +"Spausdinant nerekomenduojama maišyti %1% su %2%.\n" +"\n" msgid " nozzle" -msgstr "" +msgstr " purkštukas" #, boost-format msgid "It is not recommended to print the following filament(s) with %1%: %2%\n" msgstr "" +"Su %1% nerekomenduojama spausdinti šių gijų: %2%\n" +"\n" msgid "It is not recommended to use the following nozzle and filament combinations:\n" msgstr "" +"Nerekomenduojama naudoti šių purkštuko ir gijos derinių:\n" +"\n" #, boost-format msgid "%1% with %2%\n" msgstr "" +"%1% su %2%\n" +"\n" #, boost-format msgid " plate %1%:" @@ -7040,51 +6987,53 @@ msgid "Estimated time" msgstr "Numatomas laikas" msgid "Set the number of AMS installed on the nozzle." -msgstr "" +msgstr "Nustatykite purkštukui įdiegtų AMS skaičių." msgid "AMS(4 slots)" -msgstr "" +msgstr "AMS (4 lizdai)" msgid "AMS(1 slot)" -msgstr "" +msgstr "AMS (1 lizdas)" msgid "Not installed" -msgstr "" +msgstr "Neįdiegta" 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 "" +msgstr "Programinė įranga nepalaiko skirtingo skersmens purkštukų naudojimo vienam spausdinimui. Jei kairysis ir dešinysis purkštukai skiriasi, galima spausdinti tik su viena galvute. Patvirtinkite, kurį purkštuką norite naudoti šiam projektui." msgid "Switch diameter" -msgstr "" +msgstr "Pakeisti skersmenį" msgid "Configuration incompatible" msgstr "Nesuderinama konfigūracija" msgid "Sync printer information" -msgstr "" +msgstr "Sinchronizuoti spausdintuvo informaciją" msgid "" "The currently selected machine preset is inconsistent with the connected printer type.\n" "Are you sure to continue syncing?" msgstr "" +"Šiuo metu pasirinktas įrenginio profilis neatitinka prijungto spausdintuvo tipo.\n" +"Ar tikrai norite tęsti sinchronizavimą?" msgid "There are unset nozzle types. Please set the nozzle types of all extruders before synchronizing." -msgstr "" +msgstr "Yra nenustatytų purkštukų tipų. Prieš sinchronizuodami nustatykite visų ekstruderių purkštukų tipus." msgid "Sync extruder infomation" -msgstr "" +msgstr "Sinchronizuoti ekstruderio informaciją" msgid "Connection" msgstr "Ryšys" msgid "Synchronize nozzle information and the number of AMS" -msgstr "" +msgstr "Sinchronizuoti purkštuko informaciją ir AMS skaičių" msgid "Click to edit preset" -msgstr "Spustelėkite norėdami redaguoti išankstinį nustatymą" +msgstr "Spustelėkite, norėdami redaguoti profilį" msgid "Project Filaments" -msgstr "" +msgstr "Projekto gijos" msgid "Flushing volumes" msgstr "Valymo tūriai" @@ -7109,7 +7058,7 @@ msgstr "Granulės" #, c-format, boost-format msgid "After completing your operation, %s project will be closed and create a new project." -msgstr "" +msgstr "Baigus šią operaciją, projektas „%s“ bus uždarytas ir bus sukurtas naujas projektas." msgid "There are no compatible filaments, and sync is not performed." msgstr "Čia nėra suderinamų gijų, sinchronizacija nebuvo atlikta." @@ -7121,12 +7070,14 @@ 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 "" +"Yra keletas nežinomų arba nesuderinamų gijų, priskirtų bendrajam profiliui.\n" +"Atnaujinkite „OrcaSlicer“ arba paleiskite programą iš naujo, kad patikrintumėte, ar yra sistemos profilių atnaujinimų." msgid "Only filament color information has been synchronized from printer." -msgstr "" +msgstr "Iš spausdintuvo buvo sinchronizuota tik gijos spalvos informacija." msgid "Filament type and color information have been synchronized, but slot information is not included." -msgstr "" +msgstr "Gijos tipo ir spalvos informacija buvo sinchronizuota, tačiau lizdų informacija neįtraukta." #, boost-format msgid "Do you want to save changes to \"%1%\"?" @@ -7140,26 +7091,23 @@ msgstr "Sėkmingai atjungtas. Įrenginį %s(%s) dabar galima saugiai išimti iš msgid "Ejecting of device %s (%s) has failed." msgstr "Nepavyko išimti įrenginio %s (%s)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Previously unsaved items have been detected. Do you want to restore them?" -msgstr "Aptiktas ankstesnis neišsaugotas projektas. Ar norite jį atkurti?" +msgstr "" msgid "Restore" msgstr "Atkurti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current heatbed temperature is relatively high. The nozzle may clog when printing this filament in a closed environment. Please open the front door and/or remove the upper glass." -msgstr "Kaitinamo pagrindo temperatūra yra gana aukšta. Spausdinant šią giją uždaroje kameroje, antgalis gali užsikimšti. Prašome atidaryti priekines duris ir (arba) nuimti viršutinį stiklą." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 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 worn down or damaged." -msgstr "Gijai reikalingas kietesnis negu standartinis šio spausdintuvo antgalis. Norint išvengti antgalio dilimo ar pažeidimo, rekomenduojama pakeisti esamą antgalį į kietesnį, arba naudoti kitą giją, kuriai tinka standartinis antgalis." +msgstr "" msgid "Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode." msgstr "Įjungus standartinę pakadrinę fotografiją galimi paviršiaus nelygumai. Rekomenduojama perjungti į glotnų režimą." 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 "" +msgstr "Įjungtas glotnus pakadrinės fotografijos režimas, tačiau išjungtas valymo bokštas (prime tower), todėl gali atsirasti spausdinimo defektų. Įjunkite valymo bokštą, supjaustykite (re-slice) iš naujo ir paleiskite spausdinimą." msgid "Expand sidebar" msgstr "Išskleisti šoninę juostą" @@ -7168,7 +7116,7 @@ msgid "Collapse sidebar" msgstr "Sutraukti šoninę juostą" msgid "Tab" -msgstr "" +msgstr "Tab" #, c-format, boost-format msgid "Loading file: %s" @@ -7178,20 +7126,19 @@ msgid "Load 3MF" msgstr "Įkelti 3MF" msgid "BambuStudio Project" -msgstr "" +msgstr "„BambuStudio“ projektas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only." msgstr "3MF nepalaikomas Orca Slicer. Įkeliami tik geometrijos duomenys." msgid "The 3MF file was generated by an old OrcaSlicer version, loading geometry data only." -msgstr "" +msgstr "3MF failas buvo sukurtas naudojant seną „OrcaSlicer“ versiją, įkeliami tik geometrijos duomenys." msgid "The 3MF file was generated by an older version, loading geometry data only." -msgstr "" +msgstr "3MF failas buvo sukurtas naudojant senesnę versiją, įkeliami tik geometrijos duomenys." msgid "The 3MF file was generated by BambuStudio, loading geometry data only." -msgstr "" +msgstr "3MF failą sukūrė „BambuStudio“, įkeliami tik geometrijos duomenis." 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 "Šis projektas buvo sukurtas naudojant „OrcaSlicer 2.3.1-alpha“ ir jame naudojami užpildymo rotacijos šablono nustatymai, kurie gali neveikti tinkamai su jūsų dabartiniu užpildymo modeliu. Dėl to gali atsirasti silpnos atramos arba spausdinimo kokybės problemos." @@ -7203,9 +7150,8 @@ msgstr "Ar norėtumėte, kad „OrcaSlicer“ automatiškai ištaisytų šią pr msgid "The 3MF file version %s is newer than %s's version %s, found the following unrecognized keys:" msgstr "3mf versija %s yra naujesnė už %s versiją %s, rasta nepažįstamų raktų:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You should update your software.\n" -msgstr "Geriau jau atnaujinkite savo programinę įrangą\n" +msgstr "" #, c-format, boost-format msgid "The 3MF file version %s is newer than %s's version %s, we suggest to upgrade your software." @@ -7213,24 +7159,23 @@ msgstr "3MF failo versija %s yra naujesnė nei %s versija %s. Siūloma atnaujint #, 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 "" +msgstr "3MF failą sukūrė „BambuStudio“ (versija %s), kuri yra naujesnė už suderinamą versiją %s. Rasta nepažįstamų nustatymų:" #, 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 "" +msgstr "3MF failą sukūrė „BambuStudio“ (versija %s), kuri yra naujesnė už suderinamą versiją %s. Kai kurie nustatymai gali būti nevisiškai suderinami." msgid "The 3MF was created by BambuStudio. Some settings may differ from OrcaSlicer." -msgstr "" +msgstr "3MF failą sukūrė „BambuStudio“. Kai kurie nustatymai gali skirtis nuo „OrcaSlicer“ nustatymų." msgid "Invalid values found in the 3MF:" msgstr "3MF rasti netinkami duomenys:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please correct them in the Param tabs" -msgstr "Prašome juos ištaisyti parametrų skirtukuose" +msgstr "" msgid "The 3MF has the following modified G-code in filament or printer presets:" -msgstr "3MF faile yra šie modifikuoti G-kodai gijos ar spausdintuvo iš anksto nustatytuose parametruose:" +msgstr "3MF faile yra šie modifikuoti G-kodai gijos ar spausdintuvo profiliuose:" msgid "Please confirm that all modified G-code is safe to prevent any damage to the machine!" msgstr "Prašome patvirtinti, kad šie modifikuoti G-kodai yra saugūs ir nesugadins jūsų įrangos!" @@ -7239,21 +7184,19 @@ msgid "Modified G-code" msgstr "Modifikuotas G-kodas" msgid "The 3MF has the following customized filament or printer presets:" -msgstr "3MF faile yra pakeistų gijos ar spausdinimo nustatymų:" +msgstr "3MF faile yra šie pritaikyti gijos ar spausdintuvo profiliai:" msgid "Please confirm that the G-code within these presets is safe to prevent any damage to the machine!" -msgstr "Prašome patvirtinti, kad šiuose nustatymuose esantys G-kodai yra saugūs ir nesugadins jūsų įrangos!" +msgstr "Patvirtinkite, kad šiuose profiliuose esantis G-kodas yra saugus, kad išvengtumėte įrenginio pažeidimų!" msgid "Customized Preset" -msgstr "Pakeisti nustatymai" +msgstr "Pritaikytas profilis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Component name(s) inside step file not in UTF8 format!" -msgstr "Komponentų pavadinimai STEP faile nėra UTF-8 formato!" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Because of unsupported text encoding, garbage characters may appear!" -msgstr "Pavadinimas gali rodyti neskaitomus simbolius!" +msgstr "" msgid "Remember my choice." msgstr "Prisiminti pasirinkimus." @@ -7268,27 +7211,20 @@ msgstr "Nulinio tūrio objektai pašalinti" msgid "The volume of the object is zero" msgstr "Objekto tūris nulinis" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The object from file %s is too small, and may be in meters or inches.\n" " Do you want to scale to millimeters?" msgstr "" -"Objektas iš failo „%s“ yra per mažas ir galimai nurodytas metrais arba coliais.\n" -"Ar norite mastelį pakeisti į milimetrus?" msgid "Object too small" msgstr "Objektas per mažas" -# TODO: Review, changed by lang refactor. PR 14254 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 with multiple parts?" msgstr "" -"Šiame faile yra keli objektai, išdėstyti keliuose aukščiuose.\n" -"Ar užuot laikius juos atskirais objektais, reikėtų\n" -"įkelti failą kaip vieną objektą, turintį kelias dalis?" msgid "Multi-part object detected" msgstr "Aptiktas kelių dalių objektas" @@ -7296,19 +7232,20 @@ msgstr "Aptiktas kelių dalių objektas" msgid "Load these files as a single object with multiple parts?\n" msgstr "Ar įkelti šiuos failus kaip vieną objektą su keliomis detalėmis?\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An object with multiple parts was detected" -msgstr "Aptiktas objektas su keliomis detalėmis" +msgstr "" msgid "Auto-Drop" -msgstr "" +msgstr "Automatinis nuleidimas" #, c-format, boost-format msgid "Connected printer is %s. It must match the project preset for printing.\n" msgstr "" +"Prijungtas spausdintuvas yra %s. Jis turi sutapti su spausdinimui pasirinktu projekto profiliu.\n" +"\n" msgid "Do you want to sync the printer information and automatically switch the preset?" -msgstr "" +msgstr "Ar norite sinchronizuoti spausdintuvo informaciją ir automatiškai perjungti profilį?" msgid "Tips" msgstr "Patarimai" @@ -7317,7 +7254,7 @@ msgid "The file does not contain any geometry data." msgstr "Faile nėra jokių geometrinių duomenų." msgid "Your object appears to be too large, do you want to scale it down to fit the print bed automatically?" -msgstr "Jūsų objektas per didelis. Ar norite jį sumažinti automatiškai, kad tilptų ant spausdinimo plokštės?" +msgstr "Jūsų objektas per didelis. Ar norite jį automatiškai sumažinti, kad tilptų ant spausdinimo pagrindo?" msgid "Object too large" msgstr "Objektas per didelis" @@ -7326,26 +7263,22 @@ msgid "Export STL file:" msgstr "Eksportuoti STL failą:" msgid "Export Draco file:" -msgstr "" +msgstr "Eksportuoti „Draco“ failą:" msgid "Export AMF file:" msgstr "Eksportuoti AMF failą:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Save file as" -msgstr "Išsaugoti failą kaip:" +msgstr "" msgid "Export OBJ file:" msgstr "Eksportuoti OBJ failą:" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The file %s already exists.\n" "Do you want to replace it?" msgstr "" -"Failas %s jau yra\n" -"Ar norite jį perrašyti?" msgid "Confirm Save As" msgstr "Patvirtinti Išsaugoti kaip" @@ -7353,24 +7286,20 @@ msgstr "Patvirtinti Išsaugoti kaip" msgid "Delete object which is a part of cut object" msgstr "Pašalinti objektą su dalimi perpjauto objekto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You are trying 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 "" -"Bandote ištrinti objektą, kuris yra supjaustyto objekto dalis.\n" -"Šis veiksmas sugadins pjovimo atitikimą.\n" -"Po šio veiksmo modelio vientisumas negali būti garantuotas." msgid "The selected object couldn't be split." msgstr "Pasirinkto objekto negalima suskaidyti." msgid "Disable Auto-Drop to preserve Z positioning?\n" -msgstr "" +msgstr "Išjungti automatinį nuleidimą, kad būtų išsaugota Z pozicija?\n" msgid "Object with floating parts was detected" -msgstr "" +msgstr "Aptiktas objektas su ore kabančiomis dalimis" msgid "Another export job is running." msgstr "Vyksta kitas eksportavimo procesas." @@ -7378,9 +7307,8 @@ msgstr "Vyksta kitas eksportavimo procesas." msgid "Unable to replace with more than one volume" msgstr "Nepavyko pakeisti daugiau nei vienu tomu" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error during replacement" -msgstr "Klaida keičiant" +msgstr "" msgid "Replace from:" msgstr "Pakeisti iš:" @@ -7388,37 +7316,38 @@ msgstr "Pakeisti iš:" msgid "Select a new file" msgstr "Pasirinkite naują failą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File for the replacement wasn't selected" -msgstr "Nepasirinktas keičiamas failas" +msgstr "" msgid "Select folder to replace from" -msgstr "" +msgstr "Pasirinkite aplanką, iš kurio pakeisti" msgid "Directory for the replace wasn't selected" -msgstr "" +msgstr "Nepasirinktas katalogas, iš kurio keisti" msgid "Replaced with 3D files from directory:\n" msgstr "" +"Pakeista 3D failais iš katalogo:\n" +"\n" #, boost-format msgid "✖ Skipped %1%: same file.\n" -msgstr "" +msgstr "✖ Praleistas %1%: tas pats failas.\n" #, boost-format msgid "✖ Skipped %1%: file does not exist.\n" -msgstr "" +msgstr "✖ Praleistas %1%: failas neegzistuoja.\n" #, boost-format msgid "✖ Skipped %1%: failed to replace.\n" -msgstr "" +msgstr "✖ Praleistas %1%: nepavyko pakeisti.\n" #, boost-format msgid "✔ Replaced %1%.\n" -msgstr "" +msgstr "✔ Pakeistas %1%.\n" msgid "Replaced volumes" -msgstr "" +msgstr "Pakeisti tūriai" msgid "Please select a file" msgstr "Prašome pasirinkti failą" @@ -7452,7 +7381,7 @@ msgstr "Sluoksniavimas atšauktas" #, c-format, boost-format msgid "Slicing Plate %d" -msgstr "Sluoksniuojama plokštė %d" +msgstr "Sluoksniuojamas pagrindas %d" msgid "Please resolve the slicing errors and publish again." msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą." @@ -7472,13 +7401,15 @@ msgid "" "After syncing, software can optimize printing time and filament usage when slicing.\n" "Would you like to sync now?" msgstr "" +"Purkštuko tipo ir AMS kiekio informacija nebuvo sinchronizuota iš prijungto spausdintuvo.\n" +"Po sinchronizavimo programinė įranga pjaustymo metu gali optimizuoti spausdinimo laiką ir gijos sunaudojimą.\n" +"Ar norite sinchronizuoti dabar?" msgid "Sync now" -msgstr "" +msgstr "Sinchronizuoti dabar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project or discard them" -msgstr "Jūs galite išsaugoti pakeistus nustatymus naujam projektui arba juos ištrinti" +msgstr "" msgid "Creating a new project" msgstr "Naujo projekto kūrimas" @@ -7486,13 +7417,10 @@ msgstr "Naujo projekto kūrimas" msgid "Load project" msgstr "Įkelti projektą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Failed to save the project.\n" "Please check whether the folder exists online or if other programs have the project file open." msgstr "" -"Nepavyko išsaugoti projekto.\n" -"Prašome patikrinti, ar nurodytas katalogas egzistuoja tinkle ir ar kitos programos nenaudoja projekto failo." msgid "Save project" msgstr "Išsaugoti projektą" @@ -7500,20 +7428,17 @@ msgstr "Išsaugoti projektą" msgid "Importing Model" msgstr "Importuojamas modelis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preparing 3MF file..." -msgstr "paruošti 3MF failą..." +msgstr "Ruošiamas 3MF failas..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; unknown file format." -msgstr "Atsisuntimas nepavyko, nežinomas failo tipas." +msgstr "" msgid "Downloading project..." -msgstr "projektas atsisiunčiamas..." +msgstr "Projektas atsisiunčiamas..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; File size exception." -msgstr "Atsisiųsti nepavyko. Failo dydžio išimtis." +msgstr "" #, c-format, boost-format msgid "Project downloaded %d%%" @@ -7523,7 +7448,7 @@ msgid "Importing to Orca Slicer failed. Please download the file and manually im msgstr "Nepavyko importuoti į Orca Slicer. Prašome atsisiųsti failą ir rankiniu būdu jį importuoti." msgid "INFO:" -msgstr "" +msgstr "INFORMACIJA:" msgid "No accelerations provided for calibration. Use default acceleration value " msgstr "Kalibravimui nepateikti jokie pagreičiai. Naudokite numatytąją pagreičio vertę " @@ -7537,13 +7462,11 @@ msgstr "Importuoti SLA archyvą" msgid "The selected file" msgstr "Pasirinktame faile" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Does not contain valid G-code." -msgstr "nėra galiojančio G-kodo." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An Error has occurred while loading the G-code file." -msgstr "Įkeliant G-kodo failą įvyko klaida" +msgstr "" #. TRN %1% is archive path #, boost-format @@ -7571,27 +7494,23 @@ msgstr "Atidaryti kaip projektą" msgid "Import geometry only" msgstr "Importuoti tik geometriją" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only one G-code file can be opened at a time." -msgstr "Vienu metu gali būti atidarytas tik vienas G-kodo failas." +msgstr "" msgid "G-code loading" msgstr "Įkeliamas G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code files and models cannot be loaded together!" -msgstr "G-kodas negali būti įkeltas kartu su modeliais!" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to add models in preview mode" -msgstr "Negalima pridėti modelių peržiūros režime!" +msgstr "" msgid "All objects will be removed, continue?" msgstr "Visi objektai bus pašalinti, ar tęsti?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current project has unsaved changes. Would you like to save before continuing?" -msgstr "Dabartiniame projekte yra neišsaugotų pakeitimų. Ar išsaugoti prieš tęsiant?" +msgstr "" msgid "Number of copies:" msgstr "Kopijų skaičius:" @@ -7616,13 +7535,13 @@ msgstr "Išsaugoti susluoksniuotą failą kaip:" #, 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 "Failas %s išsiųstas į spausdintuvo saugyklą ir gali būti peržiūrimas spausdintuve." +msgstr "Failas %s išsiųstas į spausdintuvo laikmeną ir gali būti peržiūrimas spausdintuve." msgid "The nozzle type is not set. Please set the nozzle and try again." -msgstr "" +msgstr "Purkštuko tipas nenustatytas. Nustatykite purkštuką ir bandykite dar kartą." msgid "The nozzle type is not set. Please check." -msgstr "" +msgstr "Purkštuko tipas nenustatytas. Patikrinkite." msgid "Unable to perform boolean operation on model meshes. Only positive parts will be kept. You may fix the meshes and try again." msgstr "Nepavyksta atlikti loginės operacijos su modelio tinkleliais. Bus išsaugotos tik teigiamos dalys. Galite pataisyti tinklelius ir bandyti dar kartą." @@ -7647,10 +7566,10 @@ msgid "Unable to perform boolean operation on model meshes. Only positive parts msgstr "Nepavyksta atlikti loginės operacijos su modelio figūromis. Eksportuojamos tik teigiamos dalys." msgid "Flashforge host is not available." -msgstr "" +msgstr "„Flashforge“ serveris nepasiekiamas." msgid "Unable to log in to the Flashforge printer." -msgstr "" +msgstr "Nepavyksta prisijungti prie „Flashforge“ spausdintuvo." 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 švari?" @@ -7661,13 +7580,10 @@ msgstr "Įkelti ir spausdinti" msgid "Abnormal print file data. Please slice again" msgstr "Nenormalūs spausdinimo failo duomenys. Atlikite sluoksniavimą dar kartą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Print By Object: \n" "We suggest using auto-arrange to avoid collisions when printing." msgstr "" -"Spausdinimas pagal objektus:\n" -"Siekiant spausdinant išvengti susidūrimų, patariama naudoti automatinį išdėstymą." msgid "Send G-code" msgstr "Siųsti G-kodą" @@ -7676,37 +7592,37 @@ msgid "Send to printer" msgstr "Siųsti į spausdintuvą" msgid "Custom supports and color painting were removed before repairing." -msgstr "Prieš taisymą pašalintos pasirinktinės aramos ir dažymas spalvomis." +msgstr "Prieš taisymą pašalintos pasirinktinės atramos ir dažymas spalvomis." msgid "Optimize Rotation" msgstr "Optimizuoti sukimąsi" #, c-format, boost-format msgid "Printer not connected. Please go to the device page to connect %s before syncing." -msgstr "" +msgstr "Spausdintuvas neprijungtas. Prieš sinchronizuodami, eikite į įrenginio puslapį ir prijunkite %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 "" +msgstr "„OrcaSlicer“ nepavyksta prisijungti prie %s. Patikrinkite, ar spausdintuvas įjungtas ir prijungtas prie tinklo." #, c-format, boost-format msgid "The currently connected printer on the device page is not %s. Please switch to %s before syncing." -msgstr "" +msgstr "Įrenginio puslapyje šiuo metu prijungtas spausdintuvas nėra %s. Prieš sinchronizuodami perjunkite į %s." msgid "There are no filaments on the printer. Please load the filaments on the printer first." -msgstr "" +msgstr "Spausdintuve nėra gijų. Pirmiausia įspauskite (įkelkite) gijas į spausdintuvą." 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 "" +msgstr "Visos spausdintuve esančios gijos yra nežinomo tipo. Gijos tipą nustatykite spausdintuvo ekrane arba programos įrenginio puslapyje." msgid "Device Page" -msgstr "" +msgstr "Įrenginio puslapis" msgid "Synchronize AMS Filament Information" -msgstr "" +msgstr "Sinchronizuoti AMS gijų informaciją" msgid "Plate Settings" -msgstr "Plokštės parametrai" +msgstr "Spausdinimo pagrindo nustatymai" #, boost-format msgid "Number of currently selected parts: %1%\n" @@ -7745,40 +7661,38 @@ msgid "Triangles: %1%\n" msgstr "Trikampių: %1%\n" msgid "Use \"Fix Model\" to repair the mesh." -msgstr "" +msgstr "Naudokite funkciją „Sutaisyti modelį“, kad pataisytumėte dalį." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Plate %d: %s is not suggested for use printing filament %s (%s). If you still want to do this print job, please set this filament's bed temperature to a number that is not zero." -msgstr "Plokštė %d: %s nesiūloma naudoti spausdinant gijomis %s(%s). Jei vis tiek norite spausdinti, nustatykite nenulinę pagrindo šiai gijai temperatūrą." +msgstr "" msgid "Currently, the object configuration form cannot be used with a multiple-extruder printer." -msgstr "" +msgstr "Šiuo metu objekto konfigūracijos formos negalima naudoti su spausdintuvu, turinčiu kelis ekstruderius." msgid "Not available" -msgstr "" +msgstr "Neprieinama" msgid "isometric" -msgstr "" +msgstr "izometrinis" msgid "top_front" -msgstr "" +msgstr "viršus-priekis" msgid "top" -msgstr "" +msgstr "viršus" msgid "bottom" -msgstr "" +msgstr "apačia" msgid "front" -msgstr "" +msgstr "priekis" msgid "rear" -msgstr "" +msgstr "galas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Switching languages requires the application to restart.\n" -msgstr "Kalbos keitimas reikalauja programos paleidimo iš naujo.\n" +msgstr "" msgid "Do you want to continue?" msgstr "Ar norite tęsti?" @@ -7787,7 +7701,7 @@ msgid "Language selection" msgstr "Kalbos pasirinkimas" msgid "Switching application language while some presets are modified." -msgstr "Keičiama programos kalba esant kai kurių nustatymų pakeitimams." +msgstr "Keičiama programos kalba, kai yra pakeistų profilių." msgid "Asia-Pacific" msgstr "Azija-Ramusis vandenynas" @@ -7804,21 +7718,20 @@ msgstr "Šiaurės Amerika" msgid "Others" msgstr "Kita" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Changing the region will log you out of your account.\n" -msgstr "Keičiant regioną bus atjungta jūsų paskyra.\n" +msgstr "" msgid "Region selection" msgstr "Regiono pasirinkimas" msgid "sec" -msgstr "" +msgstr "sek." msgid "The period of backup in seconds." msgstr "Atsarginės kopijos kūrimo laikotarpis sekundėmis." msgid "Bed Temperature Difference Warning" -msgstr "" +msgstr "Įspėjimas dėl pagrindo temperatūrų skirtumo" msgid "" "Using filaments with significantly different temperatures may cause:\n" @@ -7828,16 +7741,66 @@ msgid "" "\n" "Continue with enabling this feature?" msgstr "" +"Naudojant gijas su žymiai skirtingomis temperatūromis, gali kilti šios problemos:\n" +"• Ekstruderio užsikimšimas\n" +"• Purkštuko pažeidimas\n" +"• Sluoksnių sukibimo problemos\n" +"\n" +"Ar tęsti ir įjungti šią funkciją?" msgid "Browse" msgstr "Naršyti" msgid "Choose folder for downloaded items" -msgstr "" +msgstr "Pasirinkite atsisiunčiamų failų aplanką" msgid "Choose Download Directory" msgstr "Pasirinkite parsisiuntimo katalogą" +msgid "(Latest)" +msgstr "(Naujausia)" + +msgid "Network plug-in switched successfully." +msgstr "Tinklo įskiepis sėkmingai pakeistas." + +msgid "Success" +msgstr "Sėkmingai" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Nepavyko įkelti tinklo įskiepio. Paleiskite programą iš naujo." + +#, 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 "" +"Pasirinkote %s tinklo įskiepio versiją.\n" +"\n" +"Ar norite atsisiųsti ir įdiegti šią versiją dabar?\n" +"\n" +"Pastaba: įdiegus programą gali reikėti paleisti iš naujo." + +msgid "Download Network Plug-in" +msgstr "Atsisiųsti tinklo įskiepį" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Iš naujo įkelti tinklo įskiepį neperkraunant programos" + +msgid "Network plug-in reloaded successfully." +msgstr "Tinklo įskiepis sėkmingai įkeltas iš naujo." + +msgid "Reload" +msgstr "Įkelti iš naujo" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Nepavyko iš naujo įkelti tinklo įskiepio. Paleiskite programą iš naujo." + +msgid "Reload Failed" +msgstr "Pakartotinis įkėlimas nepavyko" + msgid "Associate" msgstr "Susietas" @@ -7874,9 +7837,8 @@ msgstr "Numatytas puslapis" msgid "Set the page opened on startup." msgstr "Nustatyti, kuris puslapis atsidarys paleidus programą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable dark Mode" -msgstr "Įjungti tamsųjį režimą" +msgstr "" msgid "Allow only one OrcaSlicer instance" msgstr "Leisti tik vieną Orca Slicer egzempliorių" @@ -7893,14 +7855,8 @@ msgstr "Rodyti paleidimo ekraną" msgid "Show the splash screen during startup." msgstr "Paleidžiant programą rodyti informacinį ekramą." -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 "" +msgstr "Naudokite kairėje pusėje esančius langų mygtukus" msgid "(Requires restart)" msgstr "(Reikia paleisti iš naujo)" @@ -7909,7 +7865,7 @@ msgid "Downloads folder" msgstr "Atsisiuntimų aplankas" msgid "Target folder for downloaded items" -msgstr "" +msgstr "Atsisiunčiamų failų paskirties aplankas" msgid "Load All" msgstr "Įkelti viską" @@ -7927,7 +7883,13 @@ msgid "Load behaviour" msgstr "Įkelti elgseną" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" -msgstr "Ar atidarant .3mf failą reikia įkelti spausdintuvo / gijų / proceso nustatymus?" +msgstr "Ar atidarant 3MF failą reikėtų įkelti spausdintuvo / gijos / proceso profilius?" + +msgid "Auto backup" +msgstr "Automatinis atsarginis kopijavimas" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "" msgid "Maximum recent files" msgstr "Maksimalus naujausių failų skaičius" @@ -7947,12 +7909,55 @@ msgstr "Rodyti parinktis importuojant STEP failą" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Jei įjungta, STEP failo importavimo metu atsiras parametrų nustatymų dialogas." -msgid "Auto backup" -msgstr "Automatinis atsarginis kopijavimas" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Periodiškai saugoti jūsų projekto atsargines kopijas kad programos gedimo atveju jį būtų galima atkurti." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "„Draco“ eksporto kokybės lygis" + +msgid "bits" +msgstr "bitai" + +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 "" +"Valdo kvantavimo bitų gylį, naudojamą suspaudžiant tinklelio modelį į „Draco“ formatą.\n" +"0 = suspaudimas be praradimų (geometrija išsaugoma visu tikslumu). Leistinos prarandamos vertės yra nuo 8 iki 30.\n" +"Mažesnės vertės sukuria mažesnius failus, bet prarandama daugiau geometrinių detalių; didesnės vertės išsaugo daugiau detalių, tačiau failai būna didesni." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Profilis" @@ -7961,31 +7966,37 @@ msgid "Remember printer configuration" msgstr "Atsiminti spausdintuvo konfigūraciją" msgid "If enabled, Orca will remember and switch filament/process configuration for each printer automatically." -msgstr "Jei įjungta, Orca Slicer automatiškai prisimins ir perjungs gijos ir proceso konfigūracijas kiekvienams spausdintuvui." +msgstr "Jei įjungta, „Orca“ automatiškai įsimins ir perjungs gijos / proceso profilius kiekvienam spausdintuvui." msgid "Group user filament presets" -msgstr "" +msgstr "Grupuoti naudotojo gijų profilius" msgid "Group user filament presets based on selection" -msgstr "" +msgstr "Grupuoti naudotojo gijų profilius pagal pasirinkimą" msgid "By type" -msgstr "" +msgstr "Pagal tipą" msgid "By vendor" -msgstr "" +msgstr "Pagal gamintoją" msgid "Optimize filaments area height for..." -msgstr "" +msgstr "Optimizuoti gijų srities aukštį..." msgid "filaments" -msgstr "" +msgstr "gijos" msgid "Optimizes filament area maximum height by chosen filament count." -msgstr "" +msgstr "Optimizuoja maksimalų gijų srities aukštį pagal pasirinktą gijų skaičių." + +msgid "Show shared profiles notification" +msgstr "Rodyti pranešimus apie bendrinamus profilius" + +msgid "Show a notification with a link to browse shared profiles when the selected printer is changed." +msgstr "Pakeitus pasirinktą spausdintuvą, rodyti pranešimą su nuoroda, leidžiančia peržiūrėti bendrinamus profilius." msgid "Features" -msgstr "" +msgstr "Funkcijos" msgid "Multi device management" msgstr "Kelių įrenginių valdymas" @@ -7994,46 +8005,34 @@ msgid "With this option enabled, you can send a task to multiple devices at the msgstr "Kai įjungta ši funkcija, jūs galite siųsti užduotį keliems įrenginiams vienu metu, taip apt kontroliuoti keletą įrenginių." msgid "Pop up to select filament grouping mode" -msgstr "" - -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" +msgstr "Iššokantis langas gijų grupavimo režimui pasirinkti" msgid "Behaviour" msgstr "Elgsena" msgid "Auto flush after changing..." -msgstr "" +msgstr "Automatinis išvalymas pakeitus..." msgid "Auto calculate flushing volumes when selected values changed" -msgstr "" +msgstr "Automatiškai apskaičiuoti išvalymo tūrius, kai pasikeičia pasirinktos vertės" msgid "Auto arrange plate after cloning" -msgstr "Automatinis plokštės sutvarkymas po klonavimo" +msgstr "Automatiškai išdėstyti objektus ant pagrindo po klonavimo" msgid "Auto slice after changes" -msgstr "" +msgstr "Automatinis sluoksniavimas po pakeitimų" msgid "If enabled, OrcaSlicer will re-slice automatically whenever slicing-related settings change." -msgstr "" +msgstr "Jei įjungta, „OrcaSlicer“ automatiškai supjaustys (re-slice) modelį iš naujo, kai tik pasikeis su sluoksniavimu susiję nustatymai." msgid "Delay in seconds before auto slicing starts, allowing multiple edits to be grouped. Use 0 to slice immediately." -msgstr "" +msgstr "Delsiama sekundėmis prieš pradedant automatinį sluoksniavimą, kad būtų galima sugrupuoti kelis pakeitimus. Įveskite 0, jei norite sluoksniuoti iš karto." msgid "Remove mixed temperature restriction" -msgstr "" +msgstr "Pašalinti mišrios temperatūros ribojimą" msgid "With this option enabled, you can print materials with a large temperature difference together." -msgstr "" +msgstr "Įjungus šią parinktį, galite kartu spausdinti medžiagas, turinčias didelį temperatūrų skirtumą." msgid "Touchpad" msgstr "Jutiklinis kilimėlis" @@ -8075,82 +8074,85 @@ msgid "If enabled, reverses the direction of zoom with mouse wheel." msgstr "Jei įjungta, apverčia didinimo ar mažinimo kryptį pelės ratuku." msgid "Pan" -msgstr "" +msgstr "Slinkimas" msgid "Left Mouse Drag" -msgstr "" +msgstr "Vilkimas kairiuoju pelės mygtuku" msgid "Set the action that dragging the left mouse button should perform." -msgstr "" +msgstr "Nustatykite veiksmą, kuris turi būti atliktas, velkant kairiuoju pelės mygtuku." msgid "Middle Mouse Drag" -msgstr "" +msgstr "Vidurinio pelės mygtuko vilkimas" msgid "Set the action that dragging the middle mouse button should perform." -msgstr "" +msgstr "Nustatykite veiksmą, kuris turi būti atliktas, velkant vidurinį pelės mygtuką." msgid "Right Mouse Drag" -msgstr "" +msgstr "Vilkti dešiniuoju pelės mygtuku" msgid "Set the action that dragging the right mouse button should perform." -msgstr "" +msgstr "Nustatykite veiksmą, kuris turi būti atliktas, velkant dešinįjį pelės mygtuką." msgid "Clear my choice on..." -msgstr "" +msgstr "Išvalyti mano pasirinkimą..." msgid "Unsaved projects" -msgstr "" +msgstr "Neišsaugoti projektai" msgid "Clear my choice on the unsaved projects." msgstr "Išvalyti mano pasirinkimus neišsaugotuose projektuose." msgid "Unsaved presets" -msgstr "" +msgstr "Neišsaugoti profiliai" msgid "Clear my choice on the unsaved presets." -msgstr "Išvalyti mano pasirinkimą neišsaugotuose nustatymuose." +msgstr "Išvalyti mano pasirinkimą neišsaugotuose profiliuose." msgid "Synchronizing printer preset" -msgstr "" +msgstr "Spausdintuvo profilio sinchronizavimas" msgid "Clear my choice for synchronizing printer preset after loading the file." -msgstr "" +msgstr "Išvalyti mano pasirinkimą dėl spausdintuvo profilio sinchronizavimo įkėlus failą." msgid "Graphics" -msgstr "" +msgstr "Grafika" msgid "Phong shading" -msgstr "" +msgstr "Phong šešėliavimas" msgid "Uses Phong shading inside realistic view." -msgstr "" +msgstr "Realistiniame vaizde naudojamas „Phong“ šešėliavimas." msgid "SSAO ambient occlusion" -msgstr "" +msgstr "SSAO apšvietimo užtemdymas" msgid "Applies SSAO in realistic view." -msgstr "" +msgstr "Realistiniame vaizde taiko SSAO." msgid "Shadows" -msgstr "" +msgstr "Šešėliai" msgid "Renders cast shadows on the plate in realistic view." -msgstr "" +msgstr "Realistiniame vaizde atvaizduoja krentančius šešėlius ant spausdinimo pagrindo." msgid "Smooth normals" -msgstr "" +msgstr "Glotnios normalės" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"Realistiškam vaizdui pritaiko glotnias normales.\n" +"\n" +"Kad pakeitimai įsigaliotų, reikia rankiniu būdu perkrauti sceną (dešiniuoju pelės mygtuku spustelėkite 3D vaizdą → „Perkrauti viską“)." msgid "Anti-aliasing" -msgstr "Anti-aliasing" +msgstr "Išlyginimas" msgid "MSAA Multiplier" -msgstr "" +msgstr "MSAA daugiklis" msgid "" "Set the Multi-Sample Anti-Aliasing level.\n" @@ -8160,12 +8162,18 @@ msgid "" "\n" "Requires application restart." msgstr "" +"Nustatykite daugkartinio mėginių ėmimo išlyginimo lygį.\n" +"Didesnės reikšmės užtikrina sklandesnius kraštus, tačiau poveikis našumui yra eksponentinis.\n" +"Mažesnės reikšmės pagerina našumą, tačiau kraštai tampa dantyti.\n" +"Jei ši funkcija išjungta, rekomenduojama įjungti FXAA, kad sumažintumėte dantytus kraštus, minimaliai paveikiant našumą.\n" +"\n" +"Reikia iš naujo paleisti programą." msgid "Disabled" msgstr "Išjungta" msgid "FXAA post-processing" -msgstr "" +msgstr "FXAA apdorojimas po atvaizdavimo" msgid "" "Applies Fast Approximate Anti-Aliasing as a screen-space pass.\n" @@ -8173,26 +8181,30 @@ msgid "" "\n" "Takes effect immediately." msgstr "" +"Taiko greitą apytikslį išlyginimą (Fast Approximate Anti-Aliasing) kaip ekrano erdvės apdorojimo etapą.\n" +"Naudinga, norint išjungti arba sumažinti MSAA nustatymą, siekiant pagerinti našumą.\n" +"\n" +"Įsigalioja iš karto." msgid "FPS" -msgstr "FPS" +msgstr "KPS (FPS)" msgid "FPS cap" -msgstr "" +msgstr "KPS ribojimas" msgid "(0 = unlimited)" -msgstr "" +msgstr "(0 = neribojama)" msgid "" "Limits viewport frame rate to reduce GPU load and power usage.\n" "Set to 0 for unlimited frame rate." -msgstr "" +msgstr "Riboja vaizdo srities kadrų dažnį, kad sumažintų vaizdo plokštės (GPU) apkrovą ir energijos sąnaudas. Įveskite 0, jei kadrų dažnis neribojamas." msgid "Show FPS overlay" -msgstr "" +msgstr "Rodyti KPS (FPS) indikatorių" msgid "Displays current viewport FPS in the top-right corner." -msgstr "" +msgstr "Viršutiniame dešiniajame kampe rodo esamą vaizdo srities kadrų dažnį." msgid "Login region" msgstr "Prisijungimo regionas" @@ -8204,12 +8216,14 @@ 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 "" +"Išjungia visas debesijos funkcijas, įskaitant „Orca Cloud“ profilių sinchronizavimą. Naudotojai, kurie nori dirbti visiškai neprisijungę prie tinklo, gali įjungti šią parinktį.\n" +"Pastaba: kai įjungtas slaptas režimas, jūsų naudotojo profilių atsarginės kopijos nebus kuriamos „Orca Cloud“ debesyje." msgid "Hide login side panel" -msgstr "" +msgstr "Slėpti prisijungimo šoninį skydelį" msgid "Hide the login side panel on the home page." -msgstr "" +msgstr "Slėpti prisijungimo šoninį skydelį pradžios puslapyje." msgid "Network test" msgstr "Tinklo testas" @@ -8218,48 +8232,44 @@ msgid "Test" msgstr "Testas" msgid "Cloud Providers" -msgstr "" +msgstr "Debesijos paslaugų teikėjai" msgid "Enable Bambu Cloud" -msgstr "" +msgstr "Įjungti „Bambu Cloud“" msgid "Allow logging into Bambu Cloud alongside Orca Cloud. When enabled, a Bambu login section appears on the homepage." -msgstr "" +msgstr "Leisti prisijungti prie „Bambu Cloud“ kartu su „Orca Cloud“. Kai įjungta, pradžios puslapyje rodoma „Bambu“ prisijungimo skiltis." msgid "Update & sync" -msgstr "" +msgstr "Atnaujinimas ir sinchronizavimas" msgid "Check for stable updates only" msgstr "Tikrinti tik stabilius atnaujinimus" msgid "Auto sync user presets (Printer/Filament/Process)" -msgstr "Automatiškai sinchronizuoti naudotojo nustatymus (spausdintuvas/gija/procesas)" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automatinis įmontuotų nustatymų atnaujinimas." - -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 "" +msgstr "Automatiškai sinchronizuoti naudotojo profilius (spausdintuvas / gija / procesas)" msgid "Filament sync mode" -msgstr "" +msgstr "Gijų sinchronizavimo režimas" msgid "Choose whether sync updates both filament preset and color, or only color." -msgstr "" +msgstr "Pasirinkite, ar sinchronizuojant atnaujinti ir gijos profilį, ir spalvą, ar tik spalvą." msgid "Filament & Color" -msgstr "" +msgstr "Gija ir spalva" msgid "Color only" +msgstr "Tik spalva" + +msgid "Update built-in presets automatically." msgstr "" +msgid "Use encrypted file for token storage" +msgstr "Naudoti šifruotą failą prieigos raktų laikmenai" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Saugoti autentifikavimo raktus šifruotame faile, o ne sistemos slaptažodžių saugykloje (keychain). (Reikia paleisti iš naujo)" + msgid "Bambu network plug-in" msgstr "" @@ -8267,104 +8277,81 @@ msgid "Enable Bambu network plug-in" msgstr "" msgid "Network plug-in version" -msgstr "" +msgstr "Tinklo įskiepio versija" 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 "" - -msgid "Download Network Plug-in" -msgstr "" +msgstr "Pasirinkite naudotiną tinklo įskiepio versiją" msgid "Associate files to OrcaSlicer" msgstr "Susieti failus su Orca Slicer" msgid "File associations for the Microsoft Store version are managed by Windows Settings." -msgstr "" +msgstr "„Microsoft Store“ versijos failų susiejimai valdomi „Windows“ nustatymuose." msgid "Open Windows Default Apps Settings" -msgstr "" +msgstr "Atidaryti „Windows“ numatytųjų programų nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Associate 3MF files to OrcaSlicer" -msgstr "Susieti .3mf failus su Orca Slicer" +msgstr "Susieti 3MF failus su „OrcaSlicer“" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytasis .3mf failų atidarymo įrankis" +msgstr "" msgid "Associate DRC files to OrcaSlicer" -msgstr "" +msgstr "Susieti DRC failus su „OrcaSlicer“" msgid "If enabled, sets OrcaSlicer as default application to open DRC files." +msgstr "Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa DRC failams atidaryti." + +msgid "Associate STL files to OrcaSlicer" +msgstr "Susieti STL failus su „OrcaSlicer“" + +msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Associate STL files to OrcaSlicer" -msgstr "Susieti .stl failus su Orca Slicer" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .stl failams atverti" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "Associate STEP files to OrcaSlicer" -msgstr "Susieti .step/.stp failus su Orca Slicer" +msgstr "Susieti STEP failus su „OrcaSlicer“" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." -msgstr "Jei įjungta, \"Orca Slicer\" nustatoma kaip numatytoji programa .step failams atverti" +msgstr "" msgid "Associate web links to OrcaSlicer" msgstr "Susieti interneto nuorodas su Orca Slicer" msgid "Developer" -msgstr "" +msgstr "Kūrėjas" msgid "Skip AMS blacklist check" msgstr "Praleisti AMS draudžiamo sąrašo tikrinimą" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "Rodyti nepalaikomus profilius" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Rodyti nesuderinamus / nepalaikomus profilius spausdintuvų ir gijų išskleidžiamuosiuose sąrašuose. Šių profilių pasirinkti negalima." + +msgid "Experimental Features" +msgstr "" + +msgid "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 "" - -msgid "Show unsupported presets" -msgstr "" - -msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." -msgstr "" +"Bando išsaugoti nudažytas ypatybes (spalvą, siūlę, atramas, šiauštą paviršių ir kt.) pakeitus objekto tinklelio modelį (pvz., po pjovimo, įkėlimo iš naujo, supaprastinimo, taisymo ir kt.)\n" +"Labai eksperimentinė funkcija! Veikia lėtai ir gali sukurti artefaktų." msgid "Allow Abnormal Storage" -msgstr "" +msgstr "Leisti sutrikusią (neįprastą) laikmeną" 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 "" +"Leidžia naudoti laikmeną, kurią spausdintuvas pažymėjo kaip veikiančią su sutrikimais.\n" +"Naudokite savo rizika, tai gali sukelti problemų!" msgid "Log Level" msgstr "Žurnalų lygmuo" @@ -8384,26 +8371,8 @@ msgstr "testavimas" msgid "trace" msgstr "sekimas" -msgid "Network plug-in" -msgstr "Tinklo įskiepis" - -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 "" +msgstr "Derinimas" msgid "Sync settings" msgstr "Sinchronizavimo nustatymai" @@ -8412,30 +8381,11 @@ msgid "User sync" msgstr "Naudotojo sinchronizavimas" msgid "Preset sync" -msgstr "Nustatymų sinchronizavimas" +msgstr "Profilių sinchronizavimas" msgid "Preferences sync" msgstr "Pasirinkimų sinchronizavimas" -msgid "View control settings" -msgstr "Peržiūrėti valdymo nustatymus" - -msgid "Rotate view" -msgstr "Pasukti vaizdą" - -msgid "Pan view" -msgstr "Judinti vaizdą" - -msgid "Zoom view" -msgstr "Padidinti vaizdą" - -msgid "Other" -msgstr "Kita" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Apversta pelės ratuko didinimo kryptis" - msgid "Enable SSL(MQTT)" msgstr "Įjungti SSL (MQTT)" @@ -8446,92 +8396,88 @@ msgid "Internal developer mode" msgstr "Vidinio kūrėjo režimas" msgid "Host Setting" -msgstr "Hosto nustatymai" +msgstr "Serverio nustatymai" msgid "DEV host: api-dev.bambu-lab.com/v1" -msgstr "DEV hostas: api-dev.bambu-lab.com/v1" +msgstr "DEV serveris: api-dev.bambu-lab.com/v1" msgid "QA host: api-qa.bambu-lab.com/v1" -msgstr "QA hostas: api-qa.bambu-lab.com/v1" +msgstr "QA serveris: api-qa.bambu-lab.com/v1" msgid "PRE host: api-pre.bambu-lab.com/v1" -msgstr "PRE hostas: api-pre.bambu-lab.com/v1" +msgstr "PRE serveris: api-pre.bambu-lab.com/v1" msgid "Product host" -msgstr "Produkto hostas" +msgstr "Gamybinis serveris" msgid "Debug save button" -msgstr "derinimo išsaugojimo mygtukas" +msgstr "Derinimo išsaugojimo mygtukas" msgid "Save debug settings" -msgstr "išsaugoti testavimo nuostatas" +msgstr "Išsaugoti testavimo nuostatas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Debug settings have been saved successfully!" -msgstr "TESTAVIMO nuostatos sėkmingai išsaugotos!" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cloud environment switched; please login again!" -msgstr "Pakeista debesų aplinka, prašome prisijungti iš naujo!" +msgstr "" msgid "System presets" -msgstr "Sistemos išankstiniai nustatymai" +msgstr "Sistemos profiliai" msgid "User presets" -msgstr "Naudotojo išankstiniai nustatymai" +msgstr "Naudotojo profiliai" msgid "Incompatible presets" -msgstr "Nesuderinami išankstiniai nustatymai" +msgstr "Nesuderinami profiliai" msgid "My Printer" -msgstr "" +msgstr "Mano spausdintuvas" msgid "Left filaments" -msgstr "" +msgstr "Kairiosios gijos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament" -msgstr "AMS gijos" +msgstr "" msgid "Right filaments" -msgstr "" +msgstr "Dešiniosios gijos" msgid "Click to select filament color" msgstr "Paspauskite gijos spalvos pasirinkimui" msgid "Add/Remove presets" -msgstr "Pridėti / pašalinti išankstinius nustatymus" +msgstr "Pridėti / pašalinti profilius" msgid "Edit preset" -msgstr "Redaguoti išankstinį nustatymą" +msgstr "Redaguoti profilį" msgid "Unspecified" -msgstr "" +msgstr "Nenurodyta" msgid "Project-inside presets" -msgstr "Projekto vidiniai nustatymai" +msgstr "Vidiniai projekto profiliai" msgid "Bundle presets" -msgstr "" +msgstr "Paketo profiliai" msgid "System" msgstr "Sistema" msgid "Unsupported presets" -msgstr "" +msgstr "Nepalaikomi profiliai" msgid "Unsupported" -msgstr "" +msgstr "Nepalaikoma" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add/Remove filament" -msgstr "Pridėti / pašalinkite gijas" +msgstr "" msgid "Add/Remove materials" msgstr "Pridėti / pašalinti medžiagas" msgid "Select/Remove printers (system presets)" -msgstr "Pasirinkti / Pašalinti spausdintuvus (sistemos nustatymai)" +msgstr "Pasirinkti / pašalinti spausdintuvus (sistemos profiliai)" msgid "Create printer" msgstr "Sukurti spausdintuvą" @@ -8543,7 +8489,7 @@ msgid "Incompatible" msgstr "Nesuderinama" msgid "The selected preset is null!" -msgstr "Pasirinktas šablonas yra tuščias!" +msgstr "Pasirinktas profilis yra tuščias (null)!" msgid "End" msgstr "Pabaiga" @@ -8558,11 +8504,10 @@ msgid "Please input layer value (>= 2)." msgstr "Prašome įvesti sluoksnių skaičių (>=2)." msgid "Plate name" -msgstr "Plokštės pavadinimas" +msgstr "Spausdinimo pagrindo pavadinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Same as Global Plate Type" -msgstr "Toks pats, kaip ir bendras plokštės tipas" +msgstr "Toks pats, kaip ir bendras pagrindo tipas" msgid "Bed type" msgstr "Pagrindo tipas" @@ -8597,15 +8542,14 @@ msgstr "Priimti" msgid "Log Out" msgstr "Atsijungti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice all plates to obtain time and filament estimation" -msgstr "Laiko ir gijos sąnaudoms sužinoti susluoksniuokite visą plokštę" +msgstr "" msgid "Packing project data into 3MF file" -msgstr "Projekto duomenys pakuojami į .3mf failą" +msgstr "Projekto duomenys pakuojami į 3MF failą" msgid "Uploading 3MF" -msgstr "Įkeliamas 3mf" +msgstr "Įkeliamas 3MF" msgid "Jump to model publish web page" msgstr "Pereiti į modelio talpinimo interneto puslapį" @@ -8620,13 +8564,13 @@ msgid "Publish was canceled" msgstr "Publikavimas buvo atšauktas" msgid "Slicing Plate 1" -msgstr "Sluoksniuojama plokštė 1" +msgstr "Sluoksniuojamas 1 pagrindas" msgid "Packing data to 3MF" -msgstr "Duomenys pakuojami į 3mf" +msgstr "Duomenys pakuojami į 3MF" msgid "Uploading data" -msgstr "" +msgstr "Įkeliami duomenys" msgid "Jump to webpage" msgstr "Pereiti į interneto puslapį" @@ -8636,13 +8580,13 @@ msgid "Save %s as" msgstr "Išsaugoti %s kaip" msgid "User Preset" -msgstr "Naudotojo nustatymai" +msgstr "Naudotojo profilis" msgid "Preset Inside Project" -msgstr "Nustatymai projekto viduje" +msgstr "Profilis projekto viduje" msgid "Detach from parent" -msgstr "" +msgstr "Atskirti nuo tėvinio profilio" msgid "Name is unavailable." msgstr "Nėra pavadinimo." @@ -8652,21 +8596,20 @@ msgstr "Sistemos profilio perrašyti neleidžiama." #, boost-format msgid "Preset \"%1%\" already exists." -msgstr "Nustatymai \"%1%\" jau yra." +msgstr "Profilis „%1%“ jau egzistuoja." #, boost-format msgid "Preset \"%1%\" already exists and is incompatible with the current printer." -msgstr "Nustatymai \"%1%\" jau yra, tačiau jie nesuderinami su dabartiniu spausdintuvu." +msgstr "Profilis „%1%“ jau egzistuoja ir yra nesuderinamas su dabartiniu spausdintuvu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please note that saving will overwrite the current preset." -msgstr "Atkreipkite dėmesį, kad išsaugojus bus perrašytas dabartinis išankstinis nustatymas." +msgstr "" msgid "The name cannot be the same as a preset alias name." -msgstr "Pavadinimas negali būti toks pat kaip iš anksto nustatytasis." +msgstr "Pavadinimas negali sutapti su profilio alternatyviuoju pavadinimu (alias)." msgid "Save preset" -msgstr "Išsaugoti išankstinį nustatymą" +msgstr "Išsaugoti profilį" msgctxt "PresetName" msgid "Copy" @@ -8674,19 +8617,19 @@ msgstr "Kopijuoti" #, boost-format msgid "Printer \"%1%\" is selected with preset \"%2%\"" -msgstr "Spausdintuvas \"%1%\" pasirinktas su nustatymais \"%2%\"" +msgstr "Spausdintuvas „%1%“ pasirinktas su profiliu „%2%“" #, boost-format msgid "Please choose an action with \"%1%\" preset after saving." -msgstr "Prašome pasirinkti veiksmą su \"%1%\" nustatymais po išsaugojimo." +msgstr "Po išsaugojimo pasirinkite veiksmą su profiliu „%1%“." #, boost-format msgid "For \"%1%\", change \"%2%\" to \"%3%\" " -msgstr "\"%1%\", keičiamas \"%2%\" į \"%3%\" " +msgstr "Profilio „%1%“ atveju, pakeisti „%2%“ į „%3%“ " #, boost-format msgid "For \"%1%\", add \"%2%\" as a new preset" -msgstr "\"%1%\", pridedama \"%2%\" kaip nauji nustatymai" +msgstr "Profilio „%1%“ atveju, pridėti „%2%“ kaip naują profilį" #, boost-format msgid "Simply switch to \"%1%\"" @@ -8696,51 +8639,53 @@ msgid "Task canceled" msgstr "Užduotis atšaukta" msgid "Bambu Cool Plate" -msgstr "Bambu Cool plokštė" +msgstr "„Bambu Cool“ pagrindas" msgid "PLA Plate" -msgstr "PLA plokštė" +msgstr "PLA pagrindas" msgid "Bambu Engineering Plate" -msgstr "Bambu inžinerinė plokštė" +msgstr "„Bambu“ inžinerinis pagrindas" msgid "Bambu Smooth PEI Plate" -msgstr "Bambu smulkaus PEI plokštė" +msgstr "„Bambu“ lygus PEI pagrindas" msgid "High temperature Plate" -msgstr "Aukštos temperatūros plokštė" +msgstr "Aukštos temperatūros pagrindas" msgid "Bambu Textured PEI Plate" -msgstr "Bambu stabaus PEI plokštė" +msgstr "„Bambu“ tekstūrinis PEI pagrindas" msgid "Bambu Cool Plate SuperTack" -msgstr "Bambu Cool Plate SuperTack" +msgstr "„Bambu Cool SuperTack“ pagrindas" msgid "Send print job" -msgstr "" +msgstr "Siųsti spausdinimo užduotį" msgid "On" msgstr "Įjungta" msgid "Not satisfied with the grouping of filaments? Regroup and slice ->" -msgstr "" +msgstr "Netenkina gijų grupavimas? Pergrupuokite ir sluoksniuokite ->" msgid "Manually change external spool during printing for multi-color printing" -msgstr "" +msgstr "Spausdinimo metu rankiniu būdu pakeiskite išorinę ritę, kad galėtumėte spausdinti keliomis spalvomis" msgid "Multi-color with external" -msgstr "" +msgstr "Daugiaspalvis spausdinimas su išorine rite" msgid "Your filament grouping method in the sliced file is not optimal." -msgstr "" +msgstr "Jūsų pasirinktas gijų grupavimo būdas susluoksniuotame faile nėra optimalus." msgid "Auto Bed Leveling" -msgstr "" +msgstr "Automatinis pagrindo lygiavimas" 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 "" +"Patikrina šildomo pagrindo lygumą. Lygiavimas užtikrina tolygų išspaustos gijos aukštį.\n" +"*Automatinis režimas: atlieka lygiavimo patikrą (apie 10 sekundžių). Praleidžiama, jei paviršius yra lygus." msgid "Flow Dynamics Calibration" msgstr "Gijos srauto kalibravimas" @@ -8749,27 +8694,31 @@ msgid "" "This process determines the dynamic flow values to improve overall print quality.\n" "*Automatic mode: Skip if the filament was calibrated recently." msgstr "" +"Šis procesas nustato dinaminio srauto vertes, kad pagerintų bendrą spausdinimo kokybę.\n" +"*Automatinis režimas: praleidžiama, jei gija buvo sukalibruota neseniai." msgid "Nozzle Offset Calibration" -msgstr "" +msgstr "Purkštuko poslinkio (offset) kalibravimas" msgid "" "Calibrate nozzle offsets to enhance print quality.\n" "*Automatic mode: Check for calibration before printing. Skip if unnecessary." msgstr "" +"Kalibruoja purkštuko poslinkius spausdinimo kokybei pagerinti.\n" +"*Automatinis režimas: patikrina kalibravimą prieš spausdinant. Praleidžiama, jei tai nebūtina." msgid "Send complete" -msgstr "siuntimas baigtas" +msgstr "Siuntimas baigtas" msgid "Error code" msgstr "Klaidos kodas" msgid "High Flow" -msgstr "" +msgstr "Didelis srautas (High Flow)" #, 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 "" +msgstr "%s (%s) purkštuko srauto nustatymas nesutampa su sluoksniavimo failu (%s). Įsitikinkite, kad įstatytas purkštukas atitinka spausdintuvo nustatymus, o tada sluoksniuodami pasirinkite atitinkamą spausdintuvo profilį." #, 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." @@ -8780,30 +8729,28 @@ msgstr "Naudojama gija nesutampa su gija AMS lizde. Atnaujinkite spausdintuvo pr #, 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 "" +msgstr "Pasirinktas spausdintuvas (%s) yra nesuderinamas su spausdinimo failo konfigūracija (%s). Paruošimo puslapyje pakoreguokite spausdintuvo profilį arba šiame puslapyje pasirinkite suderinamą spausdintuvą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "When spiral vase mode is enabled, machines with I3 structure will not generate timelapse videos." -msgstr "Įjungus spiralės vazos režimą, I3 struktūros spausdintuvai negeneruos pakadrinių vaizdo įrašų." +msgstr "" msgid "The current printer does not support timelapse in Traditional Mode when printing By-Object." -msgstr "" +msgstr "Dabartinis spausdintuvas nepalaiko laiko tarpų (timelapse) vaizdo įrašų tradiciniu režimu, kai spausdinama pagal objektą." msgid "Errors" msgstr "Klaidos" 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 "" +msgstr "Prie tos pačios išorinės ritės buvo priskirti keli gijų tipai, o tai gali sukelti spausdinimo problemų. Spausdinimo metu spausdintuvas nedarys pauzės." msgid "The filament type setting of external spool is different from the filament in the slicing file." -msgstr "" +msgstr "Išorinės ritės gijos tipo nustatymas skiriasi nuo gijos, nurodytos sluoksniavimo faile." 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-kodo generavimo metu pasirinktas spausdintuvo tipas neatitinka šiuo metu pasirinkto spausdintuvo. Rekomenduojame sluoksniavimui naudoti tą patį spausdintuvo tipą." +msgstr "Generuojant G-kodą pasirinktas spausdintuvo tipas nesutampa su šiuo metu pasirinktu spausdintuvu. Sluoksniavimui rekomenduojama naudoti tą patį spausdintuvo tipą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, click \"Confirm\" to start printing." -msgstr "AMS sistemoje yra nežinomų gijų. Prašome patikrinti, ar tai yra reikalingos gijos. Jei viskas tvarkoje, spausdinimą galite pradėti paspaudę „Patvirtinti“." +msgstr "" msgid "Please check the following:" msgstr "Prašome patikrinti:" @@ -8815,10 +8762,10 @@ msgid "Please click the confirm button if you still want to proceed with printin msgstr "Jei jūs vis dar norite tęsti spausdinimą, paspauskite patvirtinimo mygtuką." msgid "This checks the flatness of heatbed. Leveling makes extruded height uniform." -msgstr "" +msgstr "Patikrina spausdinimo pagrindo lygumą. Lygiavimas užtikrina tolygų išspaustos gijos aukštį." msgid "This process determines the dynamic flow values to improve overall print quality." -msgstr "" +msgstr "Šis procesas nustato dinaminio srauto vertes, kad pagerintų bendrą spausdinimo kokybę." msgid "Preparing print job" msgstr "Spausdinimo užduoties rengimas" @@ -8828,215 +8775,209 @@ msgstr "Pavadinimas viršijo leistiną dydį." #, c-format, boost-format msgid "Cost %dg filament and %d changes more than optimal grouping." -msgstr "" +msgstr "Sunaudoja %d g gijos ir %d pakeitimais daugiau nei pasirinkus optimalų grupavimą." msgid "nozzle" -msgstr "" +msgstr "purkštukas" msgid "both extruders" -msgstr "" +msgstr "abu ekstruderiai" msgid "Tips: If you changed your nozzle of your printer lately, Please go to 'Device -> Printer parts' to change your nozzle setting." -msgstr "" +msgstr "Patarimas: jei neseniai pakeitėte spausdintuvo purkštuką, eikite į „Įrenginys -> Spausdintuvo dalys“, kad pakeistumėte purkštuko nustatymą." #, 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 "" +msgstr "Dabartinio spausdintuvo %s skersmuo (%.1f mm) nesutampa su sluoksniavimo failu (%.1f mm). Įsitikinkite, kad įstatytas purkštukas atitinka spausdintuvo nustatymus, o tada sluoksniuodami parinkite atitinkamą spausdintuvo profilį." #, 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 "" +msgstr "Dabartinis purkštuko skersmuo (%.1f mm) nesutampa su sluoksniavimo failu (%.1f mm). Įsitikinkite, kad įstatytas purkštukas atitinka spausdintuvo nustatymus, o tada sluoksniuodami parinkite atitinkamą spausdintuvo profilį." #, 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 "" +msgstr "Dabartinės medžiagos kietumas (%s) viršija %s (%s) kietumą. Patikrinkite purkštuko arba medžiagos nustatymus ir bandykite dar kartą." #, c-format, boost-format msgid "[ %s ] requires printing in a high-temperature environment. Please close the door." -msgstr "" +msgstr "[ %s ] reikalauja spausdinimo aukštos temperatūros aplinkoje. Užverkite dureles." #, c-format, boost-format msgid "[ %s ] requires printing in a high-temperature environment." -msgstr "" +msgstr "[ %s ] reikalauja spausdinimo aukštos temperatūros aplinkoje." #, c-format, boost-format msgid "The filament on %s may soften. Please unload." -msgstr "" +msgstr "Gija, esanti %s, gali suminkštėti. Prašome ją išimti." #, c-format, boost-format msgid "The filament on %s is unknown and may soften. Please set filament." -msgstr "" +msgstr "Gija, esanti %s, yra nežinoma ir gali suminkštėti. Nustatykite gijos tipą." msgid "Unable to automatically match to suitable filament. Please click to manually match." -msgstr "" +msgstr "Nepavyko automatiškai parinkti tinkamos gijos. Spustelėkite, kad suderintumėte rankiniu būdu." msgid "Install toolhead enhanced cooling fan to prevent filament softening." -msgstr "" +msgstr "Įdiekite patobulintą spausdinimo galvutės (toolhead) aušinimo ventiliatorių, kad išvengtumėte gijos suminkštėjimo." msgid "Smooth Cool Plate" -msgstr "Glotni vėsi plokštė" +msgstr "Lygus vėsus pagrindas" msgid "Engineering Plate" -msgstr "Inžinerinė plokštė" +msgstr "Inžinerinis pagrindas" msgid "Smooth High Temp Plate" -msgstr "Lygi aukštos temperatūros plokštė" +msgstr "Lygus aukštos temperatūros pagrindas" msgid "Textured PEI Plate" -msgstr "Tekstūruota PEI plokštė" +msgstr "Tekstūrinis PEI pagrindas" msgid "Cool Plate (SuperTack)" -msgstr "Šalta plokštė (SuperTack)" +msgstr "Vėsus pagrindas („SuperTack“)" msgid "Click here if you can't connect to the printer" msgstr "Jei negalite prijungti spausdintuvo, spauskite čia" msgid "No login account, only printers in LAN mode are displayed." -msgstr "Nėra prisijungimo paskyros, rodomi tik vietiniame tinkle esantys spausdintuvai" +msgstr "Nėra prisijungimo paskyros, rodomi tik vietiniame tinkle esantys spausdintuvai." msgid "Connecting to server..." -msgstr "Jungiamasi prie serverio" +msgstr "Jungiamasi prie serverio..." msgid "Synchronizing device information..." -msgstr "Sinchronizuojama įrenginio informacija" +msgstr "Sinchronizuojama įrenginio informacija..." msgid "Synchronizing device information timed out." -msgstr "Baigėsi įrenginio informacijos sinchronizavimo laikas" +msgstr "Baigėsi įrenginio informacijos sinchronizavimo laikas." msgid "Cannot send a print job when the printer is not at FDM mode." -msgstr "" +msgstr "Negalima siųsti spausdinimo užduoties, kai spausdintuvas neveikia FDM režimu." msgid "Cannot send a print job while the printer is updating firmware." -msgstr "Spausdinimo užduoties negalima išsiųsti, kai spausdintuvo programinė įranga atnaujinama" +msgstr "Spausdinimo užduoties negalima išsiųsti spausdintuvo programinės įrangos atnaujinamo metu." msgid "The printer is executing instructions. Please restart printing after it ends." -msgstr "Spausdintuvas vykdo instrukcijas. Kai jis baigs, prašome paleisti spausdinimą iš naujo" +msgstr "Spausdintuvas vykdo instrukcijas. Kai jis baigs, prašome paleisti spausdinimą iš naujo." msgid "AMS is setting up. Please try again later." -msgstr "" +msgstr "Ruošiama AMS sistema. Bandykite dar kartą vėliau." msgid "Not all filaments used in slicing are mapped to the printer. Please check the mapping of filaments." -msgstr "" +msgstr "Ne visos sluoksniavimui naudotos gijos yra priskirtos spausdintuvui. Patikrinkite gijų priskyrimą (mapping)." msgid "Please do not mix-use the Ext with AMS." -msgstr "" +msgstr "Nenaudokite išorinės ritės (Ext) kartu su AMS sistema vienu metu." msgid "Invalid nozzle information, please refresh or manually set nozzle information." -msgstr "" +msgstr "Neteisinga purkštuko informacija. Atnaujinkite arba rankiniu būdu nustatykite purkštuko duomenis." msgid "Storage needs to be inserted before printing via LAN." -msgstr "" +msgstr "Prieš spausdinant per vietinį tinklą (LAN), būtina įdėti laikmeną." msgid "Storage is in abnormal state or is in read-only mode." -msgstr "" +msgstr "Laikmena veikia su sutrikimais arba yra tik skaitymo režime." msgid "Storage needs to be inserted before printing." -msgstr "" +msgstr "Prieš spausdinant būtina įdėti laikmeną." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send the print job to a printer whose firmware must be updated." -msgstr "Neįmanoma išsiųsti spausdinimo užduoties spausdintuvui, kurio programinę įrangą reikia atnaujinti." +msgstr "" msgid "Cannot send a print job for an empty plate." -msgstr "Negalima siųsti spausdinimo užduoties tuščiai plokštei" +msgstr "Negalima siųsti spausdinimo užduoties tuščiam pagrindui." msgid "Storage needs to be inserted to record timelapse." -msgstr "" +msgstr "Norint įrašyti laiko tarpų (timelapse) vaizdo įrašą, būtina įdėti laikmeną." msgid "You have selected both external and AMS filaments for an extruder. You will need to manually switch the external filament during printing." -msgstr "" +msgstr "Ekstruderiui pasirinkote ir išorines, ir AMS gijas. Spausdinimo metu turėsite rankiniu būdu pakeisti išorinę giją." msgid "TPU 90A/TPU 85A is too soft and does not support automatic Flow Dynamics calibration." -msgstr "" +msgstr "TPU 90A / TPU 85A yra per minkšta gija, todėl ji nepalaiko automatinio dinaminio srauto kalibravimo." msgid "Set dynamic flow calibration to 'OFF' to enable custom dynamic flow value." -msgstr "" +msgstr "Išjunkite dinaminio srauto kalibravimą (nustatykite į „OFF“), kad galėtumėte naudoti pasirinktinę dinaminio srauto vertę." msgid "This printer does not support printing all plates." -msgstr "Spausdintuvas nepalaiko visų plokščių spausdinimo" +msgstr "Šis spausdintuvas nepalaiko visų pagrindų spausdinimo iš karto." 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 "" +msgstr "Dabartinė programinė įranga palaiko ne daugiau kaip 16 medžiagų. Galite paruošimo puslapyje sumažinti medžiagų skaičių iki 16 ar mažiau arba pabandyti atnaujinti programinę įrangą. Jei po atnaujinimo apribojimas išlieka, palaukite vėlesnių programinės įrangos atnaujinimų." 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 "" +msgstr "Išorinės gijos tipas yra nežinomas arba nesutampa su gijos tipu sluoksniavimo faile. Įsitikinkite, kad į išorinę ritę įstatėte tinkamą giją." msgid "Please refer to Wiki before use->" -msgstr "" +msgstr "Prieš naudodami peržiūrėkite „Wiki“ ->" msgid "Current firmware does not support file transfer to internal storage." -msgstr "" +msgstr "Dabartinė programinė įranga nepalaiko failų perdavimo į vidinę laikmeną." msgid "Send to Printer storage" -msgstr "" +msgstr "Siųsti į spausdintuvo laikmeną" msgid "Try to connect" -msgstr "" +msgstr "Bandyti jungtis" msgid "Internal Storage" -msgstr "" +msgstr "Vidinė laikmena" msgid "External Storage" -msgstr "" +msgstr "Išorinė laikmena" msgid "Upload file timeout, please check if the firmware version supports it." -msgstr "" +msgstr "Baigėsi failo įkėlimo laikas, patikrinkite, ar programinės įrangos versija tai palaiko." msgid "Connection timed out, please check your network." -msgstr "" +msgstr "Ryšio laikas baigėsi, patikrinkite tinklo ryšį." msgid "Connection failed. Click the icon to retry" -msgstr "" +msgstr "Nepavyko prisijungti. Spustelėkite piktogramą, kad bandytumėte dar kartą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send print tasks when an update is in progress" -msgstr "Negalima nusiųsti spausdinimo užduočių programinės įrangos atnaujinimo metu" +msgstr "" msgid "The selected printer is incompatible with the chosen printer presets." -msgstr "Pasirinktas spausdintuvas nesuderinamas su išrinktais spausdintuvų nustatymais." +msgstr "Pasirinktas spausdintuvas yra nesuderinamas su parinktais spausdintuvo profiliais." msgid "Storage needs to be inserted before send to printer." -msgstr "" +msgstr "Prieš siunčiant į spausdintuvą, būtina įdėti laikmeną." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer is required to be on the same LAN as Orca Slicer." -msgstr "Spausdintuvas privalo būti tame pačiame tinkle kaip ir Orca Slicer." +msgstr "" msgid "The printer does not support sending to printer storage." -msgstr "" +msgstr "Spausdintuvas nepalaiko siuntimo į spausdintuvo laikmeną." msgid "Sending..." -msgstr "" +msgstr "Siunčiama..." msgid "File upload timed out. Please check if the firmware version supports this operation or verify if the printer is functioning properly." -msgstr "" +msgstr "Baigėsi failo įkėlimo laikas. Patikrinkite, ar programinės įrangos versija palaiko šį veiksmą, ir įsitikinkite, kad spausdintuvas veikia tinkamai." msgid "Sending failed, please try again!" -msgstr "" +msgstr "Siuntimas nepavyko, bandykite dar kartą!" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice complete" -msgstr "Sluoksniavimas baigtas." +msgstr "" msgid "View all Daily tips" msgstr "Peržiūrėti visus dienos patarimus" msgid "Failed to create socket" -msgstr "Nepavyko sukurti soketo" +msgstr "Nepavyko sukurti lizdo (socket)" msgid "Failed to connect socket" -msgstr "Nepavyko prisijungti prie soketo" +msgstr "Nepavyko prisijungti prie lizdo (socket)" msgid "Failed to publish login request" msgstr "Nepavyko paskelbti prisijungimo užklausos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from device" -msgstr "Įrenginio bilieto laukimo laikas baigėsi" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from server" -msgstr "Serverio bilieto laukimo laikas baigėsi" +msgstr "" msgid "Failed to post ticket to server" msgstr "Nepavyko paskelbti bilieto serveryje" @@ -9100,14 +9041,14 @@ msgid "We ask for your help to improve everyone's printer" msgstr "Mes prašome jūsų pagalbos tobulinant kiekvieno spausdintuvą" msgid "Statement about User Experience Improvement Program" -msgstr "Informacija apie vartotojo patirties tobulinimo programą" +msgstr "Informacija apie naudotojo patirties tobulinimo programą" #, 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 "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume koreguoti savo sluoksniavimo parametrus ir nustatymus. %s veikia tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą remdamasi didžiule mūsų vartotojų spausdinimo sėkmėmis ir nesėkmėmis. Mes mokome %s tapti protingesniu įrankiu, pateikdami jam realaus pasaulio duomenis. Jei sutinkate, ši paslauga pasieks informaciją iš jūsų klaidų ir naudojimo žurnalų, kurie gali apimti informaciją, aprašytą Privatumo politikoje. Mes nerenkame jokių asmens duomenų, kuriais galima tiesiogiai ar netiesiogiai identifikuoti asmenį, įskaitant, bet neapsiribojant, vardus, pavardes, adresus, mokėjimo informacija ar telefono numerius. Įgalindami šią paslaugą, jūs sutinkate su šiomis sąlygomis ir Privatumo politikos nuostatais." +msgstr "3D spausdinimo bendruomenėje mokomės vieni iš kitų sėkmių ir nesėkmių, kad galėtume koreguoti savo sluoksniavimo parametrus ir profilius. %s veikia tuo pačiu principu ir naudoja mašininį mokymąsi, kad pagerintų savo veikimą remdamasi didžiule mūsų naudotojų spausdinimo sėkme bei nesėkmėmis. Mes mokome %s tapti išmanesniu, pateikdami jam realaus pasaulio duomenis. Jei sutinkate, ši paslauga pasieks informaciją iš jūsų klaidų ir naudojimo žurnalų, kurie gali apimti informaciją, aprašytą Privatumo politikoje. Mes nerenkame jokių asmens duomenų, kuriais galima tiesiogiai ar netiesiogiai identifikuoti asmenį, įskaitant (be apribojimų) vardus, pavardes, adresus, mokėjimo informaciją ar telefono numerius. Įgalindami šią paslaugą, jūs sutinkate su šiomis sąlygomis ir Privatumo politikos nuostatomis." msgid "Statement on User Experience Improvement Plan" -msgstr "Informacija apie vartotojo patirties tobulinimo planą" +msgstr "Informacija apie naudotojo patirties tobulinimo planą" msgid "Log in successful." msgstr "Prisijungta sėkmingai." @@ -9133,33 +9074,37 @@ msgid "Save current %s" msgstr "Išsaugoti dabartinį %s" msgid "Delete this preset" -msgstr "Ištrinti šį išankstinį nustatymą" +msgstr "Ištrinti šį profilį" msgid "Search in preset" -msgstr "Ieškoti nustatymuose" +msgstr "Ieškoti profilyje" + +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" msgid "Click to reset all settings to the last saved preset." msgstr "Paspauskite, norėdami atkurti visus nustatymus pagal paskutinį išsaugotą profilį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without a prime tower. Are you sure you want to disable the prime tower?" -msgstr "Norint sklandžiai filmuoti laiko intervalais, reikia valymo bokšto. Be valymo bokšto modelyje gali būti trūkumų. Ar tikrai norite išjungti valymo bokštą?" +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 "" +msgstr "Įjungus ir tikslų Z aukštį, ir valymo bokštą, gali kilti sluoksniavimo klaidų. Ar vis tiek norite įjungti?" msgid "Enabling both precise Z height and the prime tower may cause slicing errors. Do you still want to enable?" msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų. Ar vis tiek norite įjungti?" 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 "" +msgstr "Norint aptikti gumbų susidarymą, reikalingas valymo bokštas. Be valymo bokšto modelyje gali atsirasti defektų. Ar vis tiek norite įjungti gumbų susidarymo aptikimą?" msgid "Enabling both precise Z height and the prime tower may cause slicing errors. Do you still want to enable precise Z height?" -msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų. Ar vis tiek norite įjungti tikslų Z aukštį?" +msgstr "Įjungus ir tikslų Z aukštį, ir valymo bokštą, gali kilti sluoksniavimo klaidų. Ar vis tiek norite įjungti tikslų Z aukštį?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without prime tower. Do you want to enable the prime tower?" -msgstr "Pakadriniam tolygiam video reikia Prime bokšto. Spausdinant be Prime bokštelio modelis gali turėti trūkumų. Ar tikrai norite išjungti Prime bokštą?" +msgstr "" msgid "Still print by object?" msgstr "Vis dar spausdinti pagal objektą?" @@ -9168,35 +9113,36 @@ msgid "" "Non-soluble support materials are not recommended for support base.\n" "Are you sure to use them for support base?\n" msgstr "" +"Netirpios atraminės medžiagos nerekomenduojamos atramų pagrindui.\n" +"Ar tikrai norite jas naudoti atramų pagrindui?\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 "" -"Naudojant atraminę medžiagą atraminei sąsajai, rekomenduojame šiuos nustatymus:\n" -"0 viršutinis Z atstumas, 0 sąsajos tarpas, susipynęs tiesinis modelis ir išjungtas nepriklausomas atraminio sluoksnio aukštis." +"Naudojant specialią medžiagą atramų sąsajai (interface), rekomenduojame šiuos profilio nustatymus:\n" +"0 viršutinį Z atstumą, 0 sąsajos tarpą, susipynusį tiesinį raštą (rectilinear) ir išjungti nepriklausomą atraminio sluoksnio aukštį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings automatically.\n" "No - Do not change these settings for me." msgstr "" -"Automatiškai pakeisti šiuos nustatymus?\n" -"Taip - Pakeiskite šiuos nustatymus automatiškai.\n" -"Ne - Nekeiskite šių nustatymų už mane" 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 "" +"Naudojant tirpią medžiagą palaikymo sąsajai (support interface), rekomenduojame šiuos nustatymus:\n" +"0 viršutinis Z atstumas, 0 tarpas tarp sąsajų, persipynęs tiesiaeigis raštas, išjungti nepriklausomą palaikymo sluoksnio aukštį\n" +"ir naudoti tirpias medžiagas tiek palaikymo sąsajai, tiek palaikymo pagrindui." 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 "Įjungus šią parinktį, pasikeis modelio forma. Jei jūsų spaudinys turi atitikti tikslius matmenis arba yra dalis didesnio mazgo, svarbu papildomai patikrinti, ar šis geometrijos pasikeitimas neturi įtakos jūsų spaudinio funkcionalumui." msgid "Are you sure you want to enable this option?" -msgstr "Ar norite įjungti šią galimybę?" +msgstr "Ar tikrai norite įjungti šią parinktį?" 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 "Užpildymo modeliai paprastai yra suprojektuoti taip, kad automatiškai tvarkytų sukimąsi, siekiant užtikrinti tinkamą spausdinimą ir pasiekti numatytus efektus (pvz., Gyroid, Cubic). Sukant esamą retą užpildymo modelį, gali atsirasti nepakankamas atraminis paviršius. Prašome elgtis atsargiai ir atidžiai patikrinti, ar nėra galimų spausdinimo problemų. Ar tikrai norite įjungti šią parinktį?" @@ -9209,10 +9155,12 @@ msgstr "" "Jis bus nustatytas į min_layer_height\n" msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits, this may cause printing quality issues." -msgstr "Sluoksnio aukštis netilpo į ribas Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali turėti įtakos spausdinio kokybei.." +msgstr "Sluoksnio aukštis viršija ribą, nurodytą Spausdintuvo nustatymai -> Ekstruderis -> Sluoksnio aukščio ribos, tai gali sukelti spausdinimo kokybės problemų." msgid "Adjust to the set range automatically?\n" -msgstr "Nustatyti ribų priskyrimą automatiškai?\n" +msgstr "" +"Sureguliuoti pagal nustatytą diapazoną automatiškai?\n" +"\n" msgid "Adjust" msgstr "Sureguliuoti" @@ -9221,26 +9169,23 @@ msgid "Ignore" msgstr "Nekreipti dėmesio" 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 "Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį. Ši funkcija gali ženkliai sumažinti išspaudžiamos liekanos kiekį, tačiau taip pat gali padidėti ekstruderio užsikimšimo ar kitų spausdinimo problemų tikimybė." +msgstr "Eksperimentinė funkcija: gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išvalymą (flush). Nors tai gali pastebimai sumažinti išvalymą, taip pat gali padidėti purkštuko užsikimšimo ar kitų spausdinimo komplikacijų rizika." 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 "" -"Eksperimentinė funkcija: Gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išspaudžiamos liekanos kiekį.\n" -"Ši funkcija gali ženkliai sumažinti išspaudžiamos ankstesnės spalvos gijos liekanos kiekį, tačiau taip pat gali padidėti ekstruderio užsikimšimo ar kitų spausdinimo problemų tikimybė." +msgstr "Eksperimentinė funkcija: gijos įtraukimas ir nukirpimas didesniu atstumu keičiant giją, siekiant sumažinti išvalymą (flush). Nors tai gali pastebimai sumažinti išvalymą, taip pat gali padidėti purkštuko užsikimšimo ar kitų spausdinimo komplikacijų rizika. Naudokite su naujausia spausdintuvo programine aparatine įranga." 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 "" -"Įrašant pakadrinį vaizdo įrašą be spausdinimo galvutės judesių, rekomenduojama naudoti „Pakadrinio valymo bokštą“.\n" -"Norėdami jį pridėti, dešiniuoju pelės mygtuku spustelėkite tuščią spausdinimo plokštės vietą.\n" -"Tada pasirinkite „Pridėti primityvą“ -> „pakadrinis valymo bokštas“." +"Įrašant laiko tarpų (timelapse) vaizdo įrašą be spausdinimo galvutės, rekomenduojama pridėti „laiko tarpų valymo bokštą“ \n" +"dešiniuoju pelės mygtuku spustelint tuščią spausdinimo pagrindo vietą ir pasirenkant „Pridėti primityvą“ -> „laiko tarpų valymo bokštas“." msgid "A copy of the current system preset will be created, which will be detached from the system preset." -msgstr "Bus sukurta dabartinės sistemos išankstinės nuostatos kopija, kuri bus atskirta nuo sistemos išankstinės nuostatos." +msgstr "Bus sukurta dabartinio sistemos profilio kopija, kuri bus atskirta nuo sistemos profilio." msgid "The current custom preset will be detached from the parent system preset." -msgstr "Dabartinis pasirinktinis išankstinis nustatymas bus atskirtas nuo pagrindinio sistemos išankstinio nustatymo." +msgstr "Dabartinis pasirinktinis profilis bus atskirtas nuo pagrindinio sistemos profilio." msgid "Modifications to the current profile will be saved." msgstr "Dabartinio profilio pakeitimai bus išsaugoti." @@ -9253,28 +9198,28 @@ msgstr "" "Ar norite tęsti?" msgid "Detach preset" -msgstr "Atjungti išankstinį nustatymą" +msgstr "Atjungti profilį" msgid "This is a default preset." -msgstr "Tai numatytasis išankstinis nustatymas." +msgstr "Tai numatytasis profilis." msgid "This is a system preset." -msgstr "Tai iš anksto nustatytas sistemos nustatymas." +msgstr "Tai sistemos profilis." msgid "Current preset is inherited from the default preset." -msgstr "Dabartinis išankstinis nustatymas paveldėtas iš numatytojo išankstinio nustatymo." +msgstr "Dabartinis profilis yra paveldėtas iš numatytojo profilio." msgid "Current preset is inherited from" -msgstr "Dabartinis išankstinis nustatymas paveldėtas iš" +msgstr "Dabartinis profilis yra paveldėtas iš" msgid "It can't be deleted or modified." msgstr "Jo negalima ištrinti ar keisti." msgid "Any modifications should be saved as a new preset inherited from this one." -msgstr "Bet kokius pakeitimus reikėtų išsaugoti kaip naują iš anksto nustatytą nustatymą, paveldėtą iš šio." +msgstr "Visi pakeitimai turėtų būti išsaugoti kaip naujas profilis, paveldėtas iš šio." msgid "To do that please specify a new name for the preset." -msgstr "Norėdami tai padaryti, nurodykite naują išankstinio nustatymo pavadinimą." +msgstr "Norėdami tai padaryti, nurodykite naują profilio pavadinimą." msgid "Additional information:" msgstr "Papildoma informacija:" @@ -9289,7 +9234,7 @@ msgid "default print profile" msgstr "numatytasis spausdinimo profilis" msgid "default filament profile" -msgstr "numatytasis gijų profilis" +msgstr "numatytasis gijos profilis" msgid "default SLA material profile" msgstr "numatytasis SLA medžiagos profilis" @@ -9310,7 +9255,7 @@ msgid "Precision" msgstr "Tikslumas" msgid "Z contouring" -msgstr "" +msgstr "Z ašies kontūravimas" msgid "Wall generator" msgstr "Sienų generatorius" @@ -9327,7 +9272,6 @@ msgstr "Sienos" msgid "Top/bottom shells" msgstr "Viršutiniai/apatiniai paviršiai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer speed" msgstr "Pradinio sluoksnio greitis" @@ -9355,9 +9299,8 @@ msgstr "Pagreitis (XY)" msgid "Raft" msgstr "Platforma" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament for Supports" -msgstr "Atramų gija" +msgstr "" msgid "Support ironing" msgstr "Atramų lyginimas" @@ -9381,7 +9324,7 @@ msgid "G-code output" msgstr "G-kodo išvestis" msgid "Change extrusion role G-code" -msgstr "Keisti išspaudimo vaidmenį G-kodas" +msgstr "Ekstruzijos vaidmens keitimo G-kodas" msgid "Post-processing Scripts" msgstr "Scenarijai po apdorojimo" @@ -9400,20 +9343,14 @@ msgid_plural "" "Following lines %s contain reserved keywords.\n" "Please remove them, or G-code visualization and print time estimation will be broken." msgstr[0] "" -"Tolesnėje eilutėje %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." msgstr[1] "" -"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." msgstr[2] "" -"Tolesnėse eilutėse %s yra rezervuotų raktinių žodžių.\n" -"Pašalinkite juos, nes kitaip bus pažeistas G kodo vizualizavimas ir spausdinimo laiko įvertinimas." msgid "Reserved keywords found" msgstr "Rasti rezervuoti raktažodžiai" msgid "Setting Overrides" -msgstr "Apribojimų nustatymas" +msgstr "Nustatymų perrašymas" msgid "Basic information" msgstr "Pagrindinė informacija" @@ -9421,9 +9358,8 @@ msgstr "Pagrindinė informacija" msgid "Recommended nozzle temperature" msgstr "Rekomenduojama purkštuko temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Recommended nozzle temperature range of this filament. 0 means not set" -msgstr "Rekomenduojamas šios gijos purkštuko temperatūros diapazonas. 0 reiškia, kad nenustatyta" +msgstr "" msgid "Flow ratio and Pressure Advance" msgstr "Srauto santykis ir slėgis" @@ -9431,6 +9367,18 @@ msgstr "Srauto santykis ir slėgis" msgid "Print chamber temperature" msgstr "Spausdinimo kameros temperatūra" +msgid "Chamber temperature" +msgstr "Kameros temperatūra" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Spausdinimo temperatūra" @@ -9438,36 +9386,31 @@ msgid "Nozzle temperature when printing" msgstr "Purkštuko temperatūra spausdinant" 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 "Pagrindo temperatūra, kai įdiegtas „Cool Plate SuperTack“. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant „Cool Plate SuperTack“." +msgstr "Spausdinimo pagrindo temperatūra, kai naudojamas „Cool Plate SuperTack“ pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant „Cool Plate SuperTack“ pagrindo." msgid "Cool Plate" -msgstr "Šalta plokštė" +msgstr "Šaltas pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the Cool Plate is installed. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgstr "" msgid "Textured Cool Plate" -msgstr "Tekstūruota vėsi plokštė" +msgstr "Tekstūruotas vėsus pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija negalima spausdinti ant tekstūrinės šaltos plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the engineering plate is installed. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pagrindo temperatūra, kai sumontuota inžinerinė plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgstr "" msgid "Smooth PEI Plate / High Temp Plate" -msgstr "Lygi PEI plokštė / aukštos temperatūros plokštė" +msgstr "Lygus PEI pagrindas / aukštos temperatūros pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Pagrindo temperatūra, kai įdiegta lygi PEI plokštė/aukštos temperatūros plokštė. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant lygi PEI plokštės/aukštos temperatūros plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Pagrindo temperatūra, kai sumontuota tekstūruota PEI plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgstr "" msgid "Volumetric speed limitation" msgstr "Tūrinio greičio ribojimas" @@ -9481,16 +9424,14 @@ msgstr "Dalies aušinimo ventiliatorius" msgid "Min fan speed threshold" msgstr "Min. ventiliatoriaus greičio riba" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will run at the minimum fan speed when the estimated layer time is longer than the threshold value. When the layer time is shorter than the threshold, the fan speed will be interpolated between the minimum and maximum fan speed according to layer printing time." -msgstr "Detalių aušinimo ventiliatorius veiks mažiausiu ventiliatoriaus greičiu, kai numatoma sluoksnio trukmė bus ilgesnė už ribinę vertę. Kai sluoksnio trukmė trumpesnė už ribinę vertę, ventiliatoriaus greitis bus apskaičiuojamas tarp mažiausio ir didžiausio ventiliatoriaus greičio, atsižvelgiant į sluoksnio spausdinimo trukmę" +msgstr "" msgid "Max fan speed threshold" msgstr "Maks ventiliatoriaus greičio riba" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will run at maximum speed when the estimated layer time is shorter than the threshold value." -msgstr "Detalių aušinimo ventiliatorius veiks didžiausiu greičiu, kai numatoma sluoksnio trukmė bus trumpesnė už ribinę vertę" +msgstr "" msgid "Auxiliary part cooling fan" msgstr "Pagalbinis dalies aušinimo ventiliatorius" @@ -9514,7 +9455,7 @@ msgid "Wipe tower parameters" msgstr "Valymo bokšto parametrai" msgid "Multi Filament" -msgstr "" +msgstr "Kelių gijų sistema" msgid "Tool change parameters with single extruder MM printers" msgstr "Įrankių keitimo parametrai naudojant vieno ekstruderio MM spausdintuvus" @@ -9532,7 +9473,7 @@ msgid "Compatible printers" msgstr "Suderinami spausdintuvai" msgid "Compatible process profiles" -msgstr "Suderinamų procesų profiliai" +msgstr "Suderinami apdorojimo profiliai" msgid "Printable space" msgstr "Erdvė spausdinimui" @@ -9543,7 +9484,7 @@ msgid "Invalid value provided for parameter %1%: %2%" msgstr "Neteisinga parametro %1% reikšmė: %2%" msgid "G-code flavor is switched" -msgstr "Perjungiamas G kodo tipas" +msgstr "Perjungtas G-kodo tipas" msgid "Cooling Fan" msgstr "Aušinimo ventiliatorius" @@ -9555,43 +9496,43 @@ msgid "Extruder Clearance" msgstr "Ekstruderio laisvoji erdvė" msgid "Adaptive bed mesh" -msgstr "Prisitaikanti pagrindo forma" +msgstr "Prisitaikantis pagrindo tinklelis" msgid "Accessory" msgstr "Priedai" msgid "Machine G-code" -msgstr "Įrenginio gkodas" +msgstr "Įrenginio G-kodas" msgid "File header G-code" -msgstr "" +msgstr "Failo antraštės G-kodas" msgid "Machine start G-code" -msgstr "Įrangos paleidimo G-kodas" +msgstr "Įrenginio pradžios G-kodas" msgid "Machine end G-code" -msgstr "Įrangos pabaigos G-kodas" +msgstr "Įrenginio pabaigos G-kodas" msgid "Printing by object G-code" -msgstr "Spausdinimas pagal objektą G-kodas" +msgstr "Spausdinimo pagal objektą G-kodas" msgid "Before layer change G-code" msgstr "G-kodas prieš keičiant sluoksnį" msgid "Layer change G-code" -msgstr "Sluoksnio keitimas G-kodas" +msgstr "Sluoksnio keitimo G-kodas" msgid "Timelapse G-code" -msgstr "Pakadrinio filmavimo G-kodas" +msgstr "Laiko tarpų (timelapse) vaizdo įrašo G-kodas" msgid "Clumping Detection G-code" -msgstr "" +msgstr "Sulipimo aptikimo G-kodas" msgid "Change filament G-code" msgstr "Gijos keitimo G-kodas" msgid "Pause G-code" -msgstr "Pauzė G-kodas" +msgstr "Pauzės G-kodas" msgid "Template Custom G-code" msgstr "Pasirinktinis G-kodo šablonas" @@ -9603,7 +9544,7 @@ msgid "Normal" msgstr "Normalus" msgid "Resonance Compensation" -msgstr "" +msgstr "Resonanso kompensavimas" msgid "Resonance Avoidance Speed" msgstr "Rezonanso išvengimo greitis" @@ -9612,13 +9553,13 @@ msgid "Frequency" msgstr "Dažnis" msgid "The frequency of the anti-vibration signal will correspond to the natural frequency of the frame." -msgstr "" +msgstr "Antivibracinio signalo dažnis atitiks rėmo savitąjį dažnį." msgid "Damping" -msgstr "" +msgstr "Slopinimas" msgid "Damping ratio for the input shaping filter." -msgstr "" +msgstr "Slopinimo koeficientas įvesties formavimo (input shaping) filtrui." msgid "Speed limitation" msgstr "Greičio ribojimas" @@ -9627,7 +9568,7 @@ msgid "Acceleration limitation" msgstr "Pagreičio ribojimas" msgid "Jerk limitation" -msgstr "Trūkčiojimo ribojimai" +msgstr "Trūkčiojimo (jerk) ribojimas" msgid "Single extruder multi-material setup" msgstr "Vieno ekstruderio kelių medžiagų sąranka" @@ -9640,9 +9581,9 @@ msgid "" "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 "" -"Pasirinkta vieno ekstruderio daugialypė medžiaga,\n" -"ir visi ekstruderiai turi būti vienodo skersmens.\n" -"Ar norite pakeisti visų ekstruderių skersmenį į pirmojo ekstruderio antgalio skersmens vertę?" +"Pasirinkta vieno ekstruderio kelių medžiagų sistema,\n" +"ir visų ekstruderių skersmuo turi būti vienodas.\n" +"Ar norite pakeisti visų ekstruderių skersmenį į pirmojo ekstruderio purkštuko skersmens reikšmę?" msgid "Nozzle diameter" msgstr "Purkštuko skersmuo" @@ -9670,54 +9611,56 @@ msgid "" "\n" "Shall I set it to 100% in order to enable Firmware Retraction?" msgstr "" +"Parinktis „Įtraukti prieš valymą“ (Retract before wipe) gali būti tik 100%, kai naudojamas programinės aparatinės įrangos įtraukimo (Firmware Retraction) režimas.\n" +"\n" +"Ar nustatyti ją į 100%, kad būtų įjungtas programinės aparatinės įrangos įtraukimas?" msgid "Firmware Retraction" -msgstr "Programinės aparatinės įrangos ištraukimas" +msgstr "Programinės aparatinės įrangos įtraukimas" msgid "Switching to a printer with different extruder types or numbers will discard or reset changes to extruder or multi-nozzle-related parameters." -msgstr "" +msgstr "Perjungus spausdintuvą su kitokio tipo ar skaičiaus ekstruderiais, bus atmesti arba nustatyti iš naujo ekstruderio arba su keliais purkštukais susiję parametrai." msgid "Use Modified Value" -msgstr "" +msgstr "Naudoti pakeistą reikšmę" msgid "Detached" msgstr "Atjungta" #, 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 "Šiam spausdintuvui yra prijungtas %d iš anksto nustatytas gijų rinkinys ir %d iš anksto nustatytas procesas. Jei spausdintuvas bus ištrintas, šie išankstiniai nustatymai bus ištrinti." +msgstr "Prie šio spausdintuvo yra priskirtas %d gijos profilis ir %d apdorojimo profilis. Ištrynus spausdintuvą, šie profiliai taip pat bus ištrinti." msgid "Presets inherited by other presets cannot be deleted!" -msgstr "Paveldėtų iš anksto nustatytų nustatymų negalima ištrinti!" +msgstr "Profilių, kuriuos paveldi kiti profiliai, ištrinti negalima!" msgid "The following presets inherit this preset." msgid_plural "The following preset inherits this preset." -msgstr[0] "Šį nustatymą paveldi šis išankstinis nustatymas." -msgstr[1] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." -msgstr[2] "Šiuos nustatymus paveldi šie išankstiniai nustatymai." +msgstr[0] "Šį profilį paveldi šis profilis." +msgstr[1] "Šį profilį paveldi šie profiliai." +msgstr[2] "Šį profilį paveldi šie profiliai." #. TRN Remove/Delete #, boost-format msgid "%1% Preset" -msgstr "%1% iš anksto nustatytas" +msgstr "%1% profilis" msgid "The following preset will be deleted too:" msgid_plural "The following presets will be deleted too:" -msgstr[0] "Bus ištrintas ir šis išankstinis nustatymas." -msgstr[1] "Bus ištrinti ir šie išankstiniai nustatymai." -msgstr[2] "Bus ištrinti ir šie išankstiniai nustatymai." +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" 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 "" -"Ar tikrai norite ištrinti pasirinktą išankstinį nustatymą?\n" -"Jei išankstinis nustatymas atitinka šiuo metu spausdintuve naudojamą giją, iš naujo nustatykite tos angos gijos informaciją." +"Ar tikrai norite ištrinti pasirinktą profilį?\n" +"Jei šis profilis atitinka šiuo metu jūsų spausdintuve naudojamą giją, iš naujo nustatykite tos lizdo vietos gijos informaciją." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Are you sure you want to %1% the selected preset?" -msgstr "Ar tikrai naudojate %1% pasirinktą išankstinį nustatymą?" +msgstr "" #, c-format, boost-format msgid "" @@ -9725,62 +9668,79 @@ 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 pirmas sluoksnis %d %s, kiti sluoksniai %d %s\n" +"%s maks. skirtumas %d %s, dabartinis skirtumas %d %s\n" msgid "Some first-layer and other-layer temperature pairs exceed safety limits.\n" -msgstr "" +msgstr "Kai kurios pradinio sluoksnio ir kitų sluoksnių temperatūrų poros viršija saugumo ribas.\n" msgid "" "\n" "Invalid pairs:\n" msgstr "" +"\n" +"Neteisingos poros:\n" msgid "" "\n" "You can go back to edit values, or continue if this is intentional." msgstr "" +"\n" +"Galite grįžti ir redaguoti reikšmes arba tęsti, jei tai padaryta tikslingai." msgid "" "\n" "\n" "Continue anyway?" msgstr "" +"\n" +"\n" +"Vis tiek tęsti?" msgid "Temperature Safety Check" -msgstr "" +msgstr "Temperatūros saugumo patikra" msgid "Continue" msgstr "Tęsti" msgid "Don't warn again for this preset" +msgstr "Daugiau neperspėti šiam profiliui" + +#, c-format, boost-format +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, c-format, boost-format -msgid "Left: %s" +msgid "Modify paramters of %s" msgstr "" #, c-format, boost-format -msgid "Right: %s" +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Spustelėkite , jei norite iš naujo nustatyti dabartinę reikšmę ir prijungti ją prie bendros reikšmės." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click to drop current modifications and reset to saved value." -msgstr "Spustelėkite , jei norite atsisakyti dabartinio pakeitimo ir atstatyti išsaugotą reikšmę." +msgstr "" msgid "Process Settings" -msgstr "Proceso nustatymai" +msgstr "Apdorojimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "unsaved changes" -msgstr "Neišsaugoti pakeitimai" +msgstr "" msgid "Transfer or discard changes" msgstr "Pakeitimų perkėlimas arba atmetimas" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Sena vertė" msgid "New Value" @@ -9796,7 +9756,7 @@ msgid "Discard" msgstr "Atsisakyti" msgid "the new profile" -msgstr "" +msgstr "naujas profilis" #, boost-format msgid "" @@ -9805,6 +9765,10 @@ msgid "" "discarding any changes made in\n" "\"%2%\"." msgstr "" +"Perjungti į\n" +"„%1%“,\n" +"atmetant visus pakeitimus, padarytus\n" +"„%2%“." #, boost-format msgid "" @@ -9813,6 +9777,10 @@ msgid "" "will be transferred to\n" "\"%2%\"." msgstr "" +"Visi „Nauja reikšmė“ nustatymai, pakeisti\n" +"„%1%“,\n" +"bus perkelti į\n" +"„%2%“." #, boost-format msgid "" @@ -9820,13 +9788,15 @@ msgid "" "\"%1%\"\n" "and \"%2%\" will open without any changes." msgstr "" +"Visi „Nauja reikšmė“ nustatymai yra išsaugoti\n" +"„%1%“,\n" +"o „%2%“ bus atidarytas be jokių pakeitimų." msgid "Click the right mouse button to display the full text." msgstr "Spustelėkite dešinįjį pelės klavišą, kad būtų rodomas visas tekstas." -# TODO: Review, changed by lang refactor. PR 14254 msgid "No changes will be saved." -msgstr "Pakeitimai nebus išsaugoti" +msgstr "" msgid "All changes will be discarded." msgstr "Visi pakeitimai bus atmesti." @@ -9835,10 +9805,10 @@ msgid "Save the selected options." msgstr "Išsaugoti pasirinktas parinktis." msgid "Keep the selected options." -msgstr "Išlaikykite pasirinktas parinktis." +msgstr "Išlaikyti pasirinktas parinktis." msgid "Transfer the selected options to the newly selected preset." -msgstr "Perkelkite pasirinktas parinktis į naujai pasirinktą išankstinį nustatymą." +msgstr "Perkelti pasirinktas parinktis į naujai pasirinktą profilį." #, boost-format msgid "" @@ -9866,11 +9836,11 @@ msgstr "\"%1%\" profilis nesuderinamas su naujuoju spausdintuvo profiliu ir jame #, boost-format msgid "Preset \"%1%\" is not compatible with the new process profile and it contains the following unsaved changes:" -msgstr "\"%1%\" profilis nesuderinamas su naujuoju proceso profiliu ir jame yra šie neišsaugoti pakeitimai:" +msgstr "Profilis „%1%“ yra nesuderinamas su naujuoju apdorojimo profiliu ir jame yra šie neišsaugoti pakeitimai:" #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "Pakeitėte kai kuriuos išankstinio nustatymo \"%1%\" parametrus." +msgstr "Pakeitėte kai kuriuos profilio „%1%“ nustatymus." msgid "" "\n" @@ -9884,7 +9854,7 @@ msgid "" "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" -"Pakeistas profilio reikšmes galite išsaugoti arba atmesti, arba pasirinkti perkelti pakeistas vertes į naują profilį." +"Galite išsaugoti arba atmesti pakeistas profilio reikšmes, arba pasirinkti perkelti jas į naują profilį." msgid "You have previously modified your settings." msgstr "Anksčiau pakeitėte savo nustatymus." @@ -9894,7 +9864,7 @@ msgid "" "You can discard the preset values you have modified, or choose to transfer the modified values to the new project" msgstr "" "\n" -"Galite atsisakyti pakeistų iš anksto nustatytų reikšmių arba nuspręsti perkelti pakeistas reikšmes į naują projektą" +"Galite atmesti pakeistas profilio reikšmes arba pasirinkti perkelti jas į naują projektą" msgid "Extruder count" msgstr "Ekstruderių skaičius" @@ -9902,17 +9872,23 @@ msgstr "Ekstruderių skaičius" msgid "Capabilities" msgstr "Galimybės" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" -msgstr "Rodyti visus išankstinius nustatymus (įskaitant nesuderinamus)" +msgstr "Rodyti visus profilius (įskaitant nesuderinamus)" msgid "Select presets to compare" -msgstr "Pasirinkite išankstinius nustatymus, kuriuos norite palyginti" +msgstr "Pasirinkite profilius, kuriuos norite palyginti" msgid "Left Preset Value" -msgstr "" +msgstr "Kairiojo profilio reikšmė" msgid "Right Preset Value" -msgstr "" +msgstr "Dešiniojo profilio reikšmė" msgid "You can only transfer to current active profile because it has been modified." msgstr "Galite perkelti tik į dabartinį aktyvų profilį, nes jis buvo pakeistas." @@ -9921,23 +9897,23 @@ 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 "" -"Perkelkite pasirinktas parinktis iš kairiojo išankstinio nustatymo į dešinįjį.\n" -"Pastaba: Uždarius šį dialogo langą, naujai pakeistos išankstinės nuostatos bus pasirinktos nustatymų skirtukuose." +"Perkelkite pasirinktas parinktis iš kairiojo profilio į dešinįjį.\n" +"Pastaba: uždarius šį dialogo langą, naujai pakeisti profiliai bus pasirinkti nustatymų skirtukuose." msgid "Transfer values from left to right" msgstr "Reikšmių perkėlimas iš kairės į dešinę" msgid "If enabled, this dialog can be used for transfer selected values from left to right preset." -msgstr "Jei įjungta, šis dialogo langas gali būti naudojamas pasirinktoms reikšmėms perkelti iš kairiojo į dešinįjį išankstinį nustatymą." +msgstr "Jei įjungta, šis dialogo langas gali būti naudojamas pasirinktoms reikšmėms perkelti iš kairiojo profilio į dešinįjį." msgid "Add File" msgstr "Pridėti failą" msgid "Set as cover" -msgstr "Nustatyti kaip dangtelį" +msgstr "Nustatyti kaip viršelį" msgid "Cover" -msgstr "Dangtelis" +msgstr "Viršelis" #, boost-format msgid "The name \"%1%\" already exists." @@ -9950,7 +9926,7 @@ msgid "Pictures" msgstr "Paveikslėliai" msgid "Bill of Materials" -msgstr "Medžiagų sąmata" +msgstr "Komponentų ir medžiagų žiniaraštis (BOM)" msgid "Assembly Guide" msgstr "Surinkimo vadovas" @@ -9975,7 +9951,7 @@ msgid "Configuration update" msgstr "Konfigūracijos atnaujinimas" msgid "A new configuration package is available. Do you want to install it?" -msgstr "Yra naujas konfigūracijos paketas, Ar norite jį įdiegti?" +msgstr "Yra naujas konfigūracijos paketas. Ar norite jį įdiegti?" msgid "the configuration package is incompatible with the current application." msgstr "konfigūracijos paketas nesuderinamas su dabartine programa." @@ -10002,37 +9978,37 @@ msgid "The configuration is up to date." msgstr "Konfigūracija yra naujausia." msgid "OBJ file import color" -msgstr "Obj failo importavimo spalva" +msgstr "OBJ failo importavimo spalva" msgid "Some faces don't have color defined." -msgstr "" +msgstr "Kai kuriems paviršiams (faces) nėra apibrėžta spalva." msgid "MTL file exist error, could not find the material:" -msgstr "" +msgstr "MTL failo aptikimo klaida, nepavyko rasti medžiagos:" msgid "Please check OBJ or MTL file." -msgstr "" +msgstr "Patikrinkite OBJ arba MTL failą." msgid "Specify number of colors:" msgstr "Nurodykite spalvų kiekį:" msgid "Enter or click the adjustment button to modify number again" -msgstr "" +msgstr "Įveskite arba spustelėkite reguliavimo mygtuką, kad vėl pakeistumėte skaičių" msgid "Recommended " msgstr "Rekomenduojama " msgid "view" -msgstr "" +msgstr "peržiūra" msgid "Current filament colors" -msgstr "" +msgstr "Dabartinės gijos spalvos" msgid "Matching" -msgstr "" +msgstr "Atitinkama" msgid "Quick set" -msgstr "" +msgstr "Greitas nustatymas" msgid "Color match" msgstr "Spalvų atitikimas" @@ -10044,18 +10020,20 @@ msgid "Append" msgstr "Pridėti" msgid "Append to existing filaments" -msgstr "" +msgstr "Pridėti prie esamų gijų" msgid "Reset mapped extruders." -msgstr "Iš naujo nustatykite pažymėtus ekstruderius." +msgstr "Iš naujo nustatyti priskirtus ekstruderius." msgid "Note" -msgstr "" +msgstr "Pastaba" msgid "" "The color has been selected, you can choose OK \n" " to continue or manually adjust it." msgstr "" +"Spalva pasirinkta, galite spausti Gerai,\n" +"kad tęstumėte, arba sureguliuoti ją rankiniu būdu." msgid "—> " msgstr "—> " @@ -10064,102 +10042,108 @@ msgid "" "Synchronizing AMS filaments will discard your modified but unsaved filament presets.\n" "Are you sure you want to continue?" msgstr "" +"Sinchronizuojant AMS gijas, visi pakeisti, bet neišsaugoti gijos profiliai bus atmesti.\n" +"Ar tikrai norite tęsti?" msgctxt "Sync_AMS" msgid "Original" -msgstr "" +msgstr "Originalas" msgid "After mapping" -msgstr "" +msgstr "Po priskyrimo" msgid "After overwriting" -msgstr "" +msgstr "Po perrašymo" msgctxt "Sync_AMS" msgid "Plate" -msgstr "" +msgstr "Plokštė" msgid "The connected printer does not match the currently selected printer. Please change the selected printer." -msgstr "" +msgstr "Prijungtas spausdintuvas neatitinka šiuo metu pasirinkto spausdintuvo. Pakeiskite pasirinktą spausdintuvą." msgid "Mapping" -msgstr "" +msgstr "Priskyrimas" msgid "Overwriting" -msgstr "" +msgstr "Perrašymas" msgid "Reset all filament mapping" -msgstr "" +msgstr "Iš naujo nustatyti visus gijų priskyrimus" msgid "Left Extruder" -msgstr "" +msgstr "Kairysis ekstruderis" msgid "(Recommended filament)" -msgstr "" +msgstr "(Rekomenduojama gija)" msgid "Right Extruder" -msgstr "" +msgstr "Dešinysis ekstruderis" msgid "Advanced Options" -msgstr "" +msgstr "Papildomos parinktys" msgid "" "Check heatbed flatness. Leveling makes extruded height uniform.\n" "*Automatic mode: Level first (about 10 seconds). Skip if surface is fine." msgstr "" +"Patikrinkite šildomo pagrindo lygumą. Gulsčiavimas užtikrina tolygų ekstruzijos aukštį.\n" +"*Automatinis režimas: pirmiausia suniveliuokite (apie 10 sekundžių). Praleiskite, jei paviršius yra tinkamas." msgid "" "Calibrate nozzle offsets to enhance print quality.\n" "*Automatic mode: Check for calibration before printing; skip if unnecessary." msgstr "" +"Kalibruokite purkštuko poslinkius (offsets), kad pagerintumėte spaudinio kokybę.\n" +"*Automatinis režimas: prieš spausdinimą patikrinkite kalibravimą; praleiskite, jei tai nebūtina." msgid "Use AMS" msgstr "Naudoti AMS" msgid "Tip" -msgstr "" +msgstr "Patarimas" msgid "Only synchronize filament type and color, not including AMS slot information." -msgstr "" +msgstr "Sinchronizuoti tik gijos tipą ir spalvą, neįtraukiant AMS lizdo informacijos." 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 "" +msgstr "Nuosekliai pakeisti projekto gijų sąrašą remiantis spausdintuvo gijomis. Nenaudojamos spausdintuvo gijos bus automatiškai pridėtos į sąrašo pabaigą." msgid "Add unused AMS filaments to filaments list." -msgstr "" +msgstr "Pridėti nenaudojamas AMS gijas į gijų sąrašą." msgid "Automatically merge the same colors in the model after mapping." -msgstr "" +msgstr "Po priskyrimo automatiškai sujungti vienodas modelio spalvas." msgid "After being synced, this action cannot be undone." -msgstr "" +msgstr "Po sinchronizavimo šio veiksmo atšaukti nebus galima." 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 "" +msgstr "Po sinchronizavimo projekto gijų profiliai ir spalvos bus pakeisti priskirtais gijų tipais bei spalvomis. Šio veiksmo atšaukti nebus galima." msgid "Are you sure to synchronize the filaments?" -msgstr "" +msgstr "Ar tikrai norite sinchronizuoti gijas?" msgid "Synchronize now" -msgstr "" +msgstr "Sinchronizuoti dabar" msgid "Synchronize Filament Information" -msgstr "" +msgstr "Sinchronizuoti gijos informaciją" msgid "Add unused filaments to filaments list." -msgstr "" +msgstr "Pridėti nenaudojamas gijas į gijų sąrašą." msgid "Only synchronize filament type and color, not including slot information." -msgstr "" +msgstr "Sinchronizuoti tik gijos tipą ir spalvą, neįtraukiant lizdo informacijos." msgid "Ext spool" -msgstr "" +msgstr "Išorinė ritė" msgid "Please check whether the nozzle type of the device is the same as the preset nozzle type." -msgstr "" +msgstr "Patikrinkite, ar įrenginio purkštuko tipas sutampa su profilyje nustatytu purkštuko tipu." msgid "Storage is not available or is in read-only mode." -msgstr "" +msgstr "Saugykla nepasiekiama arba veikia tik skaitymo režimu." #, c-format, boost-format msgid "The selected printer (%s) is incompatible with the chosen printer profile in the slicer (%s)." @@ -10169,42 +10153,42 @@ msgid "Timelapse is not supported because Print sequence is set to \"By object\" msgstr "Pakadrinis įrašymas nepalaikomas, nes pasirinkta spausdinimo eiga \"Pagal objektą\"." msgid "You selected external and AMS filament at the same time in an extruder, you will need manually change external filament." -msgstr "" +msgstr "Tam pačiam ekstruderiui vienu metu priskyrėte išorinę ir AMS giją, todėl išorinę giją turėsite pakeisti rankiniu būdu." msgid "Successfully synchronized nozzle information." -msgstr "" +msgstr "Purkštuko informacija sėkmingai sinchronizuota." msgid "Successfully synchronized nozzle and AMS number information." -msgstr "" +msgstr "Purkštuko ir AMS skaičiaus informacija sėkmingai sinchronizuota." msgid "Continue to sync filaments" -msgstr "" +msgstr "Tęsti gijų sinchronizavimą" msgctxt "Sync_Nozzle_AMS" msgid "Cancel" msgstr "Atšaukti" msgid "Successfully synchronized filament color from printer." -msgstr "" +msgstr "Gijos spalva sėkmingai sinchronizuota iš spausdintuvo." msgid "Successfully synchronized color and type of filament from printer." -msgstr "" +msgstr "Gijos spalva ir tipas sėkmingai sinchronizuoti iš spausdintuvo." msgctxt "FinishSyncAms" msgid "OK" msgstr "Gerai" msgid "Ramming customization" -msgstr "Spasdinimo galvutės stūmimo pritaikymas" +msgstr "Gijos supresavimo (ramming) pritaikymas" 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 "" -"Ramingas reiškia greitą ekstruziją prieš pat įrankio pakeitimą vieno ekstruderio MM spausdintuve. Jo paskirtis – tinkamai suformuoti neapkrautos gijos galą, kad jis netrukdytų įkišti naujai gijai ir vėliau ją būtų galima įkišti iš naujo. Šis etapas yra svarbus, skirtingoms medžiagoms gali prireikti skirtingo ekstruzijos greičio, kad būtų gauta gera forma. Dėl šios priežasties ekstruzijos greitis štampavimo metu yra reguliuojamas.\n" +"Supresavimas (ramming) reiškia greitą ekstruziją prieš pat įrankio keitimą vieno ekstruderio kelių medžiagų (MM) spausdintuve. Jo tikslas – tinkamai suformuoti iškraunamos gijos galą, kad jis netrukdytų įkišti naujos gijos ir vėliau ją būtų galima vėl įstumti. Šis etapas yra labai svarbus, o skirtingoms medžiagoms gali prireikti skirtingo ekstruzijos greičio tinkamai formai gauti. Dėl šios priežasties ekstruzijos greičiai supresavimo metu yra reguliuojami.\n" "\n" -"Tai yra eksperto lygio nustatymas, neteisingas sureguliavimas gali sukelti strigčių, ekstruderio rato gijos šlifavimą ir pan." +"Tai yra eksperto lygio nustatymas – neteisingai sureguliavus, tikėtini strigtys, ekstruderio ratuko gijos šlifavimas (grinding) ir kt." #, boost-format msgid "For constant flow rate, hold %1% while dragging." @@ -10214,16 +10198,16 @@ msgid "ms" msgstr "ms" msgid "Total ramming" -msgstr "Bendras rammingas" +msgstr "Bendras supresavimas (ramming)" msgid "Volume" msgstr "Tūris" msgid "Ramming line" -msgstr "Ramming linija" +msgstr "Supresavimo (ramming) linija" 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 "" +msgstr "„Orca“ iš naujo perskaičiuos jūsų išvalymo (flushing) tūrius kiekvieną kartą, kai pasikeis gijos spalva arba pati gija. Šį automatinį perskaičiavimą galite išjungti skiltyje „Orca Slicer“ > „Nuostatos“ (Preferences)." msgid "Flushing volume (mm³) for each filament pair." msgstr "Kiekvienos gijų poros išmetimo tūris (mm³)." @@ -10240,10 +10224,10 @@ msgid "Re-calculate" msgstr "Perskaičiuoti" msgid "Left extruder" -msgstr "" +msgstr "Kairysis ekstruderis" msgid "Right extruder" -msgstr "" +msgstr "Dešinysis ekstruderis" msgid "Multiplier" msgstr "Daugiklis" @@ -10252,19 +10236,19 @@ msgid "Flushing volumes for filament change" msgstr "Išmetimo tūris keičiant gijas" msgid "Please choose the filament colour" -msgstr "" +msgstr "Pasirinkite gijos spalvą" msgid "Native Wayland liveview requires the GStreamer GTK video sink. Please install the gtksink plugin for GStreamer, then restart OrcaSlicer." -msgstr "" +msgstr "Tiesioginei „Native Wayland“ peržiūrai reikalingas „GStreamer GTK“ vaizdo sinchronizatorius (video sink). Įdiekite „GStreamer“ skirtą „gtksink“ papildinį, tada iš naujo paleiskite „OrcaSlicer“." msgid "Failed to initialize the native Wayland GStreamer video sink. Please check your GStreamer GTK plugin installation." -msgstr "" +msgstr "Nepavyko inicijuoti „native Wayland GStreamer“ vaizdo sinchronizatoriaus (video sink). Patikrinkite „GStreamer GTK“ papildinio įdiegimą." msgid "Windows Media Player is required for this task! Do you want to enable 'Windows Media Player' for your operation system?" msgstr "Šiai užduočiai atlikti reikalingas \"Windows Media Player\"! Ar norite įjungti \"Windows Media Player\" savo operacinėje sistemoje?" msgid "BambuSource has not correctly been registered for media playing! Press Yes to re-register it. You will be promoted twice" -msgstr "\"BambuSource\" neteisingai užregistruotas medijos atkūrimui! Paspauskite Yes (taip), kad jį perregistruotumėte. Jums bus priminta du kartus" +msgstr "„BambuSource“ neteisingai užregistruotas medijos atkūrimui! Paspauskite „Taip“, kad jį perregistruotumėte. Jums reikės patvirtinti du kartus." msgid "Missing BambuSource component registered for media playing! Please re-install OrcaSlicer or seek community help." msgstr "Trūksta BambuSource komponento, užregistruoto medijos atkūrimui! Iš naujo įdiekite OrcaSlicer arba kreipkitės pagalbos į bendruomenę." @@ -10276,7 +10260,7 @@ msgid "Your system is missing H.264 codecs for GStreamer, which are required to msgstr "Jūsų sistemoje nėra \"GStreamer\" H.264 kodekų, reikalingų vaizdo įrašams atkurti. (Pabandykite įdiegti gstreamer1.0-plugins-bad arba gstreamer1.0-libav paketus, tada iš naujo paleiskite \"Orca Slicer\")" msgid "Cloud agent is not available. Please restart OrcaSlicer and try again." -msgstr "" +msgstr "Debesies agentas nepasiekiamas. Iš naujo paleiskite „OrcaSlicer“ ir bandykite vėl." msgid "Bambu Network plug-in not detected." msgstr "\"Bambu\" tinklo papildinys neaptiktas." @@ -10288,16 +10272,16 @@ msgid "Login" msgstr "Prisijungti" msgid "Login failed. Please try again." -msgstr "" +msgstr "Prisijungti nepavyko. Bandykite dar kartą." msgid "[Action Required] " -msgstr "" +msgstr "[Reikalingas veiksmas] " msgid "[Action Required]" -msgstr "" +msgstr "[Reikalingas veiksmas]" msgid "The configuration package is changed in previous Config Guide" -msgstr "Konfigūracijos paketas pakeistas ankstesniame Config Guide" +msgstr "Konfigūracijos paketas buvo pakeistas ankstesniame konfigūravimo vadove" msgid "Configuration package changed" msgstr "Pakeistas konfigūracijos paketas" @@ -10327,22 +10311,22 @@ msgid "Global shortcuts" msgstr "Bendrieji spartieji klavišai" msgid "Pan View" -msgstr "" +msgstr "Vaizdo stūmimas (panoraminis vaizdas)" msgid "Rotate View" -msgstr "" +msgstr "Vaizdo pasukimas" msgid "Middle mouse button" -msgstr "" +msgstr "Vidurinis pelės mygtukas" msgid "Zoom View" -msgstr "" +msgstr "Vaizdo mastelio keitimas (zoom)" 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 "Automatiškai orientuoja pasirinktus objektus arba visus objektus. Jei yra pasirinkti objektai, orientuoja tik pasirinktus. Kitais atvejais orientuoja visus esamo projekto objektus." msgid "Auto orients all objects on the active plate." -msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštelėje." +msgstr "Automatiškai orientuoja visus objektus aktyvioje plokštėje." msgid "Collapse/Expand the sidebar" msgstr "Sutraukti / išskleisti šoninę juostą" @@ -10354,49 +10338,43 @@ msgid "Movement in camera space" msgstr "Judėjimas kameros erdvėje" msgid "Select a part" -msgstr "Pasirinkite detalę" +msgstr "Pasirinkti dalį" msgid "Select multiple objects" msgstr "Pasirinkite kelis objektus" msgid "Select objects by rectangle" -msgstr "Objektų pasirinkimas pagal stačiakampį" +msgstr "Pasirinkti objektus stačiakampio rėmeliu" msgid "Arrow Up" msgstr "Rodyklė aukštyn" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive Y direction" -msgstr "Perkelti pasirinktą 10 mm teigiama Y kryptimi" +msgstr "" msgid "Arrow Down" msgstr "Rodyklė žemyn" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative Y direction" -msgstr "Perkelti pasirinktą10 mm neigiama Y kryptimi" +msgstr "" msgid "Arrow Left" msgstr "Rodyklė Kairėn" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative X direction" -msgstr "Perkelti pasirinktą10 mm neigiama X kryptimi" +msgstr "" msgid "Arrow Right" msgstr "Rodyklė dešinėn" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive X direction" -msgstr "Perkelti pasirinktą10 mm teigiama X kryptimi" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Movement step set to 1mm" -msgstr "Judėjimo žingsnis nustatytas į 1 mm" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Keyboard 1-9: set filament for object/part" -msgstr "klaviatūra 1-9: nustatyti objekto/dalies giją" +msgstr "Klaviatūra 1-9: nustatyti objekto/dalies giją" msgid "Camera view - Default" msgstr "Kameros vaizdas - Numatytasis" @@ -10411,55 +10389,55 @@ msgid "Camera view - Front" msgstr "Kameros vaizdas - Priekis" msgid "Camera view - Behind" -msgstr "Kameros vaizdas - Galas" +msgstr "Kameros vaizdas – iš galo" msgid "Camera Angle - Left side" -msgstr "Kameros vaizdas - Kairė" +msgstr "Kameros kampas – iš kairės" msgid "Camera Angle - Right side" -msgstr "Kameros vaizdas - Dešnė" +msgstr "Kameros kampas – iš dešinės" msgid "Select all objects" msgstr "Pasirinkti visus objektus" msgid "Gizmo move" -msgstr "Gizmo perkėlimui" +msgstr "Perkėlimo manipuliatorius" msgid "Gizmo rotate" -msgstr "Gizmo pasukimas" +msgstr "Pasukimo manipuliatorius" msgid "Gizmo scale" -msgstr "Gizmo dydžio keitimui" +msgstr "Mastelio keitimo manipuliatorius" msgid "Gizmo place face on bed" -msgstr "Gizmo padėti paviršių ant pagrindo" +msgstr "Paviršiaus dėjimo ant pagrindo manipuliatorius" msgid "Gizmo cut" -msgstr "Gizmo pjaustymui" +msgstr "Pjovimo manipuliatorius" msgid "Gizmo mesh boolean" -msgstr "Gizmo objektų jungimo/atėmimo/susikirtimo įrankiai" +msgstr "Loginių tinklelio veiksmų (Boolean) manipuliatorius" msgid "Gizmo FDM paint-on fuzzy skin" -msgstr "Gizmo FDM dažomas grublėtas paviršius" +msgstr "FDM užtepamo grublėto paviršiaus (fuzzy skin) manipuliatorius" msgid "Gizmo SLA support points" -msgstr "Gizmo SLA atramų taškai" +msgstr "SLA atramų taškų manipuliatorius" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo FDM siūlių piešimui" +msgstr "FDM užtepamos siūlės (seam) manipuliatorius" msgid "Gizmo text emboss/engrave" -msgstr "Gizmo teksto įspaudimas/graviravimas" +msgstr "Teksto iškėlimo ir įspaudimo (emboss/engrave) manipuliatorius" msgid "Gizmo measure" -msgstr "Gizmo matuoti" +msgstr "Matavimo manipuliatorius" msgid "Gizmo assemble" -msgstr "Gizmo surinkimo" +msgstr "Surinkimo manipuliatorius" msgid "Gizmo brim ears" -msgstr "Gizmo krašto \"ausys\"" +msgstr "Krašto „auselių“ (brim ears) manipuliatorius" msgid "Zoom in" msgstr "Padidinti" @@ -10477,21 +10455,20 @@ msgid "Plater" msgstr "Plokštė" msgid "Move: press to snap by 1mm" -msgstr "Perkėlimas: paspauskite, jei norite paslinkti 1 mm" +msgstr "Perkėlimas: paspauskite, kad pritrauktumėte kas 1 mm" msgid "Support/Color Painting: adjust pen radius" -msgstr "Atramų / Spalvų piešimas: sureguliuoti rašiklio spindulį" +msgstr "Atramų ir spalvų užtepimas: keisti teptuko spindulį" msgid "Support/Color Painting: adjust section position" -msgstr "Atramų / spalvų piešimas: koreguoti sekcijos padėtį" +msgstr "Atramų ir spalvų užtepimas: keisti pjūvio padėtį" msgid "Gizmo" -msgstr "" +msgstr "Manipuliatorius" msgid "Set extruder number for the objects and parts" msgstr "Nustatykite ekstruderio numerį objektams ir dalims" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete objects, parts, modifiers" msgstr "Ištrinti objektus, dalis, modifikatorius" @@ -10508,16 +10485,16 @@ msgid "Objects List" msgstr "Objektų sąrašas" msgid "Vertical slider - Move active thumb Up" -msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį aukštyn" +msgstr "Vertikalus slankiklis – kelti aktyvų žymeklį aukštyn" msgid "Vertical slider - Move active thumb Down" -msgstr "Vertikalus slankiklis – perkelti aktyvųjį slankiklį žemyn" +msgstr "Vertikalus slankiklis – nuleisti aktyvų žymeklį žemyn" msgid "Horizontal slider - Move active thumb Left" -msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į kairę" +msgstr "Horizontalus slankiklis – stumti aktyvų žymeklį kairėn" msgid "Horizontal slider - Move active thumb Right" -msgstr "Horizontalus slankiklis – perkelti aktyvų slankiklį į dešinę" +msgstr "Horizontalus slankiklis – stumti aktyvų žymeklį dešinėn" msgid "On/Off one layer mode of the vertical slider" msgstr "Vertikalaus slankiklio vieno sluoksnio režimas įjungimas / išjungimas" @@ -10529,13 +10506,13 @@ msgid "Move slider 5x faster" msgstr "Judinkite slankiklį 5 kartus greičiau" msgid "Horizontal slider - Move to start position" -msgstr "Horizontalus šliaužiklis - Perkelti į pradinę padėtį" +msgstr "Horizontalus slankiklis – perkelti į pradinę padėtį" msgid "Horizontal slider - Move to last position" -msgstr "Horizontalusis slankiklis - Perkelti į paskutinę padėtį" +msgstr "Horizontalus slankiklis – perkelti į paskutinę padėtį" msgid "Release Note" -msgstr "Leidimo pastaba" +msgstr "Versijos pastabos (Release notes)" #, c-format, boost-format msgid "version %s update information:" @@ -10544,9 +10521,8 @@ msgstr "versijos %s atnaujinimo informacija:" msgid "Network plug-in update" msgstr "Tinklo papildinio atnaujinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." -msgstr "Spustelėkite OK, kad kitą kartą paleidus \"Orca Slicer\" būtų atnaujintas tinklo papildinys." +msgstr "" #, c-format, boost-format msgid "A new Network plug-in (%s) is available. Do you want to install it?" @@ -10556,20 +10532,20 @@ msgid "New version of Orca Slicer" msgstr "Nauja \"Orca Slicer\" versija" msgid "Check on Microsoft Store" -msgstr "" +msgstr "Tikrinti „Microsoft Store“" msgid "Check on GitHub" -msgstr "" +msgstr "Tikrinti „GitHub“" msgid "Open Microsoft Store" -msgstr "" +msgstr "Atidaryti „Microsoft Store“" msgid "Skip this Version" msgstr "Praleisti šią versiją" #, c-format, boost-format msgid "New version available: %s. Please update OrcaSlicer from the Microsoft Store." -msgstr "" +msgstr "Pasirodė nauja versija: %s. Atnaujinkite „OrcaSlicer“ iš „Microsoft Store“." msgid "Confirm and Update Nozzle" msgstr "Patvirtinti ir atnaujinti purkštuką" @@ -10578,16 +10554,16 @@ msgid "Connect the printer using IP and access code" msgstr "Prijunkite spausdintuvą naudodami IP ir prieigos kodą" msgid "Try the following methods to update the connection parameters and reconnect to the printer." -msgstr "" +msgstr "Išbandykite šiuos būdus, kad atnaujintumėte ryšio parametrus ir vėl prisijungtumėte prie spausdintuvo." msgid "1. Please confirm Orca Slicer and your printer are in the same LAN." -msgstr "" +msgstr "1. Įsitikinkite, kad „Orca Slicer“ ir jūsų spausdintuvas yra tame pačiame vietiniame tinkle (LAN)." msgid "2. If the IP and Access Code below are different from the actual values on your printer, please correct them." -msgstr "" +msgstr "2. Jei žemiau nurodytas IP adresas ir prieigos kodas nesutampa su tikrosiomis spausdintuvo reikšmėmis, juos ištaisykite." msgid "3. Please obtain the device SN from the printer side; it is usually found in the device information on the printer screen." -msgstr "" +msgstr "3. Suraskite įrenginio serijos numerį (SN) spausdintuve; dažniausiai jis nurodomas įrenginio informacijos skiltyje, spausdintuvo ekrane." msgid "IP" msgstr "IP" @@ -10623,56 +10599,56 @@ msgid "Failed to publish login request." msgstr "Nepavyko paskelbti prisijungimo užklausos." msgid "The printer has already been bound." -msgstr "Spausdintuvas jau surištas." +msgstr "Spausdintuvas jau yra susietas." msgid "The printer mode is incorrect, please switch to LAN Only." -msgstr "Spausdintuvo režimas yra neteisingas, perjunkite į tik vietinį tinklą." +msgstr "Neteisingas spausdintuvo režimas, perjunkite į „Tik vietinis tinklas“ (LAN Only)." msgid "Connecting to printer... The dialog will close later" -msgstr "Jungimasis prie spausdintuvo... Dialogo langas užsidarys vėliau" +msgstr "Jungiamasi prie spausdintuvo... Šis langas netrukus užsidarys" msgid "Connection failed, please double check IP and Access Code" -msgstr "Ryšys nepavyko, dar kartą patikrinkite IP ir prieigos kodą" +msgstr "Nepavyko prisijungti, dar kartą patikrinkite IP adresą ir prieigos kodą" msgid "" "Connection failed! If your IP and Access Code is correct, \n" "please move to step 3 for troubleshooting network issues" msgstr "" -"Ryšys nepavyko! Jei jūsų IP ir prieigos kodas yra teisingi, \n" -"pereikite prie 3 žingsnio, skirto tinklo problemoms šalinti" +"Nepavyko prisijungti! Jei IP adresas ir prieigos kodas yra teisingi, \n" +"pereikite prie 3 žingsnio tinklo problemoms šalinti." msgid "Connection failed! Please refer to the wiki page." -msgstr "" +msgstr "Nepavyko prisijungti! Informacijos ieškokite vikipedijos (wiki) puslapyje." msgid "sending failed" -msgstr "" +msgstr "siuntimas nepavyko" msgid "Failed to send. Click Retry to attempt sending again. If retrying does not work, please check the reason." -msgstr "" +msgstr "Nepavyko išsiųsti. Spustelėkite „Kartoti“, kad bandytumėte dar kartą. Jei tai nepadeda, patikrinkite priežastį." msgid "reconnect" -msgstr "" +msgstr "prisijungti iš naujo" msgid "Air Pump" msgstr "Oro siurblys" msgid "Laser 10W" -msgstr "" +msgstr "Laser 10W" msgid "Laser 40W" -msgstr "" +msgstr "Laser 40W" msgid "Cutting Module" msgstr "Pjovimo modulis" msgid "Auto Fire Extinguishing System" -msgstr "" +msgstr "Automatinė gaisro gesinimo sistema" msgid "Beta" msgstr "Beta" msgid "Update firmware" -msgstr "Atnaujinti programinę įrangą" +msgstr "Atnaujinti programinę aparatinę įrangą" msgid "Beta version" msgstr "Beta versija" @@ -10684,32 +10660,29 @@ msgid "Update failed" msgstr "Atnaujinti nepavyko" msgid "Update successful" -msgstr "Sėkmingas atnaujinimas" +msgstr "Atnaujinimas sėkmingas" 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 "Ar tikrai norite atnaujinti? Tai užtruks apie 10 minučių. Neišjunkite maitinimo, kol spausdintuvas atnaujinamas." -# TODO: Review, changed by lang refactor. PR 14254 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 'Update firmware'." -msgstr "Buvo aptiktas svarbus atnaujinimas, kurį reikia paleisti, kad spausdinimas būtų tęsiamas. Ar norite atnaujinti dabar? Taip pat galite atnaujinti vėliau, naudodami \"Atnaujinti programinę įrangą\"." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 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 the printer or update next time you start Orca Slicer." -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\"." +msgstr "" msgid "Extension Board" msgstr "Išplėtimo plokštė" #, boost-format msgid "Split into %1% parts" -msgstr "" +msgstr "Padalinti į %1% dalių" msgid "Repair finished" msgstr "Taisymas baigtas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Repair failed" -msgstr "Taisymas nepavyko." +msgstr "Taisymas nepavyko" msgid "Repair canceled" msgstr "Taisymas atšauktas" @@ -10718,9 +10691,8 @@ msgstr "Taisymas atšauktas" msgid "Copying of file %1% to %2% failed: %3%" msgstr "Failo %1% kopijavimas į %2% nepavyko: %3%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please check any unsaved changes before updating the configuration." -msgstr "Prieš atnaujinant konfigūraciją reikia patikrinti neišsaugotus pakeitimus." +msgstr "" msgid "Configuration package: " msgstr "Konfigūracijos paketas: " @@ -10734,37 +10706,34 @@ msgstr "Atidaryti G-kodo failą:" msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." msgstr "Vienas objektas turi tuščią pradinį sluoksnį ir jo negalima spausdinti. Iškirpkite apačią arba įjunkite atramas." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The object has empty layers between %1% and %2% and can’t be printed." -msgstr "Objekto negalima spausdinti dėl tuščio sluoksnio tarp %1% ir %2%." +msgstr "" #, boost-format msgid "Object: %1%" msgstr "Objektas: %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Parts of the object at these heights may be too thin or the object may have a faulty mesh." -msgstr "Objekto dalys šiuose aukščiuose gali būti per plonos arba gali būti pažeista objekto 3D figūra" +msgstr "" msgid "Process change extrusion role G-code" -msgstr "" +msgstr "Proceso keitimo ekstruzijos vaidmens G-kodas" msgid "Filament change extrusion role G-code" +msgstr "Gijos keitimo ekstruzijos vaidmens G-kodas" + +msgid "No object can be printed. It may be too small." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "No object can be printed. It may be too small." -msgstr "Negalima spausdinti jokio objekto. Jis gali būti per mažas" - msgid "Your print is very close to the priming regions. Make sure there is no collision." -msgstr "Jūsų spaudinys yra labai arti gruntavimo sričių. Įsitikinkite, kad nėra susidūrimo." +msgstr "Jūsų spaudinys yra labai arti valymo / paruošimo (priming) sričių. Įsitikinkite, kad nekils susidūrimo." msgid "" "Failed to generate G-code for invalid custom G-code.\n" "\n" msgstr "" -"Nepavyko sugeneruoti G kodo dėl neteisingo pasirinktinio G kodo.\n" +"Nepavyko sugeneruoti G-kodo dėl neteisingo pasirinktinio G-kodo.\n" "\n" msgid "Please check the custom G-code or use the default custom G-code." @@ -10775,10 +10744,10 @@ msgid "Generating G-code: layer %1%" msgstr "G-kodo generavimas: sluoksnis %1%" msgid "Flush volumes matrix do not match to the correct size!" -msgstr "" +msgstr "Išmetimo tūrių matrica (flush volumes matrix) neatitinka reikiamo dydžio!" msgid "set_accel_and_jerk() is only supported by Klipper" -msgstr "" +msgstr "„set_accel_and_jerk()“ funkcija palaikoma tik „Klipper“ programinėje aparatinėje įrangoje" msgid "" "Input shaping is not supported by Marlin < 2.1.2.\n" @@ -10789,18 +10758,17 @@ msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2." msgstr "" msgid "Grouping error: " -msgstr "" +msgstr "Grupavimo klaida: " msgid " can not be placed in the " -msgstr "" +msgstr "negali būti įkeltas į " msgid "Internal Bridge" msgstr "Vidinis tiltas" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " -msgstr "Nepavyko apskaičiuoti linijos pločio %1%. Negalima gauti \"%2%\" reikšmės. " +msgstr "" msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" msgstr "Srautui Flow::with_spacing() pateiktas neteisingas tarpas, patikrinkite sluoksnio aukštį ir išspaudimo plotį" @@ -10811,9 +10779,8 @@ msgstr "neapibrėžta klaida" msgid "too many files" msgstr "per daug failų" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File too large" -msgstr "per didelis failas" +msgstr "" msgid "unsupported method" msgstr "nepalaikomas metodas" @@ -10833,9 +10800,8 @@ msgstr "ne ZIP archyvas" msgid "invalid header or corrupted" msgstr "negaliojanti arba sugadinta antraštė" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Saving to RAID is not supported." -msgstr "įrašymas į RAID nepalaikomas" +msgstr "" msgid "decompression failed" msgstr "dekompresija nepavyko" @@ -10844,7 +10810,7 @@ msgid "compression failed" msgstr "suspaudimas nepavyko" msgid "unexpected decompressed size" -msgstr "netikėtas iškompresuotas dydis" +msgstr "netikėtas dekompresuotas (išskleistas) dydis" msgid "CRC check failed" msgstr "CRC patikra nepavyko" @@ -10882,9 +10848,8 @@ msgstr "neteisingas parametras" msgid "invalid filename" msgstr "neteisingas failo pavadinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Buffer too small" -msgstr "per mažas buferis" +msgstr "" msgid "internal error" msgstr "vidinė klaida" @@ -10892,20 +10857,18 @@ msgstr "vidinė klaida" msgid "file not found" msgstr "failas nerastas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Archive too large" -msgstr "per didelis archyvas" +msgstr "" msgid "validation failed" msgstr "patvirtinimas nepavyko" msgid "write callback failed" -msgstr "nepavyko įrašyti grįžtamojo ryšio" +msgstr "nepavyko vykdyti įrašymo atgalinio iškvietimo (write callback)" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "%1% is too close to exclusion area. There may be collisions when printing." -msgstr "%1% yra per arti uždraustos srities, spausdinant gali įvykti susidūrimų." +msgstr "" #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -10919,51 +10882,51 @@ msgid " is too close to exclusion area, there may be collisions when printing." msgstr " yra per arti uždraustosios zonos, spausdinant gali įvykti susidūrimų." msgid " is too close to clumping detection area, there may be collisions when printing." -msgstr "" +msgstr " yra per arti sulipimo aptikimo (clumping detection) zonos, spausdinant gali įvykti susidūrimų." msgid "Prime Tower" -msgstr "Pirminis bokštas" +msgstr "Valymo bokštas (Prime tower)" msgid " is too close to others, and collisions may be caused.\n" msgstr " yra per arti kitų, todėl gali įvykti susidūrimai.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid " is too close to an exclusion area, and collisions will be caused.\n" -msgstr " yra per arti uždraustosios zonos, todėl įvyks susidūrimai.\n" +msgstr "" msgid " is too close to clumping detection area, and collisions will be caused.\n" msgstr "" +" yra per arti sulipimo aptikimo zonos, todėl įvyks susidūrimai.\n" +"\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 "" +msgstr "Pasirinktos purkštuko temperatūros yra nesuderinamos. Kiekvienos gijos purkštuko temperatūra turi patekti į kitų gijų rekomenduojamos temperatūros diapazoną. Priešingu atveju gali užsikimšti purkštukas arba sugesti spausdintuvas." msgid "Invalid recommended nozzle temperature range. The lower bound must be lower than the upper bound." -msgstr "" +msgstr "Neteisingas rekomenduojamas purkštuko temperatūros diapazonas. Žemutinė riba turi būti mažesnė už viršutinę ribą." msgid "If you still want to print, you can enable the option in Preferences / Control / Slicing / Remove mixed temperature restriction." -msgstr "" +msgstr "Jei vis tiek norite spausdinti, galite įjungti šią parinktį skiltyje Nuostatos (Preferences) / Valdymas / Pjaustymas / Pašalinti mišrios temperatūros ribojimą." msgid "No extrusions under current settings." msgstr "Pagal dabartinius nustatymus nėra išspaudimų." msgid "Smooth mode of timelapse is not supported when \"by object\" sequence is enabled." -msgstr "Kai įjungta seka \"pagal objektą\", sklandus pakadrinio filmavimo režimas nepalaikomas." +msgstr "Sklandus pakadrinio filmavimo (timelapse) režimas nepalaikomas, kai įjungta spausdinimo seka „pagal objektą“." msgid "Clumping detection is not supported when \"by object\" sequence is enabled." -msgstr "" +msgstr "Sulipimo aptikimas (clumping detection) nepalaikomas, kai įjungta spausdinimo seka „pagal objektą“." msgid "Enabling both precise Z height and the prime tower may cause slicing errors." -msgstr "Tikslaus Z aukščio ir pirminio bokšto įjungimas gali sukelti pjaustymo klaidų." +msgstr "Vienu metu įjungus tikslų Z aukštį ir valymo bokštą, gali kilti pjaustymo klaidų." msgid "A prime tower is required for clumping detection; otherwise, there may be flaws on the model." -msgstr "" +msgstr "Sulipimo aptikimui reikalingas valymo bokštas, kitaip modelio paviršiuje gali atsirasti defektų." msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." msgstr "Pasirinkite spausdinimo seką \"Pagal objektą\", jei norite spausdinti kelis objektus spiralinės vazos režimu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Spiral (vase) mode does not work when an object contains more than one material." -msgstr "Spiralinės vazos režimas neveikia, kai objekte yra daugiau nei viena medžiaga." +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." @@ -10990,117 +10953,107 @@ msgid "The Wipe Tower is currently only supported with the relative extruder add msgstr "Valymo bokštas šiuo metu palaikomas tik naudojant santykinį ekstruderio adresą (use_relative_e_distances=1)." msgid "Ooze prevention is only supported with the wipe tower when 'single_extruder_multi_material' is off." -msgstr "Dumblo susidarymo prevencija palaikoma tik naudojant nuvalymo bokštą, kai 'single_extruder_multi_material' yra išjungta." +msgstr "Varvėjimo prevencija palaikoma tik su valymo bokštu, kai funkcija „single_extruder_multi_material“ yra išjungta." 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." +msgstr "Valymo bokštas (Prime tower) šiuo metu palaikomas tik su „Marlin“, „RepRap/Sprinter“, „RepRapFirmware“ ir „Repetier“ G-kodo tipais." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported in “By object” print." -msgstr "Pirminis bokštas nepalaikomas spausdinant \"Pagal objektą\"." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." -msgstr "Pagrindinis bokštas nepalaikomas, kai įjungtas prisitaikantis sluoksnio aukštis. Reikalaujama, kad visi objektai turėtų vienodą sluoksnio aukštį." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires any “support gap” to be a multiple of layer height." -msgstr "Valymo bokštui reikia, kad bet koks \"atraminis tarpas\" būtų sluoksnio aukščio kartotinis." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects have the same layer height." -msgstr "Valymo bokštui reikia, kad visų objektų sluoksnio aukštis būtų vienodas." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects are printed over the same number of raft layers." -msgstr "Valymo bokštui reikia, kad visi objektai būtų spausdinami ant vienodo skaičiaus platformos sluoksnių." +msgstr "" msgid "The prime tower is only supported for multiple objects if they are printed with the same support_top_z_distance." -msgstr "Pirminis bokštas palaikomas keliems objektams tik tuo atveju, jei jie spausdinami tuo pačiu atramų z aukščio atstumu." +msgstr "Valymo bokštas keliems objektams palaikomas tik tada, jei jie spausdinami su vienodu „support_top_z_distance“ parametru." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects are sliced with the same layer height." -msgstr "Pirminis bokštas reikalauja, kad visi objektai būtų susluoksniuoti vienodo aukščio sluoksniais." +msgstr "" msgid "The prime tower is only supported if all objects have the same variable layer height." -msgstr "Pagrindinis bokštas palaikomas tik tuo atveju, jei visi objektai turi tą patį kintamą sluoksnio aukštį." +msgstr "Valymo bokštas palaikomas tik tada, kai visi objektai turi vienodą kintamą sluoksnio aukštį." msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Vienas ar daugiau objektų buvo priskirti ekstruderiui, kurio spausdintuvas neturi." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too small" -msgstr "Per mažas linijos plotis" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too large" -msgstr "Per didelis linijos plotis" +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 "Spausdinti su keliais skirtingo skersmens purkštukais. Jei atrama turi būti spausdinama su dabartine gija (support_filament == 0 arba support_interface_filament == 0), visi purkštukai turi būti vienodo skersmens." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that support has the same layer height as the object." -msgstr "Pagrindinis bokštas reikalauja, kad atramos ir objekto sluoksnio aukštis būtų toks pat." +msgstr "" msgid "For Organic supports, two walls are supported only with the Hollow/Default base pattern." -msgstr "" +msgstr "Naudojant organines atramas, dvi sienelės palaikomos tik su tuščiaviduriu arba numatytuoju pagrindo raštu (Hollow/Default)." msgid "The Lightning base pattern is not supported by this support type; Rectilinear will be used instead." -msgstr "" +msgstr "Žaibo (Lightning) pagrindo raštas nepalaikomas šio atramos tipo; vietoj jo bus naudojamas tiesialinis (Rectilinear)." msgid "Organic support tree tip diameter must not be smaller than support material extrusion width." msgstr "Organinio atraminio medžio viršūnės skersmuo turi būti ne mažesnis už atraminės medžiagos ekstruzijos plotį." msgid "Organic support branch diameter must not be smaller than 2x support material extrusion width." -msgstr "Organinės atraminės šakos skersmuo turi būti ne mažesnis kaip 2 kartus mažesnis už atraminės medžiagos ekstruzijos plotį." +msgstr "Organinės atraminės šakos skersmuo turi būti ne mažesnis nei dvigubas (2x) atraminės medžiagos ekstruzijos plotis." msgid "Organic support branch diameter must not be smaller than support tree tip diameter." msgstr "Organinės atraminės šakos skersmuo neturi būti mažesnis už atraminio medžio viršūnės skersmenį." msgid "The Hollow base pattern is not supported by this support type; Rectilinear will be used instead." -msgstr "Tuščiavidurio pagrindo raštas nepalaikomas šio atramos tipo; Vietoj to bus naudojamas tiesialinis." +msgstr "Tuščiaviduris (Hollow) pagrindo raštas nepalaikomas šio atramos tipo; vietoj jo bus naudojamas tiesialinis (Rectilinear)." msgid "Support enforcers are used but support is not enabled. Please enable support." msgstr "Naudojamos priverstinės atramos, tačiau atramų funkcija išjungta. Įjunkite atramas." -# TODO: Review, changed by lang refactor. PR 14254 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 "" +msgstr "Tiltelių linijos plotis negali viršyti purkštuko skersmens" 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 "" +msgstr "Komanda „G92 E0“ rasta prieš sluoksnio keitimą vykdomame G-kode (before_layer_change_gcode), tačiau raidės G arba E nėra didžiosios. Pakeiskite jas tiksliai į didžiąsias raides: „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 "" +msgstr "Komanda „G92 E0“ rasta sluoksnio keitimo G-kode (layer_change_gcode), tačiau raidės G arba E nėra didžiosios. Pakeiskite jas tiksliai į didžiąsias raides: „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 layer_gcode." msgstr "Tam, kad neprarastų slankiojo kablelio tikslumo, santykinis ekstruderio adresavimas reikalauja kiekviename sluoksnyje iš naujo nustatyti ekstruderio padėtį. Pridėkite „G92 E0“ prie layer_gcode." msgid "\"G92 E0\" was found in before_layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "Komanda „G92 E0“ rasta prieš sluoksnio keitimą vykdomame G-kode (before_layer_change_gcode), o tai nesuderinama su absoliučiuoju ekstruderio adresavimu." msgid "\"G92 E0\" was found in layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "Komanda „G92 E0“ rasta sluoksnio keitimo G-kode (layer_change_gcode), o tai nesuderinama su absoliučiuoju ekstruderio adresavimu." #, c-format, boost-format msgid "Plate %d: %s does not support filament %s" msgstr "Plokštė %d: %s nepalaiko %s gijos" msgid "Setting the jerk speed too low could lead to artifacts on curved surfaces" -msgstr "Nustačius per mažą trūkčiojimo greitį, lenktuose paviršiuose gali atsirasti artefaktų" +msgstr "Nustačius per mažą tolygumo pasikeitimo (jerk) greitį, lenktuose paviršiuose gali atsirasti defektų (artefaktų)" 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 "" -"Nustatytas trūkčiojimas viršija didžiausią spausdintuvo trūkčiojimą (machine_max_jerk_x/machine_max_jerk_y).\n" -"Orca automatiškai apribos trūkčiojimo greitį, kad jis neviršytų spausdintuvo galimybių.\n" -"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti didžiausio trūkčiojimo nustatymą." +"Tolygumo pasikeitimo (jerk) nustatymas viršija spausdintuvo maksimalią reikšmę (machine_max_jerk_x/machine_max_jerk_y).\n" +"„Orca“ automatiškai apribos šį greitį, kad jis neviršytų spausdintuvo galimybių.\n" +"Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti maksimalaus „jerk“ parametro reikšmes." msgid "" "Junction deviation setting exceeds the printer's maximum value (machine_max_junction_deviation).\n" @@ -11130,7 +11083,7 @@ msgstr "" "Norėdami pasiekti didesnį greitį, spausdintuvo konfigūracijoje galite pakoreguoti machine_max_acceleration_travel reikšmę." msgid "The precise wall option will be ignored for outer-inner or inner-outer-inner wall sequences." -msgstr "Tiksli sienos parinktis bus ignoruojama išorinės-vidinės arba vidinės-išorinės-vidinės sienų sekose." +msgstr "Tikslios sienelės (precise wall) parinktis bus ignoruojama esant išorinės–vidinės arba vidinės–išorinės–vidinės sienelių spausdinimo sekai." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." msgstr "" @@ -11141,15 +11094,23 @@ msgstr "Gijų susitraukimas nenaudojamas, nes naudojamų gijų susitraukimas lab msgid "Generating skirt & brim" msgstr "Generuojamas apvadas ir kraštas" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"Kiekvienam objektui atskiri apvadai (skirts) netelpa tarp objektų, kai pasirinkta spausdinimo seka „Pagal objektą“.\n" +"\n" +"Patraukite objektus toliau vienas nuo kito, sumažinkite krašto / apvado (brim/skirt) dydį, pakeiskite apvado tipą į „Kombinuotas“ arba pakeiskite spausdinimo seką į „Pagal sluoksnį“." + msgid "Exporting G-code" msgstr "Eksportuojamas G-kodas" msgid "Generating G-code" msgstr "Generuojamas G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing of the filename_format template failed." -msgstr "Nepavyko apdoroti šablono filename_format." +msgstr "" msgid "Printer technology" msgstr "Spausdintuvo technologija" @@ -11158,29 +11119,28 @@ msgid "Printable area" msgstr "Spausdinama sritis" msgid "Extruder printable area" -msgstr "" +msgstr "Ekstruderio spausdinimo sritis" msgid "Support parallel printheads" -msgstr "" +msgstr "Lygiagrečių spausdinimo galvučių palaikymas" msgid "Enable printer settings for machines that can use multiple printheads in parallel." -msgstr "" +msgstr "Įjungti spausdintuvo nustatymus įrenginiams, kurie gali lygiagrečiai naudoti kelias spausdinimo galvutes." msgid "Parallel printheads count" -msgstr "" +msgstr "Lygiagrečių spausdinimo galvučių skaičius" msgid "Set the number of parallel printheads for machines like OrangeStorm Giga printer." -msgstr "" +msgstr "Nustatykite lygiagrečių spausdinimo galvučių skaičių tokiems įrenginiams kaip „OrangeStorm Giga“ spausdintuvas." msgid "Parallel printheads bed exclude areas" -msgstr "" +msgstr "Nespausdinamos pagrindo sritys esant lygiagrečioms spausdinimo galvutėms" 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 "" +msgstr "Rūšiuotas nespausdinamų pagrindo sričių sąrašas pagal lygiagrečių spausdinimo galvučių skaičių. 1 punktas taikomas vienai spausdinimo galvutei, 2 punktas – dviem spausdinimo galvutėms ir t. t. Palikite laukelį tuščią, jei ribojamos srities nėra." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Excluded bed area" -msgstr "Nespausdinama pagrindo sritis" +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 "Nespausdinama sritis XY plokštumoje. Pavyzdžiui, X1 serijos spausdintuvuose priekinis kairysis kampas naudojamas gijai nupjauti keičiant giją. Plotas išreiškiamas taškų daugiakampiu toliau nurodytu formatu: \"XxY, XxY, ...\"" @@ -11194,9 +11154,8 @@ msgstr "Pasirinktinis pagrindo modelis" msgid "Elephant foot compensation" msgstr "Dramblio pėdos kompensacija" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shrinks the first layer on the build plate to compensate for elephant foot effect." -msgstr "Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas dramblio pėdos efektas." +msgstr "" msgid "Elephant foot compensation layers" msgstr "Dramblio pėdos kompensavimo sluoksniai" @@ -11205,30 +11164,31 @@ msgid "The number of layers on which the elephant foot compensation will be acti msgstr "Sluoksnių, kuriuose veiks dramblio pėdos kompensavimas, skaičius. Pirmasis sluoksnis bus sumažintas pagal dramblio pėdos kompensavimo vertę, tada kiti sluoksniai bus tiesiškai mažinami mažiau, iki šia verte nurodyto sluoksnio." msgid "Elephant foot layers density" -msgstr "" +msgstr "Dramblio pėdos sluoksnių tankis" 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 "" +"Vidinio vientiso užpildo (solid infill) tankis dramblio pėdos sluoksnių kompensavimui.\n" +"Nustatoma pradinė vertė antrajam sluoksniui.\n" +"Tolesni sluoksniai tiesiškai tankėja iki aukščio, nurodyto „elefant_foot_compensation_layers“ parametre." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the height for each layer. Smaller layer heights give greater accuracy but longer printing time." -msgstr "Tai kiekvieno sluoksnio aukštis. Mažesni sluoksnių aukščiai užtikrina didesnį tikslumą, bet ilgesnį spausdinimo laiką." +msgstr "" msgid "Printable height" msgstr "Spausdinamas aukštis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum printable height which is limited by the height of the build area." -msgstr "Tai didžiausias spausdinamas aukštis, kurį riboja spausdinimo zonos aukštis." +msgstr "" msgid "Extruder printable height" -msgstr "" +msgstr "Ekstruderio spausdinimo aukštis" msgid "Maximum printable height of this extruder which is limited by mechanism of printer." -msgstr "" +msgstr "Maksimalus šio ekstruderio spausdinimo aukštis, kurį riboja spausdintuvo mechanika." msgid "Preferred orientation" msgstr "Pageidautina orientacija" @@ -11237,37 +11197,37 @@ msgid "Automatically orient STL files on the Z axis upon initial import." msgstr "Automatiškai orientuoti STL failus pagal Z ašį pradinio importo metu." msgid "Printer preset names" -msgstr "Spausdintuvo nustatymų pavadinimai" +msgstr "Spausdintuvo profilių pavadinimai" msgid "Use 3rd-party print host" msgstr "Naudokite trečiosios šalies spausdinimo prieglobą" msgid "Allow controlling BambuLab's printer through 3rd party print hosts." -msgstr "Leidimas valdyti \"BambuLab\" spausdintuvą per trečiosios šalies spausdinimo prieglobą." +msgstr "Leisti valdyti „BambuLab“ spausdintuvą per trečiųjų šalių spausdinimo serverius." msgid "Use 3MF instead of G-code" -msgstr "" +msgstr "Vietoj G-kodo naudoti 3MF" msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file." -msgstr "" +msgstr "Įjunkite, jei spausdintuvas spausdinimo užduotims priima 3MF failus. Kai įjungta, „Orca Slicer“ sugeneruotą failą siunčia kaip „.gcode.3mf“, o ne kaip paprastą „.gcode“ failą." msgid "Printer Agent" -msgstr "" +msgstr "Spausdintuvo agentas" msgid "Select the network agent implementation for printer communication." -msgstr "" +msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti." msgid "Hostname, IP or URL" -msgstr "Hosto pavadinimas, IP arba URL" +msgstr "Mazgo (host) pavadinimas, IP arba 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\" gali įkelti G-kodo failus į spausdintuvo prieglobą. Šiame lauke turi būti nurodytas spausdintuvo prieglobos egzemplioriaus prieglobos vardas, IP adresas arba URL. Spausdintuvo prieglobą už HAProxy su įjungta pagrindine autorizacija galima pasiekti į URL įrašant naudotojo vardą ir slaptažodį tokiu formatu: https://username:password@your-octopi-address/" +msgstr "„Orca Slicer“ gali įkelti G-kodo failus į spausdinimo serverį (host). Šiame lauke turi būti nurodytas serverio mazgo pavadinimas, IP adresas arba URL. Spausdinimo serverį, esantį už „HAProxy“ su įjungta bazine autentifikacija, galima pasiekti įrašant naudotojo vardą ir slaptažodį į URL tokiu formatu: https://naudotojas:slaptažodis@jūsų-octopi-adresas/" msgid "Device UI" msgstr "Įrenginio sąsaja" msgid "Specify the URL of your device user interface if it's not same as print_host." -msgstr "Nurodykite savo įrenginio naudotojo sąsajos URL, jei jis nesutampa su print_host." +msgstr "Nurodykite įrenginio naudotojo sąsajos URL, jei jis nesutampa su „print_host“." msgid "API Key / Password" msgstr "API raktas / slaptažodis" @@ -11276,10 +11236,10 @@ msgid "Orca Slicer can upload G-code files to a printer host. This field should 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 "" +msgstr "Serijos numeris" msgid "Flashforge local API requires the printer serial number." -msgstr "" +msgstr "Vietinei „Flashforge“ API reikalingas spausdintuvo serijos numeris." msgid "Name of the printer." msgstr "Spausdintuvo pavadinimas." @@ -11299,35 +11259,32 @@ msgstr "Slaptažodis" msgid "Ignore HTTPS certificate revocation checks" msgstr "Nepaisyti HTTPS sertifikato atšaukimo patikrų" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ignore HTTPS certificate revocation checks in the case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." -msgstr "Nepaisyti HTTPS sertifikato atšaukimo patikrų, jei paskirstymo taškų trūksta arba jie neprisijungę. Jei nepavyksta prisijungti, galite įjungti šią parinktį savarankiškai pasirašytiems sertifikatams." +msgstr "" msgid "Names of presets related to the physical printer." -msgstr "Su fiziniu spausdintuvu susijusių išankstinių nustatymų pavadinimai." +msgstr "Su fiziniu spausdintuvu susijusių profilių pavadinimai." msgid "Authorization Type" -msgstr "Autorizacijos tipas" +msgstr "Autentifikavimo tipas" msgid "API key" msgstr "API raktas" msgid "HTTP digest" -msgstr "HTTP santrauka" +msgstr "HTTP Digest autentifikacija" msgid "Avoid crossing walls" -msgstr "Vengti kirsti sieną" +msgstr "Vengti sienelių kirtimo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detours to avoid traveling across walls, which may cause blobs on the surface." -msgstr "Apvažiuoti ir vengti važiuoti per sieną, nes dėl to ant paviršiaus gali atsirasti žymė." +msgstr "" msgid "Avoid crossing walls - Max detour length" -msgstr "Vengti kirsti sieną - Didžiausias apylankos ilgis" +msgstr "Vengti sienelių kirtimo – maks. apylankos ilgis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum detour distance for avoiding crossing wall: The printer won'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. A value of 0 will disable this." -msgstr "Didžiausias apylankos atstumas, kad būtų išvengta sienos kirtimo: Spausdintuvas neaplenks sienos, jei aplenkimo atstumas yra didesnis nei ši vertė. Apylankos ilgis gali būti nurodomas kaip absoliuti vertė arba kaip procentinė dalis (pvz., 50 %) nuo tiesioginio judėjimo kelio. Nustačius 0 reikšmę, ši funkcija bus išjungta." +msgstr "" msgid "mm or %" msgstr "mm arba %" @@ -11336,63 +11293,49 @@ msgid "Other layers" msgstr "Kiti sluoksniai" 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 "Pagrindo temperatūra sluoksniams, išskyrus pradinį. Vertė 0 reiškia, kad gija nepalaiko spausdinimo ant „Cool Plate SuperTack“." +msgstr "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant „Cool Plate SuperTack“ pagrindo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured Cool Plate." -msgstr "Sluoksnių, išskyrus pradinį, pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūrinės šaltos plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the High Temp Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant aukštos temperatūros plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured PEI Plate." -msgstr "Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer" -msgstr "Pradinis sluoksnis" +msgstr "Pirmasis sluoksnis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer bed temperature" -msgstr "Pradinė sluoksnio pagrindo temperatūra" +msgstr "Pirmojo sluoksnio pagrindo temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." -msgstr "Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės „SuperTack“." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured Cool Plate." -msgstr "Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos šaltos plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Engineering Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant inžinerinės plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the High Temp Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant aukštos temperatūros plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured PEI Plate." -msgstr "Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant tekstūruotos PEI plokštės." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate types supported by the printer" -msgstr "Spausdintuvo palaikomi pagrindo tipai." +msgstr "" msgid "Default bed type" msgstr "Numatytasis pagrindo tipas" @@ -11413,20 +11356,19 @@ msgid "Other layers filament sequence" msgstr "Kitų sluoksnių gijų seka" msgid "This G-code is inserted at every layer change before the Z lift." -msgstr "Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį prieš pakeliant z." +msgstr "Šis G-kodas įterpiamas keičiant kiekvieną sluoksnį, prieš pakeliant Z ašį." msgid "Bottom shell layers" -msgstr "Apatiniai sluoksniai" +msgstr "Apatinio apvalkalo sluoksniai" 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 "Tai yra apatinio korpuso vientisų sluoksnių skaičius, įskaitant apatinį paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra plonesnis už apatinio apvalkalo storį, apatinio apvalkalo sluoksniai bus padidinti." +msgstr "Tai vientisų apatinio apvalkalo sluoksnių skaičius, įskaitant patį apatinį paviršių. Jei pagal šią reikšmę apskaičiuotas storis yra mažesnis už nurodytą apatinio apvalkalo storį, sluoksnių skaičius bus automatiškai padidintas." msgid "Bottom shell thickness" msgstr "Apatinio apvalkalo storis" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and the thickness of the bottom shell is determined simply by the number of bottom shell layers." -msgstr "Pjaustant didinamas apatinių vientisų sluoksnių skaičius, jei pagal apatinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir apatinio apvalkalo storis visiškai nustatomas pagal apatinio apvalkalo sluoksnius." +msgstr "" msgid "Apply gap fill" msgstr "Taikyti tarpų užpildymą" @@ -11445,55 +11387,55 @@ msgid "" "\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 "" -"Įjungiamas pasirinktų vientisų paviršių tarpų užpildymas. Mažiausias užpildomo tarpo ilgis gali būti kontroliuojamas naudojant toliau esančią mažų tarpų filtravimo parinktį.\n" +"Įjungia parinktų vientisų paviršių tarpų užpildymą. Mažiausią užpildomą tarpo ilgį galima valdyti žemiau esančia mažų tarpų filtravimo parinktimi.\n" "\n" "Parinktys:\n" -"1. Visur: Taikomas tarpo užpildymas viršutiniam, apatiniam ir vidiniam vientisam paviršiui, kad jis būtų maksimaliai tvirtas.\n" -"2. Viršutinis ir apatinis paviršiai: Užpildomi tik viršutiniai ir apatiniai paviršiai, taip subalansuojant spausdinimo greitį, sumažinant galimą vientisų užpildų perteklinį išspaudimą ir užtikrinant, kad viršutiniuose ir apatiniuose paviršiuose nebūtų skylučių tarpų.\n" -"3. Niekur: Išjungiamas tarpų užpildymas visuose vientiso užpildo plotuose.\n" +"1. Visur: tarpų užpildymas taikomas viršutiniams, apatiniams ir vidiniams vientisiems paviršiams, kad būtų užtikrintas maksimalus tvirtumas.\n" +"2. Viršutiniai ir apatiniai paviršiai: užpildomi tik viršutiniai ir apatiniai paviršiai – taip subalansuojamas spausdinimo greitis, sumažinama perteklinė ekstruzija (over-extrusion) vientisame užpilde ir užtikrinama, kad viršutiniame bei apatiniame paviršiuje neliktų adatinių skylučių.\n" +"3. Niekur: tarpų užpildymas išjungiamas visose vientiso užpildo srityse.\n" "\n" -"Atkreipkite dėmesį, kad jei naudojamas klasikinis perimetro generatorius, tarpų užpildymas gali būti generuojamas ir tarp perimetrų, jei tarp jų netelpa viso pločio linija. Šis nustatymas tokio perimetro tarpo užpildymo nekontroliuoja.\n" +"Atkreipkite dėmesį, kad naudojant klasikinį perimetro generatorių, tarpų užpildas gali būti generuojamas ir tarp perimetrų, jei tarp jų netelpa pilno pločio linija. Šis nustatymas tokio perimetrų tarpų užpildymo nevaldo.\n" "\n" -"Jei norite, kad visi tarpų užpildymai, įskaitant klasikinio perimetro generuojamą tarpą, būtų pašalinti, nustatykite mažų tarpų filtravimo reikšmę dideliu skaičiumi, pavyzdžiui, 999999.\n" +"Jei norite visiškai pašalinti bet kokį tarpų užpildymą (įskaitant generuojamą klasikinio perimetro), nustatykite didelę mažų tarpų filtravimo reikšmę, pavyzdžiui, 999999.\n" "\n" -"Tačiau to daryti nerekomenduojama, nes tarpų tarp perimetrų užpildymas prisideda prie modelio tvirtumo. Modeliuose, kuriuose tarp perimetrų generuojamas per didelis tarpų užpildas, geresnis variantas būtų pereiti prie arachnės sienų generatoriaus ir šia parinktimi valdyti, ar generuojamas kosmetinis viršutinio ir apatinio paviršiaus tarpų užpildas." +"Tačiau tai nerekomenduojama, nes tarpų užpildymas tarp perimetrų didina modelio tvirtumą. Modeliams, kuriuose tarp perimetrų sugeneruojama per daug tarpų užpildo, geresnis pasirinkimas būtų perjungti į „Arachne“ sienelių generatorių ir šia parinktimi valdyti tik kosmetinį viršutinio bei apatinio paviršiaus tarpų užpildymą." msgid "Everywhere" msgstr "Visur" msgid "Top and bottom surfaces" -msgstr "Viršutinis ir apatinis paviršiai" +msgstr "Viršutiniai ir apatiniai paviršiai" msgid "Nowhere" msgstr "Niekur" msgid "Force cooling for overhangs and bridges" -msgstr "Iškyšų ir tiltų priverstinis aušinimas" +msgstr "Priverstinis iškyšų ir tiltelių aušinimas" 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 "Įjunkite šią parinktį, kad būtų galima reguliuoti detalės aušinimo ventiliatoriaus greitį specialiai iškyšoms, vidiniams ir išoriniams tilteliams. Nustatant ventiliatoriaus greitį specialiai šiems elementams, galima pagerinti bendrą spausdinimo kokybę ir sumažinti deformacijas." +msgstr "Įjunkite šią parinktį, kad galėtumėte reguliuoti detalės aušinimo ventiliatoriaus greitį specialiai iškyšoms, vidiniams ir išoriniams tilteliams. Parinkus specifinį ventiliatoriaus greitį šiems elementams, galima pagerinti bendrą spausdinimo kokybę ir sumažinti modelio deformacijas (warping)." msgid "Overhangs and external bridges fan speed" -msgstr "Ventiliatoriaus greitis iškyšose ir išoriniuose tiltuose" +msgstr "Ventiliatoriaus greitis iškyšose ir išoriniuose tilteliuose" 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 "" -"Šį dalies aušinimo ventiliatoriaus greitį naudokite spausdindami tiltus arba iškyšas, kurių iškyšų slenkstis viršija pirmiau nustatyto parametro „Iškyšų aušinimo slenkstis“ vertę. Padidinus specialiai iškyšoms ir tilteliams skirtą aušinimą, gali pagerėti bendra šių elementų spausdinimo kokybė.\n" +"Šis detalės aušinimo ventiliatoriaus greitis naudojamas spausdinant tiltelius arba iškyšų sieneles, kai iškyšos riba viršija aukščiau nustatyto parametro „Iškyšų aušinimo slenkstis“ reikšmę. Padidinus vėsinimą specialiai iškyšoms ir tilteliams, galima pagerinti šių elementų spausdinimo kokybę.\n" "\n" -"Atkreipkite dėmesį, kad šis ventiliatoriaus greitis yra ribojamas apatinėje dalyje pagal pirmiau nustatytą mažiausią ventiliatoriaus greičio ribą. Jis taip pat reguliuojamas aukštyn iki didžiausios ventiliatoriaus greičio ribos, kai nepasiekiama minimali sluoksnio trukmės riba." +"Atkreipkite dėmesį, kad šį ventiliatoriaus greitį iš apačios riboja aukščiau nustatytas minimalaus ventiliatoriaus greičio slenkstis. Greitis taip pat didinamas iki maksimalios ventiliatoriaus greičio ribos, kai nepasiekiama minimali sluoksnio spausdinimo trukmė." msgid "Overhang cooling activation threshold" -msgstr "Iškyšos vėsinimo aktyvavimo riba" +msgstr "Iškyšų aušinimo aktyvavimo slenkstis" #, 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 "Kai iškyša viršija šią nustatytą ribą, priverskite aušinimo ventiliatorių veikti toliau nustatytu „Iškyšos ventiliatoriaus greičiu“. Ši riba išreiškiama procentais, nurodant kiekvienos linijos pločio dalį, kurios nepalaiko po ja esantis sluoksnis. Nustačius šią reikšmę 0 %, aušinimo ventiliatorius priverstas veikti visoms išorinėms sienoms, nepriklausomai nuo iškyšos laipsnio." +msgstr "Kai iškyša viršija nurodytą slenkstį, aušinimo ventiliatorius priverstinai paleidžiamas žemiau nustatytu „Iškyšų ventiliatoriaus greičiu“. Šis slenkstis išreiškiamas procentais, nurodančiais kiekvienos linijos pločio dalį, esančią pakibusioje būsenoje (nepalaikomą po ja esančio sluoksnio). Nustačius reikšmę 0 %, ventiliatorius veiks spausdinant visas išorines sieneles, nepriklausomai nuo iškyšos kampo." msgid "External bridge infill direction" -msgstr "Išorinio tilto užpildymo kryptis" +msgstr "Išorinio tilto užpildo kryptis" #, no-c-format, no-boost-format msgid "" @@ -11506,9 +11448,17 @@ msgid "" "\n" "Use 180° for zero absolute angle." msgstr "" +"Išorinių tiltelių kampo perrašymas.\n" +"Palikus 0, tiltelio kampas bus apskaičiuojamas automatiškai kiekvienam konkrečiam tilteliui.\n" +"Kitu atveju nurodytas kampas bus naudojamas pagal:\n" +" - absoliučiąsias koordinates;\n" +" - absoliučiąsias koordinates + modelio pasukimą: jei įjungta „Sulygiuoti užpildo kryptį su modeliu“;\n" +" - optimalų automatinį kampą + šią reikšmę: jei įjungta „Santykinis tiltelio kampas“.\n" +"\n" +"Naudokite 180° nulinėms absoliučiosioms koordinatėms." msgid "Internal bridge infill direction" -msgstr "Vidinio tilto užpildymo kryptis" +msgstr "Vidinio tilto užpildo kryptis" msgid "" "Internal Bridging angle override.\n" @@ -11520,15 +11470,23 @@ msgid "" "\n" "Use 180° for zero absolute angle." msgstr "" +"Vidinių tiltelių kampo perrašymas.\n" +"Palikus 0, tiltelio kampas bus apskaičiuojamas automatiškai kiekvienam konkrečiam tilteliui.\n" +"Kitu atveju nurodytas kampas bus naudojamas pagal:\n" +" - absoliučiąsias koordinates;\n" +" - absoliučiąsias koordinates + modelio pasukimą: jei įjungta „Sulygiuoti užpildo kryptį su modeliu“;\n" +" - optimalų automatinį kampą + šią reikšmę: jei įjungta „Santykinis tiltelio kampas“.\n" +"\n" +"Naudokite 180° nulinėms absoliučiosioms koordinatėms." msgid "Relative bridge angle" -msgstr "" +msgstr "Santykinis tiltelio kampas" msgid "When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it." -msgstr "" +msgstr "Kai įjungta, tiltelio kampo reikšmės pridedamos prie automatiškai apskaičiuotos tiltelio krypties, užuot ją visiškai perrašiusios." msgid "External bridge density" -msgstr "Išorinio tilto tankis" +msgstr "Išorinio tilto užpildo tankis" msgid "" "Controls the density (spacing) of external bridge lines.\n" @@ -11542,9 +11500,18 @@ msgid "" " - 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." msgstr "" +"Valdo išorinių tiltelių linijų tankį (atstumus tarp jų).\n" +"Teoriškai 100 % reikšmė reiškia vientisą tiltelį, tačiau dėl ekstruduojamo tiltelio polinkio įsmukti (išsigaubti), 100 % gali nepakakti.\n" +" – Didesnis nei 100 % tankis (rekomenduojama maks. 125 %):\n" +" – Privalumai: sukuriami lygesni tiltelių paviršiai, nes persidengiančios linijos suteikia papildomą atramą spausdinimo metu.\n" +" – Trūkumai: gali sukelti perteklinę ekstruziją (over-extrusion), o tai gali pabloginti apatinio bei viršutinio paviršiaus kokybę ir padidinti modelio deformacijos (warping) riziką.\n" +"\n" +" – Mažesnis nei 100 % tankis (min. 10 %):\n" +" – Privalumai: galima suformuoti į stygas panašų pirmąjį sluoksnį. Spausdinama greičiau ir užtikrinamas geresnis aušinimas, nes aplink ekstruduojamą tiltelį lieka daugiau vietos oro cirkuliacijai.\n" +" – Trūkumai: tiltelis gali įsmukti, o paviršiaus apdaila gali būti prastesnė." msgid "Internal bridge density" -msgstr "Vidinių tiltų tankis" +msgstr "Vidinio tilto užpildo tankis" msgid "" "Controls the density (spacing) of internal bridge lines.\n" @@ -11560,9 +11527,21 @@ msgid "" "\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 "" +"Valdo vidinių tiltelių linijų tankį (atstumus tarp jų).\n" +"Vidiniai tilteliai veikia kaip tarpinė atrama tarp reto užpildo (sparse infill) ir viršutinio vientiso užpildo, todėl gali stipriai paveikti viršutinio paviršiaus kokybę.\n" +"\n" +"– Didesnis nei 100 % tankis (rekomenduojama maks. 125 %):\n" +" – Privalumai: padidina vidinio tiltelio tvirtumą ir atramą po viršutiniais sluoksniais, sumažina įsmukimą bei pagerina viršutinio paviršiaus apdailą.\n" +" – Trūkumai: padidėja medžiagos sąnaudos ir spausdinimo laikas; per didelis tankis gali sukelti perteklinę ekstruziją bei vidinius įtempius.\n" +"\n" +"– Mažesnis nei 100 % tankis (min. 10 %):\n" +" – Privalumai: gali sumažinti „pagalvių“ susidarymo (pillowing) efektą ir pagerinti aušinimą (didesnis oro srautas pro tiltelį), taip pat gali pagreitinti spausdinimą.\n" +" – Trūkumai: gali sumažėti vidinė atrama, todėl padidėja įsmukimo ir viršutinio paviršiaus defektų rizika.\n" +"\n" +"Ši parinktis ypač gerai veikia kartu su funkcija „antras vidinis tiltelis virš užpildo“, kad dar labiau pagerintų tiltelių formavimą prieš ekstruduojant vientisą užpildą." msgid "Bridge flow ratio" -msgstr "Tilto srauto santykis" +msgstr "Išorinio tilto srauto koeficientas" msgid "" "This value governs the thickness of the external (visible) bridge layer.\n" @@ -11571,6 +11550,11 @@ msgid "" "\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 "" +"Ši reikšmė nustato išorinio (matomo) tiltelio sluoksnio storį.\n" +"Reikšmės virš 1.0: padidina medžiagos kiekį, išlaikant tuos pačius atstumus tarp linijų. Tai gali pagerinti linijų kontaktą ir tvirtumą.\n" +"Reikšmės žemiau 1.0: sumažina medžiagos kiekį, kartu koreguojant atstumus tarp linijų, kad būtų išlaikytas kontaktas. Tai gali padėti sumažinti įsmukimą.\n" +"\n" +"Faktinis naudojamas tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento (filament flow ratio) ir objekto srauto koeficiento (jei jis nustatytas)." msgid "" "Line width of the Bridge. If expressed as a %, it will be computed over the nozzle diameter.\n" @@ -11579,6 +11563,11 @@ msgid "" "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 "" +"Tiltelio linijos plotis. Jei išreikštas procentais (%), jis bus skaičiuojamas nuo purkštuko skersmens.\n" +"Rekomenduojama naudoti su didesniu tiltelio tankiu arba išorinio tilto srauto koeficientu.\n" +"\n" +"Maksimali reikšmė yra 100 % arba purkštuko skersmuo.\n" +"Nustačius 0, linijos plotas sutaps su vidinio vientiso užpildo (internal solid infill) pločiu." msgid "Internal bridge flow ratio" msgstr "Vidinio tilto srauto koeficientas" @@ -11590,6 +11579,11 @@ msgid "" "\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 "" +"Ši reikšmė nustato vidinio tiltelio sluoksnio storį. Tai yra pirmasis sluoksnis virš reto užpildo (sparse infill), todėl jį padidinus gali išaugti tvirtumas ir viršutinių sluoksnių kokybė.\n" +"Reikšmės virš 1.0: padidina medžiagos kiekį, išlaikant tuos pačius atstumus tarp linijų. Tai gali pagerinti linijų kontaktą ir tvirtumą.\n" +"Reikšmės žemiau 1.0: sumažina medžiagos kiekį, kartu koreguojant atstumus tarp linijų, kad būtų išlaikytas kontaktas. Tai gali padėti sumažinti įsmukimą.\n" +"\n" +"Faktinis naudojamas tiltelio srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento (filament flow ratio) ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Top surface flow ratio" msgstr "Viršutinio paviršiaus srauto koeficientas" @@ -11604,141 +11598,168 @@ msgstr "" "Faktinis naudojamas viršutinio paviršiaus srautas apskaičiuojamas padauginus šią reikšmę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto koeficiento." msgid "Bottom surface flow ratio" -msgstr "Dugno paviršiaus srauto koeficientas" +msgstr "Apatinio paviršiaus srauto koeficientas" 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 "" -"Šis veiksnys turi įtakos medžiagos vientiso dugno užpildo kiekiui.\n" +"Šis koeficientas turi įtakos apatinio vientiso užpildo medžiagos kiekiui.\n" "\n" -"Faktinis apatinio vientiso užpildo srautas apskaičiuojamas padauginus šią vertę iš gijų srauto koeficiento ir, jei nustatyta, iš objekto srauto koeficiento." +"Faktinis apatinio vientiso užpildo srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Set other flow ratios" -msgstr "" +msgstr "Nustatyti kitus srauto koeficientus" msgid "Change flow ratios for other extrusion path types." -msgstr "" +msgstr "Keisti kitų ekstruzijos trajektorijų tipų srauto koeficientus." msgid "First layer flow ratio" -msgstr "" +msgstr "Pirmojo sluoksnio srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos pirmojo sluoksnio medžiagos kiekiui šioje skiltyje išvardytoms ekstruzijos trajektorijoms.\n" +"\n" +"Pirmiajam sluoksniui faktinis kiekvienos trajektorijos paskirties srauto koeficientas (tai neturi įtakos kraštams ir apvadams – brims/skirts) bus padaugintas iš šios reikšmės." msgid "Outer wall flow ratio" -msgstr "" +msgstr "Išorinės sienelės srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos išorinių sienelių medžiagos kiekiui.\n" +"\n" +"Faktinis išorinės sienelės srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Inner wall flow ratio" -msgstr "" +msgstr "Vidinės sienelės srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos vidinių sienelių medžiagos kiekiui.\n" +"\n" +"Faktinis vidinės sienelės srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Overhang flow ratio" -msgstr "" +msgstr "Iškyšų srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos iškyšų (overhangs) medžiagos kiekiui.\n" +"\n" +"Faktinis iškyšų srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Sparse infill flow ratio" -msgstr "" +msgstr "Retojo užpildo srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos retojo užpildo (sparse infill) medžiagos kiekiui.\n" +"\n" +"Faktinis retojo užpildo srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Internal solid infill flow ratio" -msgstr "" +msgstr "Vidinio vientiso užpildo srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos vidinio vientiso užpildo (internal solid infill) medžiagos kiekiui.\n" +"\n" +"Faktinis vidinio vientiso užpildo srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Gap fill flow ratio" -msgstr "" +msgstr "Tarpų užpildymo srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos tarpų užpildymo (gap fill) medžiagos kiekiui.\n" +"\n" +"Faktinis tarpų užpildymo srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Support flow ratio" -msgstr "" +msgstr "Atramų srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos atramų (support) medžiagos kiekiui.\n" +"\n" +"Faktinis atramų srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Support interface flow ratio" -msgstr "" +msgstr "Atramų sąsajos srauto koeficientas" 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 "" +"Šis koeficientas turi įtakos atramų sąsajos (support interface) medžiagos kiekiui.\n" +"\n" +"Faktinis atramų sąsajos srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas)." msgid "Precise wall" -msgstr "Tiksli siena" +msgstr "Tiksli sienelė" 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 "Pagerinkite apvalkalo tikslumą, reguliuodami išorinės sienos tarpą. Tai taip pat pagerina sluoksnių nuoseklumą. PASTABA: Ši parinktis bus ignoruojama išorinės-vidinės arba vidinės-išorinės-vidinės sienos sekose." +msgstr "Pagerina korpuso tikslumą koreguojant išorinių sienelių atstumus. Tai taip pat padidina sluoksnių nuoseklumą. PASTABA: ši parinktis bus ignoruojama, jei naudojamos „išorinė–vidinė“ arba „vidinė–išorinė–vidinė“ sienelių spausdinimo sekos." msgid "Only one wall on top surfaces" -msgstr "Tik viena viršutinių paviršių siena" +msgstr "Tik viena sienelė viršutiniuose paviršiuose" msgid "Use only one wall on flat top surfaces, to give more space to the top infill pattern." -msgstr "Ant lygaus viršutinio paviršiaus naudokite tik vieną sienelę, kad būtų daugiau vietos viršutiniam užpildymo raštui." +msgstr "Naudoti tik vieną sienelę plokščiuose viršutiniuose paviršiuose, taip paliekant daugiau vietos viršutinio užpildo raštui." msgid "One wall threshold" -msgstr "Vienos sienos riba" +msgstr "Vienos sienelės slenkstis" #, 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 "" -"Jei viršutinį paviršių reikia atspausdinti ir jį iš dalies dengia kitas sluoksnis, jis nebus laikomas viršutiniu sluoksniu, jei jo plotis yra mažesnis už šią reikšmę. Tai gali būti naudinga norint, kad nebūtų įjungta funkcija \"vienas perimetras viršuje\" ant paviršiaus, kurį turėtų dengti tik perimetrai. Ši vertė gali būti mm arba % perimetro išspaudimo pločio.\n" -"Įspėjimas: Jei ši funkcija įjungta, gali atsirasti artefaktų, jei kitame sluoksnyje yra plonų elementų, pavyzdžiui, raidžių. Nustatykite šią nuostatą į 0, kad šie artefaktai būtų pašalinti." +"Jei spausdinamas viršutinis paviršius yra iš dalies uždengiamas kito sluoksnio, jis nebus laikomas viršutiniu sluoksniu tose vietose, kur jo plotis yra mažesnis už šią reikšmę. Tai naudinga, kad funkcija „tik viena sienelė viršuje“ nesuveiktų srityse, kurias turėtų sudaryti tik perimetrai. Ši reikšmė gali būti nurodoma milimetrais (mm) arba perimetro ekstruzijos pločio procentais (%).\n" +"Įspėjimas: įjungus šį nustatymą, kitame sluoksnyje esantys smulkūs elementai (pvz., raidės) gali sukurti paviršiaus defektų (artefaktų). Norėdami to išvengti, nustatykite reikšmę 0." msgid "Only one wall on first layer" -msgstr "Tik viena pirmojo sluoksnio siena" +msgstr "Tik viena sienelė pirmajame sluoksnyje" msgid "Use only one wall on first layer, to give more space to the bottom infill pattern." -msgstr "Pirmajame sluoksnyje naudokite tik vieną sienelę, kad būtų daugiau vietos apatiniam užpildymo raštui." +msgstr "Naudoti tik vieną sienelę pirmajame sluoksnyje, taip paliekant daugiau vietos apatinio užpildo raštui." msgid "Extra perimeters on overhangs" msgstr "Papildomi iškyšų perimetrai" msgid "Create additional perimeter paths over steep overhangs and areas where bridges cannot be anchored." -msgstr "Sukurti papildomus perimetrinius takus per stačias iškyšas ir vietas, kuriose negalima įtvirtinti tiltų." +msgstr "Sukurti papildomas perimetrų trajektorijas ties stačiomis iškyšomis ir vietose, kur neįmanoma įtvirtinti tiltelių." msgid "Reverse on even" -msgstr "Atvirkštinis judėjimas lyginis" +msgstr "Keisti kryptį lyginiuose sluoksniuose" msgid "Overhang reversal" msgstr "Iškyšos apvertimas" @@ -11748,12 +11769,12 @@ msgid "" "\n" "This setting can also help reduce part warping due to the reduction of stresses in the part walls." msgstr "" -"Perimetrus, kurių dalis yra virš iškyšos, ekstruzijuokite atvirkštine kryptimi lygiuose sluoksniuose. Šis kaitaliojamasis modelis gali smarkiai pagerinti stačias iškyšas.\n" +"Lyginiuose sluoksniuose ekstruduoti perimetrus (arba jų dalis, esančias virš iškyšos) priešinga kryptimi. Šis kintamos krypties raštas gali drastiškai pagerinti stačių iškyšų kokybę.\n" "\n" -"Šis nustatymas taip pat gali padėti sumažinti detalės deformaciją dėl sumažėjusių įtempių detalės sienelėse." +"Šis nustatymas taip pat padeda sumažinti modelio deformacijas (warping), nes sumažina įtempius sienelėse." msgid "Reverse only internal perimeters" -msgstr "Atvirkštinis tik vidinis perimetras" +msgstr "Keisti kryptį tik vidiniuose perimetruose" msgid "" "Apply the reverse perimeters logic only on internal perimeters.\n" @@ -11762,14 +11783,13 @@ msgid "" "\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 "" -"Atvirkštinių perimetrų logiką taikykite tik vidiniams perimetrams.\n" +"Taikyti priešingos krypties perimetrų logiką tik vidiniams perimetrams.\n" +"Šis nustatymas stipriai sumažina modelio vidinius įtempius, nes jie paskirstomi pakaitomis keičiamomis kryptimis. Tai sumažina modelio deformacijas (warping), kartu išlaikant aukštą išorinių sienelių kokybę. Ši funkcija labai naudinga medžiagoms, linkusioms trauktis (pvz., ABS/ASA), taip pat elastingoms gijoms (pvz., TPU ar „Silk PLA“). Ji taip pat padeda išvengti deformacijų kabančiose srityse virš atramų.\n" "\n" -"Šis nustatymas labai sumažina detalių įtempius, nes dabar jie pasiskirsto pakaitinėmis kryptimis. Tai turėtų sumažinti detalės deformacijas, kartu išlaikant išorinių sienelių kokybę. Ši funkcija gali būti labai naudinga į deformacijas linkusioms medžiagoms, pavyzdžiui, ABS/ASA, taip pat elastingoms gijoms, pavyzdžiui, TPU ir šilko PLA. Ji taip pat gali padėti sumažinti plūduriuojančių sričių virš atramų deformacijas.\n" -"\n" -"Kad šis nustatymas būtų veiksmingiausias, rekomenduojama nustatyti atvirkštinio slenksčio reikšmę 0, kad visos vidinės sienelės būtų spausdinamos pakaitinėmis kryptimis lygiuose sluoksniuose, neatsižvelgiant į jų išsikišimo laipsnį." +"Kad nustatymas būtų kuo efektyvesnis, rekomenduojama „Atvirkštinį slenkstį“ nustatyti į 0 – tuomet visos vidinės sienelės lyginiuose sluoksniuose bus spausdinamos pakaitinėmis kryptimis, nepriklausomai nuo iškyšos kampo." msgid "Bridge counterbore holes" -msgstr "Tilto priešpriešinės skylės" +msgstr "Tiltelių formavimas gilinamoms (counterbore) skylėms" msgid "" "This option creates bridges for counterbore holes, allowing them to be printed without support. Available modes include:\n" @@ -11777,16 +11797,16 @@ msgid "" "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 "" -"Šia parinktimi sukuriami tilteliai priešpriešinėms skylėms, todėl jas galima spausdinti be atramos. Galimi šie režimai:\n" -"1. Nėra: Nesukuriamas joks tiltelis.\n" -"2. Iš dalies sujungtas tiltas: Tik dalis nepalaikomos srities bus sujungta tiltu.\n" -"3. Apsauginis sluoksnis: Sukuriamas visas paviršinis tilto sluoksnis" +"Ši parinktis suformuoja tiltelius gilinamoms skylėms (counterbore), todėl jas galima kokybiškai atspausdinti be atramų. Galimi režimai:\n" +"1. Nėra: tiltelis nekuriamas.\n" +"2. Iš dalies suformuotas tiltelis: tilteliu užpildoma tik dalis nepalaikomos srities.\n" +"3. Paaukojamas sluoksnis (Sacrificial Layer): sukuriamas pilnas, vėliau pašalinamas tilto sluoksnis." msgid "Partially bridged" msgstr "Iš dalies sujungtas tiltu" msgid "Sacrificial layer" -msgstr "Apsauginis sluoksnis" +msgstr "Paaukojamas sluoksnis" msgid "Reverse threshold" msgstr "Atvirkštinis slenkstis" @@ -11800,20 +11820,18 @@ msgid "" "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 "" -"Kiek mm turi būti iškyša, kad būtų galima laikyti, jog apvertimas yra naudingas. Gali būti perimetro pločio %.\n" -"Reikšmė 0 įjungia apvertimą kiekviename lyginiame sluoksnyje nepriklausomai.\n" -"Kai aptikti iškyšos sienelę neįjungta, ši parinktis ignoruojama ir apvertimas atliekamas nepriklausomai nuo kiekvieno lyginio sluoksnio." +"Iškyšos dydis milimetrais (mm), nuo kurio krypties keitimas laikomas naudingu. Gali būti nurodomas ir perimetro pločio procentais (%).\n" +"Reikšmė 0 įjungia krypties keitimą visuose lyginiuose sluoksniuose be išimties.\n" +"Jei funkcija „Aptikti iškyšų sieneles“ (Detect overhang wall) išjungta, šis nustatymas ignoruojamas ir kryptis keičiama kiekviename lyginiame sluoksnyje." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slow down for overhangs" -msgstr "Sulėtinti greitį dėl iškyšų" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow down when printing overhangs. The speeds for different overhang percentages are set below." -msgstr "Įjunkite šią parinktį, kad spausdinant iškyšas sulėtėtų spausdinimas." +msgstr "" msgid "Slow down for curled perimeters" -msgstr "Sulėtinti greitį, jei perimetras yra vingiuotas" +msgstr "Sulėtinti greitį riečiantis perimetrams" #, no-c-format, no-boost-format msgid "" @@ -11832,6 +11850,20 @@ msgid "" "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 "" +"Įjunkite šią parinktį, kad sumažintumėte spausdinimo greitį vietose, kur perimetrai linkę riestis į viršų.\n" +"Pavyzdžiui, papildomas sulėtinimas bus taikomas spausdinant iškyšas ties aštriais kampais (kaip „Benchy“ laivelio priekis) – tai apsaugo nuo sluoksnių rietimosi, kuris linkęs kauptis per kelis sluoksnius.\n" +"\n" +"Rekomenduojama visada laikyti šią parinktį įjungtą, nebent spausdintuvo aušinimas yra itin galingas arba spausdinimo greitis toks mažas, kad perimetrų rietimasis nevyksta.\n" +"Jei spausdinama dideliu išorinio perimetro greičiu, šis parametras lėtėjimo metu gali sukelti sienelių artefaktų (defektų), nes dėl didelių greičio šuolių ekstruderis gali nespėti sureguliuoti srauto pokyčio.\n" +"Pagrindinė tokių artefaktų priežastis dažniausiai yra netiksliai suderintas „Pressure Advance“ (PA) parametras, ypač jei naudojama didelė „PA smooth time“ reikšmė.\n" +"\n" +"Rekomendacijos įjungus šią parinktį:\n" +"1. Sumažinkite „Pressure Advance smooth time“ iki 0.015 - 0.02, kad ekstruderis greitai reaguotų į greičio pokyčius.\n" +"2. Padidinkite minimalų spausdinimo greitį, kad apribotumėte sulėtėjimo mastą ir sumažintumėte skirtumą tarp greitų bei lėtų segmentų.\n" +"3. Jei artefaktai išlieka, įjunkite „Ekstruzijos srauto glotninimą“ (ERS), kad sušvelgintumėte srauto perėjimus.\n" +"\n" +"Pastaba: kai ši parinktis įjungta, išsikišę perimetrai yra traktuojami kaip iškyšos, t. y. iškyšų greitis taikomas net ir tada, kai perimetras yra tiltelio dalis.\n" +"Pavyzdžiui, kai perimetrai kyšo 100 % (apačioje nėra jokios palaikančios sienelės), bus taikomas būtent 100 % iškyšos greitis." msgid "mm/s or %" msgstr "mm/s arba %" @@ -11841,38 +11873,36 @@ msgid "" "\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 "" -"Išoriškai matomų tilto išspaudų greitis.\n" +"Išoriškai matomų tiltelio ekstruzijų greitis.\n" "\n" -"Be to, jei išjungta funkcija Lėtinimas lenktiems perimetrams arba įjungtas klasikinis iškyšų režimas, tai bus spausdinimo greitis iškyšų sienelėms, kurių atramos yra mažesnės nei 13 %, nepriklausomai nuo to, ar jos yra tilto, ar iškyšos dalis." +"Papildomai, jei funkcija „Sulėtinti greitį riesantis perimetrams“ yra išjungta arba įjungtas „Klasikinis iškyšų režimas“, šis greitis bus taikomas iškyšų sienelėms, kurių atrama yra mažesnė nei 13 % (nesvarbu, ar jos yra tiltelio, ar iškyšos dalis)." msgid "Internal" msgstr "Vidinis" 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 "Vidinių tiltų greitis. Jei reikšmė išreiškiama procentais, ji bus apskaičiuojama pagal bridge_speed. Numatytoji vertė yra 150 %." +msgstr "Vidinių tiltelių spausdinimo greitis. Jei reikšmė nurodoma procentais, ji apskaičiuojama pagal „bridge_speed“ (tiltelių greitį). Numatytoji reikšmė – 150 %." msgid "Brim width" -msgstr "Krašto plotis" +msgstr "Pado apvado plotis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the model to the outermost brim line." -msgstr "Atstumas nuo modelio iki išorinės krašto linijos." +msgstr "" msgid "Brim type" -msgstr "Krašto tipas" +msgstr "Apvado tipas" 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 "Taip reguliuojamas modelių išorinės ir (arba) vidinės pusės krašto formavimas. Automatinis reiškia, kad apvado plotis analizuojamas ir apskaičiuojamas automatiškai." +msgstr "Valdo apvado generavimą modelio išorinėje ir (arba) vidinėje pusėje. „Auto“ režimu apvado plotis išanalizuojamas ir apskaičiuojamas automatiškai." msgid "Brim-object gap" -msgstr "Tarpas tarp krašto ir objekto" +msgstr "Tarpas tarp apvado ir objekto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This creates a gap between the innermost brim line and the object and can make the brim easier to remove." -msgstr "Sukuriamas tarpas tarp vidinės krašto linijos ir objekto, todėl galima lengviau jį atskirti." +msgstr "" msgid "Brim flow ratio" -msgstr "" +msgstr "Apvado srauto koeficientas" msgid "" "This factor affects the amount of material for brims.\n" @@ -11881,177 +11911,199 @@ msgid "" "\n" "Note: The resulting value will not be affected by the first-layer flow ratio." msgstr "" +"Šis koeficientas turi įtakos pado apvadų medžiagos kiekiui.\n" +"\n" +"Faktinis apvado srautas apskaičiuojamas padauginus šią reikšmę iš gijos srauto koeficiento ir objekto srauto koeficiento (jei jis nustatytas).\n" +"\n" +"Pastaba: gautai reikšmei pirmojo sluoksnio srauto koeficientas įtakos neturės." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Brim follows compensated outline" -msgstr "Kraštas atitinka kompensuotą kontūrą" +msgstr "Apvadas atitinka kompensuotą kontūrą" -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"Kai įjungta, kraštas yra sulygiuotas su pirmojo sluoksnio perimetro geometrija pritaikius dramblio pėdos kompensaciją.\n" -"Ši parinktis skirta tais atvejais, kai kompensuojama dramblio pėda žymiai pakeičia pirmojo sluoksnio pėdsaką.\n" +"Kai įjungta, apvadas sulygiuojamas su pirmojo sluoksnio perimetro geometrija jau pritaikius „Dramblio pėdos kompensaciją“ (Elephant Foot Compensation).\n" "\n" -"Jei dabartinė sąranka jau veikia gerai, jos įjungti gali nebūti ir gali sukelti kraštas susiliejimą su viršutiniais sluoksniais." +"Ši parinktis skirta atvejams, kai dramblio pėdos kompensacija stipriai keičia pirmojo sluoksnio kontūrus.\n" +"\n" +"Jei dabartinė sąranka veikia gerai, šios parinkties įjungti nebūtina, nes apvadas gali per stipriai susilieti su aukštesniais sluoksniais." msgid "Combine brims" -msgstr "" +msgstr "Apjungti apvadus" msgid "Combine multiple brims into one when they are close to each other. This can improve brim adhesion." -msgstr "" +msgstr "Apjungia kelis arti vienas kito esančius apvadus į vieną. Tai gali pagerinti apvado sukibimą su pagrindu." msgid "Brim ears" -msgstr "Krašto \"ausys\"" +msgstr "Apvado „ausys“ (Brim ears)" msgid "Only draw brim over the sharp edges of the model." -msgstr "Generuoti kraštą tik aplink aštrius modelio kraštus." +msgstr "Generuoti apvadą tik aplink aštrius modelio kampus (kraštus)." msgid "Brim ear max angle" -msgstr "Maksimalus krašto \"ausies \" kampas" +msgstr "Maksimalus apvado „ausies“ kampas" 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 "" -"Didžiausias kampas, kad atsirastų ausies kraštas.\n" -"Jei nustatyta 0, kraštas nebus sukurtas.\n" -"Jei nustatyta ~ 180, apvadas bus kuriamas visuose, išskyrus tiesias atkarpas." +"Maksimalus kampas, kuriam esant dar generuojama apvado „ausis“.\n" +"Nustačius 0, apvadas nebus kuriamas.\n" +"Nustačius ~180, apvadas bus kuriamas visur, išskyrus visiškai tiesias atkarpas." msgid "Brim ear detection radius" -msgstr "Kraštų ausies aptikimo spindulys" +msgstr "Apvado „ausų“ aptikimo spindulys" 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 "" -"Prieš aptikdami aštrius kampus, geometrija bus išskaidyta. Šis parametras nurodo mažiausią nuokrypio ilgį decimavimui.\n" -"0 - išjungti." +"Prieš aptinkant aštrius kampus, geometrija yra supaprastinama (decimuojama). Šis parametras nurodo minimalų nuokrypio ilgį supaprastinimui atlikti.\n" +"Įrašykite 0, kad išjungtumėte." msgid "Select printers" msgstr "Pasirinkite spausdintuvus" msgid "upward compatible machine" -msgstr "į viršų suderinamas įrenginys" +msgstr "atgaliniu būdu suderinamas įrenginys" msgid "Condition" msgstr "Sąlyga" -# TODO: Review, changed by lang refactor. PR 14254 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 "Loginė išraiška, kurioje naudojamos aktyvaus spausdintuvo profilio konfigūracijos vertės. Jei ši išraiška yra \"tiesa\", šis profilis laikomas suderinamu su aktyviu spausdintuvo profiliu." +msgstr "" msgid "Select profiles" -msgstr "Pasirinkite profilius" +msgstr "Pasirinkti profilius" -# TODO: Review, changed by lang refactor. PR 14254 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 "Loginė išraiška, kurioje naudojamos aktyvaus spausdinimo profilio konfigūracijos reikšmės. Jei ši išraiška lygi „tiesa“, šis profilis laikomas suderinamu su aktyviuoju spausdinimo profiliu." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the print sequence, allowing you to print layer-by-layer or object-by-object." -msgstr "Spausdinimo seka, leidžianti spausdinti sluoksnį po sluoksnio arba objektą po objekto." +msgstr "" msgid "By layer" -msgstr "Pagal sluoksnį" +msgstr "Sluoksnis po sluoksnio" msgid "By object" -msgstr "Pagal objektą" +msgstr "Objektas po objekto" msgid "Intra-layer order" -msgstr "Vidinė sluoksnių tvarka" +msgstr "Eiliškumas sluoksnio viduje" msgid "Print order within a single layer." -msgstr "Spausdinimo eiliškumas viename sluoksnyje." +msgstr "Elementų spausdinimo eiliškumas vieno sluoksnio ribose." msgid "As object list" msgstr "Kaip objektų sąrašas" msgid "Slow printing down for better layer cooling" -msgstr "Sulėtinti spausdinimą, kad geriau būtų aušinami sluoksniai" +msgstr "Sulėtinti spausdinimą geresniam sluoksnių aušinimui" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Įjunkite šią parinktį, jei norite sulėtinti spausdinimo greitį, kad galutinė sluoksnio trukmė nebūtų trumpesnė už maksimalaus ventiliatoriaus greičio slenkstičio nustatytą sluoksnio trukmės ribą, kad sluoksnį būtų galima aušinti ilgiau. Tai gali pagerinti smulkių detalių kokybę." +msgstr "" msgid "Normal printing" msgstr "Įprastas spausdinimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the default acceleration for both normal printing and travel after the first layer." -msgstr "Tai numatytasis pagreitis tiek įprastam spausdinimui, tiek judėjimui po pirmojo sluoksnio." +msgstr "" + +msgid "Acceleration of travel moves." +msgstr "Judėjimo judesių pagreitis." + +msgid "First layer travel" +msgstr "Pirmojo sluoksnio tuščioji eiga (travel)" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"Pirmojo sluoksnio tuščiosios eigos (travel) pagreitis.\n" +"Procentinė vertė yra santykinė su tuščiosios eigos pagreičiu." + +msgid "mm/s² or %" +msgstr "mm/s² arba %" + +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 "Tiltelių pagreitis. Jei vertė išreikšta procentais (pvz., 50%), ji bus apskaičiuojama pagal išorinės sienelės pagreitį." msgid "Default filament profile" -msgstr "Numatytasis gijų profilis" +msgstr "Numatytasis gijos profilis" msgid "Default filament profile when switching to this machine profile." -msgstr "Numatytasis gijos profilis, kai pereinama prie šio įrenginio profilio." +msgstr "Numatytasis gijos profilis, automatiškai pasirenkamas perjungus šį spausdintuvo profilį." msgid "Default process profile" msgstr "Numatytasis proceso profilis" msgid "Default process profile when switching to this machine profile." -msgstr "Numatytasis proceso profilis, kai pereinama prie šio įrenginio profilio." +msgstr "Numatytasis proceso profilis, automatiškai pasirenkamas perjungus šį spausdintuvo profilį." msgid "Activate air filtration" msgstr "Įjungti oro filtravimą" msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)" -msgstr "Suaktyvinkite, kad geriau filtruotumėte orą. G-kodo komanda: M106 P3 S(0-255)" +msgstr "Įjungti efektyvesniam oro filtravimui. G-kodo komanda: M106 P3 S(0-255)" msgid "Enable this to override the fan speed set in custom G-code during print." -msgstr "" +msgstr "Įjunkite, kad spausdinimo metu nepaisytumėte ventiliatoriaus greičio, nurodyto pasirinktiniame G-kode." msgid "On completion" -msgstr "" +msgstr "Baigus spausdinti" msgid "Enable this to override the fan speed set in custom G-code after print completion." -msgstr "" +msgstr "Įjunkite, kad baigus spausdinti nepaisytumėte ventiliatoriaus greičio, nurodyto pasirinktiniame G-kode." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed of exhaust fan during printing. This speed will override the speed in filament custom G-code." -msgstr "Ištraukimo ventiliatoriaus greitis spausdinimo metu. Šis greitis bus viršesnis už greitį, nurodytą gijos pasirinktiniame G-kodo." +msgstr "Ištraukimo (išmetimo) ventiliatoriaus greitis spausdinimo metu. Šis nustatymas yra viršesnis už greitį, nurodytą gijos pasirinktiniame G-kode." msgid "Speed of exhaust fan after printing completes." -msgstr "Ištraukimo ventiliatoriaus greitis baigus spausdinti." +msgstr "Ištraukimo (išmetimo) ventiliatoriaus greitis baigus spausdinti." msgid "No cooling for the first" -msgstr "Nėra aušinimo pirmiesiems" +msgstr "Neaušinti pirmųjų" msgid "Turn off all cooling fans for the first few layers. This can be used to improve build plate adhesion." -msgstr "Pirmiesiems sluoksniams išjungti visus aušinimo ventiliatorius. Tai gali būti naudojama siekiant pagerinti sluoksnio sukibimą." +msgstr "Išjungti visus aušinimo ventiliatorius pirmuosiuose keliuose sluoksniuose. Tai naudojama siekiant pagerinti modelio sukibimą su pagrindu." msgid "Don't support bridges" -msgstr "Nekurti atramų tiltams" +msgstr "Nekurti atramų tilteliams" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." -msgstr "Taip išjungiami atraminiai tilteliai, todėl sumažėja reikalingų atramų kiekis. Tiltus paprastai galima spausdinti tiesiogiai be atramų priimtinu atstumu." +msgstr "" msgid "Thick external bridges" -msgstr "Stori vidiniai tiltai" +msgstr "Stori išoriniai tilteliai" 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 "" +"Jei įjungta, tiltelių ekstruzijai naudojamas sluoksnio aukštis, lygus purkštuko skersmeniui.\n" +"Tai padidina tiltelių tvirtumą bei patikimumą ir leidžia atspausdinti ilgesnius tarpsnius ore, tačiau gali nukentėti išvaizda.\n" +"Jei išjungta, tilteliai gali atrodyti estetiškiau, tačiau patikimai spausdinami tik trumpesni tarpsniai." msgid "Thick internal bridges" -msgstr "Stori vidiniai tiltai" +msgstr "Stori vidiniai tilteliai" 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 "" +"Jei įjungta, vidinių tiltelių ekstruzijai naudojamas sluoksnio aukštis, lygus purkštuko skersmeniui.\n" +"Tai padidina vidinių tiltelių tvirtumą ir patikimumą, kai jie spausdinami virš retojo užpildo, tačiau gali pabloginti išvaizdą.\n" +"Jei išjungta, vidiniai tilteliai gali atrodyti geriau, tačiau spausdinant virš retojo užpildo jie gali būti mažiau patikimi." msgid "Extra bridge layers (beta)" -msgstr "Papildomi tilto sluoksniai (beta)" +msgstr "Papildomi tiltelių sluoksniai (beta)" msgid "" "This option enables the generation of an extra bridge layer over internal and/or external bridges.\n" @@ -12066,29 +12118,29 @@ msgid "" "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 "" -"Ši parinktis leidžia sukurti papildomą tilto sluoksnį virš vidinių ir (arba) išorinių tiltų.\n" +"Ši parinktis leidžia sugeneruoti papildomą tiltelio sluoksnį virš vidinių ir (arba) išorinių tiltelių.\n" "\n" -"Papildomi tiltų sluoksniai padeda pagerinti tiltų išvaizdą ir patikimumą, nes kietasis užpildas geriau atremiamas. Tai ypač naudinga greituosiuose spausdintuvuose, kuriuose tilto ir kietojo užpildo greitis labai skiriasi. Dėl papildomo tiltelio sluoksnio sumažėja viršutinių paviršių pagalvėlių, taip pat sumažėja išorinio tiltelio sluoksnio atsiskyrimas nuo jį supančių perimetrų.\n" +"Papildomi tiltelių sluoksniai pagerina jų išvaizdą bei patikimumą, nes tvirtas užpildas (solid infill) gauna geresnį pagrindą. Tai ypač aktualu greitaeigiams spausdintuvams, kur tiltelių ir tvirto užpildo spausdinimo greičiai stipriai skiriasi. Papildomas tiltelio sluoksnis sumažina viršutinių paviršių išsipūtimą (pillowing) bei išorinio tiltelio sluoksnio atsiskyrimą nuo jį supančių perimetrų.\n" "\n" -"Paprastai rekomenduojama nustatyti bent jau „External bridge only“ (tik išorinis tiltelis), nebent būtų nustatyta specifinių problemų, susijusių su supjaustytu modeliu.\n" +"Rekomenduojama pasirinkti bent „Tik išorinis tiltelis“, nebent supjaustytame (sliced) modelyje pastebimos specifinės klaidos.\n" "\n" "Parinktys:\n" -"1. Išjungta - negeneruojami antrojo tilto sluoksniai. Tai numatytasis nustatymas, kuris nustatytas suderinamumo tikslais.\n" -"2. Tik išorinis tiltas - generuoja antrojo tilto sluoksnius tik į išorę orientuotiems tiltams. Atkreipkite dėmesį, kad maži tiltai, kurie yra trumpesni arba siauresni už nustatytą perimetrų skaičių, bus praleisti, nes jiems antrasis tilto sluoksnis nebus naudingas. Jei sugeneruojamas, antrasis tilto sluoksnis bus išspaustas lygiagrečiai pirmajam tilto sluoksniui, kad būtų sustiprintas tilto tvirtumas.\n" -"3. Tik vidinis tiltas - generuojami antrieji tilto sluoksniai, skirti tik vidiniams tiltams virš reto užpildo. Atkreipkite dėmesį, kad vidiniai tiltai įskaičiuojami į modelio viršutinio apvalkalo sluoksnių skaičių. Antrasis vidinio tilto sluoksnis bus išspaustas kuo arčiau statmenai pirmajam. Jei toje pačioje saloje yra keli regionai su skirtingais tiltelių kampais, kaip atskaitos kampas bus pasirinktas paskutinis tos salos regionas.\n" -"4. Taikyti visiems - sukuriami antrieji tiltų sluoksniai, skirti tiek į vidiniams, tiek į išoriniams tiltams.\n" +"1. Išjungta – antrasis tiltelio sluoksnis negeneruojamas. Tai numatytasis nustatymas, naudojamas suderinamumui palaikyti.\n" +"2. Tik išorinis tiltelis – antrasis sluoksnis generuojamas tik išorėje matomiems tilteliams. Maži tilteliai, kurie yra trumpesni arba siauresni už nustatytą perimetrų skaičių, bus praleidžiami, nes jiems antrasis sluoksnis neduotų naudos. Jei generuojama, antrasis tiltelio sluoksnis ekstruduojamas lygiagrečiai pirmajam, taip sustiprinant konstrukciją.\n" +"3. Tik vidinis tiltelis – antrasis sluoksnis generuojamas tik vidiniams tilteliams virš retojo užpildo. Atminkite, kad vidiniai tilteliai įskaičiuojami į bendrą modelio viršutinio sluoksnio (top shell) skaičių. Antrasis vidinis tiltelio sluoksnis ekstruduojamas kuo statmeniau pirmajam. Jei toje pačioje „saloje“ yra kelios sritys su skirtingais tiltelių kampais, kampo atskaita taps paskutinė tos salos sritis.\n" +"4. Taikyti visiems – antrasis tiltelio sluoksnis generuojamas tiek vidiniams, tiek išorėje matomiems tilteliams.\n" msgid "External bridge only" -msgstr "Tik išorinis tiltas" +msgstr "Tik išorinis tiltelis" msgid "Internal bridge only" -msgstr "Tik vidinis tiltas" +msgstr "Tik vidinis tiltelis" msgid "Apply to all" msgstr "Taikyti visiems" msgid "Filter out small internal bridges" -msgstr "Filtruoti mažus vidinius tiltus" +msgstr "Atfiltruoti mažus vidinius tilteliu" msgid "" "This option can help reduce pillowing on top surfaces in heavily slanted or curved models.\n" @@ -12099,43 +12151,40 @@ msgid "" "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 "" -"Ši parinktis gali padėti sumažinti viršutinių paviršių, esančių smarkiai nuožulniuose ar išlenktuose modeliuose, iškilimą.\n" -"Pagal numatytuosius nustatymus nedideli vidiniai tiltai filtruojami, o vidinis vientisas užpildas spausdinamas tiesiai ant reto užpildo. Daugeliu atvejų tai gerai veikia, nes pagreitina spausdinimą per daug nepakenkiant viršutinio paviršiaus kokybei.\n" -"Tačiau smarkiai pasvirusiuose ar išlenktuose modeliuose, ypač jei naudojamas per mažas reto užpildo tankis, gali susiraukšlėti nepalaikomas vientisas užpildas, todėl gali atsirasti iškilimų.\n" -"Įjungus ribotą filtravimą arba jo neįjungus, vidinis tilto sluoksnis bus spausdinamas ant šiek tiek nepalaikomo vidinio vientiso užpildo. Toliau pateiktomis parinktimis valdomas filtravimo jautrumas, t. y. jomis nustatoma, kurioje vietoje sukuriami vidiniai tiltai.\n" -"1. Filtruoti - įjungiama ši parinktis. Tai numatytoji elgsena, kuri daugeliu atvejų veikia gerai.\n" -"2. Ribotas filtravimas - sukuriami vidiniai tiltai smarkiai nuožulniuose paviršiuose, išvengiant nereikalingų tiltų. Tai gerai veikia daugumai sudėtingų modelių.\n" -"3. Be filtravimo - sukuria vidinius tiltus kiekvienoje potencialioje vidinėje iškyšoje. Ši parinktis naudinga stipriai nuožulnių viršutinių paviršių modeliams, tačiau daugeliu atvejų ji sukuria per daug nereikalingų tiltų." +"Ši parinktis padeda sumažinti viršutinių paviršių išsipūtimą (pillowing) stipriai nuožulniuose arba išlenktuose modeliuose.\n" +"Numatytuoju atveju maži vidiniai tilteliai yra atfiltruojami, o vidinis tvirtas užpildas (solid infill) spausdinamas tiesiai ant retojo užpildo. Dažniausiai tai veikia puikiai: pagreitina spausdinimą ir pastebimai nepakenkia viršutinio paviršiaus kokybei.\n" +"Tačiau labai nuožulniuose ar išlenktuose modeliuose (ypač kai retojo užpildo tankis mažas) nepalaikomas tvirtas užpildas gali sukristi arba riestis, taip sukeldamas išsipūtimus.\n" +"Įjungus ribotą filtravimą arba filtravimą išjungus, vidinis tiltelio sluoksnis bus formuojamas virš tų vietų, kur vidinis tvirtas užpildas lieka be pakankamos atramos. Parinktys žemiau valdo šio filtravimo jautrumą (t. y. nustato, kur bus kuriami vidiniai tilteliai):\n" +"1. Filtruoti – įjungia standartinį filtravimą. Tai numatytoji elgsena, tinkanti daugeliui atvejų.\n" +"2. Ribotas filtravimas – sukuria vidinius tiltelius tik ant stipriai nuožulnių paviršių, išvengiant perteklinio jų generavimo. Puikiai tinka sudėtingiems modeliams.\n" +"3. Be filtravimo – sukuria vidinius tiltelius ties kiekviena potencialia vidine iškyša. Naudinga modeliams su itin nuožulniais viršutiniais paviršiais, tačiau dažniausiai sugeneruoja per daug nereikalingų tiltelių." msgid "Limited filtering" msgstr "Ribotas filtravimas" msgid "No filtering" -msgstr "Išjungta" +msgstr "Be filtravimo" msgid "Max bridge length" -msgstr "Maksimalus tilto ilgis" +msgstr "Maksimalus tiltelio ilgis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum 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 "Maksimalus tiltų, kuriems nereikia atramos, ilgis. Nustatykite 0, jei norite, kad būtų remiami visi tiltai, ir labai didelę reikšmę, jei nenorite, kad būtų remiami jokie tiltai." +msgstr "" msgid "End G-code" msgstr "Pabaigos G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-Code when finishing the entire print." -msgstr "Pridėti pabaigos G-kodą, kai bus baigtas visas spausdinimas." +msgstr "" msgid "Between Object G-code" msgstr "Tarp objektų G-kodas" msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." -msgstr "Įterpti G kodą tarp objektų. Šis parametras bus taikomas tik tada, kai spausdinsite modelius po vieną objektą." +msgstr "Įterpti G-kodą tarp objektų. Šis parametras įsigalioja tik tada, kai pasirinkta spausdinimo seka „Objektas po objekto“." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-code when finishing the printing of this filament." -msgstr "Pridėti pabaigos G-kodą, kai bus baigta spausdinti ši gija." +msgstr "" msgid "Ensure vertical shell thickness" msgstr "Užtikrinti vertikalaus apvalkalo storį" @@ -12148,37 +12197,36 @@ msgid "" "All: Add solid infill for all suitable sloping surfaces\n" "Default value is All." msgstr "" -"Prie nuožulnių paviršių pridėti kietąjį užpildą, kad būtų užtikrintas vertikalus apvalkalo storis (viršutinis ir apatinis vientisi sluoksniai).\n" -"Nėra: Vientisas užpildas niekur nepridedamas. Dėmesio: Jei jūsų modelyje yra nuožulnių paviršių, naudokite šią parinktį atsargiai.\n" -"Tik kritiniai: Venkite pridėti vientisą sienų užpildą\n" -"Vidutiniai: Pridėti vientisą užpildą tik smarkiai nuožulniems paviršiams\n" -"Visi: pridėkite vientisą užpildą visiems tinkamiems nuožulniems paviršiams\n" -"Numatytoji reikšmė yra Visi." +"Pridėti tvirtąjį užpildą (solid infill) šalia nuožulnių paviršių, kad būtų užtikrintas vertikalus sienelės storis (viršutiniai ir apatiniai tvirti sluoksniai).\n" +"Nėra: tvirtas užpildas papildomai nepridedamas niekur. Įspėjimas: naudokite šią parinktį atsargiai, jei modelis turi nuožulnių paviršių.\n" +"Tik kritinėse vietose: vengiama pridėti tvirtą užpildą po sienelėmis.\n" +"Vidutiniškai: tvirtas užpildas pridedamas tik esant labai dideliam nuolydžiui.\n" +"Visi: tvirtas užpildas pridedamas po visais tinkamais nuožulniais paviršiais.\n" +"Numatytoji reikšmė – Visi." msgid "Critical Only" -msgstr "Tik kritiniai" +msgstr "Tik kritinėse vietose" msgid "Moderate" -msgstr "Vidutiniai" +msgstr "Vidutiniškai" msgid "Top surface pattern" -msgstr "Viršutinio paviršiaus raštas" +msgstr "Viršutinio paviršiaus užpildo linijų raštas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for top surface infill." -msgstr "Tai viršutinio paviršiaus užpildymo linijomis modelis." +msgstr "" msgid "Monotonic" -msgstr "Monotoniškas" +msgstr "Monotoniškas (Monotonic)" msgid "Monotonic line" -msgstr "Monotoniška linija" +msgstr "Monotoniškos linijos" msgid "Rectilinear" -msgstr "Tiesia linija" +msgstr "Tiesiaeigis (Rectilinear)" msgid "Aligned Rectilinear" -msgstr "Tiesiai sulygiuota" +msgstr "Sulygiuotas tiesiaeigis" msgid "Concentric" msgstr "Koncentrinis" @@ -12192,40 +12240,66 @@ msgstr "Archimedo akordai" msgid "Octagram Spiral" msgstr "Oktagramos spiralė" -msgid "Bottom surface pattern" -msgstr "Apatinio paviršiaus užpildo linijų raštas" +msgid "Top surface density" +msgstr "Viršutinio paviršiaus tankis" + +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 "Viršutinio paviršiaus sluoksnio tankis. Nustačius 100 %, sukuriamas visiškai vientisas ir lygus viršutinis sluoksnis. Sumažinus šią reikšmę, gaunamas tekstūruotas viršutinis paviršius pagal pasirinktą raštą. Nustačius 0 %, viršutiniame sluoksnyje bus spausdinamos tik sienelės. Funkcija skirta estetiniais arba funkciniais tikslais, o ne tokioms problemoms kaip perteklinė ekstruzija (over-extrusion) spręsti." + +msgid "Bottom surface pattern" +msgstr "Apatinio paviršiaus raštas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern of bottom surface infill, not including bridge infill." -msgstr "Tai apatinio paviršiaus užpildymo linijioms raštas, išskyrus tiltų užpildymą." +msgstr "" + +msgid "Bottom surface density" +msgstr "Apatinio paviršiaus tankis" + +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 "" +"Apatinio paviršiaus sluoksnio tankis. Skirtas estetiniais arba funkciniais tikslais, o ne perteklinei ekstruzijai (over-extrusion) taisyti.\n" +"ĮSPĖJIMAS: sumažinus šią reikšmę, gali suprastėti pirmojo sluoksnio sukibimas su spausdinimo pagrindu." msgid "Internal solid infill pattern" -msgstr "Vidinis vientiso užpildo raštas" +msgstr "Vidinio tvirto užpildo raštas" 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 "Vidinio vientiso užpildo linijų raštas. Jei įjungta funkcija aptikti siaurą vidinį vientisą užpildą, mažam plotui bus naudojamas koncentrinis raštas." +msgstr "Vidinio tvirto užpildo linijų raštas. Jei įjungta funkcija „Aptikti siaurą vidinį tvirtą užpildą“, mažame plote bus automatiškai naudojamas koncentrinis raštas." msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Išorinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Išorinės sienelės linijos plotis. Jei nurodomas procentais (%), jis apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Išorinės sienos, kuri yra išorinė ir matoma, greitis. Naudojamas lėtesnis nei vidinės sienelės greitis, kad būtų pasiekta geresnė kokybė." +msgstr "" msgid "Small perimeters" -msgstr "Maži perimetrai" +msgstr "Mažos trajektorijos (Small perimeters)" 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 "Šis atskiras nustatymas turės įtakos perimetrų, kurių spindulys <= small_perimeter_threshold (paprastai skylės), greičiui. Jei jis išreikštas procentais (pvz., 80 %), jis bus apskaičiuojamas pagal pirmiau nurodytą išorinės sienos greičio nustatymą. Nustatykite nulį, jei norite, kad greitis būtų automatinis." +msgstr "Šis nustatymas valdo perimetrų, kurių spindulys $\\le$ „Mažų perimetrų riba“ (dažniausiai tai nedidelės skylės), spausdinimo greitį. Jei nurodomas procentais (pvz., 80 %), jis apskaičiuojamas pagal viršuje nustatytą išorinės sienelės greitį. Nustačius 0, greitis parandamas automatiškai." msgid "Small perimeters threshold" -msgstr "Mažo perimetro ribos" +msgstr "Mažų perimetrų riba" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." -msgstr "Nustatoma mažo perimetro ilgio riba. Numatytoji riba yra 0 mm." +msgstr "Nustato mažų perimetrų ilgio arba spindulio ribą. Numatytoji reikšmė – 0 mm." + +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" msgid "Walls printing order" -msgstr "Sienų spausdinimo eiliškumas" +msgstr "Sienelių spausdinimo eiliškumas" msgid "" "Print sequence of the internal (inner) and external (outer) walls.\n" @@ -12236,22 +12310,22 @@ msgid "" "\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 "" -"Vidinių (vidinių) ir išorinių (išorinių) sienų spausdinimo seka.\n" +"Vidinių (inner) ir išorinių (outer) sienelių spausdinimo seka.\n" "\n" -"Naudokite Vidinės / Išorinės, jei norite, kad iškyšos būtų geriausios. Taip yra todėl, kad spausdinant išsikišusios sienos gali prilipti prie kaimyninio perimetro. Tačiau dėl šios parinkties šiek tiek suprastėja paviršiaus kokybė, nes išorinis perimetras deformuojamas prispaudžiant jį prie vidinio perimetro.\n" +"„Vidinis / išorinis“ (Inner/Outer) užtikrina geriausią iškyšų kokybę, nes spausdinama iškyšos sienelė turi prie ko prisitvirtinti (prie vidinio perimetro). Tačiau išorinio paviršiaus kokybė gali nežymiai nukentėti, nes išorinis perimetras gali būti šiek tiek deformuojamas (išspaudžiamas) vidinio perimetro įtakos.\n" "\n" -"Naudokite Vidinis / išorinis / vidinis, jei norite gauti geriausią išorinio paviršiaus apdailą ir matmenų tikslumą, nes išorinė siena spausdinama nepažeista vidinio perimetro. Tačiau iškyšų kokybė sumažėja, nes nėra vidinio perimetro, prie kurio būtų galima atspausdinti išorinę sienelę. Kad ši parinktis būtų veiksminga, reikia mažiausiai 3 sienų, nes pirmiausia atspausdinamos vidinės sienos nuo trečiojo perimetro, tada išorinis perimetras ir galiausiai pirmasis vidinis perimetras. Šią parinktį daugeliu atvejų rekomenduojama rinktis ne kaip išorinę / vidinę parinktį.\n" +"„Vidinis / išorinis / vidinis“ (Inner/Outer/Inner) užtikrina geriausią išorinio paviršiaus kokybę ir matmenų tikslumą, nes išorinė sienelė spausdinama netrikdomai. Visgi, iškyšų kokybė sumažėja, nes nėra pilno vidinio pagrindo išorinei sienelei prilaikyti. Šis nustatymas efektyvus tik turint bent 3 sieneles – pjaustyklė pirmiausia spausdina vidines sieneles nuo 3-iojo perimetro gilyn, tada išorinį perimetrą, ir galiausiai pirmąjį vidinį perimetrą. Daugeliu atvejų tai yra pranašesnis pasirinkimas nei „Išorinis / vidinis“.\n" "\n" -"Naudokite Išorinė / vidinė, kad išorinių sienų kokybė ir matmenų tikslumas būtų tokie patys, kaip ir pasirinkus Vidinė / išorinė / vidinė parinktį. Tačiau z siūlės atrodys ne tokios nuoseklios, nes pirmasis naujo sluoksnio išspaudimas prasideda matomame paviršiuje." +"„Išorinis / vidinis“ (Outer/Inner) suteikia panašų paviršiaus švarumą ir matmenų tikslumą kaip ir „Vidinis / išorinis / vidinis“, tačiau vertikalios siūlės (Z seam) gali atrodyti mažiau tvarkingos, nes naujas sluoksnis pradedamas spausdinti tiesiai ant matomo išorinio paviršiaus." msgid "Inner/Outer" -msgstr "Vidinės/Išorinės" +msgstr "Vidinis / išorinis" msgid "Outer/Inner" -msgstr "Išorinės/Vidinės" +msgstr "Išorinis / vidinis" msgid "Inner/Outer/Inner" -msgstr "Vidinės/Išorinės/Vidinės" +msgstr "Vidinis / išorinis / vidinis" msgid "Print infill first" msgstr "Pirmiausia spausdinti užpildą" @@ -12261,12 +12335,12 @@ msgid "" "\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 "" -"Sienų ir (arba) užpildymo tvarka. Kai žymės langelis nepažymėtas, sienos spausdinamos pirmosios, o tai daugeliu atvejų veikia geriausiai.\n" +"Sienelių ir užpildo spausdinimo tvarka. Kai parinktis nepažymėta, pirmiausia spausdinamos sienelės – tai geriausias pasirinkimas daugeliu atvejų.\n" "\n" -"Spausdinti užpildą pirmiausia gali būti lengviau, kai yra labai dideli iškyšuliai, nes sienos turi laikytis gretimo užpildo. Tačiau užpildas šiek tiek išstumia atspausdintas sienas ten, kur jis prie jų pritvirtintas, todėl išorinio paviršiaus apdaila būna prastesnė. Dėl to užpildas taip pat gali persišviesti per išorinius detalės paviršius." +"Pirmiausia spausdinant užpildą, galima pasiekti geresnių rezultatų esant ekstremalioms iškyšoms, nes spausdinamos sienelės turi prie ko prilipti (prie gretimo užpildo krašto). Tačiau užpildas gali nežymiai išstumti išorines sieneles jų tvirtinimo vietose, todėl suprastėja išorinio paviršiaus kokybė. Taip pat užpildo struktūra gali pradėti persišviesti per išorines detalės sieneles." msgid "Wall loop direction" -msgstr "Sienos kontūro kryptis" +msgstr "Sienelių kontūro kryptis" msgid "" "The direction which the contour wall loops are extruded when looking down from the top.\n" @@ -12274,6 +12348,10 @@ msgid "" "\n" "This option will be disabled if spiral vase mode is enabled." msgstr "" +"Kryptis, kuria ekstruduojami išorinio kontūro sienelių žiedai, žiūrint iš viršaus.\n" +"Skylės yra spausdinamos priešinga kryptimi nei išorinis kontūras. Tai leidžia išlaikyti taisyklingą sluoksnių suderinamumą, kai kontūrų poligonai yra nepilni, keičia kryptį ar iš dalies formuoja skylės perimetrą.\n" +"\n" +"Ši parinktis automatiškai išjungiama, jei aktyvuotas „Vazos režimas“ (spiral vase)." msgid "Counter clockwise" msgstr "Prieš laikrodžio rodyklę" @@ -12282,88 +12360,85 @@ msgid "Clockwise" msgstr "Pagal laikrodžio rodyklę" msgid "Height to rod" -msgstr "Aukštis iki strypo" +msgstr "Aukštis iki ašies (strypo)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." -msgstr "Atstumas nuo purkštuko galo iki apatinio strypo. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgstr "" msgid "Height to lid" msgstr "Aukštis iki dangtelio" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." -msgstr "Atstumas nuo antgalio galo iki dangtelio. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." -msgstr "Tarpas aplink ekstruderį. Naudojamas siekiant išvengti susidūrimų spausdinant pagal objektus." +msgstr "" msgid "Nozzle height" msgstr "Purkštuko aukštis" msgid "The height of nozzle tip." -msgstr "Purkštuko antgalio aukštis." +msgstr "Purkštuko galiuko aukštis." msgid "Bed mesh min" -msgstr "Pagrindo figūros min" +msgstr "Pagrindo nelygumų žemėlapio (Mesh) min. taškas" 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 "Šia parinktimi nustatomas mažiausias leistinas pagrindo ploto taškas. Dėl zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš spausdintuvo gamintojo. Numatytoji nuostata yra (-99999, -99999), t. y. nėra jokių apribojimų, todėl galima zonduoti visą pagrindą." +msgstr "Šis nustatymas nurodo minimalų tašką leistinoje pagrindo niveliavimo (mesh) srityje. Dėl jutiklio (zondo) XY poslinkio purkštuko atžvilgiu, dauguma spausdintuvų fiziškai negali išmatuoti viso stalo paviršiaus. Kad jutiklis neišvažiuotų už stalo ribų, minimalūs ir maksimalūs taškai turi būti nustatyti tiksliai. „OrcaSlicer“ užtikrina, kad adaptyvaus niveliavimo ribos („adaptive_bed_mesh_min/max“) neviršytų šių reikšmių. Šiuos duomenis paprastai pateikia spausdintuvo gamintojas. Numatytasis nustatymas (-99999, -99999) reiškia, kad jokie limitai netaikomi ir jutikliui leidžiama judėti per visą plotą." msgid "Bed mesh max" -msgstr "Pagrindo figūros maks" +msgstr "Pagrindo nelygumų žemėlapio (Mesh) maks. taškas" 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 "Šia parinktimi nustatomas didžiausias leistinas pagrindo ploto taškas. Dėl zondo XY poslinkio dauguma spausdintuvų negali zonduoti viso pagrindo. Siekiant užtikrinti, kad zondo taškas neišeitų už pagrindo ploto ribų, reikia tinkamai nustatyti minimalų ir maksimalų pagrindo figūros taškus. OrcaSlicer užtikrina, kad adaptive_bed_mesh_min/adaptive_bed_mesh_max vertės neviršytų šių min. ir maks. taškų. Šią informaciją paprastai galima gauti iš spausdintuvo gamintojo. Numatytoji nuostata yra (99999, 99999), t. y. nėra jokių apribojimų, todėl galima zonduoti visą pagrindą." +msgstr "Šis nustatymas nurodo maksimalų tašką leistinoje pagrindo niveliavimo (mesh) srityje. Dėl jutiklio (zondo) XY poslinkio purkštuko atžvilgiu, dauguma spausdintuvų fiziškai negali išmatuoti viso stalo paviršiaus. Kad jutiklis neišvažiuotų už stalo ribų, minimalūs ir maksimalūs taškai turi būti nustatyti tiksliai. „OrcaSlicer“ užtikrina, kad adaptyvaus niveliavimo ribos („adaptive_bed_mesh_min/max“) neviršytų šių reikšmių. Šiuos duomenis paprastai pateikia spausdintuvo gamintojas. Numatytasis nustatymas (99999, 99999) reiškia, kad jokie limitai netaikomi ir jutikliui leidžiama judėti per visą plotą." msgid "Probe point distance" msgstr "Atstumas iki zondo taško" 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 "Šia parinktimi nustatomas pageidaujamas atstumas tarp zondo taškų (tinklelio dydis) X ir Y kryptimis; pagal numatytuosius nustatymus tiek X, tiek Y kryptimis nustatomas 50 mm atstumas." +msgstr "Nustato pageidaujamą atstumą tarp matavimo taškų (tinklelio tankį) X ir Y kryptimis. Numatytasis atstumas abiem kryptimis yra 50 mm." msgid "Mesh margin" -msgstr "Figūros riba" +msgstr "Niveliavimo zonos paraštė (Mesh margin)" msgid "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions." -msgstr "Šia parinktimi nustatomas papildomas atstumas, kuriuo XY kryptimis turėtų būti išplėsta adaptyviojo pagrindo figūros sritis." +msgstr "Šis nustatymas nurodo papildomą atstumą, kuriuo XY kryptimis išplečiama adaptyvaus pagrindo niveliavimo (mesh) sritis." msgid "Grab length" -msgstr "" +msgstr "Sugriebimo ilgis (Grab length)" msgid "Extruder Color" msgstr "Ekstruderio spalva" msgid "Only used as a visual help on UI." -msgstr "Naudojama tik kaip vaizdinė pagalba vartotojo sąsajai." +msgstr "Naudojama tik kaip vaizdinė pagalba naudotojo sąsajoje." msgid "Extruder offset" -msgstr "Ekstruderio poslinkis" +msgstr "Ekstruderio poslinkis (offset)" 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 "Medžiaga gali keisti tūrį, kai pereina iš lydyto į kristalinį būvį. Šis nustatymas proporcingai keičia visą šios gijos ekstruzijos srautą G kodu. Rekomenduojamas vertės diapazonas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba trūkumas, galite sureguliuoti šią vertę, kad gautumėte gražų lygų paviršių." +msgstr "Pereidama iš išsilydžiusios būsenos į kristalinę, medžiaga gali pakeisti savo tūrį. Šis nustatymas proporcingai koreguoja visą šio plastiko (gijos) srautą G-kode. Rekomenduojamas rėžis yra tarp 0,95 ir 1,05. Pastebėjus nedidelį plastiko perteklių ar trūkumą, šią reikšmę galima suderinti idealiai lygiam paviršiui gauti." 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 "" -"Medžiaga gali keisti tūrį, pereidama iš lydyto į kristalinį būvį. Šis nustatymas proporcingai keičia visą šios gijos ekstruzijos srautą G kodu. Rekomenduojamas vertės diapazonas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba trūkumas, galite sureguliuoti šią vertę, kad gautumėte gražų lygų paviršių.\n" +"Pereidama iš išsilydžiusios būsenos į kristalinę, medžiaga gali pakeisti savo tūrį. Šis nustatymas proporcingai koreguoja visą šio plastiko (gijos) srautą G-kode. Rekomenduojamas rėžis yra tarp 0,95 ir 1,05. Pastebėjus nedidelį plastiko perteklių ar trūkumą, šią reikšmę galima suderinti idealiai lygiam paviršiui gauti.\n" "\n" -"Galutinis objekto srauto santykis yra ši vertė, padauginta iš gijos srauto santykio." +"Galutinis objekto srauto koeficientas gaunamas šią reikšmę padauginus iš plastiko srauto koeficiento (filament flow ratio)." msgid "Enable pressure advance" -msgstr "Įjungti išankstinį slėgio didinimą" +msgstr "Įjungti slėgio kompensavimą (Pressure Advance)" msgid "Enable pressure advance, auto calibration result will be overwritten once enabled." -msgstr "Įjunkite išankstinį slėgį, įjungus automatinio kalibravimo rezultatą, jis bus perrašytas." +msgstr "Įjungia slėgio kompensavimą (Pressure Advance). Jį aktyvavus, automatinio kalibravimo rezultatai bus nepaisomi." msgid "Pressure advance (Klipper) AKA Linear advance factor (Marlin)." -msgstr "Išankstinis slėgis (Klipper) arba linijinis išankstinis veiksnys (Marlin)" +msgstr "Slėgio kompensavimas (Pressure Advance „Klipper“ mikroprogramoje) arba linijinis kompensavimas (Linear Advance „Marlin“ mikroprogramoje)." msgid "Enable adaptive pressure advance (beta)" -msgstr "Įjungti prisitaikantį išankstinį slėgį (beta)" +msgstr "Įjungti adaptyvų slėgio kompensavimą (beta)" #, no-c-format, no-boost-format msgid "" @@ -12374,14 +12449,14 @@ msgid "" "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 "" -"Pastebėta, kad didėjant spausdinimo greičiui (taigi ir tūriniam srautui per purkštuką) ir didėjant pagreičiui, efektyvioji IS vertė paprastai mažėja. Tai reiškia, kad viena IS reikšmė ne visada yra 100 % optimali visiems elementams ir paprastai naudojama kompromisinė reikšmė, kuri nesukelia per didelio išgaubimo elementams, kurių srauto greitis ir pagreičiai yra mažesni, ir kartu nesukelia spragų greitesniems elementams.\n" +"Pastebėta, kad didėjant spausdinimo greičiui (kartu ir tūriniam srautui per purkštuką) bei didėjant pagreičiui, efektyvioji PA (Pressure Advance) reikšmė dažniausiai mažėja. Tai reiškia, kad viena statinė PA reikšmė nėra 100 % optimali visiems elementams – dažniausiai tenka rinktis kompromisą, kuris nesukeltų kampų išsipūtimo važiuojant lėčiau, bet ir nepaliktų tuščių tarpų spausdinant greitai.\n" "\n" -"Šia funkcija siekiama išspręsti šį apribojimą modeliuojant spausdintuvo išspaudimo sistemos reakciją priklausomai nuo tūrinio srauto greičio ir pagreičio, kuriuo spausdinama. Viduje sukuriamas pritaikytas modelis, pagal kurį galima ekstrapoliuoti reikiamą slėgio padidėjimą bet kokiam tūrio srauto greičiui ir pagreičiui, kuris tada siunčiamas spausdintuvui, atsižvelgiant į esamas spausdinimo sąlygas.\n" +"Ši funkcija sprendžia minėtą problemą: ji modeliuoja spausdintuvo ekstruzijos sistemos elgseną pagal esamą tūrinį srautą bei pagreitį. Algoritmas sukuria matematinį modelį, leidžiantį ekstrapoliuoti tikslią reikalingą PA reikšmę bet kokiam greičiui ar pagreičiui, ir dinamiškai siunčia ją į spausdintuvą realiu laiku.\n" "\n" -"Kai ši funkcija įjungta, pirmiau nurodyta išankstinio slėgio vertė pakeičiama. Tačiau rekomenduojama nustatyti pagrįstą numatytąją pirmiau nurodytą vertę, kad ji veiktų kaip atsarginis variantas ir būtų naudojama keičiant įrankį.\n" +"Šią funkciją įjungus, viršuje įvesta statinė PA reikšmė bus nepaisoma. Vis dėlto, rekomenduojama ten palikti protingą numatytąją reikšmę, kuri pasitarnautų kaip atsarginė (fallback) keičiant narvelius / įrankius.\n" msgid "Adaptive pressure advance measurements (beta)" -msgstr "Adaptyvūs išankstinio slėgio matavimai (beta)" +msgstr "Adaptyvaus slėgio kompensavimo (PA) matavimai (beta)" #, no-c-format, no-boost-format msgid "" @@ -12396,49 +12471,49 @@ msgid "" "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 "" -"Pridėkite išankstinio slėgio (IS) verčių rinkinius, tūrinius srauto greičius ir pagreičius, kuriems esant jie buvo išmatuoti, atskirti kableliu. Vienoje eilutėje pateikite po vieną verčių rinkinį. Pavyzdžiui\n" +"Įveskite slėgio kompensavimo (PA) reikšmių rinkinius, nurodydami tūrinį srautą bei pagreitį, prie kurių jie buvo išmatuoti, atskirdami kableliais. Vienoje eilutėje – vienas trejetas. Pavyzdžiui:\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" "Kaip kalibruoti:\n" -"1. Atlikite slėgio avanso bandymą bent 3 greičiams pagal kiekvieną pagreičio reikšmę. Rekomenduojama testą atlikti bent išorinių perimetrų greičiui, vidinių perimetrų greičiui ir greičiausiam jūsų profilio funkcijos spausdinimo greičiui (paprastai tai būna retas arba vientisas užpildas). Tada paleiskite juos tokiems pat greičiams, kai spausdinama lėčiausiu ir sparčiausiu greičiu, ir ne didesniu nei rekomenduojamas didžiausias pagreitis, nurodytas „Klipper“ įvesties formuotuve.\n" -"2. Atkreipkite dėmesį į optimalią IS vertę kiekvienam tūrinio srauto greičiui ir pagreičiui. Srauto skaičių galite rasti pasirinkę srautą iš spalvų schemos išskleidžiamojo sąrašo ir perkeldami horizontalųjį slankiklį virš IS modelio linijų. Skaičius turėtų būti matomas puslapio apačioje. Ideali IS vertė turėtų mažėti, kuo didesnis tūrinis srautas. Jei taip nėra, įsitikinkite, kad jūsų ekstruderis veikia tinkamai. kuo lėčiau ir su mažesniu pagreičiu spausdinate, tuo didesnis priimtinų IS verčių diapazonas. Jei jokio skirtumo nematyti, naudokite IS vertę, gautą atliekant greitesnį bandymą.\n" -"3. Čia esančiame teksto laukelyje įveskite IS verčių, srauto ir pagreičio reikšmes ir išsaugokite gijos profilį." +"1. Paleiskite „Pressure Advance“ testą bent 3 skirtingiems greičiams su kiekviena pasirinkta pagreičio reikšme. Rekomenduojama testuoti greičius, atitinkančius išorines sieneles, vidines sieneles ir greičiausiai spausdinamus elementus (dažniausiai tai retasis arba tvirtasis užpildas). Atlikite testus su mažiausiu bei didžiausiu profilio pagreičiu (nepaviršijant maksimalaus saugaus pagreičio, kurį nurodo jūsų „Klipper Input Shaper“).\n" +"2. Užfiksuokite optimalią PA reikšmę kiekvienam tūriniam srautui ir pagreičiui. Tikslų srauto skaičių (Flow) sužinosite peržiūros lange spalvų schemoje pasirinkę „Flow“ ir vedžiodami horizontalųjį slankiklį virš atspausdinto PA šablono linijų. Skaičius rodomas puslapio apačioje. Idealiu atveju PA reikšmė turėtų mažėti didėjant tūriniam srautui. Jei taip nėra, patikrinkite, ar ekstruderis veikia sklandžiai. Spausdinant lėčiau ir su mažesniu pagreičiu, tinkamų PA reikšmių rėžis yra platesnis – jei vizualiai skirtumo nematyti, rinkitės greitesnio testo rezultatą.\n" +"3. Įveskite gautus PA, srauto (Flow) ir pagreičio trejetus į šį teksto lauką ir išsaugokite plastiko profilį." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Įjungti prisitaikantį išankstinį slėgį iškyšoms (beta versija)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Tiltų išankstinis slėgis" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Išankstinio slėgio vertė tiltams. Nustatykite 0, kad išjungtumėte.\n" -"\n" -" Mažesnė IS vertė spausdinant tiltus padeda sumažinti nedidelį nepakankamą išspaudimą iškart po tiltų. Taip atsitinka dėl slėgio kritimo purkštuke, kai spausdinama ore, o mažesnė IS vertė padeda tai neutralizuoti." 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 "Numatytasis linijos plotis, jei kitų linijų plotis lygus 0. Jei išreiškiamas %, apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Numatytasis linijos plotis, jei kitų linijų pločiai nustatyti į 0. Jei nurodoma procentais (%), reikšmė apskaičiuojama pagal purkštuko skersmenį." msgid "Keep fan always on" msgstr "Visada laikyti ventiliatorių įjungtą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." -msgstr "Jei įjungsite šį nustatymą, aušinimo ventiliatorius niekada nebus sustabdytas ir veiks bent minimaliu greičiu, kad sumažėtų įjungimo ir išjungimo dažnis." +msgstr "" msgid "Don't slow down outer walls" -msgstr "Nelėtinti išorinių sienų" +msgstr "Nelėtinti išorinių sienelių" 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" @@ -12446,17 +12521,16 @@ msgid "" "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 "" -"Jei šis nustatymas įjungtas, bus užtikrinta, kad išoriniai perimetrai nebūtų sulėtinti, kad būtų pasiektas minimalus sluoksnio laikas. Tai ypač naudinga toliau nurodytais scenarijais:\n" -"1. Norint išvengti blizgesio pokyčių spausdinant blizgius siūlus\n" -"2. Norint išvengti išorinių sienelių greičio pokyčių, dėl kurių gali atsirasti nedidelių sienelių artefaktų, kurie atrodo kaip z juostos.\n" -"3. Kad būtų išvengta spausdinimo greičio, dėl kurio ant išorinių sienelių atsiranda VFA (smulkūs artefaktai)" +"Jei įjungta, šis nustatymas užtikrins, kad išorinių sienelių spausdinimas nebūtų lėtinamas siekiant išlaikyti minimalų sluoksnio aušinimo laiką. Tai ypač naudinga šiais atvejais:\n" +"1. Norint išvengti blizgumo netolygumų spausdinant blizgiais (glossy) plastikais.\n" +"2. Norint išvengti išorinių sienelių spausdinimo greičio šuolių, kurie sukelia smulkius paviršiaus defektus, panašius į Z ašies netolygumus (Z banding).\n" +"3. Norint išvengti tokių greičių, kurie ant išorinių sienelių sukelia VFA (smulkius periodinius virpesių artefaktus)." msgid "Layer time" msgstr "Sluoksnio laikas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "Dalių aušinimo ventiliatorius bus įjungtas sluoksniams, kurių numatomas laikas yra trumpesnis už šią vertę. Ventiliatoriaus greitis nustatomas tarp mažiausio ir didžiausio ventiliatoriaus greičio pagal sluoksnio spausdinimo laiką." +msgstr "" msgid "s" msgstr "s" @@ -12469,7 +12543,7 @@ msgid "" "Right click to reset value to system default." msgstr "" "Numatytoji gijos spalva.\n" -"Dešiniuoju pelės mygtuku spustelėkite, kad nustatytumėte sistemos numatytąją vertę." +"Spustelėkite dešiniuoju pelės mygtuku, kad atkurtumėte sistemos numatytąją reikšmę." msgid "Filament notes" msgstr "Gijos pastabos" @@ -12478,63 +12552,49 @@ msgid "You can put your notes regarding the filament here." msgstr "Čia galite įdėti pastabas apie giją." msgid "Required nozzle HRC" -msgstr "Būtinas antgalis HRC" +msgstr "Reikalaujamas purkštuko HRC" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." -msgstr "Mažiausia antgalio HRC, kurios reikia norint spausdinti gijomis. Nulis reiškia, kad antgalio HRC netikrinama." +msgstr "" msgid "Filament map to extruder" -msgstr "" +msgstr "Gijos susiejimas su ekstruderiu" msgid "Filament map to extruder." -msgstr "" +msgstr "Gijos susiejimas su ekstruderiu." msgid "Auto For Flush" -msgstr "" +msgstr "Automatiškai pravalymui" 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 "" +msgstr "Automatiškai pritaikymui" msgid "Flush temperature" -msgstr "" +msgstr "Pravalymo temperatūra" msgid "Temperature when flushing filament. 0 indicates the upper bound of the recommended nozzle temperature range." -msgstr "" +msgstr "Temperatūra pravalant giją. 0 nurodo viršutinę rekomenduojamos purkštuko temperatūros diapazono ribą." msgid "Flush volumetric speed" -msgstr "" +msgstr "Pravalymo tūrinis greitis" msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." -msgstr "" +msgstr "Tūrinis greitis pravalant giją. 0 nurodo maksimalų tūrinį greitį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." -msgstr "Gijos tūris, kurį galima išlydyti ir išspausti per sekundę. Jei nustatytas per didelis ir nepagrįstas greitis, spausdinimo greitį riboja maksimalus tūrinis greitis. Ši reikšmė negali būti lygi nuliui." +msgstr "" msgid "Filament load time" msgstr "Gijos įkrovimo laikas" 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 "Naujos gijos įkrovimo laikas, kai perjungiama gija. Tai paprastai taikoma vieno ekstruderio daugialypės terpės mašinoms. Įrankių keitimo arba daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims." +msgstr "Naujos gijos įkrovimo laikas, kai perjungiama gija. Tai paprastai taikoma vieno ekstruderio kelių medžiagų įrenginiams. Įrankių keitikliams ar kelių įrankių įrenginiams šis laikas paprastai yra 0. Naudojama tik statistikai." msgid "Filament unload time" msgstr "Gijos iškrovimo laikas" 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 "Laikas senos gijos iškrovimui, kai keičiama gija. Tai paprastai taikoma vieno ekstruderio kelių medžiagų mašinoms. Įrankių keitimo arba daugiafunkcinėms mašinoms paprastai taikomas 0. Tik statistiniams duomenims." +msgstr "Senos gijos iškrovimo laikas, kai perjungiama gija. Tai paprastai taikoma vieno ekstruderio kelių medžiagų įrenginiams. Įrankių keitikliams ar kelių įrankių įrenginiams šis laikas paprastai yra 0. Naudojama tik statistikai." msgid "Tool change time" msgstr "Įrankių keitimo laikas" @@ -12543,20 +12603,19 @@ msgid "Time taken to switch tools. It's usually applicable for tool changers or msgstr "Įrankių keitimo laikas. Jis paprastai taikomas įrankių keitimo įrenginiams arba daugiafunkcinėms staklėms. Vieno ekstruderio kelių medžiagų mašinoms jis paprastai lygus 0. Tik statistiniams duomenims." msgid "Bed temperature type" -msgstr "" +msgstr "Pagrindo temperatūros tipas" 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 "" +msgstr "Ši parinktis nustato, kaip pjaustymo metu nustatoma pagrindo temperatūra: pagal pirmosios gijos temperatūrą arba pagal aukščiausią spausdinamų gijų temperatūrą." msgid "By First filament" -msgstr "" +msgstr "Pagal pirmąją giją" msgid "By Highest Temp" -msgstr "" +msgstr "Pagal aukščiausią temperatūrą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." -msgstr "G-kodo ekstruzijos apskaičiavimui naudojamas gijos skersmuo, todėl jis yra svarbus ir turi būti tikslus." +msgstr "" msgid "Pellet flow coefficient" msgstr "Granulių srauto koeficientas" @@ -12570,21 +12629,24 @@ msgid "" msgstr "" "Granulių srauto koeficientas nustatomas empiriškai ir leidžia apskaičiuoti granulių spausdintuvų tūrį.\n" "\n" -"Viduje jis konvertuojamas į filament_diameter. Visi kiti tūrio skaičiavimai išlieka tokie patys.\n" +"Programos viduje jis konvertuojamas į filament_diameter. Visi kiti tūrio skaičiavimai išlieka tokie patys.\n" "\n" -"filament_diameter = sqrt( (4 * granulių srauto koeficientas) / PI )" +"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )" msgid "Adaptive volumetric speed" -msgstr "" +msgstr "Prisitaikantis tūrinis greitis" 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 "" +"Kai įjungta, ekstruzijos srautas ribojamas pasirinkus mažesnę reikšmę iš pritaikytosios (apskaičiuotos pagal linijos plotį ir sluoksnio aukštį) bei vartotojo nurodyto maksimalaus srauto. Kai išjungta, taikomas tik vartotojo nurodytas maksimalus srautas.\n" +"\n" +"Pastaba: eksperimentinė ir nebaigta funkcija, perkelta iš BBS. Veikia tik su tam tikrais profiliais, kurie jau turi išsaugotą šį kintamąjį." msgid "Max volumetric speed multinomial coefficients" -msgstr "" +msgstr "Maksimalaus tūrinio greičio daugianario koeficientai" msgid "Shrinkage (XY)" msgstr "Susitraukimas (XY)" @@ -12594,7 +12656,7 @@ 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 "" -"Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94%, jei matuojate 94 mm, o ne 100 mm). Dalis bus keičiama XY masteliu, kad būtų kompensuota. Atsižvelgiama tik į perimetrui naudojamą giją.\n" +"Įveskite susitraukimo procentą, kurį gija pasieks po aušinimo (pvz., 94%, jei vietoj 100 mm išmatuojate 94 mm). Detalės mastelis bus pakeistas XY ašyse, kad tai kompensuotų. Spausdinant iš kelių medžiagų, įsitikinkite, kad visų naudojamų gijų susitraukimas sutampa.\n" "Būtinai palikite pakankamai vietos tarp objektų, nes ši kompensacija atliekama po patikrinimų." msgid "Shrinkage (Z)" @@ -12602,44 +12664,43 @@ msgstr "Susitraukimas (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 "Įveskite susitraukimo procentą, kurį gija gaus po aušinimo (94 %, jei matuojate 94 mm, o ne 100 mm). Dalis bus keičiama Z masteliu, kad tai būtų kompensuota." +msgstr "Įveskite susitraukimo procentą, kurį gija pasieks po aušinimo (pvz., 94%, jei vietoj 100 mm išmatuojate 94 mm). Detalės mastelis bus pakeistas Z ašyje, kad tai kompensuotų." msgid "Adhesiveness Category" -msgstr "" +msgstr "Sukibimo kategorija" msgid "Filament category." -msgstr "" +msgstr "Gijos kategorija." msgid "Loading speed" -msgstr "Pakrovimo greitis" +msgstr "Įkrovimo greitis" msgid "Speed used for loading the filament on the wipe tower." -msgstr "Greitis, naudojamas kaitinamojo siūlelio uždėjimui ant šluostymo bokštelio." +msgstr "Greitis, naudojamas gijos įkrovimui ant valymo bokštelio." msgid "Loading speed at the start" -msgstr "Pakrovimo greitis pradžioje" +msgstr "Įkrovimo greitis pradžioje" msgid "Speed used at the very beginning of loading phase." -msgstr "Greitis, naudojamas pačioje pakrovimo fazės pradžioje." +msgstr "Greitis, naudojamas pačioje įkrovimo fazės pradžioje." msgid "Unloading speed" msgstr "Iškrovimo greitis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." -msgstr "Greitis, naudojamas gijos išleidimui ant valymo bokštelio (neturi įtakos pradinei išleidimo daliai iškart po lyginimo)." +msgstr "Greitis, naudojamas gijos iškrovimui ant valymo bokštelio (neturi įtakos pradinei iškrovimo daliai iškart po gijos suformavimo/lyginimo)." msgid "Unloading speed at the start" msgstr "Iškrovimo greitis pradžioje" msgid "Speed used for unloading the tip of the filament immediately after ramming." -msgstr "Greitis, naudojamas gijos galiuko iškrovimui iš karto po ramingo." +msgstr "Greitis, naudojamas gijos galiuko iškrovimui iškart po suformavimo (ramming)." msgid "Delay after unloading" -msgstr "Vėlavimas po išleidimo" +msgstr "Delsa po iškrovimo" 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 "Laukimo laikas po to, kai gija išleista. Gali padėti naudojant lanksčias medžiagas, kurioms gali prireikti daugiau laiko susitraukti iki pradinių matmenų." +msgstr "Laukimo laikas po to, kai gija iškraunama. Tai gali padėti užtikrinti patikimą įrankių keitimą naudojant lanksčias medžiagas, kurioms reikia daugiau laiko susitraukti iki pradinių matmenų." msgid "Number of cooling moves" msgstr "Aušinimo judesių skaičius" @@ -12648,7 +12709,7 @@ msgid "Filament is cooled by being moved back and forth in the cooling tubes. Sp msgstr "Gija aušinama judant pirmyn ir atgal aušinimo vamzdeliuose. Nurodykite pageidaujamą šių judesių skaičių." msgid "Stamping loading speed" -msgstr "Antspaudų užkrovimo greitis" +msgstr "Štampavimo (stamping) įkrovimo greitis" msgid "Speed used for stamping." msgstr "Greitis, naudojamas štampavimui." @@ -12657,7 +12718,7 @@ msgid "Stamping distance measured from the center of the cooling tube" msgstr "Štampavimo atstumas, matuojamas nuo aušinimo vamzdelio centro" 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 "Jei nustatyta nenulinė reikšmė, gija tarp atskirų aušinimo judesių judinama link purkštuko („štampavimas“). Šia parinktimi nustatoma, kiek laiko turi trukti šis judėjimas, kol gija vėl įtraukiama." +msgstr "Jei nustatyta nenulinė reikšmė, gija tarp atskirų aušinimo judesių pastumiama link purkštuko („štampavimas“). Ši parinktis konfigūruoja, kokio ilgio turi būti šis judesys prieš vėl įtraukiant giją." msgid "Speed of the first cooling move" msgstr "Pirmojo aušinimo judesio greitis" @@ -12669,46 +12730,46 @@ msgid "Minimal purge on wipe tower" msgstr "Minimalus valymas ant šluostymo bokštelio" 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 "Pakeitus įrankį, gali būti nežinoma tiksli naujai įdėtos gijos padėtis purkštuke, o gijos slėgis greičiausiai dar nėra stabilus. Prieš spausdinimo galvutei prapučiant užpildą arba apsauginį objektą, \"Orca Slicer\" visuomet paruoš tokį medžiagos kiekį į valymo bokštą, kad būtų patikimai gaminami vienas po kito einantys užpildų arba apsauginių objektų išspaudimai." +msgstr "Pakeitus įrankį, tiksli naujai įkrautos gijos padėtis purkštuke gali būti nežinoma, o slėgis gijoje greičiausiai dar nėra stabilus. Prieš nukreipiant spausdinimo galvutės prapūtimą į užpildą arba pagalbinį objektą, „OrcaSlicer“ visada paruoš šį medžiagos kiekį valymo bokštelyje, kad būtų patikimai suformuoti tolesni užpildo ar pagalbinio objekto sluoksniai." msgid "Wipe tower cooling" -msgstr "" +msgstr "Valymo bokštelio aušinimas" msgid "Temperature drop before entering filament tower" -msgstr "" +msgstr "Temperatūros sumažinimas prieš įeinant į gijos bokštelį" msgid "Interface layer pre-extrusion distance" -msgstr "" +msgstr "Skiriamojo sluoksnio pradinio išspaudimo atstumas" msgid "Pre-extrusion distance for prime tower interface layer (where different materials meet)." -msgstr "" +msgstr "Pradinio išspaudimo atstumas paruošimo bokštelio skiriamajam sluoksniui (kur susitinka skirtingos medžiagos)." msgid "Interface layer pre-extrusion length" -msgstr "" +msgstr "Skiriamojo sluoksnio pradinio išspaudimo ilgis" msgid "Pre-extrusion length for prime tower interface layer (where different materials meet)." -msgstr "" +msgstr "Pradinio išspaudimo ilgis paruošimo bokštelio skiriamajam sluoksniui (kur susitinka skirtingos medžiagos)." msgid "Tower ironing area" -msgstr "" +msgstr "Bokštelio lyginimo plotas" msgid "Ironing area for prime tower interface layer (where different materials meet)." -msgstr "" +msgstr "Lyginimo plotas paruošimo bokštelio skiriamajam sluoksniui (kur susitinka skirtingos medžiagos)." msgid "mm²" msgstr "mm²" msgid "Interface layer purge length" -msgstr "" +msgstr "Skiriamojo sluoksnio pravalymo ilgis" msgid "Purge length for prime tower interface layer (where different materials meet)." -msgstr "" +msgstr "Pravalymo ilgis paruošimo bokštelio skiriamajam sluoksniui (kur susitinka skirtingos medžiagos)." msgid "Interface layer print temperature" -msgstr "" +msgstr "Skiriamojo sluoksnio spausdinimo temperatūra" msgid "Print temperature for prime tower interface layer (where different materials meet). If set to -1, use max recommended nozzle temperature." -msgstr "" +msgstr "Spausdinimo temperatūra paruošimo bokštelio skiriamajam sluoksniui (kur susitinka skirtingos medžiagos). Jei nustatyta -1, naudojama maksimali rekomenduojama purkštuko temperatūra." msgid "Speed of the last cooling move" msgstr "Paskutinio aušinimo judesio greitis" @@ -12717,146 +12778,158 @@ msgid "Cooling moves are gradually accelerating towards this speed." msgstr "Aušinimo judesiai palaipsniui greitėja link šio greičio." msgid "Ramming parameters" -msgstr "Įspaudimo parametrai" +msgstr "Gijos suformavimo (ramming) parametrai" msgid "This string is edited by RammingDialog and contains ramming specific parameters." -msgstr "Šią eilutę redaguoja RammingDialog ir joje yra specifiniai įspaudimo parametrai." +msgstr "Šią eilutę redaguoja RammingDialog lange ir joje yra specifiniai gijos suformavimo (ramming) parametrai." msgid "Enable ramming for multi-tool setups" -msgstr "Įgalinti daugiafunkcinių įrankių nustatymų tankinimą" +msgstr "Įjungti gijos suformavimą (ramming) kelių įrankių konfigūracijoms" 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 "Atlikti tankinimą, kai naudojamas daugiafunkcinis spausdintuvas (t. y. kai spausdintuvo nustatymuose nepažymėta parinktis „Vienas išspaudiklis, įvairios medžiagos“). Kai ši parinktis pažymėta, nedidelis gijos kiekis greitai išspaudžiamas ant valymo bokšto prieš pat įrankio keitimą. Ši parinktis naudojama tik tada, kai įjungtas valymo bokštas." +msgstr "Atlikti gijos suformavimą (ramming), kai naudojamas kelių įrankių spausdintuvas (t. y., kai spausdintuvo nustatymuose nepažymėta parinktis „Vienas ekstruderis, kelios medžiagos“). Kai pažymėta, nedidelis gijos kiekis yra greitai išspaudžiamas ant valymo bokštelio prieš pat įrankio keitimą. Ši parinktis naudojama tik tada, kai įjungtas valymo bokštelis." msgid "Multi-tool ramming volume" -msgstr "Daugiafunkcinių įrankių tankinimo tūris" +msgstr "Kelių įrankių gijos suformavimo (ramming) tūris" msgid "The volume to be rammed before the tool change." -msgstr "Tūris, kuris turi būti įspaustas prieš keičiant įrankį." +msgstr "Tūris, kuris turi būti suformuotas (rammed) prieš keičiant įrankį." msgid "Multi-tool ramming flow" -msgstr "Daugiafunkcinių įrankių tankinimo srautas" +msgstr "Kelių įrankių gijos suformavimo (ramming) srautas" msgid "Flow used for ramming the filament before the tool change." -msgstr "Srautas, naudojamas gijai įspausti prieš keičiant įrankį." +msgstr "Srautas, naudojamas gijos suformavimui (ramming) prieš keičiant įrankį." msgid "Density" msgstr "Tankis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament density, for statistical purposes only." -msgstr "Gijų tankis, tik statistikai." +msgstr "" msgid "g/cm³" msgstr "g/cm³" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament material type" -msgstr "Gijos medžiagos tipas." +msgstr "" msgid "Soluble material" -msgstr "Tirpi medžiaga" +msgstr "Tirpi gija" msgid "Soluble material is commonly used to print supports and support interfaces." -msgstr "Tirpi medžiaga paprastai naudojama spausdinant atramą ir atramos sąsają." +msgstr "Tirpi gija paprastai naudojama spausdinant atramas ir atramų skiriamuosius sluoksnius." msgid "Filament ramming length" -msgstr "" +msgstr "Gijos suformavimo (ramming) ilgis" 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 "" +msgstr "Keičiant ekstruderį, rekomenduojama išspausti tam tikrą gijos ilgį iš pradinio ekstruderio. Tai padeda sumažinti medžiagos varvėjimą iš purkštuko." msgid "Support material" -msgstr "Atramų medžiaga" +msgstr "Atramų gija" msgid "Support material is commonly used to print supports and support interfaces." -msgstr "Pagalbinė medžiaga paprastai naudojama pagalbinėms ir atraminėms sąsajoms spausdinti." +msgstr "Atramų gija paprastai naudojama atramoms ir atramų skiriamiesiems sluoksniams spausdinti." msgid "Filament printable" -msgstr "" +msgstr "Gija tinkama spausdinti" msgid "The filament is printable in extruder." -msgstr "" +msgstr "Gija yra tinkama spausdinti pasirinktame ekstruderyje." msgid "Softening temperature" msgstr "Minkštėjimo temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 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 clogs." -msgstr "Esant tokiai temperatūrai medžiaga suminkštėja, todėl, kai pagrindo temperatūra yra lygi arba didesnė už ją, labai rekomenduojama atidaryti priekines dureles ir (arba) nuimti viršutinį stiklą, kad būtų išvengta užsikimšimo." +msgstr "" msgid "Price" msgstr "Kaina" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament price, for statistical purposes only." -msgstr "Gijos kaina, tik statistikai." +msgstr "" msgid "money/kg" msgstr "pinigų/kg" msgid "Vendor" -msgstr "Pardavėjas" +msgstr "Prekės ženklas" msgid "Vendor of filament. For show only." -msgstr "Gijos pardavėjas. Tik parodymui." +msgstr "Gijos prekės ženklas. Tik parodymui." msgid "(Undefined)" msgstr "(Nenurodyta)" msgid "Sparse infill direction" -msgstr "Reto užpildymo kryptis" +msgstr "Reto užpildo kryptis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." -msgstr "Reto užpildymo rašto kampas, kuriuo nustatoma linijų pradžios arba pagrindinė kryptis." +msgstr "" msgid "Solid infill direction" msgstr "Vientiso užpildo kryptis" msgid "Angle for solid infill pattern, which controls the start or main direction of line." -msgstr "Vientiso užpildo rašto kampas, kuriuo nustatoma linijos pradžios arba pagrindinė kryptis." +msgstr "Vientiso užpildo rašto kampas, kuris valdo linijos pradžią arba pagrindinę kryptį." + +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" msgid "Sparse infill density" -msgstr "Reto užpildymo tankis" +msgstr "Reto užpildo tankis" #, 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 "Vidinio reto užpildymo tankis, 100% paverčia visą retą užpildymą vientisu užpildymu, tuomet bus naudojamas vidinis vientiso užpildymo raštas." +msgstr "Vidinio reto užpildo tankis. 100% paverčia visą retą užpildą vientisu užpildu ir tuomet bus naudojamas vidinio vientiso užpildo raštas." msgid "Align infill direction to model" -msgstr "Suderinti užpildymo kryptį su modeliu" +msgstr "Suderinti užpildo kryptį su modeliu" 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 "" +"Sulygiuoja užpildo, tiltelių, lyginimo ir paviršiaus užpildymo kryptis pagal modelio orientaciją ant pagrindo.\n" +"Kai įjungta, kryptys sukasi kartu su modeliu, kad būtų išlaikytos optimalios tvirtumo charakteristikos." msgid "Insert solid layers" msgstr "Įterpti vientisus sluoksnius" 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 "Įterpkite vientisą užpildą tam tikruose sluoksniuose. Naudokite N, kad įterptumėte kas N-tą sluoksnį, N#K, kad įterptumėte K iš eilės einančius vientisus sluoksnius kas N sluoksnius (K yra neprivalomas, pvz., „5#“ yra lygus „5#1“), arba kableliais atskirtą sąrašą (pvz., 1,7,9), kad įterptumėte aiškiai nurodytuose sluoksniuose. Sluoksniai yra numeruojami nuo 1." +msgstr "Įterpti vientisą užpildą tam tikruose sluoksniuose. Naudokite N, kad įterptumėte kas N-tą sluoksnį, N#K, kad įterptumėte K iš eilės einančių vientisų sluoksnių kas N sluoksnių (K yra neprivalomas, pvz., „5#“ atitinka „5#1“), arba kableliais atskirtą sąrašą (pvz., 1,7,9), kad įterptumėte konkrečiuose sluoksniuose. Sluoksniai skaičiuojami nuo 1." msgid "Fill Multiline" msgstr "Užpildyti kelias eilutes" msgid "Using multiple lines for the infill pattern, if supported by infill pattern." -msgstr "Naudoti kelias linijas užpildymo šablonui, jei tai palaiko užpildymo šablonas." +msgstr "Kelių linijų naudojimas užpildo raštui, jei tai palaiko pats užpildo raštas." msgid "Z-buckling bias optimization (experimental)" -msgstr "" +msgstr "Z ašies išklumpavimo (buckling) optimizavimas (eksperimentinis)" -#, c-format, boost-format +#, no-c-format, no-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 "" +msgstr "Sutankina giroido bangą išilgai Z (vertikalios) ašies esant mažam užpildo tankiui, kad sutrumpėtų efektyvusis vertikalios kolonėlės ilgis ir pagerėtų atsparumas gniuždymui bei išklumpavimui (buckling) išilgai Z ašies. Gijos sąnaudos išlieka tokios pačios. Neturi įtakos esant ~30% ar didesniam reto užpildo tankiui. Taikoma tik tada, kai reto užpildo raštas nustatytas kaip Giroidas." msgid "Sparse infill pattern" -msgstr "Reto užpildymo raštas" +msgstr "Reto užpildo raštas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for internal sparse infill." -msgstr "Vidinio reto užpildymo linijomis modelis." +msgstr "" msgid "Zig Zag" msgstr "Zigzagas" @@ -12886,10 +12959,10 @@ msgid "Quarter Cubic" msgstr "Ketvirtis kubo" msgid "Support Cubic" -msgstr "Atrama kubinė" +msgstr "Atraminis kubinis (Support Cubic)" msgid "Lightning" -msgstr "Apšvietimas" +msgstr "Žaibas (Lightning)" msgid "Honeycomb" msgstr "Korys" @@ -12915,195 +12988,103 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroidas" -msgid "Lateral lattice angle 1" -msgstr "Rašto kampas 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Pirmojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." - -msgid "Lateral lattice angle 2" -msgstr "Rašto kampas 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Antrojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." - -msgid "Infill overhang angle" -msgstr "Užpildymo iškyšos kampas" - -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" +msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "" -msgid "Maximum overhang angle for Lightning infill support propagation." +msgid "Acceleration of outer wall: using a lower value can improve quality." 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" - -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 "" -"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio už infill_anchor_max, nerandama, užpildo linija sujungiama su perimetro segmentu tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas šiuo parametru, bet ne ilgesnis už anchor_length_max.\n" -"Nustatykite šį parametrą lygų nuliui, jei norite išjungti perimetro, sujungto su viena užpildo linija, įtvirtinimą." - -msgid "0 (no open anchors)" -msgstr "0 (nėra atvirų tvirtinimų)" - -msgid "1000 (unlimited)" -msgstr "1000 (neribota)" - -msgid "Maximum length of the infill anchor" -msgstr "Maksimalus užpildymo tvirtinimų ilgis" - -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 "" -"Sujunkite užpildymo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 15 %), ji apskaičiuojama per užpildymo ekstruzijos plotį. Programa \"Orca Slicer\" bando sujungti dvi artimas užpildymo linijas su trumpu perimetro segmentu. Jei tokio trumpesnio už šį parametrą perimetro segmento nerandama, užpildo linija prijungiama prie perimetro segmento tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas iki infill_anchor, bet ne ilgesnis už šį parametrą.\n" -"Jei nustatyta 0, bus naudojamas senasis užpildymo sujungimo algoritmas, jis turėtų sukurti tokį patį rezultatą kaip ir naudojant 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (paprastas prijungimas)" - msgid "Acceleration of inner walls." -msgstr "Vidinių sienų pagreitis." - -msgid "Acceleration of travel moves." -msgstr "Judėjimo judesių pagreitis." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." -msgstr "Viršutinio paviršiaus užpildymo pagreitis. Naudojant mažesnę vertę gali pagerėti viršutinio paviršiaus kokybė." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Acceleration of outer wall: using a lower value can improve quality." -msgstr "Išorinės sienos pagreitis: naudojant mažesnę vertę galima pagerinti kokybę." - -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 "Tiltų pagreitis. Jei reikšmė išreikšta procentais (pvz., 50 %), ji bus apskaičiuota pagal išorinės sienos pagreitį." - -msgid "mm/s² or %" -msgstr "mm/s² arba %" +msgstr "Vidinių sienelių pagreitis." 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 "Retų užpildų pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji bus apskaičiuota pagal numatytąjį pagreitį." +msgstr "Reto užpildo pagreitis. Jei vertė išreikšta procentais (pvz., 100%), ji bus apskaičiuojama pagal numatytąjį pagreitį." 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 "Vidinio vientiso užpildo pagreitis. Jei reikšmė išreikšta procentais (pvz., 100 %), ji bus apskaičiuota pagal numatytąjį pagreitį." +msgstr "Vidinio vientiso užpildo pagreitis. Jei vertė išreikšta procentais (pvz., 100%), ji bus apskaičiuojama pagal numatytąjį pagreitį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." -msgstr "Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį galima pagerinti sukibimą su pagrindu." - -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." msgstr "" msgid "Enable accel_to_decel" -msgstr "Įjungti accel_to_decel" +msgstr "Įjungti greitėjimą iki lėtėjimo (accel_to_decel)" msgid "Klipper's max_accel_to_decel will be adjusted automatically." -msgstr "\"Klipper\" max_accel_to_decel bus nustatytas automatiškai." +msgstr "„Klipper“ programinės įrangos max_accel_to_decel bus pritaikytas automatiškai." 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 "\"Klipper\" max_accel_to_decel bus pakoreguotas pagal šį pagreičio %%." +msgstr "„Klipper“ programinės įrangos max_accel_to_decel bus pakoreguotas iki šios pagreičio procentinės dalies (%%)." msgid "Default jerk." msgstr "Numatytasis trūkčiojimas." msgid "Marlin Firmware Junction Deviation (replaces the traditional XY Jerk setting)." -msgstr "Marlin Firmware jungties nuokrypis (pakeičia tradicinį XY trūkčiojimo nustatymą)." +msgstr "„Marlin“ programinės įrangos jungties nuokrypis (pakeičia tradicinį XY trūkčiojimo (Jerk) nustatymą)." msgid "Jerk of outer walls." -msgstr "Išorinių sienų trūkčiojimas." +msgstr "Išorinių sienelių trūkčiojimas (Jerk)." msgid "Jerk of inner walls." -msgstr "Vidinių sienų trūkčiojimas." +msgstr "Vidinių sienelių trūkčiojimas (Jerk)." msgid "Jerk for top surface." -msgstr "Viršutinio paviršiaus trūkčiojimas." +msgstr "Viršutinio paviršiaus trūkčiojimas (Jerk)." msgid "Jerk for infill." -msgstr "Užpildymo trūkčiojimas." +msgstr "Užpildo trūkčiojimas (Jerk)." msgid "Jerk for the first layer." -msgstr "Pradinio sluoksnio trūkčiojimas." +msgstr "Pirmojo sluoksnio trūkčiojimas (Jerk)." msgid "Jerk for travel." -msgstr "Judėjimo trūkčiojimas." +msgstr "Tuščiosios eigos (travel) trūkčiojimas (Jerk)." msgid "" "Travel jerk of first layer.\n" "The percentage value is relative to Travel Jerk." msgstr "" +"Pirmojo sluoksnio tuščiosios eigos (travel) trūkčiojimas.\n" +"Procentinė vertė yra santykinė su tuščiosios eigos trūkčiojimu (Travel Jerk)." msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Pradinio sluoksnio linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Pirmojo sluoksnio linijos plotis. Jei išreikštas procentais (%), jis apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer height" -msgstr "Pradinio sluoksnio aukštis" +msgstr "Pirmojo sluoksnio aukštis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height of the first layer. Making the first layer height thicker can improve build plate adhesion." -msgstr "Pradinio sluoksnio aukštis. Šiek tiek padidinus pradinio sluoksnio aukštį galima pagerinti pagrindo plokštės sukibimą." +msgstr "Pirmojo sluoksnio aukštis. Padarius pirmąjį sluoksnį storesnį, galima pagerinti sukibimą su pagrindu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for the first layer except for solid infill sections." -msgstr "Greitis taikomas pirmajam sluoksniui, išskyrus vientiso užpildo ruožus." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer infill" -msgstr "Pradinio sluoksnio užpildymas" +msgstr "Pirmojo sluoksnio užpildas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid infill parts of the first layer." -msgstr "Pirmojo sluoksnio vientiso užpildo dalių greitis." +msgstr "" msgid "First layer travel speed" -msgstr "Pradinio sluoksnio judėjimo greitis" +msgstr "Pirmojo sluoksnio tuščiosios eigos (travel) greitis" msgid "Travel speed of the first layer." -msgstr "Pradinio sluoksnio judėjimo greitis." +msgstr "Pirmojo sluoksnio tuščiosios eigos (travel) greitis." msgid "Number of slow layers" -msgstr "" +msgstr "Lėtųjų sluoksnių skaičius" 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 "Keli pirmieji sluoksniai spausdinami lėčiau nei įprastai. Greitis palaipsniui linijiniu būdu didinamas per nurodytą sluoksnių skaičių." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer nozzle temperature" -msgstr "Pradinė sluoksnio purkštuko temperatūra" +msgstr "Pirmojo sluoksnio purkštuko temperatūra" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature for printing the first layer with this filament" -msgstr "Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija." +msgstr "" msgid "Full fan speed at layer" msgstr "Visas ventiliatoriaus greitis sluoksnyje" @@ -13114,29 +13095,40 @@ msgstr "Ventiliatoriaus greitis bus didinamas tiesiškai nuo nulio sluoksnyje \" msgid "layer" msgstr "sluoksnis" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" -msgstr "Atramų sąsajos ventiliatoriaus greitis" +msgstr "Atramų skiriamųjų sluoksnių ventiliatoriaus greitis" 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 "" -"Šis dalies aušinimo ventiliatoriaus greitis taikomas spausdinant atramines sąsajas. Nustačius šį parametrą didesniu nei įprastai greičiu, sumažėja sluoksnių surišimo stiprumas tarp atramų ir remiamos dalies, todėl jas lengviau atskirti.\n" -"Nustatykite -1, kad išjungtumėte šį parametrą.\n" -"Šis parametras pakeičiamas parametru \"Išjungti pirmųjų sluoksnių aušinimą\"." +"Šis detalės aušinimo ventiliatoriaus greitis yra taikomas spausdinant atramų skiriamuosius sluoksnius. Nustačius didesnį nei įprasta šio parametro greitį, sumažėja sluoksnių sukibimo stiprumas tarp atramų ir remiamos detalės, todėl jas lengviau atskirti.\n" +"Nustatykite -1, kad išjungtumėte.\n" +"Šį nustatymą perrašo disable_fan_first_layers." msgid "Internal bridges fan speed" -msgstr "Vidinių tiltų ventiliatoriaus greitis" +msgstr "Vidinių tiltelių ventiliatoriaus greitis" 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 "" -"Dalies aušinimo ventiliatoriaus greitis, naudojamas visiems vidiniams tilteliams. Nustatykite į -1, kad vietoj to būtų naudojami iškyšos ventiliatoriaus greičio nustatymai.\n" +"Detalės aušinimo ventiliatoriaus greitis, naudojamas visiems vidiniams tilteliams. Nustatykite vertę -1, kad vietoj to būtų naudojami iškyšų ventiliatoriaus greičio nustatymai.\n" "\n" -"Sumažinus vidinių tiltelių ventiliatoriaus greitį, palyginti su įprastu ventiliatoriaus greičiu, galima sumažinti detalės deformaciją dėl per didelio aušinimo, ilgą laiką taikomo dideliam paviršiui." +"Sumažintas vidinių tiltelių ventiliatoriaus greitis, lyginant su įprastu greičiu, padeda sumažinti detalės deformavimąsi (warping) dėl per didelio aušinimo, kuris ilgą laiką taikomas dideliam paviršiui." msgid "Ironing fan speed" msgstr "Lyginimo ventiliatoriaus greitis" @@ -13145,36 +13137,35 @@ 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 "" -"Šis dalies aušinimo ventiliatoriaus greitis taikomas lyginant. Nustačius šį parametrą mažesniu nei įprastas greitis, sumažėja galimas purkštuko užsikimšimas dėl mažo tūrinio srauto, todėl sąsaja tampa sklandesnė.\n" -"Norėdami išjungti, nustatykite -1." +"Šis detalės aušinimo ventiliatoriaus greitis yra taikomas lyginant paviršių. Nustačius mažesnį nei įprasta šio parametro greitį, sumažėja purkštuko užsikimšimo rizika dėl mažo tūrinio srauto, todėl paviršius tampa lygesnis.\n" +"Nustatykite -1, kad išjungtumėte." msgid "Ironing flow" msgstr "Lyginimo srautas" 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 "" +msgstr "Konkrečiai gijai taikomas lyginimo srauto nepaisymas. Tai leidžia pritaikyti lyginimo srauto nustatymus kiekvienam gijos tipui. Per didelė vertė sukelia perteklinį medžiagos išspaudimą (overextrusion) ant paviršiaus." msgid "Ironing line spacing" -msgstr "Tarpai tarp lyginimo linijų" +msgstr "Lyginimo linijų tankumas (žingsnis)" msgid "Filament-specific override for ironing line spacing. This allows you to customize the spacing between ironing lines for each filament type." -msgstr "" +msgstr "Konkrečiai gijai taikomas lyginimo linijų tankumo nepaisymas. Tai leidžia pritaikyti atstumus tarp lyginimo linijų kiekvienam gijos tipui." msgid "Ironing inset" -msgstr "Lyginimo intarpas" +msgstr "Lyginimo atitraukimas (inset)" 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 "" +msgstr "Konkrečiai gijai taikomas lyginimo atitraukimo nepaisymas. Tai leidžia pritaikyti išlaikomą atstumą nuo kraštų lyginimo metu kiekvienam gijos tipui." msgid "Ironing speed" msgstr "Lyginimo greitis" msgid "Filament-specific override for ironing speed. This allows you to customize the print speed of ironing lines for each filament type." -msgstr "" +msgstr "Konkrečiai gijai taikomas lyginimo greičio nepaisymas. Tai leidžia pritaikyti lyginimo linijų spausdinimo greitį kiekvienam gijos tipui." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting makes the toolhead randomly jitter while printing walls so that the surface has a rough textured look. This setting controls the fuzzy position." -msgstr "Dėl šio nustatymo spausdinant sienas įrankio galvutė atsitiktinai trūkčioja, todėl paviršius atrodo grublėtas. Šiuo nustatymu kontroliuojama grublėtumo padėtis." +msgstr "" msgid "Painted only" msgstr "Tik dažytas" @@ -13189,14 +13180,13 @@ msgid "Contour and hole" msgstr "Kontūras ir skylė" msgid "All walls" -msgstr "Visos sienos" +msgstr "Visos sienelės" msgid "Fuzzy skin thickness" msgstr "Grublėto paviršiaus storis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The width of jittering: it’s recommended to keep this lower than the outer wall line width." -msgstr "Plotis, kurio ribose turi būti drebėjimas. Rekomenduojama, kad jis būtų mažesnis už išorinės sienos linijos plotį." +msgstr "" msgid "Fuzzy skin point distance" msgstr "Grublėto paviršiaus taško atstumas" @@ -13205,13 +13195,13 @@ msgid "The average distance between the random points introduced on each line se msgstr "Vidutinis atstumas tarp atsitiktinių taškų, įvestų kiekvienoje linijos atkarpoje." msgid "Apply fuzzy skin to first layer" -msgstr "Taikyti grublėtą paviršių pirmajam sluoksniui" +msgstr "Taikyti grublėtą paviršių (fuzzy skin) pirmajam sluoksniui" msgid "Whether to apply fuzzy skin on the first layer." -msgstr "Ar taikyti grublėtą paviršių pirmajame sluoksnyje." +msgstr "Ar taikyti grublėtą paviršių (fuzzy skin) ant pirmojo sluoksnio." msgid "Fuzzy skin generator mode" -msgstr "Grublėto paviršiaus generatoriaus režimas" +msgstr "Grublėto paviršiaus (fuzzy skin) generatoriaus režimas" #, c-format, boost-format msgid "" @@ -13222,24 +13212,24 @@ msgid "" "\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 "" -"Grublėto paviršiaus generavimo režimas. Veikia tik su Arachne!\n" -"Perkėlimas: Klasikinis režimas, kai raštas formuojamas šoniniu purkštuvo poslinkiu nuo pradinio kelio.\n" -"Ekstruzija: režimas, kai raštas formuojamas ekstruzuojamo plastiko kiekiu. Tai greitas ir tiesus algoritmas be nereikalingo purkštuvo judėjimo, kuris suteikia lygų raštą. Tačiau jis yra naudingesnis formuojant laisvas sienas visame jų masyve.\n" -"Kombinuotas: jungtinis režimas [Perkėlimas] + [Ekstruzija]. Sienų išvaizda yra panaši į [Perkėlimo] režimą, tačiau tarp perimetrų nelieka porų.\n" +"Grublėto paviršiaus (fuzzy skin) generavimo režimas. Veikia tik naudojant „Arachne“ sienelių generatorių!\n" +"Poslinkis (Displacement): Klasikinis režimas, kai raštas formuojamas stumiant purkštuką į šoną nuo pradinės trajektorijos.\n" +"Išspaudimas (Extrusion): Režimas, kai raštas suformuojamas keičiant išspaudžiamo plastiko kiekį. Tai greitas ir tiesus algoritmas be nereikalingo purkštuko purtymo, sukuriantis švelnesnį raštą. Tačiau jis labiau naudingas formuojant laisvas sieneles visame jų masyve.\n" +"Kombinuotas (Combined): Jungtinis režimas [Poslinkis] + [Išspaudimas]. Sienelių išvaizda panaši į [Poslinkio] režimą, tačiau tarp perimetrų nelieka tuštumų.\n" "\n" -"Dėmesio! [Ekstruzijos] ir [Kombinuoto] režimai veikia tik tada, kai parametras fuzzy_skin_thickness yra ne didesnis už spausdintos kilpos storį. Tuo pačiu metu ekstruzijos plotis tam tikram sluoksniui taip pat neturėtų būti mažesnis už tam tikrą lygį. Paprastai jis yra lygus 15–25%% sluoksnio aukščio. Todėl maksimalus grublėto paviršiaus storis, kai perimetro plotis yra 0,4 mm, o sluoksnio aukštis – 0,2 mm, bus 0,4-(0,2*0,25)=±0,35 mm! Jei įvesite didesnį parametrą, bus rodomas klaidos pranešimas Flow::spacing(), o modelis nebus supjaustytas. Galite parinkinėti šį skaičių, kol šios klaidos neliks." +"Dėmesio! [Išspaudimo] ir [Kombinuotas] režimai veikia tik tada, kai fuzzy_skin_thickness parametras neviršija spausdinamos kilpos storio. Tuo pat metu ekstruzijos plotis konkrečiame sluoksnyje taip pat neturi būti mažesnis už tam tikrą lygį. Paprastai jis lygus 15–25%% sluoksnio aukščio. Todėl maksimalus grublėto paviršiaus storis, kai perimetro plotis yra 0,4 mm, o sluoksnio aukštis – 0,2 mm, bus 0,4-(0,2*0,25)=±0,35 mm! Jei įvesite didesnę vertę, bus parodyta klaida Flow::spacing() ir modelis nebus suslupksniuotas (sliced). Galite keisti šį skaičių, kol ši klaida nustos kartotis." msgid "Displacement" -msgstr "Perkėlimas" +msgstr "Poslinkis (Displacement)" msgid "Extrusion" -msgstr "Ekstruzija" +msgstr "Išspaudimas (Extrusion)" msgid "Combined" msgstr "Kombinuotas" msgid "Fuzzy skin noise type" -msgstr "Grublėto paviršiaus nelygumų tipas" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo tipas" msgid "" "Noise type to use for fuzzy skin generation:\n" @@ -13250,51 +13240,58 @@ msgid "" "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 "" +"Triukšmo tipas, naudojamas grublėto paviršiaus generavimui:\n" +"Klasikinis (Classic): Klasikinis tolygus atsitiktinis triukšmas.\n" +"Perlin: Perlino triukšmas, sukuriantis nuoseklesnę tekstūrą.\n" +"Billow: Panašus į Perlino triukšmą, bet labiau gubruotas (gabalinis).\n" +"Keterinis multifraktalas (Ridged Multifractal): Keterinis triukšmas su aštriais, dantytais bruožais. Sukuria į marmurą panašias tekstūras.\n" +"Voronoi: Padalija paviršių į Voronojaus ląsteles ir pastumia kiekvieną iš jų atsitiktiniu dydžiu. Sukuria lopinėlių tekstūrą.\n" +"Vilnelės (Ripple): Tolygus vilnelių raštas, kuris banguoja į kairę ir į dešinę nuo pradinės trajektorijos. Pasikartojantis raštas, sukuriantis austo audinio išvaizdą." msgid "Classic" msgstr "Klasikinis" msgid "Perlin" -msgstr "Perlin" +msgstr "Perlino (Perlin)" msgid "Billow" -msgstr "Billow" +msgstr "Gubruotas (Billow)" msgid "Ridged Multifractal" -msgstr "" +msgstr "Keterinis multifraktalas (Ridged Multifractal)" msgid "Voronoi" -msgstr "Voronoi" +msgstr "Voronojaus (Voronoi)" msgid "Ripple" -msgstr "Ripple" +msgstr "Vilnelės (Ripple)" msgid "Fuzzy skin feature size" -msgstr "Grublėto paviršiaus elementų dydis" +msgstr "Grublėto paviršiaus (fuzzy skin) elementų dydis" msgid "The base size of the coherent noise features, in mm. Higher values will result in larger features." -msgstr "Koherentinio triukšmo elementų bazinis dydis, mm. Didesnės reikšmės reiškia didesnius elementus." +msgstr "Koherentinio triukšmo elementų bazinis dydis milimetrais. Didesnės vertės sukuria didesnius elementus." msgid "Fuzzy Skin Noise Octaves" -msgstr "Grublėto paviršiaus nelygumų oktavos" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo oktavos" msgid "The number of octaves of coherent noise to use. Higher values increase the detail of the noise, but also increase computation time." msgstr "Koherentinio triukšmo oktavų skaičius, kuris bus naudojamas. Didesnės reikšmės padidina triukšmo detalumą, tačiau taip pat pailgina skaičiavimo laiką." msgid "Fuzzy skin noise persistence" -msgstr "Grublėto paviršiaus nelygumų patvarumas" +msgstr "Grublėto paviršiaus (fuzzy skin) triukšmo išlaikymas (persistence)" msgid "The decay rate for higher octaves of the coherent noise. Lower values will result in smoother noise." -msgstr "Aukštesnių oktavų koherentinio triukšmo silpnėjimo greitis. Dėl mažesnių verčių triukšmas bus lygesnis." +msgstr "Aukštesnių koherentinio triukšmo oktavų silpnėjimo greitis. Mažesnės vertės sukuria tolygesnį triukšmą." msgid "Number of ripples per layer" -msgstr "" +msgstr "Vilnelių skaičius sluoksnyje" msgid "Controls how many full cycles of ripples will be added per layer." -msgstr "" +msgstr "Valdo, kiek pilnų vilnelių ciklų bus pridėta viename sluoksnyje." msgid "Ripple offset" -msgstr "" +msgstr "Vilnelių poslinkis (offset)" msgid "" "Shifts the ripple phase forward along the print path by the specified percentage of a wavelength each layer period.\n" @@ -13304,9 +13301,15 @@ msgid "" "\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 "" +"Pastumia vilnelės fazę į priekį išilgai spausdinimo trajektorijos nurodytu bangos ilgio procentu kiekviename sluoksnių periode.\n" +"– 0% išlaiko kiekvieną sluoksnį identišką.\n" +"– 50% pastumia raštą puse bangos ilgio, efektyviai invertuodamas fazę.\n" +"– 100% pastumia raštą visu bangos ilgiu, sugrąžindamas pradinę fazę.\n" +"\n" +"Poslinkis taikomas kas tiek sluoksnių, kiek nurodyta parametre „Sluoksnių skaičius tarp vilnelių poslinkio“, todėl tos pačios grupės sluoksniai spausdinami identiškai." msgid "Layers between ripple offset" -msgstr "" +msgstr "Sluoksnių skaičius tarp vilnelių poslinkio" msgid "" "Specifies how many consecutive layers share the same ripple phase before the offset is applied.\n" @@ -13314,6 +13317,10 @@ msgid "" "- 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 "" +"Nurodo, kiek iš eilės einančių sluoksnių naudoja tą pačią vilnelių fazę prieš pritaikant poslinkį.\n" +"Pavyzdžiui:\n" +"– 1 = 1 sluoksnis spausdinamas su baziniu vilnelių raštu, tada 2 sluoksnis pastumiamas sukonfigūruotu poslinkiu, 3 sluoksnis grįžta prie bazinio rašto ir t. t.\n" +"– 3 = sluoksniai nuo 1 iki 3 spausdinami su baziniu vilnelių raštu, tada sluoksniai nuo 4 iki 6 pastumiami sukonfigūruotu poslinkiu, sluoksniai nuo 7 iki 9 grįžta prie bazinio rašto ir t. t." msgid "Filter out tiny gaps" msgstr "Filtruoti mažus tarpus" @@ -13322,58 +13329,55 @@ msgid "Layers and Perimeters" msgstr "Sluoksniai ir perimetrai" 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 "Nespausdinti tarpo užpildymo, kurio ilgis yra mažesnis už nurodytą ribą (mm). Šis nustatymas taikomas viršutiniam, apatiniam ir vientisam užpildui, o jei naudojamas klasikinis perimetro generatorius - ir sienos tarpo užpildymui." +msgstr "Nespausdinti tarpų užpildymo, kurio ilgis mažesnis už nurodytą ribą milimetrais. Šis nustatymas taikomas viršutiniam, apatiniam ir vientisam užpildui, o naudojant klasikinį perimetro generatorių – ir sienelių tarpų užpildymui." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for gap infill. Gaps usually have irregular line width and should be printed more slowly." -msgstr "Tarpų užpildymo greitis. Tarpai paprastai būna netaisyklingo pločio, todėl juos reikia spausdinti lėčiau." +msgstr "" msgid "Precise Z height" msgstr "Tikslus Z aukštis" 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 "Įjunkite šią funkciją, jei norite gauti tikslų objekto z aukštį po sluoksniavimo. Tikslus objekto aukštis bus gautas tiksliai nustatant kelių paskutinių sluoksnių aukštį. Atkreipkite dėmesį, kad tai eksperimentinis parametras." +msgstr "Įjunkite, kad gautumėte tikslų objekto Z-ašies aukštį po supjaustymo (slicing). Tikslus objekto aukštis pasiekiamas tiksliai sureguliuojant kelių paskutinių sluoksnių aukštį. Atkreipkite dėmesį, kad tai yra eksperimentinis parametras." msgid "Arc fitting" -msgstr "Lanko talpinimas" +msgstr "Lankų pritaikymas (Arc fitting)" 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 "" -"Įgalinkite šią funkciją, kad gautumėte G-kodo failą su G2 ir G3 judesiais. Montavimo tolerancija yra tokia pati kaip skiriamoji geba.\n" +"Įjunkite, kad gautumėte G-kodo failą su G2 ir G3 judesiais. Pritaikymo tolerancija yra tokia pati kaip skiriamoji geba (resolution).\n" "\n" -"Pastaba: „Klipper“ mašinoms šią parinktį rekomenduojama išjungti. Klipper neturi naudos iš lanko komandų, nes jas programinė įranga vėl suskaido į linijų segmentus. Dėl to suprastėja paviršiaus kokybė, nes linijiniai segmentai pjaustytuve paverčiami lankais, o programinėje įrangoje vėl paverčiami linijiniais segmentais." +"Pastaba: „Klipper“ valdomiems spausdintuvams šią parinktį rekomenduojama išjungti. „Klipper“ programinė įranga neduoda jokios naudos iš lankų komandų, nes ji jas vėl suskaido į tiesių segmentus. Dėl to gali suprastėti paviršiaus kokybė, kadangi tiesių segmentai pjaustytuve paverčiami lankais, o programinėje įrangoje – vėl atgal į tiesių segmentus." msgid "Add line number" msgstr "Pridėti eilutės numerį" msgid "Enable this to add line number(Nx) at the beginning of each G-code line." -msgstr "Įjunkite šią funkciją, kad kiekvienos G kodo eilutės pradžioje būtų įterptas eilutės numeris (Nx)." +msgstr "Įjunkite, kad pridėtumėte eilutės numerį (Nx) kiekvienos G-kodo eilutės pradžioje." msgid "Scan first layer" msgstr "Nuskaityti pirmąjį sluoksnį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this to allow the camera on the printer to check the quality of the first layer." -msgstr "Įjunkite šią funkciją, kad spausdintuvo kamera būtų galima patikrinti pirmojo sluoksnio kokybę." +msgstr "" msgid "Power Loss Recovery" -msgstr "" +msgstr "Spausdinimo atnaujinimas dingus maitinimui (Power Loss Recovery)" 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 "" +msgstr "Pasirinkite, kaip valdyti spausdinimo atnaujinimą dingus maitinimui. Pasirinkus „Spausdintuvo konfigūracija“, pjaustytuvas neįterps papildomo atstatymo G-kodo ir paliks nepakeistą paties spausdintuvo konfigūraciją. Taikoma „Bambu Lab“ arba „Marlin 2“ programine įranga pagrįstiems spausdintuvams." msgid "Printer configuration" -msgstr "" +msgstr "Spausdintuvo konfigūracija" msgid "Nozzle type" msgstr "Purkštuko tipas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The metallic material of the nozzle: This determines the abrasive resistance of the nozzle and what kind of filament can be printed." -msgstr "Nuo purkštuko medžiagos priklauso antgalio atsparumas abrazyvui ir tai, kokią giją galima spausdinti." +msgstr "" msgid "Hardened steel" msgstr "Kietintas plienas" @@ -13382,14 +13386,13 @@ msgid "Stainless steel" msgstr "Nerūdijantis plienas" msgid "Tungsten carbide" -msgstr "" +msgstr "Volframo karbidas" msgid "Nozzle HRC" msgstr "Purkštuko HRC" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle's hardness. Zero means no checking for nozzle hardness during slicing." -msgstr "Antgalio kietumas. Nulis reiškia, kad sluoksniavimo antgalio kietumas netikrinamas." +msgstr "" msgid "HRC" msgstr "HRC" @@ -13419,7 +13422,7 @@ msgid "Best auto arranging position in range [0,1] w.r.t. bed shape." msgstr "Geriausia automatinio išdėstymo padėtis intervale [0,1] pagal pagrindo formą." msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)." -msgstr "Įjunkite šią parinktį, jei mašinoje yra papildomas dalių aušinimo ventiliatorius. G-kodo komanda: M106 P2 S(0-255)." +msgstr "Įjunkite šią parinktį, jei įrenginyje yra papildomas detalės aušinimo ventiliatorius (auxiliary fan). G-kodo komanda: 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" @@ -13427,37 +13430,40 @@ msgid "" "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 "" -"Įjunkite ventiliatorių šiuo sekundžių skaičiumi anksčiau už jo tikslinį paleidimo laiką (galite naudoti sekundžių dalis). Įvertinant šį laiką daroma prielaida, kad pagreitis yra begalinis, ir atsižvelgiama tik į G1 ir G0 judesius (lanko pritaikymas nepalaikomas).\n" -"Jis neperkelia ventiliatoriaus komandų iš pasirinktinių G-kodą (jie veikia kaip tam tikras „barjeras“).\n" -"Jis neperkelia ventiliatoriaus komandų į pradžios G-kodą, jei įjungta parinktis „tik pasirinktinis pradžios gkodas“.\n" -"Jei norite išjungti, naudokite 0." +"Paleisti ventiliatorių nurodytu sekundžių skaičiumi anksčiau (galima naudoti trupmenines dalis). Šiam laiko skaičiavimui daroma prielaida, kad pagreitis yra begalinis, ir atsižvelgiama tik į G1 bei G0 judesius (lankų pritaikymas nepalaikomas).\n" +"Šis nustatymas neperkels ventiliatoriaus komandų iš pasirinktinio G-kodo (jie veikia kaip tam tikras barjeras).\n" +"Komandos nebus perkeltos į pradinį G-kodą, jei suaktyvinta parinktis „tik pasirinktinis pradžios G-kodas“.\n" +"Įrašykite 0, kad išjungtumėte." msgid "Only overhangs" msgstr "Tik iškyšos" msgid "Will only take into account the delay for the cooling of overhangs." -msgstr "Atsižvelgs tik į iškyšų aušinimo vėlavimą." +msgstr "Bus atsižvelgiama tik į iškyšų aušinimo vėlavimą." msgid "Fan kick-start time" -msgstr "Ventiliatoriaus paleidimo laikas" +msgstr "Ventiliatoriaus „kick-start“ (priverstinio paleidimo) laikas" 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 "" -"Šį kiekį sekundžių siunčia maksimalaus ventiliatoriaus greičio komandą, o po to sumažina greitį, kad aušinimo ventiliatorius pradėtų veikti.\n" -"Tai naudinga ventiliatoriams, kai mažos PWM / galios gali nepakakti, kad ventiliatorius pradėtų suktis nuo sustojimo, arba kad ventiliatorius greičiau įsibėgėtų.\n" +"Nurodytą sekundžių skaičių siunčiama maksimalaus ventiliatoriaus greičio komanda prieš jį sumažinant iki tikslinio greičio, kad aušinimo ventiliatorius būtų priverstinai paleistas (kick-start).\n" +"Tai naudinga ventiliatoriams, kuriems esant mažam PWM signalui / galiai gali nepakakti jėgos pradėti suktis iš sustojimo būsenos arba norint greičiau pasiekti reikiamą greitį.\n" "Nustatykite 0, kad išjungtumėte." msgid "Minimum non-zero part cooling fan speed" -msgstr "" +msgstr "Minimalus ne nulinis detalės aušinimo ventiliatoriaus greitis" 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 "" +"Kai kurie detalių aušinimo ventiliatoriai negali pradėti suktis, kai komanda yra mažesnė už tam tikrą PWM užpildymo koeficientą. Nustačius didesnę nei 0 vertę, bet kokia ne nulinė ventiliatoriaus komanda bus padidinta bent iki šio procento, kad ventiliatorius patikimai įsijungtų. Ventiliatoriaus komanda 0 (ventiliatorius išjungtas) visada vykdoma tiksliai. Šis ribojimas taikomas po visų kitų ventiliatoriaus skaičiavimų (pirmojo sluoksnio greitėjimo, sluoksnio laiko interpoliacijos, iškyšų / tiltelių / atramų skiriamųjų sluoksnių / lyginimo nepaisymų), todėl mastelio keitimas vis tiek veikia rėžiuose nuo [šios vertės] iki 100%%.\n" +"Jei jūsų programinė įranga jau išjungia ventiliatorių žemiau tam tikros ribos (pavyzdžiui, „Klipper“ nustatymas [fan] off_below: 0.10 išjungia ventiliatorių, kai nurodytas užpildymo koeficientas yra mažesnis nei 10%), ši parinktis ir programinės įrangos riba idealiai turėtų būti nustatytos į tą pačią vertę. Jas suderinus (pvz., off_below: 0.10 „Klipper“ programoje ir 10% čia), užtikrinama, kad pjaustytuvas niekada neišsiųs ne nulinės vertės, kurią programinė įranga tyliai atmestų, o ventiliatorius niekada negaus vertės, mažesnės už tą, kuria jis realiai sugeba pradėti suktis.\n" +"Nustatykite 0, kad išjungtumėte." msgid "%" msgstr "%" @@ -13471,15 +13477,14 @@ msgstr "Spausdintuvo valandos kaina." msgid "money/h" msgstr "pinigai/h" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support controlling chamber temperature" -msgstr "Kameros temperatūros kontrolės palaikymas" +msgstr "" msgid "" "This option is enabled if machine support controlling chamber temperature\n" "G-code command: M141 S(0-255)" msgstr "" -"Ši parinktis įjungiama, jei mašina palaiko kameros temperatūros kontrolę.\n" +"Ši parinktis įjungiama, jei įrenginys palaiko kameros temperatūros valdymą.\n" "G-kodo komanda: M141 S(0-255)" msgid "Support air filtration" @@ -13489,7 +13494,7 @@ msgid "" "Enable this if printer support air filtration\n" "G-code command: M106 P3 S(0-255)" msgstr "" -"Įjunkite šią funkciją, jei spausdintuvas palaiko oro filtravimą\n" +"Įjunkite, jei spausdintuvas palaiko oro filtravimą.\n" "G-kodo komanda: M106 P3 S(0-255)" msgid "G-code flavor" @@ -13502,13 +13507,13 @@ msgid "Klipper" msgstr "Klipper" msgid "Pellet Modded Printer" -msgstr "Modifikuotas granulių spausdintuvas" +msgstr "Modifikuotas granulinis spausdintuvas" msgid "Enable this option if your printer uses pellets instead of filaments." msgstr "Įjunkite šią parinktį, jei spausdintuve vietoj gijų naudojamos granulės." msgid "Support multi bed types" -msgstr "Kelių tipų pagrindų palaikymas" +msgstr "Kelių pagrindo tipų palaikymas" msgid "Enable this option if you want to use multiple bed types." msgstr "Įjunkite šią parinktį, jei norite naudoti kelių tipų pagrindus." @@ -13517,7 +13522,7 @@ msgid "Label objects" msgstr "Objektų žymėjimas" 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 "Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga „Octoprint CancelObject“ papildiniui. Šie nustatymai NĖRA suderinami su Vieno Ekstruderio Kelių Medžiagų sąranka ir Valyti Objekte / Valyti Užpildyme." +msgstr "Įjunkite, kad į G-kodą būtų įtraukti komentarai, pažymintys, kuriam objektui priklauso spausdinimo judesiai – tai naudinga „Octoprint CancelObject“ papildiniui. Šis nustatymas NĖRA suderinamas su vieno ekstruderio kelių medžiagų (Multi Material) sąranka bei su parinktimis „Valyti į objektą“ / „Valyti į užpildą“." msgid "Exclude objects" msgstr "Išskirti objektus" @@ -13526,56 +13531,55 @@ msgid "Enable this option to add EXCLUDE OBJECT command in G-code." msgstr "Įjunkite šią parinktį, kad G-kode būtų pridėta komanda EXCLUDE OBJECT." msgid "Verbose G-code" -msgstr "Išsamus G-kodas" +msgstr "Išsamus G-kodas (Verbose)" 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 "Įjunkite tai, kad gautumėte komentuojamą G-kodo failą su kiekviena eilute paaiškinta aprašomuoju tekstu. Jei spausdinate iš SD kortelės, dėl papildomo failo dydžio gali sulėtėti veikimas." +msgstr "Įjunkite, kad gautumėte failą su pakomentuotu G-kodu, kuriame kiekviena eilutė paaiškinta aprašomuoju tekstu. Jei spausdinate iš SD kortelės, dėl padidėjusio failo dydžio programinė įranga gali veikti lėčiau." msgid "Infill combination" -msgstr "Užpildymo derinys" +msgstr "Užpildo derinimas (apjungimas)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Automatically combine sparse infill of several layers to print together in order to reduce time. Walls are still printed with original layer height." -msgstr "Automatiškai sujungti kelių sluoksnių retą užpildą, kad būtų spausdinama kartu ir sutrumpėtų laikas. Siena vis tiek spausdinama su pradiniu sluoksnio aukščiu." +msgstr "" msgid "Infill shift step" -msgstr "Užpildymo poslinkio žingsnis" +msgstr "Užpildo poslinkio žingsnis" msgid "This parameter adds a slight displacement to each layer of infill to create a cross texture." -msgstr "Šis parametras prideda nedidelį poslinkį kiekvienam užpildo sluoksniui, kad būtų sukurta kryžminė tekstūra." +msgstr "Šis parametras prideda nedidelį poslinkį kiekvienam užpildo sluoksniui, kad sukurtų kryžminę tekstūrą." msgid "Sparse infill rotation template" -msgstr "Retas užpildymo rotacijos šablonas" +msgstr "Reto užpildo pasukimo šablonas" 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 "Pasukite retą užpildymo kryptį pagal sluoksnį naudodami kampų šabloną. Įveskite kableliais atskirtus laipsnius (pvz., „0,30,60,90“). Kampai taikomi pagal sluoksnį ir kartojami, kai sąrašas baigiasi. Palaikoma išplėstinė sintaksė: „+5“ pasuka +5° kiekviename sluoksnyje; „+5#5“ pasuka +5° kas 5 sluoksnius. Daugiau informacijos rasite Wiki. Kai nustatytas šablonas, standartinis užpildymo krypties nustatymas ignoruojamas. Pastaba: kai kurie užpildymo modeliai (pvz., Gyroid) patys kontroliuoja pasukimą; naudokite atsargiai." +msgstr "Keičia reto užpildo kryptį kiekviename sluoksnyje pagal kampų šabloną. Įveskite kableliais atskirtas laipsnių vertes (pvz., „0,30,60,90“). Kampai taikomi iš eilės pagal sluoksnius, o sąrašui pasibaigus – kartojami. Palaikoma išplėstinė sintaksė: „+5“ pasuka +5° kas sluoksnį; „+5#5“ pasuka +5° kas 5 sluoksnius. Išsamesnės informacijos ieškokite „Wiki“ puslapyje. Nustačius šabloną, standartinis užpildo krypties nustatymas ignoruojamas. Pastaba: kai kurie užpildo raštai (pvz., „Gyroid“) pasukimą valdo patys, todėl naudokite atsargiai." msgid "Solid infill rotation template" msgstr "Vientiso užpildo pasukimo šablonas" 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 "Šis parametras prideda kiekvienam sluoksniui vientiso užpildo krypties pasukimą pagal nurodytą šabloną. Šablonas yra kableliais atskirtas kampų laipsnių sąrašas, pvz., „0,90“. Pirmasis kampas taikomas pirmajam sluoksniui, antrasis kampas – antrajam sluoksniui ir t. t. Jei sluoksnių yra daugiau nei kampų, kampai bus kartojami. Atkreipkite dėmesį, kad ne visi vientiso užpildo modeliai palaiko pasukimą." +msgstr "Šis parametras kiekvienam sluoksniui prideda vientiso užpildo krypties pasukimą pagal nurodytą šabloną. Šablonas yra kableliais atskirtas kampų sąrašas laipsniais (pvz., „0,90“). Pirmasis kampas taikomas pirmajam sluoksniui, antrasis – antrajam sluoksniui ir t. t. Jei sluoksnių yra daugiau nei nurodytų kampų, jie bus kartojami iš naujo. Atkreipkite dėmesį, kad ne visi vientiso užpildo raštai palaiko pasukimą." msgid "Skeleton infill density" -msgstr "Karkaso užpildymo tankis" +msgstr "Karkaso užpildo tankis" 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 "Modelio kontūro dalis, likusi po tam tikro gylio pašalinimo nuo paviršiaus, vadinama skeletu. Šis parametras naudojamas šio skirsnio tankiui reguliuoti. Kai dvi sritys turi tuos pačius retų užpildų nustatymus, bet skirtingą skeleto tankį, jų karkaso sritys susidurs su persidengiančiais skirsniais. Numatytasis nustatymas yra toks pat kaip užpildų tankis." +msgstr "Modelio kontūro dalis, likusi atėmus tam tikrą gylį nuo paviršiaus, vadinama karkasu (skeleton). Šis parametras naudojamas šios dalies tankiui reguliuoti. Kai dvi sritys naudoja tuos pačius reto užpildo nustatymus, bet skirtingus karkaso tankius, jų karkaso zonos suformuos persidengiančias dalis. Numatytasis nustatymas sutampa su užpildo tankiu." msgid "Skin infill density" -msgstr "Paviršiaus užpildymo tankis" +msgstr "Paviršinio sluoksnio (skin) užpildo tankis" 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 "Modelio išorinio paviršiaus dalis tam tikrame gylio intervale vadinama paviršiumi. Šis parametras naudojamas šio skirsnio tankiui reguliuoti. Kai dvi sritys turi tuos pačius retų užpildų nustatymus, bet skirtingą paviršiaus tankį, ši sritis nebus padalyta į dvi atskiras sritis. Numatytasis nustatymas yra toks pat kaip užpildų tankis." +msgstr "Modelio išorinio paviršiaus dalis tam tikrame gylio rėžyje yra vadinama paviršiniu sluoksniu (skin). Šis parametras naudojamas šios dalies tankiui reguliuoti. Kai dvi sritys naudoja tuos pačius reto užpildo nustatymus, bet skirtingus paviršinio sluoksnio tankius, ši zona nebus išskirta į du atskirus regionus. Numatytasis nustatymas sutampa su užpildo tankiu." msgid "Skin infill depth" -msgstr "Paviršiaus užpildymo gylis" +msgstr "Paviršinio sluoksnio (skin) užpildo gylis" msgid "The parameter sets the depth of skin." msgstr "Parametras nustato paviršiaus gylį." msgid "Infill lock depth" -msgstr "Užpildymo fiksavimo gylis" +msgstr "Užpildo fiksavimo gylis" msgid "The parameter sets the overlapping depth between the interior and skin." msgstr "Šis parametras nustato vidaus ir išorės sluoksnių persidengimo gylį." @@ -13593,13 +13597,13 @@ msgid "Adjust the line width of the selected skeleton paths." msgstr "Nustatykite pasirinktų karkaso kontūrų linijų plotį." msgid "Symmetric infill Y axis" -msgstr "Simetriškas užpildymas Y ašies" +msgstr "Simetriškas užpildas pagal Y ašį" 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 "Jei modelis turi dvi dalis, kurios yra simetriškos Y ašies atžvilgiu, ir norite, kad šios dalys turėtų simetriškas tekstūras, spustelėkite šią parinktį vienoje iš dalių." msgid "Infill combination - Max layer height" -msgstr "Užpildų derinys - Maksimalus sluoksnio aukštis" +msgstr "Užpildo derinimas – maksimalus sluoksnio aukštis" msgid "" "Maximum layer height for the combined sparse infill.\n" @@ -13610,75 +13614,142 @@ msgid "" "\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 "" -"Didžiausias kombinuoto reto užpildo sluoksnio aukštis.\n" +"Maksimalus sluoksnio aukštis derinamam (apjungtam) retam užpildui.\n" "\n" -"Nustatykite 0 arba 100 %, jei norite naudoti purkštuko skersmenį (kad maksimaliai sutrumpėtų spausdinimo laikas), arba ~80 %, jei norite maksimaliai padidinti reto užpildo stiprumą.\n" +"Nustatykite 0 arba 100%, kad būtų naudojamas purkštuko skersmuo (maksimaliam spausdinimo laiko sutrumpinimui), arba maždaug 80% vertę, kad maksimaliai padidintumėte reto užpildo tvirtumą.\n" "\n" -"Sluoksnių, per kuriuos derinamas užpildas, skaičius gaunamas dalijant šią vertę iš sluoksnio aukščio ir suapvalinant žemyn iki artimiausio dešimtainio skaičiaus.\n" +"Sluoksnių skaičius, per kuriuos užpildas yra derinamas, gaunamas dalijant šią vertę iš pagrindinio sluoksnio aukščio ir suapvalinant žemyn iki sveiko skaičiaus.\n" "\n" -"Naudokite absoliučias mm vertes (pvz., 0,32 mm 0,4 mm antgaliui) arba % vertes (pvz., 80 %). Ši vertė neturi būti didesnė už purkštuko skersmenį." +"Naudokite absoliučias vertes milimetrais arba procentines vertes (pvz., 80%). Ši vertė negali būti didesnė už purkštuko skersmenį." msgid "Enable clumping detection" -msgstr "" +msgstr "Įjungti sankaupų (clumping) aptikimą" msgid "Clumping detection layers" -msgstr "" +msgstr "Sankaupų aptikimo sluoksniai" msgid "Clumping detection layers." -msgstr "" +msgstr "Sankaupų aptikimo sluoksniai." msgid "Probing exclude area of clumping" -msgstr "" +msgstr "Zonduojamos sankaupų išimties zonos" msgid "Probing exclude area of clumping." +msgstr "Zonduojamos sankaupų išimties zonos." + +msgid "Lateral lattice angle 1" +msgstr "Rašto kampas 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Pirmojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." + +msgid "Lateral lattice angle 2" +msgstr "Rašto kampas 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Antrojo 2D grotelių elementų rinkinio kampas Z kryptimi. Nulis yra vertikalus." + +msgid "Infill overhang angle" +msgstr "Užpildo iškyšos kampas" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +msgstr "Užpildo kampinių linijų kampas. Esant 180°C, 60° kampas sukurs gryną korį." + +msgid "Lightning overhang angle" +msgstr "Žaibo (Lightning) užpildo iškyšos kampas" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "Maksimalus iškyšos kampas Žaibo (Lightning) užpildo atramų plitimui." + +msgid "Prune angle" +msgstr "Genėjimo kampas" + +msgid "" +"Controls how aggressively short or unsupported Lightning branches are pruned.\n" +"This angle is converted internally to a per-layer distance." msgstr "" +"Valdo, kaip agresyviai apkerpamos (genėjamos) trumpos arba neatremtos Žaibo (Lightning) užpildo šakos.\n" +"Šis kampas programos viduje konvertuojamas į atstumą vienam sluoksniui." + +msgid "Straightening angle" +msgstr "Tiesinimo kampas" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "Maksimalus tiesinimo kampas, naudojamas Žaibo (Lightning) užpildo šakų supaprastinimui." + +msgid "Sparse infill anchor length" +msgstr "Reto užpildo tvirtinimo ilgis" + +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 "" +"Sujungia užpildo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 10%), ji apskaičiuojama pagal užpildo ekstruzijos plotį. „OrcaSlicer“ bando sujungti dvi artimas užpildo linijas trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio už infill_anchor_max, nerandama, užpildo linija sujungiama su perimetro segmentu tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas šiuo parametru, bet ne ilgiau nei anchor_length_max.\n" +"Nustatykite šį parametrą lygų nuliui, jei norite išjungti perimetrų tvirtinimą, kai jie sujungti su viena užpildo linija." + +msgid "0 (no open anchors)" +msgstr "0 (nėra atvirų tvirtinimų)" + +msgid "1000 (unlimited)" +msgstr "1000 (neribota)" + +msgid "Maximum length of the infill anchor" +msgstr "Maksimalus užpildo tvirtinimo ilgis" + +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 "" +"Sujungia užpildo liniją su vidiniu perimetru trumpa papildomo perimetro atkarpa. Jei išreiškiama procentais (pvz., 10%), ji apskaičiuojama pagal užpildo ekstruzijos plotį. „OrcaSlicer“ bando sujungti dvi artimas užpildo linijas trumpu perimetro segmentu. Jei tokio perimetro segmento, trumpesnio už šį parametrą, nerandama, užpildo linija sujungiama su perimetro segmentu tik vienoje pusėje, o paimto perimetro segmento ilgis apribojamas iki infill_anchor, bet ne ilgiau nei šis parametras.\n" +"Jei nustatyta 0, bus naudojamas senasis užpildo sujungimo algoritmas, kuris turėtų sukurti tokį patį rezultatą kaip ir nustačius 1000 ir 0." + +msgid "0 (Simple connect)" +msgstr "0 (paprastas prijungimas)" msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama vidiniam retam užpildui spausdinti.\n" +"Pasirinkus „Default“ (numatytasis), naudojama aktyvaus objekto / dalies gija." msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Vidinio reto užpildo linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Vidinio reto užpildo linijos plotis. Jei išreiškiama procentais (%%), skaičiuojama nuo purkštuko skersmens." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Infill/wall overlap" -msgstr "Užpildo ir sienos persidengimas" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "This allows the infill area to be enlarged slightly to overlap with walls 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 "Užpildo plotas šiek tiek padidintas, kad persidengtų su siena ir geriau sukibtų. Procentinė vertė yra santykinė su reto užpildo linijos pločiu. Nustatykite šią vertę ~10-15 %, kad sumažintumėte galimą perteklinį išspaudimą ir medžiagos sankaupas, dėl kurių susidaro šiurkštus viršutinis paviršius." +msgstr "" msgid "Top/Bottom solid infill/wall overlap" -msgstr "Viršutinio ir apatinio vientiso užpildo ir sienos persidengimas" +msgstr "Viršutinio / apatinio vientiso užpildo ir sienelės persidengimas" #, 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 "Viršutinė vientiso užpildo sritis šiek tiek padidinta, kad geriau sutaptų su siena ir kad viršutinio užpildo vietoje, kur jis jungiasi su sienomis, atsirastų kuo mažiau skylučių. 25-30 % vertė yra geras pradinis taškas, sumažinantis skylučių atsiradimą. Procentinė vertė yra santykinė su reto užpildo linijos pločiu." +msgstr "Viršutinio vientiso užpildo plotas yra šiek tiek padidinamas, kad persidengtų su sienele geresniam sukibimui ir sumažintų mikroskylučių (pinholes) susidarymą sandūroje. 25–30%% vertė yra geras pradinis taškas, sumažinantis skylučių matomumą. Procentinė vertė yra santykinė su reto užpildo linijos pločiu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal sparse infill." -msgstr "Vidinio reto užpildymo greitis." +msgstr "" msgid "Inherits profile" msgstr "Paveldi profilį" msgid "Name of parent profile." -msgstr "Pirminio profilio pavadinimas." +msgstr "Pagrindinio (pirminio) profilio pavadinimas." msgid "Interface shells" -msgstr "Sąsajos apvalkalai" +msgstr "Skiriamieji apvalkalai (Interface shells)" 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 "Priverstinai sukuriami vientisi apvalkalai tarp gretimų medžiagų ir (arba) tūrių. Naudinga spausdinant daugiasluoksniais ekstruderiais su permatomomis medžiagomis arba rankiniu būdu tirpiomis pagalbinėmis medžiagomis." +msgstr "Priverstinai generuoja vientisus apvalkalus tarp besiribojančių medžiagų / tūrių. Naudinga spausdinant keliais ekstruderiais iš skaidrių medžiagų arba naudojant rankiniu būdu pašalinamas tirpias atramines medžiagas." msgid "Maximum width of a segmented region" msgstr "Didžiausias segmentuotos srities plotis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum width of a segmented region. A value of 0 disables this feature." -msgstr "Didžiausias segmentuotos srities plotis. Nulis išjungia šią funkciją." +msgstr "" msgid "Interlocking depth of a segmented region" msgstr "Segmentuotos srities susikirtimo gylis" @@ -13687,13 +13758,13 @@ msgid "Interlocking depth of a segmented region. It will be ignored if \"mmu_seg msgstr "Segmentuoto regiono susikirtimo gylis. Jis bus ignoruojamas, jei „mmu_segmented_region_max_width“ yra nulis arba jei „mmu_segmented_region_interlocking_depth“ yra didesnis už „mmu_segmented_region_max_width“. Nulis išjungia šią funkciją." msgid "Use beam interlocking" -msgstr "Naudoti pluošto blokavimą" +msgstr "Naudoti sijų sujungimą (interlocking)" 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 "Vietose, kuriose liečiasi skirtingos gijos, sukurkite susisiekiančių sijų struktūrą. Tai pagerina sukibimą tarp gijų, ypač modelių, atspausdintų iš skirtingų medžiagų." +msgstr "Generuoja susijungiančių sijų struktūrą vietose, kur liečiasi skirtingos gijos. Tai pagerina gijų tarpusavio sukibimą, ypač kai modeliai spausdinami iš skirtingų medžiagų." msgid "Interlocking beam width" -msgstr "Blokavimo sijų plotis" +msgstr "Sujungimo sijų plotis" msgid "The width of the interlocking structure beams." msgstr "Susikertančių konstrukcijos sijų plotis." @@ -13702,48 +13773,43 @@ msgid "Interlocking direction" msgstr "Susiejimo kryptis" msgid "Orientation of interlock beams." -msgstr "Blokavimo sijų kryptis." +msgstr "Sujungimo sijų orientacija." msgid "Interlocking beam layers" -msgstr "Tarpusavyje besijungiantys sijų sluoksniai" +msgstr "Sujungimo sijų sluoksniai" 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 "Sujungtos konstrukcijos sijų aukštis, matuojamas sluoksnių skaičiumi. Mažesnis sluoksnių skaičius yra tvirtesnis, bet labiau linkęs į defektus." msgid "Interlocking depth" -msgstr "Blokavimo gylis" +msgstr "Sujungimo gylis" msgid "The distance from the boundary between filaments to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Atstumas nuo ribos tarp gijų iki susikertančios struktūros, matuojamas ląstelėmis. Dėl per mažo ląstelių skaičiaus sukibimas bus silpnas." +msgstr "Atstumas nuo gijų sąlyčio ribos, kuriame generuojama sujungimo struktūra, matuojamas ląstelėmis. Esant per mažam ląstelių skaičiui sukibimas bus prastas." msgid "Interlocking boundary avoidance" -msgstr "Blokuotų ribų vengimas" +msgstr "Sujungimo ribų vengimas" msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." msgstr "Atstumas nuo modelio išorės, kai nesukuriamos susikertančios struktūros, matuojamas ląstelėmis." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing type" -msgstr "Lyginimo tipas" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing uses a small flow to print at the same height of a surface to make flat surfaces smoother. This setting controls which layers are being ironed." -msgstr "Lyginant naudojamas nedidelis srautas, kuris spausdina tame pačiame paviršiaus aukštyje, kad plokšti paviršiai būtų lygesni. Šis nustatymas kontroliuoja, kurie sluoksniai lyginami." +msgstr "" msgid "No ironing" msgstr "Nėra lyginimo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All top surfaces" -msgstr "Viršutiniai paviršiai" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Topmost surface only" -msgstr "Aukščiausias paviršius" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All solid layers" -msgstr "Visas vientisas sluoksnis" +msgstr "Visi vientisi sluoksniai" msgid "Ironing Pattern" msgstr "Lyginimo raštas" @@ -13751,97 +13817,97 @@ msgstr "Lyginimo raštas" msgid "The pattern that will be used when ironing." msgstr "Raštas, kuris bus naudojamas lyginant." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the amount of material to be extruded during ironing. It is relative to the flow of normal layer height. Too high a value will result in overextrusion on the surface." -msgstr "Medžiagos kiekis, kuris turi būti išspaustas lyginimo metu. Jis yra susijęs su įprasto sluoksnio aukščio srautu. Dėl per didelės vertės paviršiuje atsiras perteklinis išspaudimas." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance between the lines used for ironing." -msgstr "Atstumas tarp lyginimui naudojamų linijų." +msgstr "" msgid "The distance to keep from the edges. A value of 0 sets this to half of the nozzle diameter." -msgstr "Atstumas, kurį reikia išlaikyti nuo kraštų. Jei reikšmė 0, nustatoma pusė purkštuko skersmens." +msgstr "Atstumas, kurį reikia išlaikyti nuo kraštų. Įrašius 0, nustatoma pusė purkštuko skersmens vertės." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the print speed for ironing lines." -msgstr "Lyginimo linijų spausdinimo greitis." +msgstr "" msgid "Ironing angle offset" -msgstr "" +msgstr "Lyginimo kampo nuokrypis (offset)" msgid "The angle of ironing lines offset from the top surface." -msgstr "" +msgstr "Lyginimo linijų kampo nuokrypis nuo viršutinio paviršiaus linijų krypties." msgid "Fixed ironing angle" -msgstr "" +msgstr "Fiksuotas lyginimo kampas" msgid "Use a fixed absolute angle for ironing." -msgstr "" +msgstr "Naudoti fiksuotą absoliutų lyginimo kampą." msgid "Ironing expansion" -msgstr "" +msgstr "Lyginimo zonos išplėtimas" msgid "Expand or contract the ironing area." -msgstr "" +msgstr "Išplėsti arba susiaurinti lyginamąjį plotą." msgid "Z contouring enabled" -msgstr "" +msgstr "Įjungtas Z-ašies kontūravimas" msgid "Enable Z-layer contouring (aka Z-layer anti-aliasing)." -msgstr "" +msgstr "Įjungti Z-sluoksnių kontūravimą (dar žinomą kaip Z-sluoksnių glotninimą / anti-aliasing)." msgid "Minimize wall height angle" -msgstr "" +msgstr "Sienelės aukščio kampo minimizavimas" 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 "" +"Sumažinti viršutinio paviršiaus perimetrų aukštį, kad jis sutaptų su modelio krašto aukščiu.\n" +"Paveikia perimetrus, kurių nuolydis yra mažesnis už šį kampą (laipsniais).\n" +"Protinga vertė yra 35. Nustatykite 0, kad išjungtumėte." msgid "Don't alternate fill direction" -msgstr "" +msgstr "Nekeisti užpildymo krypties pakaitomis" msgid "Disable alternating fill direction when using Z contouring." -msgstr "" +msgstr "Išjungti pakaitomis keičiamą užpildo kryptį naudojant Z-ašies kontūravimą." msgid "Minimum Z height" -msgstr "" +msgstr "Minimalus Z-ašies aukštis" msgid "" "Minimum Z-layer height.\n" "Also controls the slicing plane." msgstr "" +"Minimalus Z-sluoksnio aukštis.\n" +"Taip pat valdo pjaustymo plokštumą." msgid "This G-code is inserted at every layer change after the Z lift." -msgstr "Šis G kodas įterpiamas po kiekvieno sluoksnio keitimo po Z pakėlimo." +msgstr "Šis G-kodas įterpiamas atliekant kiekvieną sluoksnio pakeitimą po Z-ašies pakėlimo." msgid "Clumping detection G-code" +msgstr "Sankaupų (clumping) aptikimo G-kodas" + +msgid "Silent Mode" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Silent Mode" -msgstr "Palaikomas tylusis režimas" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whether the machine supports silent mode in which machine uses lower acceleration to print more quietly" -msgstr "Ar įrenginys palaiko tylųjį režimą, kai spausdindamas naudoja mažesnį pagreitį." +msgstr "" msgid "Emit limits to G-code" -msgstr "Išsiųsti apribojimus į G-kodą" +msgstr "Įrašyti apribojimus į G-kodą (Emit)" msgid "Machine limits" -msgstr "Mašinos ribos" +msgstr "Įrenginio apribojimai (Machine limits)" 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 "" -"Jei įjungta, įrenginio apribojimai bus perduodami į G-kodo failą.\n" -"Ši parinktis bus ignoruojama, jei g-kodo tipas nustatytas kaip Klipper." +"Jei įjungta, įrenginio apribojimai bus įrašyti į G-kodo failą.\n" +"Ši parinktis ignoruojama, jei G-kodo tipas (flavor) nustatytas kaip „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 "Šis G kodas bus naudojamas kaip pauzės spausdinimo kodas. Vartotojai gali įterpti pauzės G kodą G kodo peržiūroje." +msgstr "Šis G-kodas bus naudojamas spausdinimo pauzei. Naudotojai gali įterpti pauzės G-kodą per G-kodo peržiūros langą." msgid "This G-code will be used as a custom code." msgstr "Šis G-kodas bus naudojamas kaip pasirinktinis kodas." @@ -13850,25 +13916,25 @@ msgid "Small area flow compensation (beta)" msgstr "Mažo ploto srauto kompensavimas (beta)" msgid "Enable flow compensation for small infill areas." -msgstr "Įgalinti srauto kompensavimą mažuose užpildymo plotuose." +msgstr "Įjungti srauto kompensavimą mažiems užpildo plotams." msgid "Flow Compensation Model" msgstr "Srauto kompensavimo modelis" 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 "Srauto kompensavimo modelis, naudojamas srautui mažose užpildymo srityse reguliuoti. Modelis išreiškiamas kaip kableliu atskirtos ekstruzijos ilgio ir srauto korekcijos koeficiento poros. Kiekviena pora yra atskiroje eilutėje, po kurios eina kabliataškis, tokio formato: „1,234, 5,678;“." +msgstr "Srauto kompensavimo modelis, naudojamas srautui mažuose užpildo plotuose koreguoti. Modelis pateikiamas kableliu atskirtų verčių poromis: ekstruzijos ilgis ir srauto korekcijos koeficientas. Kiekviena pora rašoma atskiroje eilutėje su kabliataškiu gale, pavyzdžiui: „1.234, 5.678;“" msgid "Maximum speed X" -msgstr "Didžiausias greitis X" +msgstr "Didžiausias X greitis" msgid "Maximum speed Y" -msgstr "Didžiausias greitis Y" +msgstr "Didžiausias Y greitis" msgid "Maximum speed Z" -msgstr "Didžiausias greitis Z" +msgstr "Didžiausias Z greitis" msgid "Maximum speed E" -msgstr "Didžiausias greitis E" +msgstr "Didžiausias E greitis" msgid "Maximum X speed" msgstr "Didžiausias X greitis" @@ -13931,30 +13997,30 @@ msgid "Maximum jerk of the E axis" msgstr "Didžiausias E ašies trūkčiojimas" msgid "Maximum Junction Deviation" -msgstr "Maksimalus jungties nuokrypis" +msgstr "Didžiausias posūkio nuokrypis" 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 "" +msgstr "Didžiausias posūkio nuokrypis (M205 J, taikoma tik jei JD > 0 „Marlin“ programinėje aparatinėje įrangoje. Jei jūsų Marlin 2 spausdintuvas naudoja klasikinį trūkčiojimą, nustatykite šią reikšmę į 0.)" msgid "Minimum speed for extruding" -msgstr "Mažiausias ekstruzijos greitis" +msgstr "Mažiausias išstūmimo greitis" msgid "Minimum speed for extruding (M205 S)" -msgstr "" +msgstr "Mažiausias išstūmimo greitis (M205 S)" msgid "Minimum travel speed" -msgstr "Mažiausias judėjimo greitis" +msgstr "Mažiausias tuščios eigos greitis" msgid "Minimum travel speed (M205 T)" -msgstr "Mažiausias judėjimo greitis (M205 T)" +msgstr "Mažiausias tuščios eigos greitis (M205 T)" msgid "Maximum acceleration for extruding" -msgstr "Didžiausias ekstruzijos pagreitis" +msgstr "Didžiausias išstūmimo pagreitis" msgid "Maximum acceleration for extruding (M204 P)" -msgstr "Didžiausias ekstruzijos pagreitis (M204 P)" +msgstr "Didžiausias išstūmimo pagreitis (M204 P)" msgid "Maximum acceleration for retracting" msgstr "Didžiausias įtraukimo pagreitis" @@ -13963,10 +14029,10 @@ msgid "Maximum acceleration for retracting (M204 R)" msgstr "Didžiausias įtraukimo pagreitis (M204 R)" msgid "Maximum acceleration for travel" -msgstr "Didžiausias judėjimo pagreitis" +msgstr "Didžiausias tuščios eigos pagreitis" msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2." -msgstr "Didžiausias judėjimo pagreitis (M204 T), jis taikomas tik \"Marlin 2\"." +msgstr "Didžiausias tuščios eigos pagreitis (M204 T), jis taikomas tik „Marlin 2“." msgid "Resonance avoidance" msgstr "Rezonanso vengimas" @@ -13975,11 +14041,11 @@ 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 "" -"Sumažinus išorinės sienos greitį, kad būtų išvengta spausdintuvo rezonanso zonos, išvengiama modelio paviršiaus bangavimo.\n" -"Prašome išjungti šią parinktį, kai bandote bangavimą." +"Sumažinus išorinės sienelės greitį, kad būtų išvengta spausdintuvo rezonanso zonos, išvengiama modelio paviršiaus virpėjimo (VFA). \n" +"Išjunkite šią parinktį, kai testuojate virpėjimą (VFA)." msgid "Min" -msgstr "" +msgstr "Min" msgid "Minimum speed of resonance avoidance." msgstr "Minimalus greitis, leidžiantis išvengti rezonanso." @@ -13991,21 +14057,21 @@ msgid "Maximum speed of resonance avoidance." msgstr "Maksimalus greitis, leidžiantis išvengti rezonanso." msgid "Emit input shaping" -msgstr "" +msgstr "Įtraukti įvesties formavimą (Input shaping)" msgid "" "Override firmware input shaping settings.\n" "If disabled, firmware settings are used." -msgstr "" +msgstr "Perrašyti programinės aparatinės įrangos įvesties formavimo (Input shaping) nustatymus. Jei išjungta, naudojami numatytieji aparatinės įrangos nustatymai." msgid "Input shaper type" -msgstr "" +msgstr "Įvesties formuotojo (Input shaper) tipas" msgid "" "Choose the input shaper algorithm.\n" "Default uses the firmware default settings.\n" "Disable turns off input shaping in the firmware." -msgstr "" +msgstr "Pasirinkite įvesties formuotojo (Input shaper) algoritmą. Pasirinkus numatytąjį, naudojami programinės aparatinės įrangos nustatymai. Pasirinkus „Išjungta“, įvesties formavimas aparatinėje įrangoje yra išjungiamas." msgid "MZV" msgstr "MZV" @@ -14049,6 +14115,10 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"X ašies įvesties formuotojo (Input shaper) rezonansinis dažnis. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos dažnis. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“.\n" +" RRF: X ir Y reikšmės yra lygios." msgid "Y" msgstr "Y" @@ -14058,6 +14128,9 @@ msgid "" "Zero will use the firmware frequency.\n" "To disable input shaping, use the Disable type." msgstr "" +"Y ašies įvesties formuotojo (Input shaper) rezonansinis dažnis. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos dažnis. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“." msgid "" "Damping ratio for the X axis input shaper.\n" @@ -14065,22 +14138,28 @@ msgid "" "To disable input shaping, use the Disable type.\n" "RRF: X and Y values are equal." msgstr "" +"X ašies įvesties formuotojo (Input shaper) slopinimo koeficientas.\n" +"Įrašius nulį, bus naudojamas aparatinės įrangos slopinimo koeficientas. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“.\n" +"RRF: X ir Y reikšmės yra lygios." 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 ašies įvesties formuotojo (Input shaper) slopinimo koeficientas. \n" +"Įrašius nulį, bus naudojamas aparatinės įrangos slopinimo koeficientas. \n" +"Norėdami išjungti įvesties formavimą, pasirinkite tipą „Išjungta“." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan." -msgstr "Kai įjungtas automatinis aušinimas, dalių ventiliatoriaus greitis gali būti padidintas. Tai didžiausias dalių aušinimo ventiliatoriaus greitis." +msgstr "" msgid "The highest printable layer height for the extruder. Used to limit the maximum layer height when enable adaptive layer height." -msgstr "Didžiausias spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas norint apriboti maksimalų sluoksnio aukštį, kai įjungtas prisitaikantis sluoksnio aukštis." +msgstr "Didžiausias galimas spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas maksimaliam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis sluoksnio aukštis." msgid "Extrusion rate smoothing" -msgstr "Ekstruzijos greičio išlyginimas" +msgstr "Išstūmimo greičio išlyginimas" 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" @@ -14097,19 +14176,19 @@ msgid "" "\n" "Note: this parameter disables arc fitting." msgstr "" -"Šis parametras išlygina staigius išspaudimo greičio pokyčius, kurie įvyksta spausdintuvui pereinant nuo didelio srauto (didelio greičio / didesnio pločio) išspaudimo prie mažesnio srauto (mažesnio greičio / mažesnio pločio) išspaudimo ir atvirkščiai.\n" +"Siūlomas lietuviškas tekstas: Šis parametras išlygina staigius išstūmimo greičio pokyčius, kurie įvyksta spausdintuvui pereinant nuo didelio srauto (didelio greičio / didesnio pločio) išstūmimo prie mažesnio srauto (mažesnio greičio / mažesnio pločio) ir atvirkščiai.\n" "\n" -"Jis apibrėžia didžiausią greitį, kuriuo gali kisti išspaustas tūrinis srautas mm³/s. Didesnės vertės reiškia, kad leidžiami didesni ekstruzijos greičio pokyčiai, todėl greitis pereina greičiau.\n" +"Jis apibrėžia didžiausią spartą, kuria tūrinis srautas (mm³/s) gali kisti per laiko vienetą. Didesnės reikšmės reiškia, kad leidžiami staigesni išstūmimo srauto pokyčiai, užtikrinantys greitesnį greičio perėjimą.\n" "\n" "Reikšmė 0 išjungia šią funkciją.\n" "\n" -"Didelio greičio ir didelio srauto tiesioginės pavaros spausdintuvams (pvz., \"Bambu lab\" arba \"Voron\") ši vertė paprastai nereikalinga. Tačiau tam tikrais atvejais, kai funkcijos greičiai labai skiriasi, ji gali duoti nedidelę naudą. Pavyzdžiui, kai yra agresyvių sulėtėjimų dėl iškyšų. Tokiais atvejais rekomenduojama didelė vertė, maždaug 300-350 mm³/s² , nes tai leidžia pakankamai išlyginti, kad padedant slėgio avansui būtų pasiektas sklandesnis srauto perėjimas.\n" +"Spartiems, didelio srauto tiesioginės pavaros (Direct Drive) spausdintuvams (tokiems kaip „Bambu Lab“ arba „Voron“) ši reikšmė paprastai nėra būtina. Vis dėlto ji gali duoti nedidelės naudos tais atvejais, kai spausdinimo elementų greičiai labai skiriasi – pavyzdžiui, esant žymiems sulėtėjimams ties iškyšomis. Tokiais atvejais rekomenduojama didelė reikšmė (apie 300–350 mm³/s²), kuri užtikrina pakankamą išlyginimą, padedantį slėgio kompensavimo (Pressure Advance) algoritmui pasiekti sklandesnį srauto perėjimą.\n" "\n" -"Lėtesniems spausdintuvams, kuriuose nėra slėgio didinimo, vertė turėtų būti nustatyta daug mažesnė. Tiesioginės pavaros ekstruderiams gera pradinė vertė yra 10-15 mm³/s², o Bowdeno tipo ekstruderiams - 5-10 mm³/s².\n" +"Lėtesniems spausdintuvams be slėgio kompensavimo (Pressure Advance) šią reikšmę reikėtų nustatyti gerokai mažesnę. Tiesioginės pavaros (Direct Drive) ekstruderiams gera pradinė reikšmė yra 10–15 mm³/s², o „Bowden“ tipo – 5–10 mm³/s².\n" "\n" -"Ši funkcija \"Prusa\" programoje \"Prusa slicer\" vadinama slėgio išlyginimo funkcija.\n" +"„PrusaSlicer“ programoje ši funkcija vadinama „Pressure Equalizer“.\n" "\n" -"Pastaba: šis parametras išjungia lanko tvirtinimą." +"Pastaba: šis parametras išjungia lankų aproksimaciją (Arc fitting)." msgid "mm³/s²" msgstr "mm³/s²" @@ -14124,44 +14203,46 @@ msgid "" "\n" "Allowed values: 0.5-5" msgstr "" -"Mažesnė vertė užtikrina sklandesnius ekstruzijos greičio pokyčius. Tačiau dėl to G kodo failas tampa žymiai didesnis, o spausdintuvas turi apdoroti daugiau instrukcijų.\n" +"Mažesnė reikšmė užtikrina sklandesnius išstūmimo greičio perėjimus. Tačiau dėl to G-kodo (G-code) failas tampa žymiai didesnis ir spausdintuvas turi apdoroti daugiau instrukcijų.\n" "\n" -"Daugeliu atvejų gerai tinka numatytoji vertė 3. Jei spausdintuvas striginėja, padidinkite šią vertę, kad sumažintumėte atliekamų koregavimų skaičių.\n" +"Numatytoji reikšmė 3 puikiai tinka daugumai atvejų. Jei spausdintuvas striginėja, padidinkite šią reikšmę, kad sumažintumėte atliekamų koregavimų skaičių.\n" "\n" -"Leidžiamos vertės: 0,5–5" +"Leidžiamos reikšmės: 0.5–5" msgid "Apply only on external features" msgstr "Taikyti tik išoriniams elementams" 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 "Išspaudimo greičio išlyginimas taikomas tik išoriniams perimetrams ir iškyšoms. Tai gali padėti sumažinti artefaktus, atsirandančius dėl staigių greičio perėjimų išorėje matomose iškyšuose, nedarant poveikio elementų, kurie nebus matomi naudotojui, spausdinimo greičiui." +msgstr "Išstūmimo greičio išlyginimas taikomas tik išoriniams perimetrams ir iškyšoms. Tai padeda sumažinti artefaktus, atsirandančius dėl staigių greičio perėjimų išorėje matomose iškyšose, nedarant įtakos nematomų elementų spausdinimo greičiui." msgid "Minimum speed for part cooling fan." -msgstr "Mažiausias dalies aušinimo ventiliatoriaus greitis." +msgstr "Mažiausias modelio aušinimo ventiliatoriaus greitis." 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 "" -"Pagalbinės dalies aušinimo ventiliatoriaus greitis. Pagalbinis ventiliatorius veiks šiuo greičiu spausdinimo metu, išskyrus pirmuosius kelis sluoksnius, kuriems netaikomas sluoksnių aušinimas.\n" -"Norėdami naudotis šia funkcija, spausdintuvo nustatymuose įjunkite auxiliary_fan. G-kodo komanda: M106 P2 S(0-255)" +"Papildomo modelio aušinimo ventiliatoriaus greitis. Papildomas ventiliatorius veiks šiuo greičiu spausdinimo metu, išskyrus pirmuosius kelis sluoksnius, nurodytus neaušinamų sluoksnių nustatymuose.\n" +"Norėdami naudoti šią funkciją, spausdintuvo nustatymuose įjunkite „auxiliary_fan“. G-kodo komanda: M106 P2 S(0-255)" msgid "For the first" -msgstr "" +msgstr "Pirmiesiems" msgid "Set special auxiliary cooling fan for the first certain layers." -msgstr "" +msgstr "Nustatyti specialų papildomo ventiliatoriaus aušinimą pirmiesiems nurodytiems sluoksniams." 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 "" +"Papildomo ventiliatoriaus greitis bus didinamas tiesiškai nuo sluoksnio „Pirmiesiems“ iki maksimumo ties sluoksniu „Pilnas ventiliatoriaus greitis ties sluoksniu“.\n" +"Sluoksnis „Pilnas ventiliatoriaus greitis ties sluoksniu“ bus ignoruojamas, jei jis yra žemesnis nei „Pirmiesiems“ – tokiu atveju ventiliatorius veiks maksimaliu leidžiamu greičiu ties sluoksniu „Pirmiesiems“ + 1." msgid "Special auxiliary cooling fan speed, effective only for the first x layers." -msgstr "" +msgstr "Specialus papildomo aušinimo ventiliatoriaus greitis, galiojantis tik pirmiesiems x sluoksnių." msgid "The lowest printable layer height for the extruder. Used to limit the minimum layer height when enable adaptive layer height." -msgstr "Mažiausias spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas norint apriboti minimalų sluoksnio aukštį, kai įjungtas prisitaikantis sluoksnio aukštis." +msgstr "Mažiausias galimas spausdinimo sluoksnio aukštis ekstruderiui. Naudojamas minimaliam sluoksnio aukštį apriboti, kai įjungtas prisitaikantis sluoksnio aukštis." msgid "Min print speed" msgstr "Minimalus spausdinimo greitis" @@ -14170,7 +14251,7 @@ msgid "The minimum print speed to which the printer slows down to maintain the m msgstr "Mažiausias spausdinimo greitis, iki kurio spausdintuvas sulėtėja, kad išlaikytų pirmiau apibrėžtą minimalų sluoksnio laiką, kai įjungtas sulėtinimas dėl geresnio sluoksnių aušinimo." msgid "The diameter of nozzle." -msgstr "Purkštuvo skersmuo." +msgstr "Purkštuko skersmuo." msgid "Configuration notes" msgstr "Konfigūracijos pastabos" @@ -14179,17 +14260,16 @@ msgid "You can put here your personal notes. This text will be added to the G-co msgstr "Čia galite įdėti savo asmeninius užrašus. Šis tekstas bus pridėtas prie G kodo antraštės komentarų." msgid "Host Type" -msgstr "Hosto tipas" +msgstr "Serverio (Host) tipas" msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host." -msgstr "\"Orca Slicer\" gali įkelti G-kodo failus į spausdintuvą. Šiame lauke turi būti įrašyta įrenginio rūšis." +msgstr "„OrcaSlicer“ gali įkelti G-kodo (G-code) failus į spausdintuvo serverį (Host). Šiame lauke turi būti nurodytas serverio tipas." msgid "Nozzle volume" msgstr "Purkštuko tūris" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Volume of nozzle between the filament cutter and the end of the nozzle" -msgstr "Purkštuko tūris tarp pjaustytuvo ir purkštuko galo." +msgstr "" msgid "Cooling tube position" msgstr "Aušinimo vamzdžio padėtis" @@ -14204,46 +14284,43 @@ msgid "Length of the cooling tube to limit space for cooling moves inside it." msgstr "Aušinimo vamzdžio ilgis, kad būtų apribota erdvė aušinimo judesiams viduje." msgid "High extruder current on filament swap" -msgstr "Didelė ekstruderio srovė keičiant giją" +msgstr "Padidinta ekstruderio srovė keičiant giją" 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 "Gali būti naudinga padidinti ekstruderio variklio srovę vykstant gijos keitimo sekai, kad būtų užtikrintas greitas tiekimo greitis ir įveiktų pasipriešinimą apkraunant giją su netipinės formos antgaliu." +msgstr "Gali būti naudinga padidinti ekstruderio variklio srovę gijos keitimo sekos metu – tai leidžia užtikrinti didelę gijos kalimo (ramming) spartą ir įveikti pasipriešinimą prastumiant giją su netaisyklingos formos galiuku." msgid "Filament parking position" -msgstr "Gijos stovėjimo padėtis" +msgstr "Gijos parkavimo padėtis" 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 "Ekstruderio antgalio atstumas nuo padėties, kurioje gija yra pastatyta, kai ji išimama. Tai turėtų atitikti spausdintuvo programinės įrangos reikšmę." +msgstr "Ekstruderio antgalio atstumas nuo padėties, kurioje gija yra priparkuojama ją iškrovus. Ši reikšmė turi sutapti su nurodyta spausdintuvo aparatinėje įrangoje (firmware)." msgid "Extra loading distance" -msgstr "Papildomas pakrovimo atstumas" +msgstr "Papildomas gijos įkrovimo atstumas" 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 "Nustačius nulį, atstumas, kuriuo gija išleidžiama iš stovėjimo padėties įdėjimo metu, yra lygiai toks pat, koks buvo perkeltas atgal išėmimo metu. Jei parametras teigiamas, įdėjimo atstumas didesnis, jei neigiamas, - įdėjimo atstumas yra mažesnis nei išėmimo." +msgstr "Nustačius nulį, atstumas, kuriuo gija pastumiama iš parkavimo padėties įkrovimo metu, yra tiksliai toks pat, kokiu ji buvo atitraukta iškrovimo metu. Esant teigiamai reikšmei, gija įkraunama giliau, esant neigiamai – įkrovimo judesys yra trumpesnis nei iškrovimo." msgid "Start end points" msgstr "Pradžios ir pabaigos taškai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The start and end points which are from the cutter area to the excess chute." -msgstr "Pradžios ir pabaigos taškai, t. y. nuo pjaustymo zonos iki šiukšliadėžės." +msgstr "" msgid "Reduce infill retraction" -msgstr "Sumažinti užpildų įtraukimą" +msgstr "Sumažinti užpildo įtraukimą (Retraction)" -# TODO: Review, changed by lang refactor. PR 14254 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 "Neįtraukti, kai judėjimas vyksta tik užpildytoje zonoje. Tai reiškia, kad ištekėjimo nematyti. Tai gali sutrumpinti įtraukimo laiką sudėtingam modeliui ir sutaupyti laiką spausdinimui, tačiau sluoksniavimas ir G kodo generavimas bus lėtesni." +msgstr "Neatlikti gijos įtraukimo, kai tuščioji eiga vyksta tik užpildo zonoje. Tokiu atveju gijos varvėjimas (oozing) išorėje bus nematomas. Tai leidžia sumažinti įtraukimų skaičių sudėtingiems modeliams ir sutaupyti spausdinimo laiko, tačiau sulėtina sluoksniavimą bei G-kodo (G-code) generavimą. Pastaba: zonose, kuriose įtraukimas praleidžiamas, „Z-hop“ judesys taip pat neatliekamas." msgid "This option will drop the temperature of the inactive extruders to prevent oozing." -msgstr "Pasirinkus šią parinktį sumažės neaktyvių ekstruderių temperatūra, kad būtų išvengta išsiliejimo." +msgstr "Ši parinktis sumažina neaktyvių ekstruderių temperatūrą, kad būtų išvengta gijos varvėjimo (oozing)." msgid "Filename format" msgstr "Failų pavadinimų formatas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Users can decide project file names when exporting." -msgstr "Eksportuodami vartotojai gali pasirinkti projekto failų pavadinimus." +msgstr "" msgid "Make overhangs printable" msgstr "Padaryti iškyšas spausdinamas" @@ -14252,55 +14329,51 @@ msgid "Modify the geometry to print overhangs without support material." msgstr "Pakeisti geometriją, kad būtų galima spausdinti iškyšas be atraminės medžiagos." msgid "Make overhangs printable - Maximum angle" -msgstr "Spausdintinos iškyšos - Didžiausias kampas" +msgstr "Padaryti iškyšas spausdinamas – didžiausias kampas" 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 "Didžiausias leistinas iškyšų kampas, kurį galima spausdinti padarius statesnes iškyšas. 90° visiškai nepakeis modelio ir leis bet kokią iškyšą, o 0 - visas iškyšas pakeis kūgio formos medžiaga." +msgstr "Didžiausias leistinas iškyšų kampas, pritaikius algoritmą. 90° kampas visiškai nepakeis modelio ir leis bet kokias iškyšas, o 0° reikšmė visas iškyšas pakeis po jomis esančia kūgine atramine medžiaga." msgid "Make overhangs printable - Hole area" -msgstr "Spausdintinos iškyšos - Skylės plotas" +msgstr "Padaryti iškyšas spausdinamas – kiaurymės plotas" 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 "Didžiausias modelio pagrindo skylės plotas prieš ją užpildant kūgine medžiaga. 0 reikšmė užpildys visas modelio pagrindo skyles." +msgstr "Didžiausias modelio pagrinde esančios kiaurymės plotas, kurį viršijus ji užpildoma kūgine medžiaga. Reikšmė 0 užpildys visas modelio pagrinde esančias kiaurymes." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect overhang walls" -msgstr "Aptikti išsikišusią sieną" +msgstr "Aptikti iškyšų sieneles" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This detects the overhang percentage relative to line width and uses a different speed to print. For 100%% overhang, bridging speed is used." -msgstr "Nustatykite iškyšos procentinę dalį, palyginti su linijos pločiu, ir naudokite skirtingą spausdinimo greitį. Jei iškyša 100%%, naudojamas tilto greitis." +msgstr "" msgid "Outer walls" -msgstr "" +msgstr "Išorinės sienelės" msgid "" "Filament to print outer walls.\n" "\"Default\" uses the active object/part filament." -msgstr "" +msgstr "Gija, naudojama išorinėms sienelėms spausdinti. Pasirinkus „Numatytasis“, naudojama aktyvaus objekto / dalies gija." msgid "Inner walls" -msgstr "" +msgstr "Vidinės sienelės" msgid "" "Filament to print inner walls.\n" "\"Default\" uses the active object/part filament." -msgstr "" +msgstr "Gija, naudojama vidinėms sienelėms spausdinti. Pasirinkus „Numatytasis“, naudojama aktyvaus objekto / dalies gija." msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." -msgstr "Vidinės sienos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Vidinės sienelės linijos plotis. Jei išreiškiama %, reikšmė apskaičiuojama pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for inner walls." -msgstr "Tai vidinių sienų greitis." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of walls per layer." -msgstr "Vieno sluoksnio sienų skaičius." +msgstr "" msgid "Alternate extra wall" -msgstr "Alternatyvi papildoma siena" +msgstr "Alternatyvi papildoma sienelė" 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" @@ -14316,13 +14389,13 @@ msgstr "" "Naudoti žaibo užpildą kartu su šia parinktimi nerekomenduojama, nes yra nedaug užpildo, prie kurio būtų galima pritvirtinti papildomą perimetrą." 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 "Jei norite apdoroti išvesties G-kodą naudodami pasirinktinius scenarijus, tiesiog nurodykite jų absoliučius kelius. Keletą scenarijų atskirkite kabliataškiu. Skriptams kaip pirmasis argumentas bus perduotas absoliutus kelias iki G-kodo failo ir jie galės pasiekti \"Orca Slicer\" konfigūracijos nustatymus skaitydami aplinkos kintamuosius." +msgstr "Jei norite apdoroti išvesties G-kodą (G-code) per pasirinktinius scenarijus (scripts), nurodykite jų absoliučiuosius kelius čia. Kelis scenarijus atskirkite kabliataškiu. Scenarijams kaip pirmasis argumentas bus perduotas absoliutusis kelias iki G-kodo failo, o „OrcaSlicer“ konfigūracijos nustatymus jie galės pasiekti per aplinkos kintamuosius (environment variables)." msgid "Change extrusion role G-code (process)" -msgstr "" +msgstr "Išstūmimo tipo keitimo G-kodas (procesas)" msgid "This G-code is inserted when the extrusion role is changed. It runs after the machine and filament extrusion role G-code." -msgstr "" +msgstr "Šis G-kodas įterpiamas pasikeitus išstūmimo tipui. Jis vykdomas po spausdintuvo ir gijos išstūmimo tipo G-kodo." msgid "Printer type" msgstr "Spausdintuvo tipas" @@ -14340,78 +14413,67 @@ msgid "Printer variant" msgstr "Spausdintuvo variantas" msgid "Raft contact Z distance" -msgstr "Platformos kontakto Z atstumas" +msgstr "Pagrindo (Raft) kontakto Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 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 tarpas tarp platformos ir objekto. Jei viršutinis atramos Z atstumas yra 0, ši reikšmė ignoruojama ir objektas spausdinamas tiesiogiai kontaktuojant su platforma (be tarpo)." +msgstr "Z ašies tarpas tarp pagrindo (Raft) ir objekto. Jei viršutinis atramų Z atstumas yra 0, ši reikšmė ignoruojama ir objektas spausdinamas tiesiogiai kontaktuojant su pagrindu (Raft) (be tarpo)." msgid "Raft expansion" -msgstr "Platformos išplėtimas" +msgstr "Pagrindo (Raft) išplėtimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands all raft layers in XY plane." -msgstr "Tai išplečia visus platformos sluoksnius XY plokštumoje." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer density" msgstr "Pradinio sluoksnio tankis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the density of the first raft or support layer." -msgstr "Pirmojo platformos arba atraminio sluoksnio tankis." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer expansion" msgstr "Pradinio sluoksnio išplėtimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands the first raft or support layer to improve bed adhesion." -msgstr "Kad pagerėtų sukibimas su pagrindu, išplečiamas pirmasis platformos arba atraminis sluoksnis." +msgstr "" msgid "Raft layers" -msgstr "Platformos sluoksniai" +msgstr "Pagrindo (Raft) sluoksniai" msgid "Object will be raised by this number of support layers. Use this function to avoid warping when printing ABS." -msgstr "Objektas bus padidintas šiuo atraminių sluoksnių skaičiumi. Šią funkciją naudokite norėdami išvengti deformacijų spausdinant ABS." +msgstr "Objektas bus pakeltas per nurodytą pagrindo sluoksnių skaičių. Naudokite šią funkciją, kad išvengtumėte deformavimosi (warping) spausdinant ABS gija." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller values mean higher resolution and more time required to slice." -msgstr "G kodo kelias generuojamas supaprastinus modelių kontūrus, kad būtų išvengta pernelyg didelio taškų ir G kodo linijų skaičiaus. Mažesnė vertė reiškia didesnę skiriamąją gebą ir ilgesnį sluoksniavimo laiką." +msgstr "" msgid "Travel distance threshold" -msgstr "Judėjimo atstumo riba" +msgstr "Tuščios eigos atstumo riba" msgid "Only trigger retraction when the travel distance is longer than this threshold." -msgstr "Įtraukimas įjungiamas tik tada, kai judėjimo atstumas yra ilgesnis už šią ribą." +msgstr "Gijos įtraukimas (Retraction) suveikia tik tada, kai tuščios eigos atstumas yra ilgesnis už šią ribą." msgid "Retract amount before wipe" -msgstr "Įtraukiamas kiekis prieš nuvalymą" +msgstr "Gijos įtraukimo kiekis prieš valymą (Wipe)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the length of fast retraction before a wipe, relative to retraction length." -msgstr "Greito įtraukimo prieš nuvalymą ilgis, palyginti su įtraukimo ilgiu." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retract on layer change" -msgstr "Įtraukti, kai keičiamas sluoksnis" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This forces a retraction on layer changes." -msgstr "Priverstinis įtraukimas, kai keičiasi sluoksnis." +msgstr "" msgid "Retraction Length" -msgstr "Įtraukimo ilgis" +msgstr "Įtraukimo (Retraction) ilgis" msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction." -msgstr "Tam tikras kiekis medžiagos ekstruderyje yra įtraukiamas atgal, kad ilgos kelionės metu nesusidarytų išsiliejimas. Nustatykite nulį, kad išjungtumėte įtraukimą." +msgstr "Tam tikras gijos kiekis ekstruderyje yra įtraukiamas atgal, kad ilgos tuščios eigos metu gija nevarvėtų (ooze). Nustatykite nulį, jei norite išjungti įtraukimą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Long retraction when cut (beta)" msgstr "Ilgas įtraukimas, kai pjaunama (beta)" 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 "Eksperimentinė funkcija: Pakeitimų metu gija įtraukiama ir nukerpama didesniu atstumu, kad būtų sumažintas išleidimas. Nors tai gerokai sumažina išleidimą, taip pat gali padidėti purkštukų užsikimšimo ar kitų spausdinimo problemų rizika." +msgstr "Eksperimentinė funkcija: keičiant giją, ji įtraukiama ir nukerpama didesniu atstumu, kad būtų sumažintas jos pravalymo (purge) kiekis. Nors tai žymiai sumažina atliekų kiekį, gali padidėti purkštuko užsikimšimo ar kitų spausdinimo problemų rizika." msgid "Retraction distance when cut" msgstr "Įtraukimo atstumas, kai kerpama" @@ -14420,35 +14482,34 @@ msgid "Experimental feature: Retraction length before cutting off during filamen msgstr "Eksperimentinė savybė: Įtraukimo ilgis prieš nupjaunant keičiant giją." msgid "Long retraction when extruder change" -msgstr "" +msgstr "Ilgas įtraukimas keičiant ekstruderį" msgid "Retraction distance when extruder change" -msgstr "" +msgstr "Įtraukimo atstumas keičiant ekstruderį" msgid "Z-hop height" -msgstr "Z šuolio aukštis" +msgstr "„Z-hop“ (pakėlimo) aukštis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whenever there is a retraction, the nozzle is lifted a little to create clearance between the nozzle and the print. This prevents the nozzle from hitting the print when traveling more. Using spiral lines to lift z can prevent stringing." -msgstr "Kiekvieną kartą, kai gija įtraukiama, purkštukas šiek tiek pakeliamas, kad tarp purkštuko ir spaudinio atsirastų tarpas. Taip purkštukas, judėdamas daugiau, neužkliudo spaudinio. Naudojant spiralines linijas z pakėlimui, galima išvengti stygų susidarymo." +msgstr "" msgid "Z-hop lower boundary" -msgstr "Z šuolio apatinė riba" +msgstr "Z-hop apatinė riba" 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 šuolis pradės veikti tik tada, kai Z bus didesnis už šią vertę ir mažesnis už parametrą: \"Z šuolio viršutinė riba\"." +msgstr "Z-hop įsigalios tik tada, kai Z bus virš šios reikšmės ir žemiau parametro: „Z-hop viršutinė riba“." msgid "Z-hop upper boundary" -msgstr "Z šuolio viršutinė riba" +msgstr "Z-hop viršutinė riba" 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 "Jei ši vertė yra teigiama, Z-šuolis įsigalios tik tada, kai Z yra virš parametro „Z-šuolio apatinė riba“ ir yra žemiau šios vertės." +msgstr "Jei ši reikšmė yra teigiama, Z-hop įsigalios tik tada, kai Z bus virš parametro „Z-hop apatinė riba“ ir žemiau šios reikšmės." msgid "Z-hop type" -msgstr "Z šuolio tipas" +msgstr "Z-hop tipas" msgid "Type of Z-hop." -msgstr "Z-šuolio tipas." +msgstr "Z-hop tipas." msgid "Slope" msgstr "Nuolydis" @@ -14460,16 +14521,16 @@ msgid "Traveling angle" msgstr "Judėjimo kampas" msgid "Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results in Normal Lift." -msgstr "Šlaito ir spiralės Z-šuolio tipo judėjimo kampas. Nustačius jį į 90°, gaunamas normalus pakėlimas." +msgstr "Nuolydžio (Slope) ir spiralės (Spiral) Z-hop tipo judėjimo kampas. Nustačius 90°, gaunamas įprastas pakėlimas." msgid "Only lift Z above" -msgstr "Pakelti tik Z aukščiau" +msgstr "Pakelti Z tik virš" msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z." msgstr "Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik virš nurodytos absoliučiosios Z reikšmės." msgid "Only lift Z below" -msgstr "Pakelti tik Z žemiau" +msgstr "Pakelti Z tik žemiau" msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z." msgstr "Jei nustatysite teigiamą reikšmę, Z kėlimas bus vykdomas tik žemiau nurodytos absoliučiosios Z reikšmės." @@ -14478,7 +14539,7 @@ msgid "On surfaces" msgstr "Ant paviršių" msgid "Enforce Z-Hop behavior. This setting is impacted by the above settings (Only lift Z above/below)." -msgstr "Užtikrinkite \"Z šuolio\" elgesį. Šiam nustatymui įtakos turi pirmiau nurodyti nustatymai (tik pakelti Z virš/žemiau)." +msgstr "Priverstinis Z-hop taikymas. Šiam nustatymui įtakos turi aukščiau esantys parametrai (Pakelti Z tik virš/žemiau)." msgid "All Surfaces" msgstr "Visi paviršiai" @@ -14493,39 +14554,49 @@ msgid "Top and Bottom" msgstr "Viršus ir apačia" msgid "Direct Drive" -msgstr "Direct Drive" +msgstr "Tiesioginė pavara (Direct Drive)" msgid "Bowden" -msgstr "Bowden" +msgstr "Bowdeno vamzdelis (Bowden)" + +msgid "Enable filament dynamic map" +msgstr "Įjungti dinaminį gijų susiejimą" + +msgid "Enable dynamic filament mapping during print." +msgstr "Įjungti dinaminį gijų susiejimą spausdinimo metu." + +msgid "Has filament switcher" +msgstr "Turi gijos keitiklį" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "Spausdintuvas turi gijos keitimo įrangą (pvz., AMS)." msgid "Extra length on restart" -msgstr "Papildomas ilgis paleidus iš naujo" +msgstr "Papildomas ilgis po sugrąžinimo" 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 "Kai įtraukimas kompensuojamas po judesio, ekstruderis išstums šį papildomą gijos kiekį. Šis nustatymas reikalingas retai." +msgstr "Kai po judėjimo kompensuojamas gijos įtraukimas, ekstruderis papildomai išstums šį gijos kiekį. Šis nustatymas reikalingas retai." msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." -msgstr "Kai atitraukimas kompensuojamas pakeitus įrankį, ekstruderis išstums šį papildomą gijos kiekį." +msgstr "Kai po įrankio pakeitimo kompensuojamas gijos įtraukimas, ekstruderis papildomai išstums šį gijos kiekį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retraction speed" -msgstr "Įtraukimo greitis" +msgstr "" msgid "Speed for retracting filament from the nozzle." -msgstr "Gijos įtraukimo į purkštuką greitis." +msgstr "Gijos įtraukimo iš purkštuko greitis." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deretraction speed" -msgstr "Atitraukimo greitis" +msgstr "" msgid "Speed for reloading filament into the nozzle. Zero means same speed of retraction." -msgstr "Gijos įtraukimo į purkštuką greitis. Nulis reiškia tokį patį ištraukimo greitį." +msgstr "Gijos sugrąžinimo atgal į purkštuką greitis. Nulis reiškia tokį patį įtraukimo greitį." msgid "Use firmware retraction" -msgstr "Naudoti nustatytąjį įtraukimą" +msgstr "Naudoti aparatinės programinės įrangos įtraukimą" msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin." -msgstr "Šis eksperimentinis nustatymas naudoja G10 ir G11 komandas, kad programinė įranga valdytų įtraukimą. Tai palaikoma tik naujausioje „Marlin“." +msgstr "Šis eksperimentinis nustatymas naudoja G10 ir G11 komandas, leidžiančias aparatinei programinei įrangai valdyti įtraukimą. Tai palaiko tik naujesnės „Marlin“ versijos." msgid "Show auto-calibration marks" msgstr "Rodyti automatinio kalibravimo ženklus" @@ -14534,14 +14605,13 @@ msgid "Disable set remaining print time" msgstr "Išjungti nustatytą likusį spausdinimo laiką" msgid "Disable generating of the M73: Set remaining print time in the final G-code." -msgstr "Išjungti M73 generavimą: Nustatyti likusį spausdinimo laiką galutiniame G kode." +msgstr "Išjungti M73 komandos (likusio spausdinimo laiko nustatymo) generavimą galutiniame G-kode." msgid "Seam position" msgstr "Siūlės padėtis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the starting position for each part of the outer wall." -msgstr "Kiekvienos išorinės sienos dalies pradinė padėtis." +msgstr "" msgid "Nearest" msgstr "Artimiausia" @@ -14550,16 +14620,19 @@ msgid "Aligned" msgstr "Sulygiuota" msgid "Aligned back" -msgstr "Sulygiuotos galinės dalys" +msgstr "Sulygiuota gale" + +msgid "Back" +msgstr "Atgal" msgid "Random" msgstr "Atsitiktinė" msgid "Staggered inner seams" -msgstr "Vientisos vidinės siūlės" +msgstr "Išmėtytos vidinės siūlės" msgid "This option causes the inner seams to be shifted backwards based on their depth, forming a zigzag pattern." -msgstr "Vientisos vidinės siūlės Dėl šios parinkties vidinės siūlės bus paslinktos atgal pagal jų gylį, suformuojant zigzago raštą." +msgstr "Pasirinkus šią parinktį, vidinės siūlės yra paslenkamos atgal pagal jų gylį, taip suformuojant zigzago raštą." msgid "Seam gap" msgstr "Siūlės tarpas" @@ -14572,85 +14645,85 @@ msgstr "" "Šį kiekį galima nurodyti milimetrais arba procentais nuo esamo ekstruderio skersmens. Numatytoji šio parametro vertė yra 10 %." msgid "Scarf joint seam (beta)" -msgstr "Juostos jungiamoji siūlė (beta)" +msgstr "Įstrižoji jungiamoji siūlė (Scarf joint) (beta)" msgid "Use scarf joint to minimize seam visibility and increase seam strength." -msgstr "Naudokite juostos jungtį, kad siūlės būtų kuo mažiau matomos ir padidėtų siūlės tvirtumas." +msgstr "Naudoti įstrižąją jungtį (Scarf joint), kad siūlė būtų kuo mažiau matoma ir padidėtų jos tvirtumas." msgid "Conditional scarf joint" -msgstr "Sąlyginė juostinė jungtis" +msgstr "Sąlyginė įstrižoji jungtis (Scarf joint)" msgid "Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively." -msgstr "Skersines siūles naudokite tik ties lygiais perimetrais, kai įprastinės siūlės efektyviai nepaslepia aštrių kampų siūlių." +msgstr "Taikyti įstrižąsias jungtis (Scarf joint) tik ties lygiais perimetrais, kur įprastos siūlės negali būti efektyviai paslėptos aštriuose kampuose." msgid "Conditional angle threshold" -msgstr "Sąlyginė kampo riba" +msgstr "Sąlyginė kampo ribinė reikšmė" 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 "" -"Šia parinktimi nustatomas ribinis kampas, kuriuo taikoma sąlyginė juostinė siūlė.\n" -"Jei didžiausias kampas perimetro kilpoje viršija šią vertę (tai rodo, kad nėra aštrių kampų), bus naudojama juostinė siūlė. Numatytoji vertė yra 155°." +"Ši parinktis nustato ribinį kampą sąlyginės įstrižosios siūlės taikymui.\n" +"Jei didžiausias kampas perimetro kilpoje viršija šią reikšmę (tai rodo, kad nėra aštrių kampų), bus naudojama įstrižoji jungiamoji siūlė (Scarf joint). Numatytoji reikšmė yra 155°." msgid "Conditional overhang threshold" -msgstr "Sąlyginė iškyšos riba" +msgstr "Sąlyginė iškyšos (overhang) ribinė reikšmė" #, 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 "Šia parinktimi nustatoma iškyšos riba, kurią pasiekus taikomos juostinės siūlės. Jei perimetro neatraminė dalis yra mažesnė už šią ribą, bus taikomos jungiamosios siūlės. Pagal numatytuosius nustatymus ši riba yra 40 % išorinės sienos pločio. Dėl eksploatacinių sumetimų įvertinamas iškyšos laipsnis." +msgstr "Ši parinktis nustato iškyšos (overhang) ribinę reikšmę įstrižųjų jungiamųjų siūlių taikymui. Jei neatremta perimetro dalis yra mažesnė už šią ribą, bus naudojamos įstrižosios jungiamosios siūlės (Scarf joint). Numatytoji riba yra 40 % išorinės sienelės pločio. Dėl programos našumo iškyšos laipsnis yra apytikslis." msgid "Scarf joint speed" -msgstr "Juostos jungties greitis" +msgstr "Įstrižosios jungties (Scarf joint) greitis" 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 "Šia parinktimi nustatomas juostinių jungčių spausdinimo greitis. Rekomenduojama juostines jungtis spausdinti nedideliu greičiu (mažesniu nei 100 mm/s). Taip pat patartina įjungti funkciją \"Spausdinimo greičio išlyginimas\", jei nustatytas greitis labai skiriasi nuo išorinių arba vidinių sienų greičio. Jei čia nustatytas greitis yra didesnis už išorinių arba vidinių sienų greitį, spausdintuvas pagal numatytuosius nustatymus pasirinks lėtesnį iš šių dviejų greičių. Kai nurodyta procentais (pvz., 80 %), greitis apskaičiuojamas pagal atitinkamą išorinių arba vidinių sienų greitį. Numatytoji vertė yra 100 %." +msgstr "Ši parinktis nustato įstrižųjų jungčių (Scarf joint) spausdinimo greitį. Rekomenduojama jas spausdinti nedideliu greičiu (mažiau nei 100 mm/s). Taip pat patartina įjungti ekstruzijos srauto išlyginimą, jei nustatytas greitis stipriai skiriasi nuo išorinių ar vidinių sienelių greičio. Jei čia nurodytas greitis yra didesnis už išorinių ar vidinių sienelių greitį, spausdintuvas automatiškai parinks lėtesnį iš šių dviejų greičių. Nurodžius procentais (pvz., 80 %), greitis apskaičiuojamas pagal atitinkamos išorinės arba vidinės sienelės greitį. Numatytoji reikšmė yra 100 %." msgid "Scarf joint flow ratio" -msgstr "Juostinės jungties srauto koeficientas" +msgstr "Įstrižosios jungties (Scarf joint) srauto koeficientas" msgid "This factor affects the amount of material for scarf joints." -msgstr "Šis veiksnys turi įtakos medžiagos kiekiui, reikalingam juostinėms siūlėms." +msgstr "Šis koeficientas keičia medžiagos kiekį, naudojamą įstrižosioms jungtims (Scarf joint)." msgid "Scarf start height" -msgstr "Juostos pradžios aukštis" +msgstr "Įstrižosios jungties pradžios aukštis" 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 "" -"Pradinis juostos aukštis.\n" -"Šį dydį galima nurodyti milimetrais arba kaip dabartinio sluoksnio aukščio procentinę dalį. Numatytoji šio parametro reikšmė yra 0." +"Įstrižosios jungties pradžios aukštis.\n" +"Šį dydį galima nurodyti milimetrais arba esamo sluoksnio aukščio procentais. Numatytoji šio parametro reikšmė yra 0." msgid "Scarf around entire wall" -msgstr "Juosta aplink visą sieną" +msgstr "Įstrižoji jungtis aplink visą sienelę" msgid "The scarf extends to the entire length of the wall." -msgstr "Juosta tęsiasi per visą sienos ilgį." +msgstr "Įstrižoji jungtis tęsiasi per visą sienelės ilgį." msgid "Scarf length" -msgstr "Juostos ilgis" +msgstr "Įstrižosios jungties ilgis" msgid "Length of the scarf. Setting this parameter to zero effectively disables the scarf." -msgstr "Juostos ilgis. Nustačius šį parametrą lygų nuliui, juosta išjungiama." +msgstr "Įstrižosios jungties ilgis. Nustačius šį parametrą ties nuliu, įstrižoji jungtis išjungiama." msgid "Scarf steps" -msgstr "Jostos žingsniai" +msgstr "Įstrižosios jungties žingsniai" msgid "Minimum number of segments of each scarf." -msgstr "Mažiausias kiekvienos juostos segmentų skaičius." +msgstr "Mažiausias kiekvienos įstrižosios jungties segmentų skaičius." msgid "Scarf joint for inner walls" -msgstr "Vidinių sienų juostos jungtis" +msgstr "Įstrižoji jungtis (Scarf joint) vidinėms sienelėms" msgid "Use scarf joint for inner walls as well." -msgstr "Vidinėms sienoms taip pat naudoti juostos jungtį." +msgstr "Įstrižąją jungtį (Scarf joint) naudoti ir vidinėms sienelėms." msgid "Role base wipe speed" -msgstr "Vaidmens pagrindo nuvalymo greitis" +msgstr "Valymo greitis pagal elemento tipą" 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 "Jei nuvalymo veiksmas atliekamas iš karto po išorinės sienelės išspaudimo, nuvalymo veiksmui bus naudojamas išorinės sienelės išspaudimo greitis." +msgstr "Valymo greitį lemia esamo išspaudimo elemento tipas. Pvz., jei valymo veiksmas atliekamas iškart po išorinės sienelės išspaudimo, valymui bus naudojamas išorinės sienelės spausdinimo greitis." msgid "Wipe on loops" msgstr "Nuvalyti kilpas" @@ -14659,29 +14732,28 @@ msgid "To minimize the visibility of the seam in a closed loop extrusion, a smal msgstr "Siekiant sumažinti siūlės matomumą uždaroje ekstruzijos kilpoje, prieš ekstruderiui išeinant iš kilpos atliekamas nedidelis judesys į vidų." msgid "Wipe before external loop" -msgstr "Nuvalyti prieš išorinę kilpą" +msgstr "Valymas prieš išorinį kontūrą" 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 "" -"Siekiant sumažinti galimo perteklinio išspaudimo matomumą išorinio perimetro pradžioje, kai spausdinama išorinės / vidinės arba vidinės / išorinės / išorinės / vidinės sienos spausdinimo tvarka, ištraukimas atliekamas šiek tiek į vidų nuo išorinio perimetro pradžios. Taip bet koks galimas perteklinis išspaudimas paslepiamas nuo išorinio paviršiaus.\n" +"Siekiant sumažinti galimo medžiagos pertekliaus (overextrusion) matomumą išorinio perimetro pradžioje, kai naudojama „Išorinė/Vidinė“ arba „Vidinė/Išorinė/Vidinė“ sienelių spausdinimo tvarka, gijos sugrąžinimas atliekamas šiek tiek labiau į vidų nuo išorinio perimetro pradžios. Taip bet koks galimas medžiagos perteklius paslepiamas vidinėje paviršiaus pusėje.\n" "\n" -"Tai naudinga, kai spausdinama naudojant išorinės / vidinės arba vidinės / išorinės / išorinės / vidinės sienos spausdinimo tvarką, nes šiuose režimuose didesnė tikimybė, kad išorinis perimetras bus išspausdintas iš karto po ištraukimo pašalinimo judesio." +"Tai naudinga spausdinant „Išorinė/Vidinė“ arba „Vidinė/Išorinė/Vidinė“ sienelių tvarka, nes šiuose režimuose išorinis perimetras dažniausiai pradedamas spausdinti iškart po gijos sugrąžinimo judesio." msgid "Wipe speed" -msgstr "Valymo greitis" +msgstr "Gijos valymo greitis" 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 "Valymo greitis nustatomas pagal šioje konfigūracijoje nurodytą greičio nustatymą.Jei vertė išreikšta procentais (pvz., 80 %), ji bus apskaičiuota pagal pirmiau nurodytą judėjimo greičio nustatymą. Numatytoji šio parametro vertė yra 80%." +msgstr "Valymo greitis nustatomas pagal šioje konfigūracijoje nurodytą reikšmę. Jei reikšmė nurodyta procentais (pvz., 80%), ji bus apskaičiuojama pagal aukščiau nustatytą judėjimo (travel) greitį. Numatytoji šio parametro reikšmė yra 80%." msgid "Skirt distance" msgstr "Apvado atstumas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the skirt to the brim or the object." -msgstr "Tai atstumas nuo apvado iki krašto arba objekto." +msgstr "" msgid "Skirt start point" msgstr "Apvado pradžios taškas" @@ -14692,18 +14764,17 @@ msgstr "Kampas nuo objekto centro iki apvado pradžios taško. Nulis yra labiaus msgid "Skirt height" msgstr "Apvado aukštis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Number of skirt layers: usually only one" -msgstr "Kiek sluoksnių apvado. Paprastai tik vienas sluoksnis." +msgstr "" msgid "Single loop after first layer" -msgstr "Viengubas kontūras po pirmojo sluoksnio" +msgstr "Vienas kontūro sluoksnis po pirmojo sluoksnio" 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 "Apriboja apvado/apsauginio skydo kontūrus iki vienos sienos po pirmojo sluoksnio. Tai kartais yra naudinga, norint sutaupyti giją, tačiau gali sukelti apsauginio skydo/apvado deformaciją/įtrūkimus." +msgstr "Po pirmojo sluoksnio apriboja apvado / apsauginio skydo kontūrus iki vienos sienelės. Tai kartais naudinga norint sutaupyti gijos, tačiau apsauginis skydas ar apvadas gali labiau deformuotis arba įtrūkti." msgid "Draft shield" -msgstr "Apsauginis kokonas" +msgstr "Apsauginis skydas (Draft shield)" 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" @@ -14711,10 +14782,10 @@ msgid "" "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 "" -"Apsauginis skydas yra naudingas siekiant apsaugoti ABS arba ASA spaudinį nuo išlinkimo ir atsiskyrimo nuo spausdinimo pagrindo dėl skersvėjo. Jo paprastai reikia tik atviruose rėminiuose spausdintuvuose, t. y. be gaubto.\n" +"Apsauginis skydas (Draft shield) padeda apsaugoti ABS arba ASA spaudinius nuo deformavimosi ir atšokimo nuo pagrindo dėl skersvėjų. Dažniausiai jis reikalingas tik atviro tipo spausdintuvams be korpuso (enclosure).\n" "\n" -"Įjungta = apvadas yra tokio aukščio kaip aukščiausias spausdinamas objektas. Priešingu atveju naudojamas „apvado aukštis“.\n" -"Pastaba: Kai įjungtas apsauginis skydas, apvadas bus spausdinamas apvado atstumu nuo objekto. Todėl, jei aktyvuoti apvadai, jis gali su jais susikirsti. Norėdami to išvengti, padidinkite apvado atstumo reikšmę.\n" +"Įjungta = apvadas bus tokio paties aukščio kaip ir aukščiausias spausdinamas objektas. Priešingu atveju naudojamas parametras „Apvado aukštis“.\n" +"Pastaba: kai apsauginis skydas aktyvus, apvadas bus spausdinamas nurodytu „Apvado atstumu“ nuo objekto. Jei naudojami pado kraštai (brim), jie gali susikirsti. Norėdami to išvengti, padidinkite apvado atstumo reikšmę.\n" msgid "Enabled" msgstr "Įjungta" @@ -14723,7 +14794,7 @@ msgid "Skirt type" msgstr "Apvado tipas" msgid "Combined - single skirt for all objects, Per object - individual object skirt." -msgstr "Kombinuota - vienas apvadas visiems objektams, Objektui - atskiras objekto apvadas." +msgstr "Kombinuotas – vienas bendras apvadas visiems objektams; Kiekvienam objektui – atskiras apvadas kiekvienam spaudiniui." msgid "Per object" msgstr "Objektui" @@ -14731,9 +14802,8 @@ msgstr "Objektui" msgid "Skirt loops" msgstr "Apvado kontūrai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of loops for the skirt. 0 means the skirt is disabled." -msgstr "Tai yra apvado kontūrų skaičius. 0 reiškia, kad apvadas išjungtas." +msgstr "" msgid "Skirt speed" msgstr "Apvado greitis" @@ -14759,68 +14829,70 @@ msgid "The printing speed in exported G-code will be slowed down when the estima msgstr "Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas sluoksnio laikas bus trumpesnis už šią vertę, siekiant užtikrinti geresnį šių sluoksnių aušinimą." msgid "Minimum sparse infill threshold" -msgstr "Minimali reto užpildymo riba" +msgstr "Minimali reto užpildo ribinė reikšmė" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sparse infill areas which are smaller than this threshold value are replaced by internal solid infill." -msgstr "Reto užpildymo sritys, kurios yra mažesnės už šią ribinę vertę, pakeičiamos vidiniu vientisu užpildymu." +msgstr "" msgid "" "Filament to print internal solid infill.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama vidiniam vientisam užpildui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." msgid "" "Filament to print top surface.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama viršutiniam paviršiui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." msgid "" "Filament to print bottom surface.\n" "\"Default\" uses the active object/part filament." msgstr "" +"Gija, naudojama apatiniam paviršiui spausdinti.\n" +"Pasirinkus „Numatytoji“, naudojama aktyvaus objekto / dalies gija." msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Vidinio vientiso užpildo linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal solid infill, not including the top or bottom surface." -msgstr "Tai vidinio vientiso užpildo greitis, neįskaitant viršutinio ar apatinio paviršiaus." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables spiraling, which 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 "Tai leidžia atlikti spiralinį išlyginimą, kuris išlygina išorinio kontūro Z judesius ir paverčia vientisą modelį į vienos sienelės atspaudą su vientisais apatiniais sluoksniais. Galutiniame sudarytame modelyje nėra siūlės." +msgstr "" msgid "Smooth Spiral" -msgstr "Lygi spiralė" +msgstr "Sklandi spiralė" 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 "Sklandi spiralė išlygina X ir Y judesius, todėl XY kryptimis ant ne vertikalių sienų visiškai nesimato siūlių." +msgstr "Sklandi spiralė papildomai išlygina X ir Y judesius, todėl XY kryptimis ant nevertikalių sienelių siūlė tampa visiškai nematoma." msgid "Max XY Smoothing" -msgstr "Didžiausias XY išlyginimas" +msgstr "Maksimalus XY išlyginimas" #, 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 "Didžiausias atstumas, kuriuo galima perkelti taškus XY kryptimi, kad būtų pasiekta tolygi spiralė. Jei išreiškiamas %, jis bus apskaičiuojamas pagal purkštuko skersmenį." +msgstr "Maksimalus atstumas, kuriuo galima pastumti taškus XY plokštumoje, siekiant sklandžios spiralės. Jei nurodoma %, reikšmė apskaičiuojama pagal purkštuko skersmenį." msgid "Spiral starting flow ratio" -msgstr "Pradinis srauto santykis spiralėje" +msgstr "Spiralės pradinis srauto koeficientas" #, 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 "Nustato pradinį srauto santykį pereinant iš paskutinio apatinio sluoksnio į spiralę. Įprastai perėjimo į spiralę metu srauto santykis pirmojo ciklo metu keičiamas nuo 0 % iki 100 %, todėl kai kuriais atvejais spiralės pradžioje gali būti nepakankamas išspaudimas." +msgstr "Nustato pradinį srauto koeficientą perėjimo iš paskutinio apatinio sluoksnio į spiralę metu. Paprastai perėjimo į spiralę metu srauto koeficientas pirmojo kontūro metu didėja nuo 0% iki 100%, todėl kai kuriais atvejais spiralės pradžioje gali pritrūkti medžiagos (under-extrusion)." msgid "Spiral finishing flow ratio" -msgstr "Galinis srauto santykis spiralėje" +msgstr "Spiralės pabaigos srauto koeficientas" #, 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 "Nustato baigiamojo srauto santykį, kai baigiama spiralė. Paprastai spiralės perėjimo metu srauto santykis keičiamas nuo 100 % iki 0 % paskutinio ciklo metu, todėl kai kuriais atvejais spiralės pabaigoje gali būti nepakankamas išspaudimas." +msgstr "Nustato baigiamąjį srauto koeficientą užbaigiant spiralę. Paprastai šio perėjimo metu srauto koeficientas paskutinio kontūro metu mažėja nuo 100% iki 0%, todėl kai kuriais atvejais spiralės pabaigoje gali pritrūkti medžiagos (under-extrusion)." -# TODO: Review, changed by lang refactor. PR 14254 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 the nozzle." -msgstr "Jei pasirinktas lygus arba tradicinis režimas, kiekvienam spaudiniui bus sukurtas pakadrinis vaizdo įrašas. Atspausdinus kiekvieną sluoksnį, kameros fotoaparatu padaroma momentinė nuotrauka. Baigus spausdinti, visos šios momentinės nuotraukos sudedamos į laike rodomą vaizdo įrašą. Jei pasirinktas sklandus režimas, po kiekvieno sluoksnio atspausdinimo įrankio galvutė persikels į perteklinį lataką ir tada padarys momentinę nuotrauką. Kadangi darant momentinę nuotrauką iš purkštuko gali ištekėti lydalo gija, norint nuvalyti purkštuką, naudojant sklandųjį režimą reikalingas pirminis bokštelis." +msgstr "" msgid "Traditional" msgstr "Tradicinis" @@ -14830,7 +14902,7 @@ msgstr "Temperatūros kitimas" #. 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 "Temperatūros skirtumas, taikomas, kai ekstruderis nėra aktyvus. Ši vertė nenaudojama, kai „idle_temperature“ gijų nustatymuose nustatyta ne nulinė vertė." +msgstr "Temperatūros skirtumas, taikomas, kai ekstruderis yra neaktyvus. Ši reikšmė nenaudojama, kai gijos nustatymuose „idle_temperature“ (pasyvaus režimo temperatūra) yra nustatyta ne nuliui." msgid "∆℃" msgstr "∆℃" @@ -14848,36 +14920,34 @@ msgid "Insert multiple preheat commands (e.g. M104.1). Only useful for Prusa XL. msgstr "Įterpkite kelias įkaitinimo komandas (pvz., M104.1). Naudinga tik „Prusa XL“. Kitiems spausdintuvams nustatykite 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 "" +msgstr "G-kodas, įrašomas pačiame išvesties failo viršuje, prieš bet kokį kitą turinį. Naudingas įterpti metaduomenims, kuriuos spausdintuvo aparatinė programinė įranga nuskaito iš pirmųjų failo eilučių (pvz., numatomą spausdinimo laiką, gijos sąnaudas). Palaiko kintamuosius (placeholders), tokius kaip {print_time_sec} ir {used_filament_length}." msgid "Start G-code" msgstr "Pradžios G-kodas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when starting a print." -msgstr "G kodo paleidimas, kai pradedamas visas spausdinimas." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when the printer starts using this filament" -msgstr "Paleisti G-kodą, kai pradedama spausdinti šia gija." +msgstr "" msgid "Single Extruder Multi Material" -msgstr "Vieno ekstruderio daugialypė medžiaga" +msgstr "Vieno ekstruderio daugiamedžiagis spausdinimas (Multi-Material)" msgid "Use single nozzle to print multi filament." -msgstr "Naudoti vieną antgalį spausdinti keliomis gijomis." +msgstr "Naudoti vieną purkštuką spausdinimui keliomis gijomis." msgid "Manual Filament Change" msgstr "Rankinis gijų keitimas" 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 "Įjunkite šią parinktį, kad pasirinktinis Keisti gijos G-kodas būtų praleistas tik spausdinimo pradžioje. Įrankio keitimo komanda (pvz., T0) bus praleista viso spausdinimo metu. Tai naudinga spausdinant keliomis medžiagomis rankiniu būdu, kai rankinio gijos keitimo veiksmui įjungti naudojame M600/PAUSE." +msgstr "Įjunkite šią parinktį, kad pasirinktinis gijos keitimo G-kodas būtų praleistas tik spausdinimo pradžioje. Įrankio keitimo komanda (pvz., T0) bus praleidžiama viso spausdinimo metu. Tai naudinga rankiniam daugiamedžiagiam spausdinimui, kai rankiniam gijos keitimui inicijuoti naudojama M600 / PAUSE komanda." msgid "Wipe tower type" msgstr "Valymo bokšto tipas" 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 "" +msgstr "Pasirinkite valymo bokšto tipą daugiamedžiagiam spausdinimui. 1 tipas rekomenduojamas „Bambu“ ir „Qidi“ spausdintuvams su gijos kirpikliu. 2 tipas užtikrina geresnį suderinamumą su kelių galvučių (multi-tool) bei MMU spausdintuvais ir bendrai pasižymi platesniu suderinamumu." msgid "Type 1" msgstr "1 tipas" @@ -14886,31 +14956,31 @@ msgid "Type 2" msgstr "2 tipas" msgid "Purge in prime tower" -msgstr "Valymas pagrindiniame bokšte" +msgstr "Medžiagos išvalymas valymo bokštelyje" msgid "Purge remaining filament into prime tower." -msgstr "Išstumti likusias gijas į pirminio valymo bokštą." +msgstr "Išvalyti likusios gijos likučius valymo bokštelyje." msgid "Enable filament ramming" -msgstr "Įjungti gijos ramingą" +msgstr "Įjungti gijos sutankinimą (filament ramming)" msgid "Tool change on wipe tower" -msgstr "" +msgstr "Įrankio keitimas virš valymo bokšto" 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 "" +msgstr "Priverstinai nukreipti spausdinimo galvutę prie valymo bokšto prieš vykdant įrankio keitimo komandą (Tx). Aktualu tik spausdintuvams su keliais ekstruderiais (keliomis galvutėmis), naudojantiems 2 tipo valymo bokštą. Pagal numatytuosius nustatymus „OrcaSlicer“ praleidžia šį judesį kelių galvučių įrenginiuose, nes galvučių sukeitimą valdo aparatinė programinė įranga, todėl Tx komanda gali būti įvykdyta virš spausdinamos detalės. Įjunkite šią parinktį, jei norite, kad įrankio keitimas visada vyktų virš valymo bokšto." msgid "No sparse layers (beta)" msgstr "Nėra retų sluoksnių (beta)" 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 "Jei įjungta, valymo bokštas nebus spausdinamas ant sluoksnių, nepakeitus įrankio. Sluoksniuose, kuriuose keičiamas įrankis, ekstruderis judės žemyn, kad atspausdintų valymo bokštą. Vartotojas yra atsakingas už tai, kad nebūtų susidūrimo su spaudiniu." +msgstr "Jei įjungta, valymo bokštas nebus spausdinamas tuose sluoksniuose, kur įrankis nekeičiamas. Sluoksniuose, kur įrankis keičiamas, ekstruderis nusileis žemyn atspausdinti valymo bokšto dalies. Naudotojas pats atsako už tai, kad ekstruderis nesusidurtų su spaudiniu." msgid "Prime all printing extruders" -msgstr "Pripildyti visus spausdinimo ekstruderius" +msgstr "Paruošti (prime) visus spausdinimo ekstruderius" msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print." -msgstr "Jei įjungta, visi spausdinimo ekstruderiai bus užpildyti priekiniame spausdinimo pagrindo krašte spausdinimo pradžioje." +msgstr "Jei įjungta, visi spausdinimo ekstruderiai spausdinimo pradžioje bus paruošti (primed) prie priekinio spausdinimo pagrindo krašto." msgid "Slice gap closing radius" msgstr "Sluoksniavimo tarpo uždarymo spindulys" @@ -14921,8 +14991,11 @@ msgstr "Plyšiai, mažesni nei 2x tarpo uždarymo spindulys, užpildomi trikampi msgid "Slicing Mode" msgstr "Sluoksniavimo režimas" +msgid "Other" +msgstr "Kita" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." -msgstr "3DLabPrint lėktuvų modeliams naudokite „Lyginis-Nelyginis“. Naudokite „Uždaryti skyles“, kad uždarytumėte visas modelio skyles." +msgstr "„3DLabPrint“ lėktuvų modeliams naudokite „Lyginis-nelyginis“. Naudokite „Uždaryti kiaurymes“, kad uždarytumėte visas modelio kiaurymes." msgid "Regular" msgstr "Įprastas" @@ -14931,7 +15004,7 @@ msgid "Even-odd" msgstr "Lyginis-nelyginis" msgid "Close holes" -msgstr "Uždaryti skyles" +msgstr "Uždaryti kiaurymes" msgid "Z offset" msgstr "Z poslinkis" @@ -14942,12 +15015,11 @@ msgstr "Ši vertė bus pridėta (arba atimta) prie visų išvesties G kodo Z koo msgid "Enable support" msgstr "Įgalinti atramas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables support generation." -msgstr "Įgalinti atramų generavimą." +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 "Normalus (automatinis) ir Medis (automatinis) naudojamas automatiškai generuoti atramas. Pasirinkus Normalus (rankinis) arba Medis (rankinis), generuojamos tik atramos." +msgstr "Režimai „Įprastas (auto)“ ir „Medis (auto)“ naudojami automatiškai generuoti atramas. Jei pasirinkta „Įprastas (rankinis)“ arba „Medis (rankinis)“, atramos bus generuojamos tik nurodytose priverstinėse vietose (support enforcers)." msgid "Normal (auto)" msgstr "Įprastas (auto)" @@ -14964,9 +15036,8 @@ msgstr "Medis (rankinis)" msgid "Support/object XY distance" msgstr "Atramos/objekto XY atstumas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This controls the XY separation between an object and its support." -msgstr "Šiuo parametru nustatomas objekto ir atramos XY atstumas." +msgstr "" msgid "Support/object first layer gap" msgstr "Atramos ir objekto pirmojo sluoksnio tarpas" @@ -14978,14 +15049,13 @@ msgid "Pattern angle" msgstr "Rašto kampas" msgid "Use this setting to rotate the support pattern on the horizontal plane." -msgstr "Šį nustatymą naudokite norėdami pasukti atraminį modelį horizontalioje plokštumoje." +msgstr "Naudokite šį nustatymą, kad pasuktumėte atramų raštą horizontalioje plokštumoje." msgid "On build plate only" msgstr "Tik ant pagrindo plokštės" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting only generates supports that begin on the build plate." -msgstr "Šis nustatymas generuoja tik tas atramas, kurios prasideda ant spausdinimo plokštės." +msgstr "" msgid "Support critical regions only" msgstr "Paremti tik kritines sritis" @@ -14994,66 +15064,63 @@ msgid "Only create support for critical regions including sharp tail, cantilever msgstr "Atramas kurkite tik kritinėse srityse, įskaitant aštrų galą, konsolę ir pan." msgid "Ignore small overhangs" -msgstr "" +msgstr "Ignoruoti mažas iškyšas" msgid "Ignore small overhangs that possibly don't require support." -msgstr "" +msgstr "Ignoruoti mažas iškyšas (overhangs), kurioms greičiausiai nereikia atramų." msgid "Top Z distance" msgstr "Viršutinis Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." msgstr "Z tarpas tarp atramos viršaus ir objekto." msgid "Bottom Z distance" msgstr "Apatinis Z atstumas" -# TODO: Review, changed by lang refactor. PR 14254 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 tarpas tarp objekto ir atramos apačios. Jei viršutinis atramos Z atstumas yra 0 ir apačioje yra sąsajos sluoksniai, ši reikšmė ignoruojama ir atrama spausdinama tiesiogiai kontaktuojant su objektu (be tarpo)." msgid "Support/raft base" msgstr "Atraminis ir (arba) platformos pagrindas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "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." +msgstr "" +"Gija, naudojama atramų pagrindui ir padui (raft) spausdinti.\n" +"Pasirinkus „Numatytoji“, speciali gija atramoms nenaudojama ir imama šiuo metu aktyvi gija." msgid "Avoid interface filament for base" -msgstr "Venkite pagrindo sąsajos gijų" +msgstr "Nenaudoti sąsajos gijos pagrindui" msgid "Avoid using support interface filament to print support base if possible." -msgstr "Jei įmanoma, vengti naudoti atraminės sąsajos giją atraminiam pagrindui spausdinti." +msgstr "Jei įmanoma, nenaudoti atramų sąsajos (interface) gijos atramų pagrindui spausdinti." msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Atramos linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Loop pattern interface" -msgstr "Sąsaja naudoja kontūro raštą" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This covers the top contact layer of the supports with loops. It is disabled by default." -msgstr "Viršutinį kontaktinį atramų sluoksnį uždenkite kilpomis. Išjungta pagal numatytuosius nustatymus." +msgstr "" msgid "Support/raft interface" msgstr "Atramų ir (arba) platformos sąsaja" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "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." +msgstr "" +"Gija, naudojama atramų sąsajai spausdinti.\n" +"Pasirinkus „Numatytoji“, speciali gija atramų sąsajai nenaudojama ir imama šiuo metu aktyvi gija." msgid "Top interface layers" msgstr "Viršutiniai sąsajos sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of top interface layers." -msgstr "Viršutinių sąsajos sluoksnių skaičius" +msgstr "" msgid "Bottom interface layers" msgstr "Apatiniai sąsajos sluoksniai" @@ -15071,22 +15138,20 @@ msgid "" "Spacing of interface lines. Zero means solid interface.\n" "Force using solid interface when support ironing is enabled." msgstr "" -"Sąsajos linijų tarpas. Nulis reiškia vientisą sąsają. \n" -"Naudokite vientisą sąsają, kai įjungta atramų lyginimo funkcija." +"Tarpai tarp sąsajos linijų. Nulis reiškia vientisą (solid) sąsają.\n" +"Vientisa sąsaja naudojama priverstinai, kai įjungtas atramų lyginimas (ironing)." msgid "Bottom interface spacing" msgstr "Apatinės sąsajos tarpas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the spacing of bottom interface lines. 0 means solid interface." -msgstr "Atstumas tarp apatinių sąsajos linijų. 0 reiškia vientisą sąsają." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support interfaces." -msgstr "Atramų sąsajų greitis." +msgstr "" msgid "Base pattern" -msgstr "Pagrindinis raštas" +msgstr "Atramų pagrindo raštas" msgid "" "Line pattern of support.\n" @@ -15095,6 +15160,11 @@ msgid "" "\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 "" +"Atramų linijų raštas.\n" +"\n" +"Numatytasis pasirinkimas medinėms (Tree) atramoms yra „Tuščiaviduris“ (Hollow), kas reiškia, jog pagrindo raštas nenaudojamas. Kitiems atramų tipams numatytasis pasirinkimas yra tiesiaeigis (Rectilinear) raštas.\n" +"\n" +"PASTABA: organinėms (Organic) atramoms abi sienelės palaikomos tik naudojant „Tuščiavidurį / Numatytąjį“ pagrindo raštą. „Žaibo“ (Lightning) pagrindo raštą palaiko tik „Tree Slim / Strong / Hybrid“ atramos. Kitiems atramų tipams vietoj „Žaibo“ rašto bus naudojamas tiesiaeigis (Rectilinear)." msgid "Rectilinear grid" msgstr "Tiesus tinklelis" @@ -15105,84 +15175,79 @@ msgstr "Tuščiaviduris" msgid "Interface pattern" msgstr "Sąsajos raštas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." -msgstr "Linijinis atraminės sąsajos raštas. Numatytasis netirpios atraminės sąsajos raštas yra tiesiaeigis, o tirpios atraminės sąsajos numatytasis raštas yra koncentrinis." +msgstr "" msgid "Rectilinear Interlaced" -msgstr "Tiesiaeigis, persipynęs" +msgstr "Tiesiaeigis persipynęs (Rectilinear Interlaced)" msgid "Base pattern spacing" msgstr "Pagrindinio rašto tarpai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the spacing between support lines." -msgstr "Atstumai tarp atraminių linijų." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Normal support expansion" -msgstr "Įprastų atramų išplėtimas" +msgstr "" msgid "Expand (+) or shrink (-) the horizontal span of normal support." -msgstr "Padidinkite (+) arba sumažinkite (-) įprastinės atramos horizontalųjį atstumą." +msgstr "Išplėsti (+) arba susiaurinti (-) įprastų atramų horizontalųjį plotą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support." -msgstr "Atramų greitis." +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 "" -"Atramos stilius ir forma. Įprastoms atramoms projektuojant atramas į taisyklingą tinklelį, bus sukurtos stabilesnės atramos (numatytasis nustatymas), o prigludę atramų bokšteliai leis sutaupyti medžiagos ir sumažinti objekto nubrozdinimus.\n" -"Medžių atramoms siauras ir organinis stilius agresyviau sujungs šakas ir sutaupys daug medžiagos (numatytasis organinis), o hibridinis stilius sukurs panašią struktūrą kaip įprastos atramos po didelėmis plokščiomis iškyšomis." +"Atramų stilius ir forma. Naudojant įprastas atramas, jų projektavimas į reguliarų tinklelį sukuria stabilesnes struktūras (numatytasis nustatymas), o prigludusios (snug) atramos taupo medžiagą ir palieka mažiau žymių ant objekto.\n" +"Medinėms (tree) atramoms grakštus (slim) ir organinis (organic) stilius agresyviau sujungia šakas ir sutaupo daug medžiagos (numatytasis organinis), o hibridinis (hybrid) stilius sukuria struktūrą, panašią į įprastas atramas po didelėmis plokščiomis iškyšomis (overhangs)." msgid "Default (Grid/Organic)" -msgstr "Numatytoji reikšmė (Tinklelis/organinis)" +msgstr "Numatytasis (Tinklelis / Organinis)" msgid "Snug" -msgstr "Aptemti" +msgstr "Prigludęs (Snug)" msgid "Organic" -msgstr "Organiškas" +msgstr "Organinis (Organic)" msgid "Tree Slim" -msgstr "Medis plonas" +msgstr "Grakštus medis (Tree Slim)" msgid "Tree Strong" -msgstr "Tvirtas medis" +msgstr "Tvirtas medis (Tree Strong)" msgid "Tree Hybrid" -msgstr "Hibridinis medis" +msgstr "Hibridinis medis (Tree Hybrid)" msgid "Independent support layer height" msgstr "Nepriklausomas atraminio sluoksnio aukštis" 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 "Atraminis sluoksnis naudoja sluoksnio aukštį, nepriklausomą nuo objekto sluoksnio. Taip palaikomas z tarpo pritaikymas ir taupomas spausdinimo laikas.Ši parinktis negalioja, kai įjungtas pagrindinis bokštas." +msgstr "Atramų sluoksniams naudojamas nuo objekto nepriklausomas sluoksnio aukštis. Tai leidžia individualiai pritaikyti Z tarpą ir sutaupyti spausdinimo laiko. Ši parinktis neveikia, kai yra įjungtas valymo bokštelis (prime tower)." msgid "Threshold angle" msgstr "Ribinis kampas" -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"Atramos bus generuojamos iškyšoms, kurių nuolydžio kampas yra mažesnis už slenkstį.Kuo mažesnė ši reikšmė, tuo statesnę iškyšą galima spausdinti be atramų.\n" -"Pastaba: jei nustatyta 0, įprastos atramos vietoje naudoja Slenksčio persidengimas, o medžio tipo atramos grįžta prie numatytosios 30 reikšmės." +"Atramos bus generuojamos toms iškyšoms, kurių nuolydžio kampas yra mažesnis už šią ribą. Kuo mažesnė ši reikšmė, tuo statesnes iškyšas galima atspausdinti be atramų.\n" +"Pastaba: jei nustatyta 0, įprastos atramos vietoj to naudos slenkstinio persidengimo (Threshold overlap) parametrą, o medinės atramos grįš prie numatytosios 30 laipsnių reikšmės." msgid "Threshold overlap" msgstr "Slenksčio persidengimas" 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 "Jei slenkstinis kampas lygus nuliui, atrama bus sukurta iškyšoms, kurių persidengimas yra mažesnis už slenkstį. Kuo mažesnė ši vertė, tuo statesnė iškyša, kurią galima spausdinti be atramos." +msgstr "Jei ribinis kampas lygus nuliui, atramos bus generuojamos iškyšoms, kurių persidengimas yra mažesnis už šią ribą. Kuo mažesnė ši reikšmė, tuo statesnes iškyšas galima atspausdinti be atramų." msgid "Tree support branch angle" msgstr "Atraminio medžio šakos kampas" 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 "Šis nustatymas nustato didžiausią iškyšos kampą, kurį gali sudaryti medžio atramos šakos. Padidinus kampą, šakos gali būti atspausdintos horizontaliau, todėl jos gali siekti toliau." +msgstr "Šis nustatymas nurodo didžiausią iškyšos kampą, kurį gali sudaryti medinių atramų šakos. Padidinus šį kampą, šakos gali būti spausdinamos horizontaliau, todėl jos gali pasiekti toliau esančias vietas." msgid "Preferred Branch Angle" msgstr "Pageidaujamas šakos kampas" @@ -15202,32 +15267,32 @@ msgstr "Šakų tankis" #. 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 "Reguliuoja atraminės struktūros, naudojamos šakų viršūnėms formuoti, tankį. Pasirinkus didesnę reikšmę, gaunamos geresnės iškyšos, tačiau atramas sunkiau pašalinti, todėl, jei reikia tankios atramos, rekomenduojama įjungti viršutinių atramų sąsajas, o ne didelę šakų tankio reikšmę." +msgstr "Reguliuoja atraminės struktūros tankį ties šakų viršūnėmis. Didesnė reikšmė užtikrina kokybiškesnes iškyšas, tačiau tokias atramas sunkiau pašalinti. Jei reikalingas tankus kontaktas, rekomenduojama įjungti viršutinius atramų sąsajos (interface) sluoksnius, užuot nustačius didelį šakų tankį." msgid "Auto brim width" -msgstr "Automatinis kraštų plotis" +msgstr "Automatinis pagrindo apvado (brim) plotis" msgid "Enabling this option means the width of the brim for tree support will be automatically calculated." -msgstr "Įjungus šią parinktį, medžio atramos krašto plotis apskaičiuojamas automatiškai." +msgstr "Įjungus šią parinktį, medinių atramų pagrindo apvado (brim) plotis bus apskaičiuojamas automatiškai." msgid "Tree support brim width" -msgstr "Atraminio medžio krašto plotis" +msgstr "Atraminio medžio pagrindo apvado plotis" msgid "Distance from tree branch to the outermost brim line." -msgstr "Atstumas nuo medžio šakos iki išorinės krašto linijos." +msgstr "Atstumas nuo medžio šakos iki tolimiausios pagrindo apvado (brim) linijos." msgid "Tip Diameter" msgstr "Galo skersmuo" #. TRN PrintSettings: "Organic supports" > "Tip Diameter" msgid "Branch tip diameter for organic supports." -msgstr "Organinių atramų šakos galo skersmuo." +msgstr "Šakos galo skersmuo organinėms atramoms." msgid "Tree support branch diameter" msgstr "Atraminio medžio šakų skersmuo" msgid "This setting determines the initial diameter of support nodes." -msgstr "Šiuo nustatymu nustatomas pradinis atraminių mazgų skersmuo." +msgstr "Šis nustatymas nurodo pradinį medinių atramų mazgų (šakų) skersmenį." #. TRN PrintSettings: #lmFIXME msgid "Branch Diameter Angle" @@ -15238,10 +15303,10 @@ msgid "The angle of the branches' diameter as they gradually become thicker towa msgstr "Šakų skersmens kampas, joms palaipsniui storėjant link apačios. Jei kampas lygus 0, šakos bus vienodo storio per visą ilgį. Šiek tiek didesnis kampas gali padidinti organinės atramos stabilumą." msgid "Support wall loops" -msgstr "Atramų sienų kontūrai" +msgstr "Atramų sienelių kontūrai (loops)" msgid "This setting specifies the count of support walls in the range of [0,2]. 0 means auto." -msgstr "Šis nustatymas nurodo atramų sienų storį intervale [0,2]. 0 reiškia automatinis." +msgstr "Šis nustatymas nurodo atramų sienelių skaičių intervale [0,2]. 0 reiškia automatiškai." msgid "Tree support with infill" msgstr "Medžių atramos su užpildymu" @@ -15253,7 +15318,7 @@ msgid "Ironing Support Interface" msgstr "Atramų lyginimo sąsaja" 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 "Lyginimas – tai mažo srauto naudojimas, kad būtų galima vėl spausdinti ant tos pačios aukščio atramos sąsajos, kad ji taptų lygesnė. Šis nustatymas kontroliuoja, ar atramos sąsaja bus lyginama. Kai šis nustatymas įjungtas, atramos sąsaja taip pat bus išspaudžiama kaip vientisa." +msgstr "Lyginimas (ironing) – tai procesas, kai naudojant mažą gijos srautą dar kartą spausdinama tame pačiame atramų sąsajos (interface) aukštyje, kad paviršius būtų lygesnis. Šis nustatymas valdo, ar atramų sąsaja bus lyginama. Įjungus šią funkciją, atramų sąsaja taip pat bus spausdinama kaip vientisas (solid) sluoksnis." msgid "Support Ironing Pattern" msgstr "Atramų lyginimo raštas" @@ -15262,7 +15327,7 @@ msgid "Support Ironing flow" msgstr "Atramų lyginimo srautas" 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 "Išspaudžiamo medžiagos kiekis lyginimo metu. Santykinis normalaus atraminio sąsajos sluoksnio aukščio srautas. Per didelė vertė sukelia per didelį išspaudimą ant paviršiaus." +msgstr "Išspaudžiamos medžiagos kiekis lyginimo metu. Jis skaičiuojamas santykinai pagal įprasto atramų sąsajos sluoksnio aukščio srautą. Per didelė reikšmė sukelia medžiagos perteklių (overextrusion) ant paviršiaus." msgid "Support Ironing line spacing" msgstr "Atramų lyginimo linijų tarpai" @@ -15276,13 +15341,10 @@ msgid "" "\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 "" -"Įjunkite šią parinktį, kad būtų galima automatizuotai valdyti kameros temperatūrą. Ši parinktis įjungia M191 komandos transliavimą prieš „machine_start_gcode“\n" -" kuri nustato kameros temperatūrą ir laukia, kol ji bus pasiekta. Be to, spausdinimo pabaigoje ji išspinduliuoja komandą M141, kad būtų išjungtas kameros šildytuvas, jei toks yra.\n" +"Įjunkite šią parinktį automatiniam kameros temperatūros valdymui. Ši parinktis aktyvuoja M191 komandos įterpimą prieš „machine_start_gcode“\n" +" – ji nustato kameros temperatūrą ir laukia, kol ji bus pasiekta. Taip pat spausdinimo pabaigoje generuojama M141 komanda, skirta išjungti kameros šildytuvą (jei jis yra).\n" "\n" -"Ši parinktis priklauso nuo to, ar programinė įranga palaiko komandas M191 ir M141 per makrokomandas, ar gimtąja kalba, ir paprastai naudojama, kai įrengtas aktyvus kameros šildytuvas." - -msgid "Chamber temperature" -msgstr "Kameros temperatūra" +"Ši funkcija veikia tik jei aparatinė programinė įranga palaiko M191 ir M141 komandas (gimtąja kalba arba per makrokomandas) ir dažniausiai naudojama, kai yra sumontuotas aktyvus kameros šildytuvas." 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" @@ -15291,87 +15353,73 @@ msgid "" "\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 "" -"Aukštos temperatūros medžiagoms, tokioms kaip ABS, ASA, PC ir PA, aukštesnė temperatūra kameroje gali padėti sumažinti arba sumažinti deformacijas ir padidinti tarpsluoksninio sukibimo stiprumą. Tačiau tuo pat metu aukštesnė kameros temperatūra sumažina ABS ir ASA oro filtravimo efektyvumą.\n" +"Aukštos temperatūros medžiagoms (tokioms kaip ABS, ASA, PC ir PA) aukštesnė kameros temperatūra padeda išvengti deformavimosi (warping) arba jį sumažinti, bei gali padidinti tarpsluoksninį sukibimą. Tačiau kartu aukštesnė kameros temperatūra sumažina ABS ir ASA oro filtravimo efektyvumą.\n" "\n" -"PLA, PETG, TPU, PVA ir kitoms žemos temperatūros medžiagoms ši parinktis turėtų būti išjungta (nustatyta į 0), nes kameros temperatūra turėtų būti žema, kad būtų išvengta ekstruderio užsikimšimo dėl medžiagos suminkštėjimo šilumos slenkstyje.\n" +"Žemos temperatūros medžiagoms (tokioms kaip PLA, PETG, TPU, PVA) ši parinktis turėtų būti išjungta (nustatyta reikšmė 0), nes kameros temperatūra privalo išlikti žema, kad gija nesuminkštėtų termoizoliaciniame vamzdelyje (heatbreak) ir neužkimštų ekstruderio.\n" "\n" -"Jei įjungtas, šis parametras taip pat nustato gkodo kintamąjį chamber_temperature, kuris gali būti naudojamas norimai kameros temperatūrai perduoti spausdinimo pradžios makrokomandai arba tokiai šiluminio įšilimo makrokomandai: (kiti kintamieji) CHAMBER_TEMP=[chamber_temperature]. Tai gali būti naudinga, jei jūsų spausdintuvas nepalaiko M141/M191 komandų arba jei norite, kad spausdinimo pradžios makrokomandoje būtų tvarkomas šilumos įšildymas, jei nėra aktyvaus kameros šildytuvo." +"Jei įjungta, šis parametras taip pat nustato G-kodo kintamąjį „chamber_temperature“, kurį galima naudoti norimai kameros temperatūrai perduoti į spausdinimo pradžios ar pirminio įšildymo (heat soak) makrokomandą, pavyzdžiui: PRINT_START (kiti kintamieji) CHAMBER_TEMP=[chamber_temperature]. Tai naudinga, jei spausdintuvas nepalaiko M141/M191 komandų arba jei norite pradinį įšildymą valdyti pačioje pradžios makrokomandoje, kai nėra įdiegto aktyvaus kameros šildytuvo." + +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" -msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect thin walls" msgstr "Aptikti plonas sieneles" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." -msgstr "Aptikti ploną sienelę, kurioje negali būti dviejų eilučių pločio. Spausdinimui naudoti vieną liniją. Gali būti, kad nebus išspausdinta labai gerai, nes tai nėra uždaras kontūras." +msgstr "" msgid "This G-code is inserted when filament is changed, including T commands to trigger tool change." -msgstr "Šis G kodas įterpiamas keičiant giją, įskaitant T komandas, skirtas įrankio keitimui suaktyvinti." +msgstr "Šis G-kodas įterpiamas keičiant giją, įskaitant T komandas, skirtas įrankio pakeitimui inicijuoti." msgid "This G-code is inserted when the extrusion role is changed." -msgstr "Šis G kodas įterpiamas, kai keičiamas išspaudimo vaidmuo." +msgstr "Šis G-kodas įterpiamas, kai pasikeičia išspaudimo tipas (vaidmuo)." msgid "Change extrusion role G-code (filament)" -msgstr "" +msgstr "Išspaudimo tipo keitimo G-kodas (gijai)" msgid "This G-code is inserted when the extrusion role is changed for the active filament." -msgstr "" +msgstr "Šis G-kodas įterpiamas, kai pasikeičia aktyvios gijos išspaudimo tipas (vaidmuo)." msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Viršutinių paviršių linijos plotis. Jei išreiškiamas %, jis bus apskaičiuojamas pagal purkštuko skersmenį." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid top surface infill." -msgstr "Viršutinio vientiso paviršiaus užpildo greitis." +msgstr "" msgid "Top shell layers" msgstr "Viršutiniai apvalkalo sluoksniai" -# TODO: Review, changed by lang refactor. PR 14254 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 the top shell thickness, the top shell layers will be increased" -msgstr "Tai viršutinio apvalkalo vientisų sluoksnių skaičius, įskaitant viršutinį paviršiaus sluoksnį. Kai pagal šią reikšmę apskaičiuotas storis yra plonesnis už viršutinio apvalkalo storį, viršutinio apvalkalo sluoksnių skaičius bus padidintas." +msgstr "" msgid "Top shell thickness" msgstr "Viršutinio apvalkalo storis" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." -msgstr "Sluoksniuojant didinamas viršutinių vientisų sluoksnių skaičius, jei pagal viršutinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir viršutinio apvalkalo storis visiškai nustatomas pagal viršutinio apvalkalo sluoksnius." - -msgid "Top surface density" -msgstr "Viršutinio paviršiaus tankis" - -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 "Viršutinio paviršiaus sluoksnio tankis. 100 % vertė sukuria visiškai vientisą, lygų viršutinį sluoksnį. Sumažinus šią vertę, viršutinis paviršius tampa tekstūruotas, atsižvelgiant į pasirinktą viršutinio paviršiaus raštą. 0 % vertė reiškia, kad bus sukurti tik ant viršutinio sluoksnio sienos. Skirta estetiniais ar funkciniais tikslais, ne tam, kad išspręstų tokias problemas kaip per didelis ekstruzijos kiekis." - -msgid "Bottom surface density" -msgstr "Apatinio paviršiaus tankis" - -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 "" -"Apatinio paviršiaus sluoksnio tankis. Skirtas estetinėms arba funkcinėms reikmėms, ne tam, kad išspręstų tokias problemas kaip per didelis ekstruzijos kiekis. \n" -"ĮSPĖJIMAS: Šio parametro sumažinimas gali neigiamai paveikti sluoksnio sukibimą su pagrindu." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." -msgstr "Judėjimo greitis, kuris yra greitesnis ir be ekstruzijos." +msgstr "" msgid "Wipe while retracting" msgstr "Nuvalyti įtraukiant" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This moves the 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 "Įtraukiant antgalį judinti išilgai paskutinio išspaudimo kelio, kad būtų išvalyta ant antgalio nutekėjusi medžiaga. Tai gali sumažinti artefaktų kiekį, kai po judėjimo spausdinama nauja dalis." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Wipe distance" -msgstr "Valymo atstumas" +msgstr "" msgid "" "Describe how long the nozzle will move along the last path when retracting.\n" @@ -15380,60 +15428,56 @@ msgid "" "\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 "" -"Apibūdinkite, kiek laiko antgalis judės paskutiniu keliu, kai bus įtraukiamas.\n" +"Nurodo, kokį atstumą purkštukas nukeliaus paskutine trajektorija atliekant įtraukimą.\n" "\n" -"Priklausomai nuo to, kiek laiko trunka valymo operacija, kokie greiti ir ilgi yra ekstruderio / gijų įtraukimo nustatymai, gali prireikti įtraukimo judesio, kad būtų įtraukta likusi gija.\n" +"Priklausomai nuo nuvalymo (wipe) operacijos trukmės bei ekstruderio gijos įtraukimo (retraction) greičio bei ilgio nustatymų, gali prireikti papildomo judesio likusiai gijai įtraukti.\n" "\n" -"Nustačius toliau esančio įvilkimo kiekio prieš valymą nustatymo reikšmę, bet koks perteklinis įvilkimas bus atliktas prieš valymą, priešingu atveju jis bus atliktas po jo." +"Jei žemiau esančiame nustatyme „Įtraukimo kiekis prieš nuvalymą“ nurodysite reikšmę, perteklinis gijos įtraukimas bus atliktas prieš nuvalymą, kitu atveju – po jo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." -msgstr "Valymo bokštas gali būti naudojamas likučiams ant purkštuko išvalyti ir kameros slėgiui purkštuko viduje stabilizuoti, kad spausdinant objektus būtų išvengta paviršiaus defektų." +msgstr "" msgid "Internal ribs" -msgstr "" +msgstr "Vidinės briaunos (ribs)" msgid "Enable internal ribs to increase the stability of the prime tower." -msgstr "" +msgstr "Įjungti vidines briaunas, kad padidėtų valymo bokštelio (prime tower) stabilumas." msgid "Purging volumes" -msgstr "Valymo tūriai" +msgstr "Gijos pravalymo (purging) tūriai" msgid "Flush multiplier" -msgstr "Išleidimo daugiklis" +msgstr "Pravalymo (flush) daugiklis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." -msgstr "Faktinis išleidimo kiekis yra lygus išleidimo daugikliui, padaugintam iš lentelėje nurodytų išleidimo kiekių." +msgstr "" msgid "Prime volume" -msgstr "Pagrindinis tūris" +msgstr "Ekstruderio paruošimo (prime) tūris" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the volume of material to prime the extruder with on the tower." -msgstr "Medžiagos kiekis, skirtas ekstruderiui užpildyti ant bokšto." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the width of prime towers." -msgstr "Pagrindinio bokšto plotis." +msgstr "" msgid "Wipe tower rotation angle" msgstr "Valymo bokšto sukimosi kampas" msgid "Wipe tower rotation angle with respect to X axis." -msgstr "Valymo bokšto sukimosi kampas x ašies atžvilgiu." +msgstr "Valymo bokštelio sukimosi kampas X ašies atžvilgiu." msgid "Brim width of prime tower, negative number means auto calculated width based on the height of prime tower." -msgstr "" +msgstr "Valymo bokštelio pagrindo apvado (brim) plotis. Neigiama reikšmė nurodo, kad plotis bus apskaičiuojamas automatiškai pagal valymo bokštelio aukštį." msgid "Stabilization cone apex angle" msgstr "Stabilizavimo kūgio viršūnės kampas" msgid "Angle at the apex of the cone that is used to stabilize the wipe tower. Larger angle means wider base." -msgstr "Kūgio viršūnės kampas, naudojamas valymo bokštui stabilizuoti. Didesnis kampas reiškia platesnį pagrindą." +msgstr "Kūgio, naudojamo valymo bokšteliui stabilizuoti, viršūnės kampas. Didesnis kampas reiškia platesnį pagrindą." msgid "Maximum wipe tower print speed" -msgstr "Didžiausias valymo bokšto spausdinimo greitis" +msgstr "Didžiausias valymo bokštelio spausdinimo greitis" 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" @@ -15446,18 +15490,18 @@ msgid "" "\n" "For the wipe tower external perimeters the internal perimeter speed is used regardless of this setting." msgstr "" -"Didžiausias spausdinimo greitis, kai atliekamas valymas valymo bokšte ir spausdinami reti valymo bokšto sluoksniai. Jei valant reto sluoksnio užpildymo greitis arba apskaičiuotas greitis pagal gijos maksimalų tūrinį greitį yra mažesnis, vietoj jo bus naudojamas mažiausias.\n" +"Didžiausias spausdinimo greitis atliekant gijos pravalymą (purging) bei spausdinant valymo bokštelio retuosius (sparse) sluoksnius. Jei pravalymo metu retojo užpildo greitis arba apskaičiuotas greitis pagal maksimalų tūrinį gijos greitį yra mažesnis, bus naudojamas mažiausias iš jų.\n" "\n" -"Spausdinant retus sluoksnius, jei vidinio perimetro greitis arba apskaičiuotas greitis pagal gijos maksimalų tūrinį greitį yra mažesnis, vietoj jo bus naudojamas mažiausias.\n" +"Spausdinant retuosius sluoksnius, jei vidinio perimetro greitis arba apskaičiuotas greitis pagal maksimalų tūrinį gijos greitį yra mažesnis, bus naudojamas mažiausias iš jų.\n" "\n" -"Padidinus šį greitį, gali nukentėti bokšto stabilumas, taip pat padidėti jėga, su kuria purkštuvas susiduria su bet kokiais nelygumais, kurie gali susidaryti ant valymo bokšto.\n" +"Padidinus šį greitį, gali nukentėti bokštelio stabilumas bei padidėti jėga, su kuria purkštukas susidurs su bet kokiais ant valymo bokštelio susidariusiais gijos gumbeliais (blobs).\n" "\n" -"Prieš didindami šį parametrą daugiau nei numatytasis 90 mm/s, įsitikinkite, kad jūsų spausdintuvas gali patikimai nutiesti tiltą didesniu greičiu ir kad gijos pratekėjimas keičiant įrankį yra gerai kontroliuojamas.\n" +"Prieš didindami šį parametrą virš numatytųjų 90 mm/s, įsitikinkite, kad jūsų spausdintuvas patikimai formuoja tiltelius (bridging) esant didesniam greičiui, o gijos nutekėjimas (ooze) keičiant įrankį yra gerai kontroliuojamas.\n" "\n" -"Valymo bokšto išoriniam perimetrui, nepriklausomai nuo šio parametro, naudojamas vidinio perimetro greitis." +"Valymo bokštelio išoriniams perimetrams, nepriklausomai nuo šio nustatymo, visada naudojamas vidinio perimetro greitis." msgid "Wall type" -msgstr "Sienos tipas" +msgstr "Sienelės tipas" msgid "" "Wipe tower outer wall type.\n" @@ -15465,78 +15509,76 @@ msgid "" "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 "" -"Nuvalymo bokšto išorinės sienos tipas. \n" -"1. Stačiakampis: numatytasis sienos tipas, stačiakampis su fiksuotu pločiu ir aukščiu. \n" -"2. Kūgis: kūgis su apatine išgaubta dalimi, padedančia stabilizuoti nuvalymo bokštą. \n" -"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios padidinti stabilumą." +"Valymo bokštelio išorinės sienelės tipas.\n" +"1. Stačiakampis (Rectangle): numatytasis sienelės tipas – fiksuoto pločio ir aukščio stačiakampis.\n" +"2. Kūgis (Cone): kūgis su suapvalinimu apačioje, padedantis stabilizuoti valymo bokštelį.\n" +"3. Briauna (Rib): prie bokštelio sienelės pridedamos keturios briaunos geresniam stabilumui užtikrinti." msgid "Rectangle" msgstr "Stačiakampis" msgid "Rib" -msgstr "" +msgstr "Briauna (Rib)" msgid "Extra rib length" -msgstr "Papildomas briaunų ilgis" +msgstr "Papildomas briaunos ilgis" 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 "Teigiami dydžiai gali padidinti šoninės briaunos sienelės dydį, o neigiami dydžiai – sumažinti. Tačiau šoninės briaunos sienelės dydis negali būti mažesnis už nustatytą valymo tūrį." +msgstr "Teigiamos reikšmės padidina briaunotos sienelės matmenis, o neigiamos – sumažina. Tačiau briaunotos sienelės matmenys negali būti mažesni už tuos, kuriuos nulemia nustatytas gijos pravalymo tūris." msgid "Rib width" msgstr "Briaunų plotis" msgid "Rib width is always less than half the prime tower side length." -msgstr "" +msgstr "Briaunos plotis visada turi būti mažesnis nei pusė valymo bokštelio šoninės sienelės ilgio." msgid "Fillet wall" -msgstr "Užapvalinta siena" +msgstr "Sienelės suapvalinimas (Fillet)" msgid "The wall of prime tower will fillet." -msgstr "Pagrindinio bokšto siena bus suapvalinta." +msgstr "Valymo bokštelio sienelės kampai bus suapvalinti." 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 "Ekstruderis, naudojamas spausdinant valymo bokšto perimetrą. Nustatykite į 0, kad būtų naudojamas turimas ekstruderis (pageidautina, kad būtų naudojamas netirpus)." +msgstr "Ekstruderis, naudojamas spausdinant valymo bokštelio perimetrą. Nustatykite reikšmę 0, kad būtų naudojamas bet kuris tuo metu prieinamas (rekomenduojama naudoti netirpų)." msgid "Purging volumes - load/unload volumes" -msgstr "Išleidimo tūriai – pakrovimo/iškrovimo tūriai" +msgstr "Pravalymo tūriai – gijos užpildymo (load) / iškrovimo (unload) tūriai" 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 "Šis vektorius išsaugo reikiamus tūrius, kad būtų galima pakeisti/į kiekvieną įrankį, naudojamą valymo bokštelyje. Šios vertės naudojamos siekiant supaprastinti toliau pateiktų išvalymo tūrių kūrimą." +msgstr "Šiame masyve (vektoriuje) išsaugomi reikiami gijos tūriai, skirti įrankių sukeitimui ant valymo bokštelio. Šios reikšmės naudojamos žemiau esančios bendros pravalymo tūrių lentelės užpildymui supaprastinti." msgid "Skip points" -msgstr "" +msgstr "Praleidžiami taškai (Skip points)" msgid "The wall of prime tower will skip the start points of wipe path." -msgstr "" +msgstr "Valymo bokštelio sienelėje bus praleidžiami nuvalymo (wipe) trajektorijos pradiniai taškai." msgid "Enable tower interface features" -msgstr "" +msgstr "Įjungti bokštelio sąsajos (interface) funkcijas" msgid "Enable optimized prime tower interface behavior when different materials meet." -msgstr "" +msgstr "Įjungti optimizuotą valymo bokštelio sąsajos elgseną, kai susiduria skirtingos medžiagos." msgid "Cool down from interface boost during prime tower" -msgstr "" +msgstr "Purkštuko aušinimas valymo bokštelyje po sąsajos temperatūros padidinimo" 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 "" +msgstr "Kai yra aktyvus sąsajos sluoksnio temperatūros padidinimas, valymo bokštelio pradžioje purkštuko temperatūra vėl sumažinama iki darbinio spausdinimo lygio, kad purkštukas atvėstų spausdinant bokštelį." msgid "Infill gap" -msgstr "" +msgstr "Užpildo tarpas (Infill gap)" msgid "Infill gap." +msgstr "Tarpas tarp užpildo ir vidinių sienelių." + +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 visible. It will not take effect unless the prime tower is enabled." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -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 visible. It will not take effect unless the prime tower is enabled." -msgstr "Pakeitus giją, valymas bus atliekamas objektų užpildų viduje. Tai gali sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Jei sienos atspausdintos iš skaidraus filamento, mišrios spalvos užpildas bus matomas išorėje. Jis nebus taikomas, nebent įjungtas pirminis bokštas." - -# TODO: Review, changed by lang refactor. PR 14254 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 a prime tower is enabled." -msgstr "Pakeitus giją, valymas bus atliekamas objektų atramos viduje. Tai gali sumažinti atliekų kiekį ir sutrumpinti spausdinimo laiką. Tai nebus veiksminga, jei nebus įjungtas pirminis bokštas." +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 "Šis objektas bus naudojamas purkštuko valymui po filamento keitimo, siekiant sutaupyti filamento ir sutrumpinti spausdinimo laiką. Dėl to objektų spalvos bus sumaišytos. Tai neveiks, jei nebus įjungtas pagrindinis bokštas." +msgstr "Šis objektas bus naudojamas purkštuko pravalymui po gijos pakeitimo, siekiant sutaupyti medžiagos ir sutrumpinti spausdinimo laiką. Dėl šios priežasties pereinamieji gijos atspalviai bus sumaišyti pačiame objekte. Ši funkcija veikia tik tuomet, kai įjungtas valymo bokštelis." msgid "Maximal bridging distance" msgstr "Maksimalus tiltelio atstumas" @@ -15551,43 +15593,41 @@ msgid "Spacing of purge lines on the wipe tower." msgstr "Valymo bokšto valymo linijų atstumai." msgid "Extra flow for purging" -msgstr "Papildomas srautas valymui" +msgstr "Papildomas pravalymo srautas" 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 "Papildomas srautas, naudojamas valymo bokšto išleidimo linijoms. Dėl to išleidimo linijos tampa storesnės arba siauresnės nei įprastai. Atstumai reguliuojami automatiškai." +msgstr "Papildomas gijos srautas, naudojamas valymo bokštelio pravalymo linijoms. Jis leidžia suformuoti storesnes arba siauresnes pravalymo linijas nei įprastai. Atstumai tarp linijų pritaikomi automatiškai." msgid "Idle temperature" -msgstr "Tuščiosios eigos temperatūra" +msgstr "Budėjimo (idle) temperatūra" 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 "Purkštuko temperatūra, kai įrankis šiuo metu nenaudojamas kelių įrankių nustatymuose.Tai naudojama tik tada, kai spausdinimo nustatymuose įjungta Išleidimo prevencija. Nustatykite 0, kad išjungtumėte." +msgstr "Purkštuko temperatūra, kai įrankis nėra naudojamas kelių įrankių (multi-tool) konfigūracijose. Šis parametras taikomas tik tuomet, kai spausdinimo nustatymuose įjungta „Gijos nutekėjimo prevencija“ (Ooze prevention). Nustatykite 0, jei norite išjungti." msgid "X-Y hole compensation" -msgstr "X-Y angų kompensavimas" +msgstr "XY angų kompensavimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Objekto angos XY plokštumoje bus padidintos arba sumažintos pagal nustatytą vertę. Teigiama reikšmė didina skyles. Neigiama reikšmė skyles sumažina. Ši funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas turi surinkimo problemų." +msgstr "" msgid "X-Y contour compensation" -msgstr "X-Y kontūro kompensavimas" +msgstr "XY kontūro kompensavimas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Objekto kontūras XY plokštumoje bus padidintas arba sumažintas pagal nustatytą vertę. Teigiama reikšmė didina kontūrą. Neigiama reikšmė kontūrą sumažina. Ši funkcija naudojama šiek tiek pakoreguoti dydį, kai objektas yra surenkamas." +msgstr "" msgid "Convert holes to polyholes" -msgstr "Konvertuoti skyles į daugiakampes" +msgstr "Konvertuoti skyles į daugiakampes (polyholes)" 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 "" -"Ieškokite beveik apskritų skylių, apimančių daugiau nei vieną sluoksnį, ir paverskite geometriją į daugiasluoksnes skyles. Norėdami apskaičiuoti daugialypę skylę, naudokite purkštuko dydį ir (didžiausią) skersmenį.\n" +"Ieško beveik apskritų skylių, kurios tęsiasi per kelis sluoksnius, ir konvertuoja jų geometriją į daugiakampes skyles (polyholes). Daugiakampės skylės skaičiavimui naudojamas purkštuko dydis ir (didžiausias) skersmuo.\n" "Žr. http://hydraraptor.blogspot.com/2011/02/polyholes.html" msgid "Polyhole detection margin" -msgstr "Daugiašakių aptikimo riba" +msgstr "Daugiakampių skylių (polyholes) aptikimo paklaida" #, no-c-format, no-boost-format msgid "" @@ -15596,14 +15636,22 @@ msgid "" "In mm or in % of the radius." msgstr "" "Didžiausias taško nuokrypis nuo apskaičiuoto apskritimo spindulio.\n" -"Kadangi cilindrai dažnai eksportuojami kaip įvairaus dydžio trikampiai, taškai gali būti ne apskritimo perimetre. Šis nustatymas suteikia tam tikrą laisvę išplėsti aptikimą.\n" -"mm arba % spindulio." +"Kadangi cilindriniai paviršiai modeliuose dažnai eksportuojami kaip skirtingo dydžio trikampių tinklas, taškai gali nesutapti su idealiu apskritimo perimetru. Šis nustatymas leidžia išplėsti aptikimo ribas.\n" +"Nurodoma mm arba % nuo spindulio." msgid "Polyhole twist" -msgstr "Daugiašakės sukimas" +msgstr "Daugiakampių skylių persukimas (Polyhole twist)" msgid "Rotate the polyhole every layer." -msgstr "Pasukite daugialypę skylę kiekviename sluoksnyje." +msgstr "Pasukti daugiakampės skylės orientaciją kiekviename sluoksnyje." + +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" msgid "G-code thumbnails" msgstr "G-kodo miniatiūros" @@ -15621,88 +15669,85 @@ msgid "Use relative E distances" msgstr "Naudoti santykinius E atstumus" 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 "Naudojant parinktį „label_objects“ rekomenduojama naudoti santykinį išspaudimą. Kai kurie ekstruzijos įrenginiai veikia geriau, jei ši parinktis nepažymėta (absoliučiosios ekstruzijos režimas). Valymo bokštas suderinamas tik su santykiniu režimu. Jį rekomenduojama naudoti daugumoje spausdintuvų. Pagal numatytuosius nustatymus pažymėta." +msgstr "Naudojant parinktį „label_objects“ rekomenduojama naudoti santykinį išspaudimą (relative extrusion). Kai kurie ekstruderiai veikia geriau, kai ši parinktis nepažymėta (absoliutaus išspaudimo režimas). Valymo bokštelis suderinamas tik su santykiniu režimu. Jį rekomenduojama naudoti daugumoje spausdintuvų. Pagal numatytuosius nustatymus parinktis yra įjungta." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." -msgstr "Klasikinis sienų generatorius sukuria pastovaus pločio sieneles, o labai plonoms sritims užpildyti naudojamas tarpų užpildymas. \"Arachnės\" variklis gamina kintamo išspaudimo pločio sienas." +msgstr "" msgid "Arachne" msgstr "Arachnė" msgid "Wall transition length" -msgstr "Sienų perėjimo ilgis" +msgstr "Sienelių perėjimo ilgis" -# TODO: Review, changed by lang refactor. PR 14254 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 "Pereinant nuo vieno sienelių skaičiaus prie kito, kai detalė tampa plonesnė, sienelių segmentams padalyti arba sujungti skiriama tam tikra erdvė. Jis išreiškiamas procentais nuo purkštuko skersmens." msgid "Wall transitioning filter margin" -msgstr "Sienos perėjimo filtro riba" +msgstr "Sienelių perėjimo filtro paklaida (margin)" 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 "Neleidžia pereiti iš vienos papildomos sienos į kitą. Ši riba išplečia sekančio išspaudimo pločio diapazoną iki [minimalus sienelės plotis - riba, 2 * minimalus sienelės plotis + riba]. Padidinus šią ribą, sumažėja perėjimų skaičius, todėl sumažėja ekstruzijos paleidimų / stabdymų skaičius ir judėjimo laikas. Tačiau dėl didelio ekstruzijos pločio skirtumo gali kilti nepakankamo arba per didelio ekstruzijos pločio problemų. Jis išreiškiamas procentais nuo purkštuko skersmens." +msgstr "Neleidžia perėjimo algoritmui nuolat persijungti pirmyn ir atgal tarp vienos papildomos ir viena mažesnės sienelės. Ši paklaida išplečia tolimesnių ekstruzijos pločių diapazoną iki [minimalus sienelės plotis - paklaida, 2 * minimalus sienelės plotis + paklaida]. Padidinus šią paklaidą, sumažėja perėjimų skaičius, o tai sumažina ekstruzijos pradžios / stabdymo taškų skaičių ir tuščiojo judėjimo (travel) laiką. Tačiau dideli ekstruzijos pločio svyravimai gali sukelti nepritekliaus (under-extrusion) arba pertekliaus (over-extrusion) problemų. Reikšmė išreiškiama procentais nuo purkštuko skersmens." msgid "Wall transitioning threshold angle" -msgstr "Sienų perėjimo slenksčio kampas" +msgstr "Sienelių perėjimo slenksčio kampas" 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 "Kai reikia sukurti perėjimus tarp lyginio ir nelyginio sienų skaičiaus. Pleišto formos, kurios kampas didesnis už šį nustatymą, perėjimų nebus, o centre nebus atspausdintos sienos, kad būtų užpildyta likusi erdvė. Sumažinus šį nustatymą, sumažėja šių centrinių sienelių skaičius ir ilgis, tačiau gali likti tarpų arba jos gali būti per daug išsikišusios." +msgstr "Nustato, kada kurti perėjimus tarp lyginio ir nelyginio sienelių skaičiaus. Pleišto formos geometrijoje, kurios kampas yra didesnis už šį nustatymą, perėjimai nebus kuriami ir centre nebus spausdinamos papildomos sienelės likusiai erdvei užpildyti. Sumažinus šią reikšmę, sumažėja šių centrinių sienelių skaičius ir ilgis, tačiau gali likti tuštumų arba susidaryti medžiagos perteklius (over-extrusion)." msgid "Wall distribution count" -msgstr "Sienų pasiskirstymo skaičius" +msgstr "Sienelių pasiskirstymo skaičius" 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 "Sienų skaičius, skaičiuojant nuo centro, ant kurių reikia paskirstyti pokytį. Mažesnės reikšmės reiškia, kad išorinių sienų plotis nesikeičia." +msgstr "Sienelių skaičius, skaičiuojant nuo centro, per kurias turi būti paskirstytas pločio svyravimas. Mažesnės reikšmės reiškia, kad išorinių sienelių plotis išlieka pastovus." msgid "Minimum feature size" -msgstr "Minimalus elemento dydis" +msgstr "Minimalus elemento dydis (Minimum feature size)" 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 "Mažiausias plonų elementų storis. Modelio elementai, kurie yra plonesni už šią vertę, nebus spausdinami, o elementai, kurie yra storesni už šią vertę, bus praplatinti iki minimalaus sienelės storio. Išreiškiama procentais nuo purkštuko skersmens." +msgstr "Mažiausias plonų elementų storis. Modelio elementai, plonesni už šią reikšmę, nebus spausdinami, o elementai, storesni už šią reikšmę, bus praplatinti iki minimalaus sienelės pločio. Išreiškiama procentais nuo purkštuko skersmens." msgid "Minimum wall length" -msgstr "Mažiausias sienos ilgis" +msgstr "Mažiausias sienelės ilgis" 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 "" -"Nustatykite šią reikšmę, kad nebūtų spausdinamos trumpos, neuždarytos sienos, dėl kurių gali pailgėti spausdinimo laikas. Didesnės reikšmės pašalina daugiau ir ilgesnių sienelių.\n" +"Pakoreguokite šią reikšmę, kad nebūtų spausdinamos trumpos, neuždaros sienelės, galinčios pailginti spausdinimo laiką. Didesnės reikšmės pašalina daugiau ir ilgesnes sieneles.\n" "\n" -"PASTABA: Apatiniams ir viršutiniams paviršiams ši reikšmė įtakos neturės, kad modelio išorėje nesusidarytų vizualūs tarpai. Toliau esančiuose išplėstiniuose nustatymuose sureguliuokite Vienos sienelės slenkstis, kad nustatytumėte jautrumą, kas laikoma viršutiniu paviršiumi. Vienos sienelės slenkstis matomas tik tada, jei šis nustatymas nustatytas didesnis už numatytąją vertę 0,5 arba jei įjungta vienos sienelės viršutinių paviršių funkcija." +"PASTABA: Šis nustatymas neturi įtakos apatiniams ir viršutiniams paviršiams, kad modelio išorėje neatsirastų matomų tuštumų. Žemiau esančiuose išplėstiniuose nustatymuose pakeiskite parametro „Vienos sienelės slenkstis“ (One wall threshold) jautrumą, apibrėžiantį, kas laikoma viršutiniu paviršiumi. Šis slenkstis matomas tik tada, kai nustatymas viršija numatytąją 0,5 reikšmę arba kai įjungta vienos sienelės viršutinių paviršių funkcija." msgid "Maximum wall resolution" -msgstr "" +msgstr "Didžiausia sienelių skiriamoji geba (resolution)" 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 "Ši reikšmė nustato mažiausią sienelės linijos segmento ilgį milimetrais (mm). Kuo mažesnę reikšmę nustatysite, tuo tikslesnės ir detalesnės bus sienelės." msgid "Maximum wall deviation" -msgstr "" +msgstr "Didžiausias sienelės nuokrypis" 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 "" +msgstr "Didžiausias leidžiamas nuokrypis, mažinant „Didžiausios sienelės raiškos“ nustatymo skiriamąją gebą. Jei jį padidinsite, spaudinys bus mažiau tikslus, tačiau G-kodas (G-Code) bus mažesnės apimties. „Didžiausias sienelės nuokrypis“ riboja „Didžiausią sienelės raišką“, todėl jei šie du nustatymai konfliktuoja, viršenybė teikiama „Didžiausiam sienelės nuokrypiui“." msgid "First layer minimum wall width" -msgstr "Pirmojo sluoksnio mažiausias sienos plotis" +msgstr "Pirmojo sluoksnio mažiausias sienelės plotis" 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 "Mažiausią sienos plotį, kuris turėtų būti naudojamas pirmajam sluoksniui, rekomenduojama nustatyti tokio pat dydžio, kaip ir purkštukas. Manoma, kad šis nustatymas pagerins sukibimą." +msgstr "Mažiausią sienelės plotį, kuris turėtų būti naudojamas pirmajam sluoksniui, rekomenduojama nustatyti tokio pat dydžio, kaip ir purkštuko skersmuo. Tikimasi, kad šis koregavimas pagerins sukibimą." msgid "Minimum wall width" -msgstr "Mažiausias sienos plotis" +msgstr "Mažiausias sienelės plotis" 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 "Sienos, kuri pakeis plonus modelio elementus, plotis (pagal minimalų elemento dydį). Jei Minimalus sienos plotis yra plonesnis už elemento storį, siena taps tokio pat storio kaip ir pats elementas. Jis išreiškiamas procentais nuo purkštuko skersmens." +msgstr "Sienelės, kuri pakeis plonus modelio elementus (pagal mažiausią elemento dydį), plotis. Jei mažiausias sienelės plotis yra mažesnis už elemento storį, sienelė taps tokio pat storio, kaip ir pats elementas. Jis išreiškiamas procentais nuo purkštuko skersmens." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect narrow internal solid infills" -msgstr "Aptikti siaurą vidinį vientisą užpildą" +msgstr "Aptikti siaurus vidinius vientisus užpildus" 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 "Ši parinktis automatiškai nustato siaurą vidinę vientiso užpildo sritį. Jei ši parinktis įjungta, šiai sričiai bus naudojamas koncentrinis raštas, kad būtų pagreitintas spausdinimas. Priešingu atveju pagal numatytuosius nustatymus naudojamas tiesiaeigis raštas." +msgstr "Ši parinktis automatiškai aptiks siauras vidines vientiso užpildo sritis. Jei ji įjungta, šiose srityse bus naudojamas koncentrinis raštas, kad spausdinimas būtų pagreitintas. Priešingu atveju pagal numatytuosius nustatymus bus naudojamas tiesiaeigis raštas." msgid "invalid value " msgstr "netinkama reikšmė " @@ -15711,7 +15756,7 @@ 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 "" +msgstr "Tiltelių linijos plotis negali viršyti purkštuko skersmens: " msgid "too large line width " msgstr "per didelis linijos plotis " @@ -15722,22 +15767,20 @@ msgstr " nepatenka į intervalą " msgid "Export 3MF" msgstr "Eksportuoti 3MF" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports the project as a 3MF file." -msgstr "Eksportuokite projektą kaip 3MF." +msgstr "" msgid "Export slicing data" msgstr "Eksportuoti sluoksniavimo duomenis" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export slicing data to a folder" -msgstr "Eksportuoti sluoksniavimo duomenis į katalogą." +msgstr "" msgid "Load slicing data" msgstr "Įkelti sluoksniavimo duomenis" msgid "Load cached slicing data from directory." -msgstr "Įkelti į talpyklą įrašytus pjaustymo duomenis iš katalogo." +msgstr "Įkelti į talpyklą įrašytus sluoksniavimo duomenis iš katalogo." msgid "Export STL" msgstr "Eksportuoti STL" @@ -15751,15 +15794,11 @@ msgstr "Eksportuoti kaip kelis STL" msgid "Export the objects as multiple STLs to directory." msgstr "Eksportuokite objektus kaip kelis STL į katalogą." -msgid "Slice" -msgstr "Sluoksniuoti" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" -msgstr "Sluoksniuoja plokštes: 0-visos plokštės, i-plokštė i, kitos-negaliojančios" +msgstr "Sluoksniuoti plokštes: 0 – visos plokštės, i – „i“ plokštė, kitos – netinkamos" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shows command help." -msgstr "Rodoma komandos pagalba." +msgstr "" msgid "UpToDate" msgstr "Atnaujinta" @@ -15771,33 +15810,31 @@ msgid "Load default filaments" msgstr "Įkelti numatytąsias gijas" msgid "Load first filament as default for those not loaded." -msgstr "Įkelti pirmąją giją kaip numatytąją neįkeltoms gijoms." +msgstr "Įkelti pirmąją giją kaip numatytąją toms gijoms, kurios nėra įkeltos." msgid "Minimum save" msgstr "Minimalus išsaugojimas" msgid "Export 3MF with minimum size." -msgstr "eksportuoti mažiausio dydžio 3MF." +msgstr "Eksportuoti mažiausio dydžio 3MF." msgid "mtcpp" msgstr "mtcpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max triangle count per plate for slicing" -msgstr "maksimalus trikampių skaičius plokštelėje sluoksniavimui." +msgstr "" msgid "mstpp" msgstr "mstpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max slicing time per plate in seconds" -msgstr "maksimalus vienos plokštės sluoksniavimo laikas sekundėmis." +msgstr "" msgid "No check" msgstr "Netikrinama" msgid "Do not run any validity checks, such as G-code path conflicts check." -msgstr "Nevykdyti jokių galiojimo patikrinimų, pvz., gkodo kelio konfliktų patikrinimo." +msgstr "Nevykdyti jokių tinkamumo patikrinimų, pavyzdžiui, G-kodo (G-code) trajektorijų konfliktų patikros." msgid "Normative check" msgstr "Normatyvinė patikra" @@ -15808,16 +15845,14 @@ msgstr "Patikrinti norminius elementus." msgid "Output Model Info" msgstr "Išvesti modelio informaciją" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This outputs the model’s information." -msgstr "Išvedama modelio informacija." +msgstr "" msgid "Export Settings" msgstr "Eksportavimo nustatymai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports settings to a file." -msgstr "Nustatymai eksportuojami į failą." +msgstr "" msgid "Send progress to pipe" msgstr "Siųsti pažangą į kanalą" @@ -15829,13 +15864,13 @@ msgid "Arrange Options" msgstr "Išdėstymo parinktys" msgid "Arrange options: 0-disable, 1-enable, others-auto" -msgstr "Išdėstymo parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" +msgstr "Išdėstymo parinktys: 0 – išjungti, 1 – įjungti, kitos – automatiškai" msgid "Repetition count" msgstr "Pakartojimų skaičius" msgid "Repetition count of the whole model." -msgstr "Viso modelio pasikartojimų skaičius." +msgstr "Viso modelio pakartojimų skaičius." msgid "Ensure on bed" msgstr "Užtikrinti ant pagrindo" @@ -15844,7 +15879,7 @@ msgid "Lift the object above the bed when it is partially below. Disabled by def msgstr "Pakelti daiktą virš pagrindo, kai jis iš dalies yra žemiau. Pagal numatytuosius nustatymus išjungta." msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once." -msgstr "Pateiktus modelius išdėstyti ant pagrindo ir sujungti į vieną modelį, kad vieną kartą atliktumėte veiksmus." +msgstr "Išdėstyti pateiktus modelius plokštėje ir sujungti juos į vieną modelį, kad veiksmai būtų atliekami vienu metu." msgid "Convert Unit" msgstr "Konvertuoti vienetus" @@ -15856,7 +15891,7 @@ msgid "Orient Options" msgstr "Orientacijos parinktys" msgid "Orient options: 0-disable, 1-enable, others-auto" -msgstr "Orientacijos parinktys: 0-išjungti, 1-įjungti, kiti-automatiniai" +msgstr "Orientacijos parinktys: 0 – išjungti, 1 – įjungti, kitos – automatiškai" msgid "Rotation angle around the Z axis in degrees." msgstr "Sukimosi kampas aplink Z ašį laipsniais." @@ -15868,13 +15903,13 @@ msgid "Rotation angle around the X axis in degrees." msgstr "Pasukimo kampas aplink X ašį laipsniais." msgid "Rotate around Y" -msgstr "Pasukti aplink Y" +msgstr "Pasukti aplink Y ašį" msgid "Rotation angle around the Y axis in degrees." msgstr "Sukimosi kampas aplink Y ašį laipsniais." msgid "Scale the model by a float factor." -msgstr "Modelio mastelio keitimas pagal kintamąjį koeficientą." +msgstr "Keisti modelio mastelį pagal slankiojo kablelio koeficientą." msgid "Load General Settings" msgstr "Įkelti bendruosius nustatymus" @@ -15886,7 +15921,7 @@ msgid "Load Filament Settings" msgstr "Įkelti gijų nustatymus" msgid "Load filament settings from the specified file list." -msgstr "Įkelti gijų nustatymus iš nurodyto failų sąrašo." +msgstr "Įkelti gijos nustatymus iš nurodyto failų sąrašo." msgid "Skip Objects" msgstr "Praleisti objektus" @@ -15898,69 +15933,69 @@ msgid "Clone Objects" msgstr "Klonuoti objektus" msgid "Clone objects in the load list." -msgstr "Įkrovos sąraše esančių objektų klonavimas." +msgstr "Klonuoti įkėlimo sąraše esančius objektus." msgid "Load uptodate process/machine settings when using uptodate" -msgstr "Naudojant „Naujausius“, įkelkite naujausius proceso/mašinos nustatymus" +msgstr "Naudojant „UpToDate“, įkelti naujausius proceso / mašinos nustatymus" -# TODO: Review, changed by lang refactor. PR 14254 msgid "load up-to-date process/machine settings from the specified file when using up-to-date" -msgstr "Įkelti \"naujausio\" proceso/įrenginio nustatymus iš nurodyto failo, kai naudojamas \"naujausias\"." +msgstr "" msgid "Load uptodate filament settings when using uptodate" -msgstr "Naudojant „naujausius“, įkelkite naujausius gijos nustatymus" +msgstr "Naudojant „UpToDate“, įkelti naujausius gijos nustatymus" msgid "Load uptodate filament settings from the specified file when using uptodate." -msgstr "Naudojant „naujausius“, įkelti naujausius gijų nustatymus iš nurodyto failo." +msgstr "Naudojant „UpToDate“, įkelti naujausius gijos nustatymus iš nurodyto failo." msgid "Downward machines check" -msgstr "Tolimesnių sąraše esančių mašinų patikra" +msgstr "Atgalinio mašinų suderinamumo patikra" msgid "If enabled, check whether current machine downward compatible with the machines in the list." -msgstr "Jei įjungta, patikrinkite, ar dabartinė mašina yra suderinama su sąraše esančiomis mašinomis." +msgstr "Jei įjungta, tikrinama, ar dabartinė mašina yra suderinama atgaline tvarka su sąraše esančiomis mašinomis." msgid "Downward machines settings" -msgstr "Tolimesnių mašinų nustatymas" +msgstr "Atgalinio mašinų suderinamumo nustatymai" msgid "The machine settings list needs to do downward checking." -msgstr "Mašinos nustatymų sąraše reikia atlikti žemyn einantį tikrinimą." +msgstr "Mašinos nustatymų sąrašas, kuriam reikia atlikti atgalinio suderinamumo patikrą." msgid "Load assemble list" msgstr "Įkelti surinkimo sąrašą" msgid "Load assemble object list from config file." -msgstr "Surinkimo objektų sąrašo įkėlimas iš konfigūracijos failo." +msgstr "Įkelti surinkimo objektų sąrašą iš konfigūracijos failo." msgid "Data directory" msgstr "Duomenų katalogas" msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage." -msgstr "Įkelkite ir išsaugokite nustatymus nurodytame kataloge. Tai naudinga norint išlaikyti skirtingus profilius arba įtraukti konfigūracijas iš tinklo saugyklos." +msgstr "Įkelti ir išsaugoti nustatymus nurodytame kataloge. Tai naudinga norint išlaikyti skirtingus profilius arba įtraukti konfigūracijas iš tinklo saugyklos." msgid "Output directory" msgstr "Išvesties katalogas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the output directory for exported files." -msgstr "Eksportuojamų failų išvesties katalogas." +msgstr "" msgid "Debug level" msgstr "Derinimo lygis" msgid "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" +msgstr "" +"Nustato derinimo žurnalų lygį. 0: kritinis, 1: klaida, 2: įspėjimas, 3: informacija, 4: derinimas, 5: sekimas\n" +"\n" msgid "Log file" -msgstr "" +msgstr "Žurnalo failas" msgid "Redirects debug logging to file.\n" -msgstr "" +msgstr "Nukreipia derinimo žurnalų įrašymą į failą.\n" msgid "Enable timelapse for print" -msgstr "Laiko intervalų spausdinimui įjungimas" +msgstr "Įjungti laiko intervalų (timelapse) fotografavimą spausdinimui" msgid "If enabled, this slicing will be considered using timelapse." -msgstr "Jei įjungta, šis sluoksniavimas bus atliekamas naudojant laiko intervalą." +msgstr "Jei įjungta, šis sluoksniavimas bus pritaikytas laiko intervalų (timelapse) fotografavimui." msgid "Load custom G-code" msgstr "Įkelti pasirinktinį G-kodą" @@ -15972,7 +16007,7 @@ msgid "Load filament IDs" msgstr "Įkelti gijų ID" msgid "Load filament IDs for each object." -msgstr "Įkelkite kiekvieno objekto gijų identifikatorius." +msgstr "Įkelti kiekvieno objekto gijų ID." msgid "Allow multiple colors on one plate" msgstr "Leisti skirtingas spalvas ant tos pačios plokštės" @@ -15987,16 +16022,16 @@ msgid "If enabled, Arrange will allow rotation when placing objects." msgstr "Jei įjungta, išdėstant objektus bus leidžiami pasukimai." msgid "Avoid extrusion calibrate region when arranging" -msgstr "Išdėstant vengti išspaudimo kalibravimo ploto" +msgstr "Išdėstant vengti išspaudimo (extrusion) kalibravimo srities" msgid "If enabled, Arrange will avoid extrusion calibrate region when placing objects." -msgstr "Jei įjungta, išdėstant objektus bus vengiama išspaudimo kalibravimo srities." +msgstr "Jei įjungta, išdėstymo funkcija vengs išspaudimo (extrusion) kalibravimo srities, kai išdėstys objektus." msgid "Skip modified G-code in 3MF" -msgstr "Praleisti modifikuotus gkodus 3MF" +msgstr "Praleisti modifikuotą G-kodą (G-code) 3MF failuose" msgid "Skip the modified G-code in 3MF from printer or filament presets." -msgstr "Praleiskite modifikuotą G kodą 3MF iš spausdintuvo arba gijos nustatymų." +msgstr "Praleisti modifikuotą G-kodą (G-code) 3MF faile iš spausdintuvo arba gijos profilių." msgid "MakerLab name" msgstr "MakerLab pavadinimas" @@ -16014,13 +16049,13 @@ msgid "Metadata name list" msgstr "Metaduomenų pavadinimų sąrašas" msgid "Metadata name list added into 3MF." -msgstr "" +msgstr "Į 3MF įtrauktų metaduomenų pavadinimų sąrašas." msgid "Metadata value list" msgstr "Metaduomenų reikšmių sąrašas" msgid "Metadata value list added into 3MF." -msgstr "" +msgstr "Į 3MF įtrauktų metaduomenų reikšmių sąrašas." msgid "Allow 3MF with newer version to be sliced" msgstr "Leisti 3MF su naujesne versija sluoksniuoti" @@ -16029,58 +16064,58 @@ msgid "Allow 3MF with newer version to be sliced." msgstr "Leisti sluoksniuoti 3MF su naujesne versija." msgid "Current Z-hop" -msgstr "Dabartinis Z-šuolis" +msgstr "Dabartinis Z-pakėlimas (Z-hop)" msgid "Contains Z-hop present at the beginning of the custom G-code block." -msgstr "Turi Z-šuolį, esantį pasirinktinio G-kodo bloko pradžioje." +msgstr "Apima Z-pakėlimą (Z-hop), esantį pasirinktinio G-kodo (G-code) bloko pradžioje." 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 "Ekstruderio padėtis pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis G-kodas juda kur nors kitur, jis turėtų būti įrašytas į šį kintamąjį, kad OrcaSlicer žinotų, iš kur jis juda, kai atgauna valdymą." +msgstr "Ekstruderio padėtis pasirinktinio G-kodo (G-code) bloko pradžioje. Jei pasirinktinis G-kodas atlieka judėjimą kitur, jis turėtų įrašyti reikšmę į šį kintamąjį, kad „OrcaSlicer“ žinotų pradinį tašką, kai valdymas bus grąžintas programai." 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 "Įtraukimo būsena pasirinktinio G-kodo bloko pradžioje. Jei pasirinktinis G-kodas judina ekstruderio ašį, jis turėtų įrašyti į šį kintamąjį, kad OrcaSlicer teisingai atšauktų įtraukimą, kai atgaus valdymą." +msgstr "Gijos įtraukimo (retraction) būsena pasirinktinio G-kodo (G-code) bloko pradžioje. Jei pasirinktinis G-kodas judina ekstruderio ašį, jis turėtų įrašyti reikšmę į šį kintamąjį, kad „OrcaSlicer“ teisingai atliktų gijos pastūmimą (de-retract), kai valdymas bus grąžintas programai." msgid "Extra de-retraction" -msgstr "Papildomas ištraukimas" +msgstr "Papildomas pastūmimas po įtraukimo (extra de-retraction)" msgid "Currently planned extra extruder priming after de-retraction." -msgstr "Šiuo metu planuojamas papildomas ekstruderio užpildymas po ištraukimo." +msgstr "Šiuo metu numatytas papildomas ekstruderio užpildymas (priming) po gijos pastūmimo (de-retraction)." msgid "Absolute E position" msgstr "Absoliuti E padėtis" msgid "Current position of the extruder axis. Only used with absolute extruder addressing." -msgstr "Dabartinė ekstruderio ašies padėtis. Naudojama tik su absoliučiu ekstruderio adresavimu." +msgstr "Dabartinė ekstruderio ašies padėtis. Naudojama tik esant absoliučiajam ekstruderio koordinavimui." msgid "Current extruder" msgstr "Dabartinis ekstruderis" msgid "Zero-based index of currently used extruder." -msgstr "" +msgstr "Dabartinio ekstruderio indeksas, skaičiuojamas nuo nulio." msgid "Current object index" msgstr "Dabartinio objekto indeksas" msgid "Specific for sequential printing. Zero-based index of currently printed object." -msgstr "Specifinis nuoseklaus spausdinimo būdas. Šiuo metu spausdinamo objekto indeksas (pradedant nuliu)." +msgstr "Specifinė nuoseklaus spausdinimo informacija. Šiuo metu spausdinamo objekto indeksas, skaičiuojamas nuo nulio." msgid "Has wipe tower" -msgstr "Turi valymo bokštą" +msgstr "Turi valymo bokštelį" msgid "Whether or not wipe tower is being generated in the print." -msgstr "Ar spausdinant generuojamas nuvalymo bokštas." +msgstr "Ar spausdinant yra generuojamas valymo bokštelis." msgid "Initial extruder" msgstr "Pradinis ekstruderis" msgid "Zero-based index of the first extruder used in the print. Same as initial_tool." -msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas (pradedant nuliu). Toks pat kaip initial_tool." +msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas, skaičiuojamas nuo nulio. Toks pat kaip „initial_tool“." msgid "Initial tool" msgstr "Pradinis įrankis" msgid "Zero-based index of the first extruder used in the print. Same as initial_extruder." -msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas pagal nulį. Toks pat kaip initial_extruder." +msgstr "Pirmojo spausdinimui naudojamo ekstruderio indeksas, skaičiuojamas nuo nulio. Toks pat kaip „initial_extruder“." msgid "Is extruder used?" msgstr "Ar naudojamas ekstruderis?" @@ -16095,16 +16130,16 @@ msgid "Total number of extruders, regardless of whether they are used in the cur msgstr "Bendras ekstruderių skaičius, neatsižvelgiant į tai, ar jie naudojami dabartiniame spausdinime." msgid "Has single extruder MM priming" -msgstr "Turi vieną ekstruderį MM užpildymui" +msgstr "Turi vieno ekstruderio MM užpildymą (MM priming)" msgid "Are the extra multi-material priming regions used in this print?" -msgstr "Ar šiame spaudinyje naudojami papildomi kelių medžiagų pagrindo regionai?" +msgstr "Ar šiame spaudinyje naudojamos papildomos kelių medžiagų užpildymo (priming) sritys?" msgid "Volume per extruder" msgstr "Vieno ekstruderio tūris" msgid "Total filament volume extruded per extruder during the entire print." -msgstr "Bendras gijų tūris, išspaustas iš vieno ekstruderio per visą spausdinimo procesą." +msgstr "Bendras gijos tūris, išspaustas (extruded) kiekvienu ekstruderiu per visą spausdinimo procesą." msgid "Total tool changes" msgstr "Bendras įrankių keitimų skaičius" @@ -16116,19 +16151,19 @@ msgid "Total volume" msgstr "Bendras tūris" msgid "Total volume of filament used during the entire print." -msgstr "Bendras viso spausdinimo metu sunaudotas gijų tūris." +msgstr "Bendras viso spausdinimo metu sunaudotas gijos tūris." msgid "Weight per extruder" msgstr "Svoris vienam ekstruderiui" msgid "Weight per extruder extruded during the entire print. Calculated from filament_density value in Filament Settings." -msgstr "Vieno ekstruderio išspaustas gijų svoris per visą spausdinimo procesą. Apskaičiuojama pagal filament_density vertę Gijų nustatymuose." +msgstr "Kiekvienu ekstruderiu išspaustas (extruded) gijos svoris per visą spausdinimo procesą. Apskaičiuojama pagal „filament_density“ reikšmę Gijos nustatymuose." msgid "Total weight" msgstr "Bendras svoris" msgid "Total weight of the print. Calculated from filament_density value in Filament Settings." -msgstr "Bendras spaudinio svoris. Apskaičiuojama pagal filament_density vertę Gijos nustatymuose." +msgstr "Bendras spaudinio svoris. Apskaičiuojama pagal „filament_density“ reikšmę Gijos nustatymuose." msgid "Total layer count" msgstr "Bendras sluoksnių skaičius" @@ -16137,52 +16172,52 @@ msgid "Number of layers in the entire print." msgstr "Viso spaudinio sluoksnių skaičius." msgid "Print time (normal mode)" -msgstr "" +msgstr "Spausdinimo laikas (normalus režimas)" msgid "Estimated print time when printed in normal mode (i.e. not in silent mode). Same as print_time." -msgstr "" +msgstr "Numatomas spausdinimo laikas, kai spausdinama normaliu režimu (t. y. ne tyliuoju režimu). Toks pat kaip „print_time“." msgid "Estimated print time when printed in normal mode (i.e. not in silent mode). Same as normal_print_time." -msgstr "" +msgstr "Numatomas spausdinimo laikas, kai spausdinama normaliu režimu (t. y. ne tyliuoju režimu). Toks pat kaip „normal_print_time“." msgid "Print time (silent mode)" -msgstr "" +msgstr "Spausdinimo laikas (tylusis režimas)" msgid "Estimated print time when printed in silent mode." -msgstr "" +msgstr "Numatomas spausdinimo laikas, kai spausdinama tyliuoju režimu." msgid "Total cost of all material used in the print. Calculated from filament_cost value in Filament Settings." -msgstr "" +msgstr "Bendros visų spausdinimui sunaudotų medžiagų sąnaudos. Apskaičiuojama pagal „filament_cost“ reikšmę Gijos nustatymuose." msgid "Total wipe tower cost" -msgstr "" +msgstr "Bendros valymo bokštelio sąnaudos" msgid "Total cost of the material wasted on the wipe tower. Calculated from filament_cost value in Filament Settings." -msgstr "" +msgstr "Bendros valymo bokšteliui sunaudotos gijos sąnaudos. Apskaičiuojama pagal „filament_cost“ reikšmę Gijos nustatymuose." msgid "Wipe tower volume" -msgstr "" +msgstr "Valymo bokštelio tūris" msgid "Total filament volume extruded on the wipe tower." -msgstr "" +msgstr "Bendras gijos tūris, išspaustas (extruded) ant valymo bokštelio." msgid "Used filament" msgstr "Naudota gija" msgid "Total length of filament used in the print." -msgstr "" +msgstr "Bendras viso spausdinimo metu sunaudotos gijos ilgis." msgid "Print time (seconds)" -msgstr "" +msgstr "Spausdinimo laikas (sekundėmis)" msgid "Total estimated print time in seconds. Replaced with actual value during post-processing." -msgstr "" +msgstr "Bendras numatomas spausdinimo laikas sekundėmis. Papildomo apdorojimo (post-processing) metu pakeičiama faktine reikšme." msgid "Filament length (meters)" -msgstr "" +msgstr "Gijos ilgis (metrais)" msgid "Total filament length used in meters. Replaced with actual value during post-processing." -msgstr "" +msgstr "Bendras sunaudotos gijos ilgis metrais. Papildomo apdorojimo (post-processing) metu pakeičiama faktine reikšme." msgid "Number of objects" msgstr "Objektų skaičius" @@ -16212,11 +16247,9 @@ msgstr "Įvesties failo pavadinimas be plėtinio" msgid "Source filename of the first object, without extension." msgstr "Pirmojo objekto šaltinio failo pavadinimas be plėtinio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vector has two elements: X and Y coordinate of the point. Values in mm." msgstr "Vektorių sudaro du elementai: taško x ir y koordinatės. Vertės mm." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vector has two elements: X and Y dimension of the bounding box. Values in mm." msgstr "Vektorių sudaro du elementai: x ir y ribojančio bloko matmenys. Reikšmės mm." @@ -16257,28 +16290,28 @@ msgid "Hour" msgstr "Valanda" msgid "Minute" -msgstr "Minutės" +msgstr "Minutė" msgid "Second" -msgstr "Antrasis" +msgstr "Sekundė" msgid "Print preset name" -msgstr "Spausdinimo nustatymų pavadinimas" +msgstr "Spausdinimo profilio pavadinimas" msgid "Name of the print preset used for slicing." -msgstr "Spausdinimo nustatymų, naudojamų sluoksniavimui, pavadinimas." +msgstr "Sluoksniavimui naudojamo spausdinimo profilio pavadinimas." msgid "Filament preset name" -msgstr "Gijos nustatymų pavadinimas" +msgstr "Gijos profilio pavadinimas" msgid "Names of the filament presets used for slicing. The variable is a vector containing one name for each extruder." -msgstr "Sluoksniavimui naudojamų gijų nustatymų pavadinimai. Kintamasis yra vektorius, kuriame yra po vieną kiekvieno ekstruderio pavadinimą." +msgstr "Sluoksniavimui naudojamų gijos profilių pavadinimai. Šis kintamasis yra vektorius, kuriame yra po vieną pavadinimą kiekvienam ekstruderiui." msgid "Printer preset name" -msgstr "Spausdintuvo nustatymų pavadinimas" +msgstr "Spausdintuvo profilio pavadinimas" msgid "Name of the printer preset used for slicing." -msgstr "Sluoksniavimui naudojamo spausdintuvo nustatymų pavadinimas." +msgstr "Sluoksniavimui naudojamo spausdintuvo profilio pavadinimas." msgid "Physical printer name" msgstr "Fizinio spausdintuvo pavadinimas" @@ -16290,22 +16323,22 @@ msgid "Layer number" msgstr "Sluoksnio numeris" msgid "Index of the current layer. One-based (i.e. first layer is number 1)." -msgstr "Dabartinio sluoksnio indeksas (pirmasis sluoksnis turi numerį 1)." +msgstr "Dabartinio sluoksnio indeksas, skaičiuojamas nuo vieneto (t. y. pirmasis sluoksnis yra Nr. 1)." msgid "Layer Z" -msgstr "Sluoksnis z" +msgstr "Sluoksnio Z aukštis" msgid "Height of the current layer above the print bed, measured to the top of the layer." msgstr "Dabartinio sluoksnio aukštis virš spausdinimo pagrindo, matuojamas iki sluoksnio viršaus." msgid "Maximal layer Z" -msgstr "Maksimalusis sluoksnis z" +msgstr "Didžiausias sluoksnio Z aukštis" msgid "Height of the last layer above the print bed." msgstr "Paskutinio sluoksnio aukštis virš spausdinimo pagrindo." msgid "Filament extruder ID" -msgstr "Gijų ekstruderio ID" +msgstr "Gijos ekstruderio ID" msgid "The current extruder ID. The same as current_extruder." msgstr "Dabartinis ekstruderio ID. Toks pat kaip current_extruder." @@ -16314,13 +16347,13 @@ msgid "Error in zip archive" msgstr "Klaida zip archyve" msgid "Generating walls" -msgstr "Sienų generavimas" +msgstr "Sienelių generavimas" msgid "Generating infill regions" -msgstr "Užpildomų regionų kūrimas" +msgstr "Užpildo sričių generavimas" msgid "Generating infill toolpath" -msgstr "Užpildymo įrankių trajektorijų generavimas" +msgstr "Užpildo įrankio trajektorijos (toolpath) generavimas" msgid "Detect overhangs for auto-lift" msgstr "Aptikti iškyšas automatiniam pakėlimui" @@ -16329,7 +16362,7 @@ msgid "Checking support necessity" msgstr "Atramų reikalingumo tikrinimas" msgid "floating regions" -msgstr "ore kabančių sektoriių" +msgstr "ore kabančių sričių" msgid "floating cantilever" msgstr "ore kabančią konstrukciją" @@ -16364,8 +16397,8 @@ 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 "" -"Objektui įjungtas XY dydžio kompensavimas, kuris nebus naudojamas, nes jis taip pat naudoja grublėtą paviršių.\n" -"XY dydžio kompensavimas negali būti derinamas su nelygiu paviršiumi." +"Objektui įjungtas XY dydžio kompensavimas nebus naudojamas, nes parinkta ir grublėto paviršiaus (fuzzy skin) sritis. \n" +"XY dydžio kompensavimo negalima derinti su grublėto paviršiaus (fuzzy skin) dažymu." msgid "Object name" msgstr "Objekto pavadinimas" @@ -16377,19 +16410,16 @@ msgid "Loading of a model file failed." msgstr "Nepavyko įkelti modelio failo." msgid "Meshing of a model file failed or no valid shape." +msgstr "Nepavyko suformuoti modelio failo poligonažo arba jame nėra tinkamos geometrijos." + +msgid "The supplied file couldn't be read because it's empty." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "The supplied file couldn't be read because it's empty." -msgstr "Pateikto failo nepavyko perskaityti, nes jis tuščias" - -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." -msgstr "Nežinomas failo formatas. Įvesties failo plėtinys turi būti .stl, .obj, .amf(.xml)." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 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." +msgstr "" msgid "load_obj: failed to parse" msgstr "load_obj: nepavyko apdoroti" @@ -16410,7 +16440,7 @@ msgid "This OBJ file couldn't be read because it's empty." msgstr "Šio OBJ failo nepavyko perskaityti, nes jis tuščias." msgid "Max Volumetric Speed Calibration" -msgstr "Didžiausio tūrio greičio kalibravimas" +msgstr "Didžiausio tūrinio greičio kalibravimas" msgid "Manage Result" msgstr "Tvarkyti rezultatus" @@ -16425,10 +16455,10 @@ msgid "Auto-Calibration" msgstr "Automatinis kalibravimas" msgid "We would use Lidar to read the calibration result" -msgstr "Kalibravimo rezultatams nuskaityti naudotume lidarą" +msgstr "Kalibravimo rezultatams nuskaityti naudotume LiDAR jutiklį (Lidar)" msgid "Prev" -msgstr "Prieš" +msgstr "Atgal" msgid "Recalibration" msgstr "Perkalibruoti" @@ -16439,12 +16469,11 @@ msgstr "Kalibruoti" msgid "Finish" msgstr "Baigti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "How can I use calibration results?" -msgstr "Kaip naudoti kalibravimo rezultatus?" +msgstr "" msgid "You could change the Flow Dynamics Calibration Factor in material editing" -msgstr "Srauto dinamikos kalibravimo koeficientą galite pakeisti redaguodami medžiagą" +msgstr "Srauto dinamikos kalibravimo koeficientą (Flow Dynamics Calibration Factor) galite pakeisti redaguodami medžiagą" msgid "" "The current firmware version of the printer does not support calibration.\n" @@ -16457,7 +16486,7 @@ msgid "Calibration not supported" msgstr "Kalibravimas nepalaikomas" msgid "Error desc" -msgstr "Klaidų aprašas" +msgstr "Klaidos aprašymas" msgid "Extra info" msgstr "Papildoma informacija" @@ -16480,27 +16509,27 @@ msgstr "" "Pradinė reikšmė: >= %.1f\n" "Galutinė reikšmė: <= %.1f\n" "Galutinė reikšmė: > Pradinė reikšmė\n" -"Reikšmės žingsnis: >= %.3f)" +"Reikšmės žingsnis: >= %.3f" msgid "The name cannot be empty." msgstr "Pavadinimas negali būti tuščias." #, c-format, boost-format msgid "The selected preset: %s was not found." -msgstr "Pasirinktas profilis: %s nerastas." +msgstr "Pasirinktas profilis %s nerastas." msgid "The name cannot be the same as the system preset name." -msgstr "Pavadinimas negali sutapti su nustatytu sistemos pavadinimu." +msgstr "Pavadinimas negali sutapti su sistemos profilio pavadinimu." msgid "The name is the same as another existing preset name" -msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu" +msgstr "Pavadinimas sutampa su kito jau esamo profilio pavadinimu" msgid "create new preset failed." msgstr "sukurti naują profilį nepavyko." #, c-format, boost-format msgid "Could not find parameter: %s." -msgstr "" +msgstr "Nepavyko rasti parametro: %s." msgid "Are you sure to cancel the current calibration and return to the home page?" msgstr "Ar tikrai norite atšaukti dabartinį kalibravimą ir grįžti į pagrindinį puslapį?" @@ -16517,33 +16546,30 @@ msgstr "Pasirinkite giją, kurią norite kalibruoti." msgid "The input value size must be 3." msgstr "Įvesties reikšmės dydis turi būti 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This machine type can only hold 16 historical 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 "" -"Šio tipo mašinoje galima laikyti tik 16 istorijos rezultatų iš vieno purkštuko. Galite ištrinti turimus ankstesnius rezultatus ir tada pradėti kalibravimą. Arba galite tęsti kalibravimą, tačiau negalite sukurti naujų kalibravimo istorijos rezultatų.\n" -"Ar vis dar norite tęsti kalibravimą?" #, 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 "" +msgstr "Bus išsaugotas tik vienas iš rezultatų tuo pačiu pavadinimu: %s. Ar tikrai norite perrašyti kitus rezultatus?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Jau yra ankstesnio kalibravimo rezultatas tokiu pačiu pavadinimu: %s. Išsaugomas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite pakeisti ankstesnį rezultatą?" +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 the same.\n" "Are you sure you want to override the historical result?" msgstr "" +"Tam pačiam ekstruderiui pavadinimas (%s) turi būti unikalus, kai gijos tipas, purkštuko skersmuo ir purkštuko srautas sutampa.\n" +"Ar tikrai norite perrašyti ankstesnį rezultatą?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." -msgstr "Šis įrenginio tipas gali talpinti tik %d istorijos rezultatų iš vieno purkštuko. Šis rezultatas nebus išsaugotas." +msgstr "" msgid "Connecting to printer..." msgstr "Jungiamasi prie spausdintuvo..." @@ -16561,10 +16587,10 @@ msgid "Please select at least one filament for calibration" msgstr "Kalibravimui pasirinkite bent vieną giją" msgid "Flow rate calibration result has been saved to preset." -msgstr "Srauto kalibravimo rezultatas įrašytas į profilį." +msgstr "Srauto greičio kalibravimo rezultatas įrašytas į profilį." msgid "Max volumetric speed calibration result has been saved to preset." -msgstr "Maksimalaus tūrio greičio kalibravimo rezultatas įrašytas į profilį." +msgstr "Maksimalaus tūrinio greičio kalibravimo rezultatas įrašytas į profilį." msgid "When do you need Flow Dynamics Calibration" msgstr "Kada jums reikia srauto dinamikos kalibravimo" @@ -16610,19 +16636,18 @@ msgid "" "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 "" -"Panaudojus srauto dinamikos kalibravimą, vis dar gali kilti problemų dėl ekstruzijos, pvz:\n" -"1. Per didelis išspaudimas: ant spausdinamo objekto atsiranda medžiagos perteklius, susidaro dėmės ar taškeliai arba sluoksniai atrodo storesni nei tikėtasi ir netolygūs.\n" -"2. Nepakankamas išspaudimas: Labai ploni sluoksniai, silpnas užpildo stiprumas arba viršutiniame modelio sluoksnyje esantys tarpai, net kai spausdinama lėtai.\n" -"3. Prasta paviršiaus kokybė: Spausdinių paviršius atrodo šiurkštus arba nelygus.\n" -"4. Silpnas struktūrinis vientisumas: Spaudiniai lengvai lūžta arba neatrodo tokie tvirti, kokie turėtų būti" +"Panaudojus srauto dinamikos kalibravimą, vis dar gali kilti išspaudimo (extrusion) problemų, pvz.:\n" +"1. Per didelis išspaudimas (extrusion): ant spausdinamo objekto atsiranda medžiagos perteklius, susidaro dėmės ar taškeliai arba sluoksniai atrodo storesni nei tikėtasi ir netolygūs.\n" +"2. Nepakankamas išspaudimas (extrusion): labai ploni sluoksniai, silpnas užpildo stiprumas arba viršutiniame modelio sluoksnyje esantys tarpai, net kai spausdinama lėtai.\n" +"3. Prasta paviršiaus kokybė: spausdinių paviršius atrodo šiurkštus arba nelygus.\n" +"4. Silpnas struktūrinis vientisumas: spaudiniai lengvai lūžta arba neatrodo tokie tvirti, kokie turėtų būti." 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 "Be to, srauto greičio kalibravimas labai svarbus putojančioms medžiagoms, pavyzdžiui, LW-PLA, naudojamoms RC lėktuvų gamyboje. Šios medžiagos labai išsiplečia, kai yra kaitinamos, o kalibravimas suteikia naudingą etaloninį srauto greitį." 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 "Srauto greičio kalibravimas matuoja numatyto ir faktinio išspaudimo tūrio santykį. Numatytasis nustatymas gerai veikia \"Bambu Lab\" spausdintuvuose ir su oficialiomis gijomis, nes jos iš anksto sukalibruotos ir tiksliai sureguliuotos. Įprastai naudojamoms gijoms paprastai nereikia atlikti srauto greičio kalibravimo, nebent atlikus kitus kalibravimus vis dar matote išvardytus defektus. Išsamesnės informacijos rasite wiki straipsnyje." +msgstr "Srauto greičio kalibravimas matuoja numatyto ir faktinio išspaudimo (extrusion) tūrio santykį. Numatytasis nustatymas gerai veikia „Bambu Lab“ spausdintuvuose ir su oficialiomis gijomis, nes jos iš anksto sukalibruotos ir tiksliai sureguliuotos. Įprastai naudojamoms gijoms paprastai nereikia atlikti srauto greičio kalibravimo, nebent atlikus kitus kalibravimus vis dar matote išvardytus defektus. Išsamesnės informacijos rasite „Wiki“ straipsnyje." -# TODO: Review, changed by lang refactor. PR 14254 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, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" "\n" @@ -16630,26 +16655,21 @@ msgid "" "\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 "" -"Automatinis srauto greičio kalibravimas naudoja \"Bambu Lab\" mikrolidarų technologiją, tiesiogiai matuojančią kalibravimo modelius. Tačiau atkreipkite dėmesį, kad šio metodo veiksmingumas ir tikslumas gali sumažėti naudojant tam tikrų tipų medžiagas. Ypač skaidrios ar pusiau skaidrios, blizgančios arba turinčios labai atspindinčią apdailą gijos gali būti netinkamos šiam kalibravimui ir gali duoti prastesnius nei pageidaujami rezultatus.\n" -"\n" -"Kalibravimo rezultatai gali skirtis priklausomai nuo kalibravimo ar gijų. Vykdydami programinės aparatinės įrangos atnaujinimus laikui bėgant vis dar tobuliname šio kalibravimo tikslumą ir suderinamumą.\n" -"\n" -"Įspėjimas: Srauto greičio kalibravimas yra sudėtingas procesas, kurį gali atlikti tik tie, kurie visiškai supranta jo paskirtį ir pasekmes. Neteisingas naudojimas gali lemti nekokybiškus spaudinius arba spausdintuvo sugadinimą. Prieš atlikdami šį procesą būtinai atidžiai susipažinkite ir supraskite jo eigą." msgid "When you need Max Volumetric Speed Calibration" -msgstr "Kada reikia maksimalaus tūrio greičio kalibravimo" +msgstr "Kada reikia maksimalaus tūrinio greičio kalibravimo" msgid "Over-extrusion or under extrusion" -msgstr "Per didelis arba per mažas išspaudimas" +msgstr "Per didelis arba nepakankamas išspaudimas (extrusion)" msgid "Max Volumetric Speed calibration is recommended when you print with:" -msgstr "Maksimalaus tūrio greičio kalibravimas rekomenduojamas, kai spausdinate su:" +msgstr "Maksimalaus tūrinio greičio kalibravimas rekomenduojamas, kai spausdinate su:" msgid "material with significant thermal shrinkage/expansion, such as..." msgstr "medžiaga, kuri smarkiai susitraukia ir (arba) plečiasi, pvz.,..." msgid "materials with inaccurate filament diameter" -msgstr "medžiagos su netiksliu gijų skersmeniu" +msgstr "medžiagos su netiksliu gijos skersmeniu" msgid "We found the best Flow Dynamics Calibration Factor" msgstr "Radome geriausią srauto dinamikos kalibravimo koeficientą" @@ -16669,24 +16689,23 @@ msgstr "Pavadinimas negali būti ilgesnis nei 40 simbolių." msgid "Please find the best line on your plate" msgstr "Raskite geriausią liniją ant pagrindo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" -msgstr "Raskite kampą su tobulu išspaudimo laipsniu" +msgstr "Raskite kampą su tobulu išspaudimo (extrusion) laipsniu" msgid "Input Value" msgstr "Įvesties reikšmė" msgid "Save to Filament Preset" -msgstr "Išsaugiti gijos profilyje" +msgstr "Išsaugoti gijos profilyje" msgid "Record Factor" -msgstr "Įrašo veiksnys" +msgstr "Užfiksuoti koeficientą" msgid "We found the best flow ratio for you" msgstr "Radome jums geriausią srauto santykį" msgid "Flow Ratio" -msgstr "Srautas" +msgstr "Srauto santykis" msgid "Please input a valid value (0.0 < flow ratio < 2.0)" msgstr "Įveskite galiojančią reikšmę (0,0 < srauto santykis < 2,0)" @@ -16695,10 +16714,10 @@ msgid "Please enter the name of the preset you want to save." msgstr "Įveskite norimo išsaugoti profilio pavadinimą." msgid "Calibration1" -msgstr "Kalibravimas1" +msgstr "1 kalibravimas" msgid "Calibration2" -msgstr "Kalibravimas2" +msgstr "2 kalibravimas" msgid "Please find the best object on your plate" msgstr "Raskite geriausią objektą ant pagrindo" @@ -16707,7 +16726,7 @@ msgid "Fill in the value above the block with smoothest top surface" msgstr "Užpildykite reikšmę virš bloko, kurio viršutinis paviršius yra lygiausias" msgid "Skip Calibration2" -msgstr "Praleisti kalibravimą2" +msgstr "Praleisti 2 kalibravimą" #, c-format, boost-format msgid "flow ratio : %s " @@ -16723,7 +16742,7 @@ msgid "Calibration Type" msgstr "Kalibravimo tipas" msgid "Complete Calibration" -msgstr "Pilnas kalibravimas" +msgstr "Išsamus kalibravimas" msgid "Fine Calibration based on flow ratio" msgstr "Tikslusis kalibravimas pagal srauto santykį" @@ -16741,26 +16760,26 @@ msgid "- ℃" msgstr "- ℃" msgid "Synchronize nozzle and AMS information" -msgstr "" +msgstr "Sinchronizuoti purkštuko ir AMS informaciją" msgid "Please connect the printer first before synchronizing." -msgstr "" +msgstr "Prieš sinchronizuodami, pirmiausia prijunkite spausdintuvą." #, c-format, boost-format msgid "Printer %s nozzle information has not been set. Please configure it before proceeding with the calibration." -msgstr "" +msgstr "Spausdintuvo %s purkštuko informacija nenustatyta. Konfigūruokite ją prieš tęsdami kalibravimą." msgid "AMS and nozzle information are synced" -msgstr "" +msgstr "AMS ir purkštuko informacija sinchronizuota" msgid "Nozzle Flow" -msgstr "" +msgstr "Purkštuko srautas" msgid "Nozzle Info" -msgstr "" +msgstr "Purkštuko informacija" msgid "Filament position" -msgstr "gijos padėtis" +msgstr "Gijos padėtis" msgid "Filament For Calibration" msgstr "Gija kalibravimui" @@ -16788,13 +16807,13 @@ msgid "TPU is not supported for Flow Dynamics Auto-Calibration." msgstr "TPU nepalaiko srauto dinamikos automatinio kalibravimo." 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 "" +msgstr "Pasirinktos purkštuko temperatūros yra nesuderinamos. Spausdinant iš kelių medžiagų, kiekvienos gijos purkštuko temperatūra turi patekti į kitų gijų rekomenduojamą purkštuko temperatūros diapazoną. Priešingu atveju gali užsikimšti purkštukas arba sugesti spausdintuvas." msgid "Sync AMS and nozzle information" -msgstr "" +msgstr "Sinchronizuoti AMS ir purkštuko informaciją" msgid "Calibration only supports cases where the left and right nozzle diameters are identical." -msgstr "" +msgstr "Kalibravimas palaikomas tik tada, kai kairiojo ir dešiniojo purkštukų skersmenys yra vienodi." msgid "From k Value" msgstr "Nuo k reikšmės" @@ -16829,24 +16848,22 @@ msgstr "Nėra ankstesnių rezultatų" msgid "Success to get history result" msgstr "Sėkmingai gauti senesnį rezultatą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Refreshing the previous Flow Dynamics Calibration records" -msgstr "Senesnių srauto dinamikos kalibravimo įrašų atnaujinimas" +msgstr "" msgid "Action" msgstr "Veiksmas" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle." -msgstr "Šis įrenginio tipas gali talpinti tik %d ankstesnių rezultatų iš vieno purkštuko." +msgstr "" msgid "Edit Flow Dynamics Calibration" msgstr "Redaguoti srauto dinamikos kalibravimą" #, 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 "" +msgstr "Tame pačiame ekstruderyje pavadinimas „%s“ turi būti unikalus, kai gijos tipas, purkštuko skersmuo ir purkštuko srautas yra identiški. Pasirinkite kitą pavadinimą." msgid "New Flow Dynamic Calibration" msgstr "Naujas srauto dinaminis kalibravimas" @@ -16855,10 +16872,10 @@ msgid "The filament must be selected." msgstr "Turi būti pasirinkta gija." msgid "The extruder must be selected." -msgstr "" +msgstr "Turi būti pasirinktas ekstruderis." msgid "The nozzle must be selected." -msgstr "" +msgstr "Turi būti pasirinktas purkštukas." msgid "Network lookup" msgstr "Tinklo paieška" @@ -16867,7 +16884,7 @@ msgid "Address" msgstr "Adresas" msgid "Hostname" -msgstr "Hosto pavadinimas" +msgstr "Mazgo pavadinimas (hostname)" msgid "Service name" msgstr "Paslaugos pavadinimas" @@ -16889,11 +16906,11 @@ msgid "" "There are several IP addresses resolving to hostname %1%.\n" "Please select one that should be used." msgstr "" -"Yra keli IP adresai, kuriais galima nustatyti prievado vardą %1%.\n" -" Pasirinkite vieną, kuris turėtų būti naudojamas." +"Yra keli IP adresai, susieti su mazgo pavadinimu %1%.\n" +"Pasirinkite tą, kurį norite naudoti." msgid "PA Calibration" -msgstr "PA kalibravimas" +msgstr "PA kalibravimas (Pressure Advance)" msgid "Extruder type" msgstr "Ekstruderio tipas" @@ -16902,13 +16919,13 @@ msgid "DDE" msgstr "DDE" msgid "PA Tower" -msgstr "PA bokštas" +msgstr "PA bokštelis" msgid "PA Line" -msgstr "PA linija" +msgstr "PA linija (Pressure Advance)" msgid "PA Pattern" -msgstr "PA raštas" +msgstr "PA raštas (Pressure Advance)" msgid "Start PA: " msgstr "Pradėti PA: " @@ -16940,15 +16957,17 @@ msgid "" "End PA: > Start PA\n" "PA step: >= 0.001" msgstr "" -"Įveskite galiojančias reikšmes:\n" -"Pradžios PA: >= 0,0\n" +"Įveskite tinkamas reikšmes:\n" +"Pradžios PA: >= 0.0\n" "Pabaigos PA: > Pradžios PA\n" -"PA žingsnis: >= 0.001)" +"PA žingsnis: >= 0.001" msgid "" "Acceleration values must be greater than speed values.\n" "Please verify the inputs." msgstr "" +"Pagreičio reikšmės turi būti didesnės už greičio reikšmes.\n" +"Patikrinkite įvesties duomenis." msgid "Temperature calibration" msgstr "Temperatūros kalibravimas" @@ -16992,9 +17011,13 @@ msgid "" "End temp: >= 155\n" "Start temp >= End temp + 5" msgstr "" +"Įveskite tinkamas reikšmes:\n" +"Pradžios temp.: <= 500\n" +"Pabaigos temp.: >= 155\n" +"Pradžios temp. >= Pabaigos temp. + 5" msgid "Max volumetric speed test" -msgstr "Didžiausio tūrio greičio bandymas" +msgstr "Maksimalaus tūrinio greičio bandymas" msgid "Start volumetric speed: " msgstr "Pradinis tūrinis greitis: " @@ -17011,7 +17034,7 @@ msgstr "" "Įveskite tinkamas reikšmes:\n" "pradinis > 0\n" "žingsnis >= 0\n" -"galinis > pradinis + žingsnis)" +"galinis > pradinis + žingsnis" msgid "VFA test" msgstr "VFA testas" @@ -17031,7 +17054,7 @@ msgstr "" "Įveskite tinkamas reikšmes:\n" "pradinis > 10\n" "žingsnis >= 0\n" -"galinis > pradinis + žingsnis)" +"galinis > pradinis + žingsnis" msgid "Start retraction length: " msgstr "Pradinis įtraukimo ilgis: " @@ -17040,35 +17063,39 @@ msgid "End retraction length: " msgstr "Galinis įtraukimo ilgis: " msgid "Input shaping Frequency test" -msgstr "Įvesties formavimo dažnio testas" +msgstr "Įvesties formavimo (input shaping) dažnio testas" msgid "Test model" msgstr "Bandomasis modelis" msgid "Ringing Tower" -msgstr "Bangavimo bokštas" +msgstr "Bangavimo bokštelis" msgid "Fast Tower" -msgstr "Greitasis bokštas" +msgstr "Greitasis bokštelis" msgid "Please ensure the selected type is compatible with your firmware version." -msgstr "" +msgstr "Įsitikinkite, kad pasirinktas tipas yra suderinamas su jūsų programinės aparatinės įrangos versija." msgid "" "Marlin version => 2.1.2\n" "Fixed-Time motion not yet implemented." msgstr "" +"Marlin versija => 2.1.2 (Marlin)\n" +"Fiksuoto laiko judėjimas (Fixed-Time motion) dar neįdiegtas." msgid "Klipper version => 0.9.0" -msgstr "" +msgstr "Klipper versija => 0.9.0 (Klipper)" msgid "" "RepRap firmware version => 3.4.0\n" "Check your firmware documentation for supported shaper types." msgstr "" +"RepRap programinės aparatinės įrangos versija => 3.4.0\n" +"Palaikomus formavimo (shaper) tipus rasite savo programinės aparatinės įrangos dokumentacijoje." msgid "Frequency (Start / End): " -msgstr "" +msgstr "Dažnis (Pradžia / Pabaiga): " msgid "Start / End" msgstr "Pradžia / Pabaiga" @@ -17080,7 +17107,7 @@ msgid "Hz" msgstr "Hz" msgid "RepRap firmware uses the same frequency range for both axes." -msgstr "" +msgstr "RepRap programinė aparatinė įranga naudoja tą patį dažnių diapazoną abiem ašims." msgid "Damp: " msgstr "Slopinimas: " @@ -17089,6 +17116,8 @@ msgid "" "Recommended: Set Damp to 0.\n" "This will use the printer's default or saved value." msgstr "" +"Rekomenduojama: nustatykite slopinimą (Damp) į 0.\n" +"Bus naudojama numatytoji arba išsaugota spausdintuvo reikšmė." msgid "" "Please input valid values:\n" @@ -17101,19 +17130,19 @@ msgid "Please input a valid damping factor (0 < Damping/zeta factor <= 1)" msgstr "Įveskite tinkamą slopinimo koeficientą (0 < slopinimas/zeta koeficientas <= 1)" msgid "Input shaping Damp test" -msgstr "Įvesties formavimas slopinimo bandymas" +msgstr "Įvesties formavimo (input shaping) slopinimo testas" msgid "Check firmware compatibility." -msgstr "" +msgstr "Patikrinkite programinės aparatinės įrangos suderinamumą." msgid "Frequency: " -msgstr "" +msgstr "Dažnis: " msgid "Damp" msgstr "Slopinimas" msgid "RepRap firmware uses the same frequency for both axes." -msgstr "" +msgstr "RepRap programinė aparatinė įranga naudoja tą patį dažnį abiem ašims." msgid "Note: Use previously calculated frequencies." msgstr "Pastaba: Naudokite anksčiau apskaičiuotus dažnius." @@ -17129,77 +17158,85 @@ msgid "Please input a valid damping factor (0 <= DampingStart < DampingEnd <= 1) msgstr "Įveskite galiojantį slopinimo koeficientą (0 <= Slopinimo pradžia < Slopinimo pabaiga <= 1)" msgid "Cornering test" -msgstr "" +msgstr "Posūkių įveikimo testas" msgid "SCV-V2" msgstr "SCV-V2" msgid "Start: " -msgstr "" +msgstr "Start: " msgid "End: " -msgstr "" +msgstr "End: " msgid "Cornering settings" -msgstr "" +msgstr "Posūkių įveikimo nustatymai" msgid "Note: Lower values = sharper corners but slower speeds." -msgstr "" +msgstr "Pastaba: mažesnės reikšmės = statesni kampai, bet mažesnis greitis." msgid "" "Marlin 2 Junction Deviation detected:\n" "To test Classic Jerk, set 'Maximum Junction Deviation' in Motion ability to 0." msgstr "" +"Aptiktas Marlin 2 posūkio nuokrypis (Junction Deviation):\n" +"Norėdami išbandyti klasikinį trūktelėjimą (Classic Jerk), judėjimo gebos (Motion ability) nustatymuose „Maximum Junction Deviation“ nustatykite į 0." msgid "" "Marlin 2 Classic Jerk detected:\n" "To test Junction Deviation, set 'Maximum Junction Deviation' in Motion ability to a value > 0." msgstr "" +"Aptiktas Marlin 2 klasikinis trūktelėjimas (Classic Jerk):\n" +"Norėdami išbandyti posūkio nuokrypį (Junction Deviation), judėjimo gebos (Motion ability) nustatymuose „Maximum Junction Deviation“ nustatykite reikšmę > 0." msgid "" "RepRap detected: Jerk in mm/s.\n" "OrcaSlicer will convert the values to mm/min when necessary." msgstr "" +"Aptikta RepRap: trūktelėjimas (Jerk) nurodytas mm/s.\n" +"Prireikus „OrcaSlicer“ konvertuos reikšmes į mm/min." #, c-format, boost-format msgid "" "Please input valid values:\n" "(0 <= Cornering <= %s)" msgstr "" +"Įveskite tinkamas reikšmes:\n" +"(0 <= posūkių įveikimas <= %s)" #, c-format, boost-format msgid "NOTE: High values may cause Layer shift (>%s)" -msgstr "" +msgstr "PASTABA: didelės reikšmės gali lemti sluoksnių poslinkį (Layer shift) (>%s)" msgid "Flow Ratio Calibration" -msgstr "" +msgstr "Srauto santykio kalibravimas" msgid "Calibration Test Type" -msgstr "" +msgstr "Kalibravimo testo tipas" msgid "Pass 1 (Coarse)" -msgstr "" +msgstr "1 etapas (apytikslis)" msgid "Pass 2 (Fine)" -msgstr "" +msgstr "2 etapas (tikslusis)" msgid "YOLO (Recommended)" msgstr "YOLO (rekomenduojama)" msgid "YOLO (Perfectionist)" -msgstr "" +msgstr "YOLO (perfekcionistas)" msgid "Top Surface Pattern" -msgstr "" +msgstr "Viršutinio paviršiaus raštas" msgid "Choose a slot for the selected color" -msgstr "" +msgstr "Pasirinkite lizdą pasirinktai spalvai" msgid "Material in the material station" -msgstr "" +msgstr "Medžiaga medžiagų stotelėje" msgid "Only materials of the same type can be selected." -msgstr "" +msgstr "Galima pasirinkti tik to paties tipo medžiagas." msgid "Send G-code to printer host" msgstr "Siųsti G-kodą tinkliniam spausdintuvui" @@ -17224,41 +17261,41 @@ msgid "Upload" msgstr "Įkelti" msgid "Leveling before print" -msgstr "" +msgstr "Lygiavimas prieš spausdinimą" msgid "Time-lapse" msgstr "Laiko intervalai" msgid "Enable IFS" -msgstr "" +msgstr "Įjungti IFS" #, c-format, boost-format msgid "Detected %d IFS slots on printer." -msgstr "" +msgstr "Spausdintuve aptikta %d IFS lizdų." msgid "This printer does not report a material station." -msgstr "" +msgstr "Šis spausdintuvas nepraneša apie medžiagų stotelę." msgid "Unable to read IFS slots from printer." -msgstr "" +msgstr "Nepavyko nuskaityti IFS lizdų iš spausdintuvo." msgid "Loading IFS slots from printer..." -msgstr "" +msgstr "Įkeliami IFS lizdai iš spausdintuvo..." msgid "Slice the plate first to get project material information." -msgstr "" +msgstr "Pirmiausia supjaustykite (slice) plokštę, kad gautumėte projekto medžiagų informaciją." msgid "This plate uses multiple materials. Enable IFS and assign each tool to a printer slot." -msgstr "" +msgstr "Ši plokštė naudoja kelias medžiagas. Įjunkite IFS ir priskirkite kiekvieną įrankį spausdintuvo lizdui." msgid "Each project material must be assigned to an IFS slot before printing." -msgstr "" +msgstr "Prieš spausdinant, kiekviena projekto medžiaga turi būti priskirta IFS lizdui." msgid "Each project material must be assigned to a loaded IFS slot before printing." -msgstr "" +msgstr "Prieš spausdinant, kiekviena projekto medžiaga turi būti priskirta užpildytam IFS lizdui." msgid "Each project material must match the material loaded in the selected IFS slot." -msgstr "" +msgstr "Kiekviena projekto medžiaga turi sutapti su medžiaga, įkelta į pasirinktą IFS lizdą." msgid "Print host upload queue" msgstr "Įkėlimo spausdinimui tinkle eilė" @@ -17267,10 +17304,10 @@ msgid "ID" msgstr "ID" msgid "Progress" -msgstr "Progresas" +msgstr "Eiga" msgid "Host" -msgstr "Hostas" +msgstr "Mazgas (host)" msgctxt "OfFile" msgid "Size" @@ -17301,7 +17338,7 @@ msgid "The selected bed type does not match the file. Please confirm before star msgstr "Pasirinktas pagrindo tipas neatitinka failo. Prieš pradėdami spausdinti, patvirtinkite." msgid "Heated Bed Leveling" -msgstr "Šildomo pagrindo išlyginimas" +msgstr "Šildomo pagrindo lygiavimas" msgid "Textured Build Plate (Side A)" msgstr "Tekstūruota pagrindo plokštė (A pusė)" @@ -17311,28 +17348,28 @@ msgstr "Lygi pagrindo plokštė (B pusė)" #, c-format, boost-format msgid "Printer: %s" -msgstr "" +msgstr "Spausdintuvas: %s" msgid "Calibrate before printing" -msgstr "" +msgstr "Kalibruoti prieš spausdinimą" msgid "Filament Mapping:" -msgstr "" +msgstr "Gijų priskyrimas:" msgid "Unable to perform boolean operation on selected parts" msgstr "Nepavyksta atlikti loginės operacijos su pasirinktomis dalimis" msgid "Mesh Boolean" -msgstr "Objektų jungimo / atėmimo / susikirtimo įrankiai" +msgstr "Tinklelio loginės (Boolean) operacijos" msgid "Union" -msgstr "Sąjunga" +msgstr "Sąjunga (Union)" msgid "Difference" -msgstr "Skirtumas" +msgstr "Skirtumas (Difference)" msgid "Intersection" -msgstr "Susikirtimas" +msgstr "Susikirtimas (Intersection)" msgid "Source Volume" msgstr "Išteklių tūris" @@ -17395,40 +17432,40 @@ msgid "Log Info" msgstr "Žurnalo informacija" msgid "Select filament preset" -msgstr "Pasirinkite gijos išankstinį nustatymą" +msgstr "Pasirinkite gijos profilį" msgid "Create Filament" msgstr "Sukurti giją" msgid "Create Based on Current Filament" -msgstr "Sukurti pagal dabartinę giją" +msgstr "Sukurti remiantis dabartine gija" msgid "Copy Current Filament Preset " -msgstr "Nukopijuoti dabartinės gijos išankstinę nuostatą " +msgstr "Nukopijuoti dabartinės gijos profilį " msgid "Basic Information" msgstr "Pagrindinė informacija" msgid "Add Filament Preset under this filament" -msgstr "Pridėti gijos nustatymą pagal šią giją" +msgstr "Pridėti gijos profilį šiai gijai" msgid "We could create the filament presets for your following printer:" -msgstr "Galime sukurti jūsų spausdintuvui skirtus gijų nustatymus:" +msgstr "Galime sukurti gijų profilius šiam jūsų spausdintuvui:" msgid "Select Vendor" -msgstr "Pasirinkite pardavėją" +msgstr "Pasirinkite prekės ženklą" msgid "Input Custom Vendor" -msgstr "Pasirinktinio pardavėjo įvedimas" +msgstr "Įvesti pasirinktinį prekės ženklą" msgid "Can't find vendor I want" -msgstr "Negaliu rasti norimo pardavėjo" +msgstr "Nerandu norimo prekės ženklo" msgid "Select Type" msgstr "Pasirinkite tipą" msgid "Select Filament Preset" -msgstr "Pasirinkite išankstinį gijų nustatymą" +msgstr "Pasirinkite gijos profilį" msgid "Serial" msgstr "Serijinis" @@ -17437,54 +17474,48 @@ msgid "e.g. Basic, Matte, Silk, Marble" msgstr "pvz., pagrindinis, matinis, šilkinis, marmurinis" msgid "Filament Preset" -msgstr "Gijos išankstinis nustatymas" +msgstr "Gijos profilis" msgid "Create" msgstr "Sukurti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor is not selected; please reselect vendor." -msgstr "Pardavėjas nepasirinktas, pasirinkite pardavėją iš naujo." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Custom vendor missing; please input custom vendor." -msgstr "Pasirinktinis pardavėjas neįvestas, įveskite pasirinktinį pardavėją." +msgstr "" msgid "\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." -msgstr "\"Bambu\" arba \"Generic\" negalima naudoti kaip pasirinktinių gijų pardavėjo." +msgstr "„Bambu“ arba „Generic“ negalima naudoti kaip pasirinktinių gijų prekės ženklo." msgid "Filament type is not selected, please reselect type." msgstr "Nepasirinktas gijos tipas, pasirinkite tipą iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament serial missing; please input serial." -msgstr "Gijos serijinis numeris neįvestas, įveskite serijinį numerį." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "Gijų pardavėjo arba serijos numerio įvesties laukelyje gali būti praleidžiamųjų simbolių. Ištrinkite ir įveskite iš naujo." +msgstr "" msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." -msgstr "Visi pasirinktinio pardavėjo ar serijos numerio įvesties duomenys yra tarpai. Įveskite iš naujo." +msgstr "Visi pasirinktinio prekės ženklo ar serijos įvesties duomenys yra tarpai. Įveskite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vendor cannot be a number; please re-enter." -msgstr "Pardavėjas negali būti skaičius. Prašome įvesti iš naujo." +msgstr "" msgid "You have not selected a printer or preset yet. Please select at least one." -msgstr "Dar nepasirinkote spausdintuvo arba išankstinio nustatymo. Pasirinkite bent vieną." +msgstr "Dar nepasirinkote spausdintuvo arba profilio. Pasirinkite bent vieną." -# TODO: Review, changed by lang refactor. PR 14254 #, 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 "" -"Sukurtas gijos pavadinimas %s jau egzistuoja.\n" -"Jei toliau kursite, bus rodomas visas sukurto išankstinio nustatymo pavadinimas. Ar norite tęsti?" +"Jūsų sukurtas gijos pavadinimas %s jau egzistuoja.\n" +"Jei tęsite, sukurtas profilis bus rodomas pilnu pavadinimu. Ar norite tęsti?" msgid "Some existing presets have failed to be created, as follows:\n" -msgstr "Kai kurių esamų nustatymų nepavyko sukurti, pvz.:\n" +msgstr "Kai kurių esamų profilių nepavyko sukurti:\n" msgid "" "\n" @@ -17497,8 +17528,8 @@ 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 "" -"Būtų galima pervadinti iš anksto nustatytus nustatymus į \"Pardavėjo tipo serijinis @printeris, kurį pasirinkote\".\n" -"Norėdami pridėti daugiau spausdintuvų, eikite į spausdintuvo pasirinkimą" +"Profiliai bus pervadinti pagal šabloną „PrekėsŽenklas Tipas Serija @pasirinktas_spausdintuvas“.\n" +"Norėdami pridėti profilį daugiau spausdintuvų, eikite į spausdintuvų pasirinkimą." msgid "Create Printer/Nozzle" msgstr "Sukurti spausdintuvą / purkštuką" @@ -17516,14 +17547,13 @@ msgid "Create Based on Current Printer" msgstr "Kurti pagal esamą spausdintuvą" msgid "Import Preset" -msgstr "Importuoti nustatymus" +msgstr "Importuoti profilį" msgid "Create Type" msgstr "Sukurti tipą" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The model was not found; please reselect vendor." -msgstr "Modelis nerastas, iš naujo pasirinkite pardavėją." +msgstr "" msgid "Select Printer" msgstr "Pasirinkite spausdintuvą" @@ -17538,19 +17568,19 @@ msgid "Can't find my printer model" msgstr "Negaliu rasti savo spausdintuvo modelio" msgid "Input Custom Nozzle Diameter" -msgstr "" +msgstr "Įvesti pasirinktinį purkštuko skersmenį" msgid "Can't find my nozzle diameter" -msgstr "" +msgstr "Nerandu savo purkštuko skersmens" msgid "Printable Space" msgstr "Spausdintina erdvė" msgid "Hot Bed STL" -msgstr "Šildomas pagrindas STL" +msgstr "Šildomo pagrindo STL" msgid "Hot Bed SVG" -msgstr "Šildomas pagrindas SVG" +msgstr "Šildomo pagrindo SVG" msgid "Max Print Height" msgstr "Maksimalus spausdinimo aukštis" @@ -17562,106 +17592,102 @@ msgstr "Failas viršija %d MB, importuokite dar kartą." msgid "Exception in obtaining file size, please import again." msgstr "Išimtis gaunant failo dydį, importuokite dar kartą." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preset path was not found; please reselect vendor." -msgstr "Nerastas nustatymų kelias, iš naujo pasirinkite pardavėją." +msgstr "" msgid "The printer model was not found, please reselect." msgstr "Spausdintuvo modelis nerastas, pasirinkite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle diameter was not found; please reselect." -msgstr "Purkštuko skersmuo nerastas, pasirinkite iš naujo." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer preset was not found; please reselect." -msgstr "Spausdintuvo išankstinis nustatymas nerastas, pasirinkite iš naujo." +msgstr "" msgid "Printer Preset" -msgstr "Spausdintuvo nustatymai" +msgstr "Spausdintuvo profilis" msgid "Filament Preset Template" -msgstr "Gijos nustatymų šablonas" +msgstr "Gijos profilio šablonas" msgid "Process Preset Template" -msgstr "Proceso nustatymų šablonas" +msgstr "Proceso profilio šablonas" msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" -msgstr "Dar nepasirinkote, pagal kurį spausdintuvo išankstinį nustatymą kurti. Pasirinkite spausdintuvo gamintoją ir modelį" +msgstr "Dar nepasirinkote, kuriuo spausdintuvo profiliu remiantis kurti. Pasirinkite spausdintuvo prekės ženklą ir modelį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." -msgstr "Pirmojo puslapio spausdintinos srities skiltyje įvedėte neleistiną reikšmę. Prieš jį kurdami patikrinkite." +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 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 reserved.\n" "\tCancel: Do not create a preset; return to the creation interface." msgstr "" -"Jūsų sukurtame spausdintuvo išankstiniame nustatyme jau yra to paties pavadinimo išankstinis nustatymas. Ar norite jį perrašyti\n" -"\tTaip: perrašyti spausdintuvo nustatymus su tuo pačiu pavadinimu, ir atkurti gijų ir procesų nustatymus su tais pačiais nustatymų \n" -"pavadinimais, o gijų ir procesų nustatymai be to paties pavadinimo bus rezervuoti.\n" -"\tAtšaukti: Nesukurti išankstinio nustatymo, grįžti į kūrimo sąsają." msgid "You need to select at least one filament preset." -msgstr "Reikia pasirinkti bent vieną gijų nustatymą." +msgstr "Reikia pasirinkti bent vieną gijos profilį." msgid "You need to select at least one process preset." -msgstr "Reikia pasirinkti bent vieną proceso nustatymą." +msgstr "Reikia pasirinkti bent vieną proceso profilį." msgid "Create filament presets failed. As follows:\n" -msgstr "Nepavyko sukurti gijų nustatymų. Taip:\n" +msgstr "Nepavyko sukurti gijos profilių:\n" msgid "Create process presets failed. As follows:\n" -msgstr "" -"Nepavyko sukurti proceso nustatymų. Taip:\n" -"\n" +msgstr "Nepavyko sukurti proceso profilių:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor was not found; please reselect." -msgstr "Pardavėjas nerastas, pasirinkite iš naujo." +msgstr "" msgid "Current vendor has no models, please reselect." -msgstr "Dabartinis pardavėjas neturi modelių, pasirinkite iš naujo." +msgstr "Šis prekės ženklas neturi modelių, pasirinkite iš naujo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not selected the vendor and model or input the custom vendor and model." -msgstr "Nepasirinkote pardavėjo ir modelio arba neįvedėte pasirinktinio pardavėjo ir modelio." +msgstr "" msgid "There may be escape characters in the custom printer vendor or model. Please delete and re-enter." -msgstr "Pasirinktiniame spausdintuvo pardavėjo arba modelio pavadinime gali būti praleidžiamų simbolių. Ištrinkite ir įveskite iš naujo." +msgstr "Pasirinktiniame spausdintuvo prekės ženklo arba modelio pavadinime gali būti valdymo (escape) simbolių. Ištrinkite ir įveskite iš naujo." msgid "All inputs in the custom printer vendor or model are spaces. Please re-enter." -msgstr "Visi pasirinktinio spausdintuvo tiekėjo arba modelio įvesties duomenys yra tarpai. Įveskite iš naujo." +msgstr "Visi pasirinktinio spausdintuvo prekės ženklo arba modelio įvesties duomenys yra tarpai. Įveskite iš naujo." msgid "Please check bed printable shape and origin input." msgstr "Patikrinkite pagrindo spausdinimo formą ir pradžią." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." -msgstr "Dar nepasirinkote spausdintuvo, kuriuo norite pakeisti antgalį, pasirinkite." +msgstr "" msgid "The entered nozzle diameter is invalid, please re-enter:\n" msgstr "" +"Įvestas netinkamas purkštuko skersmuo, įveskite iš naujo:\n" +"\n" msgid "" "The system preset does not allow creation. \n" "Please re-enter the printer model or nozzle diameter." msgstr "" +"Sisteminio profilio kurti neleidžiama.\n" +"Iš naujo įveskite spausdintuvo modelį arba purkštuko skersmenį." msgid "" "\n" "\n" "Available nozzle profiles for this printer:" msgstr "" +"\n" +"\n" +"Šiam spausdintuvui prieinami purkštukų profiliai:" msgid "" "\n" "\n" "Choose YES to switch existing preset:" msgstr "" +"\n" +"\n" +"Pasirinkite TAIP, kad pakeistumėte esamą profilį:" msgid "Printer Created Successfully" msgstr "Sėkmingai sukurtas spausdintuvas" @@ -17673,18 +17699,15 @@ msgid "Printer Created" msgstr "Sukurtas spausdintuvas" msgid "Please go to printer settings to edit your presets" -msgstr "Eikite į spausdintuvo nustatymus, kad galėtumėte redaguoti išankstinius nustatymus" +msgstr "Eikite į spausdintuvo nustatymus, jei norite redaguoti savo profilius" msgid "Filament Created" msgstr "Sukurta gija" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Please go to filament settings to edit your presets if you need to.\n" "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." msgstr "" -"Jei reikia, eikite į gijos nustatymus ir redaguokite savo išankstinius nustatymus.\n" -"Atkreipkite dėmesį, kad purkštuko temperatūra, karšto pagrindo temperatūra ir didžiausias tūrinis greitis turi didelę įtaką spausdinimo kokybei. Prašome atidžiai juos nustatyti." msgid "" "\n" @@ -17694,11 +17717,11 @@ msgid "" msgstr "" "\n" "\n" -"\"Orca\" nustatė, kad jūsų naudotojo nustatymų sinchronizavimo funkcija neįjungta, todėl įrenginio puslapyje gali nepavykti nustatyti gijų nustatymų.\n" -"Spustelėkite \" Sinchronizuoti naudotojo nustatymus\", kad įjungtumėte sinchronizavimo funkciją." +"„Orca“ pastebėjo, kad jūsų naudotojo profilių sinchronizavimo funkcija neįjungta, todėl įrenginio puslapyje gijos nustatymai gali veikti netinkamai.\n" +"Spustelėkite „Sinchronizuoti naudotojo profilius“, kad įjungtumėte sinchronizavimo funkciją." msgid "Printer Setting" -msgstr "Spausdintuvo nustatymai" +msgstr "Spausdintuvo profilis" msgid "Printer config bundle(.orca_printer)" msgstr "Spausdintuvo konfigūracijos paketas(.orca_printer)" @@ -17707,13 +17730,13 @@ msgid "Filament bundle(.orca_filament)" msgstr "Gijų paketas(.orca_filament)" msgid "Printer presets(.zip)" -msgstr "Spausdintuvo nustatymai(.zip)" +msgstr "Spausdintuvo profiliai (.zip)" msgid "Filament presets(.zip)" -msgstr "Gijų nustatymai(.zip)" +msgstr "Gijos profiliai (.zip)" msgid "Process presets(.zip)" -msgstr "Proceso nustatymai(.zip)" +msgstr "Proceso profiliai (.zip)" msgid "initialize fail" msgstr "inicializuoti nepavyksta" @@ -17733,14 +17756,11 @@ msgstr "atidaryti zip raštu nepavyksta" msgid "Export successful" msgstr "Sėkmingai eksportuota" -# TODO: Review, changed by lang refactor. PR 14254 #, 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 "" -"Dabartiniame kataloge jau yra aplankas '%s'. Ar norite jį ištrinti ir atkurti.\n" -"Jei ne, bus pridėta laiko priesaga, o pavadinimą galėsite keisti po sukūrimo." #, c-format, boost-format msgid "" @@ -17756,46 +17776,44 @@ msgid "" "Printer and all the filament and process presets that belongs to the printer.\n" "Can be shared with others." msgstr "" -"Spausdintuvo ir visų spausdintuvui priklausančių gijų ir procesų išankstinės nuostatos.\n" -"Galima dalytis su kitais." +"Spausdintuvas ir visi jam priklausantys gijos bei proceso profiliai.\n" +"Galima bendrinti su kitais." msgid "" "User's filament preset set.\n" "Can be shared with others." msgstr "" -"Vartotojo iš anksto nustatytas gijų rinkinys.\n" +"Naudotojo gijos profilių rinkinys.\n" "Galima bendrinti su kitais." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only display printers with changes to printer, filament, and process presets are displayed." -msgstr "Spausdintuvų pavadinimai rodomi tik tada, kai pakeistos spausdintuvo, gijų ir proceso išankstinės nuostatos." +msgstr "" msgid "Only display the filament names with changes to filament presets." -msgstr "Rodykite tik gijų pavadinimus su gijų išankstinių nustatymų pakeitimais." +msgstr "Rodyti tik tuos gijų pavadinimus, kurių gijos profiliai buvo pakeisti." msgid "Only printer names with user printer presets will be displayed, and each preset you choose will be exported as a zip." -msgstr "Bus rodomi tik spausdintuvų pavadinimai su naudotojo spausdintuvo išankstiniais nustatymais, o kiekvienas pasirinktas išankstinis nustatymas bus eksportuojamas kaip ZIP failas." +msgstr "Bus rodomi tik tie spausdintuvų pavadinimai, kurie turi naudotojo sukurtų profilių, o kiekvienas pasirinktas profilis bus eksportuotas kaip ZIP failas." 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 "" -"Bus rodomi tik gijų pavadinimai su naudotojo gijų išankstinėmis nuostatomis, \n" -"o visi naudotojo gijų išankstiniai nustatymai kiekviename pasirinktame gijos pavadinime bus eksportuojami kaip zip." +"Bus rodomi tik tie gijų pavadinimai, kurie turi naudotojo sukurtų profilių, \n" +"o visi pasirinkto pavadinimo naudotojo gijos profiliai bus eksportuoti kaip ZIP failas." 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 "" -"Bus rodomi tik spausdintuvų pavadinimai su pakeistomis proceso išankstinėmis nuostatomis, \n" -"o visi naudotojo proceso nustatymai kiekviename pasirinktame spausdintuvo pavadinime bus eksportuoti kaip zip." +"Bus rodomi tik tie spausdintuvų pavadinimai, kurie turi pakeistų proceso profilių, \n" +"o visi pasirinkto spausdintuvo naudotojo proceso profiliai bus eksportuoti kaip ZIP failas." msgid "Please select at least one printer or filament." msgstr "Pasirinkite bent vieną spausdintuvą arba giją." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please select a preset type you want to export" -msgstr "Pasirinkite tipą, kurį norite eksportuoti" +msgstr "" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "Nepavyko sukurti laikinojo aplanko, bandykite dar kartą eksportuoti konfigūracijas." @@ -17804,63 +17822,62 @@ msgid "Edit Filament" msgstr "Redaguoti giją" msgid "Filament presets under this filament" -msgstr "Gijos nustatymai pagal šią giją" +msgstr "Šiai gijai priklausantys profiliai" msgid "Note: If the only preset under this filament is deleted, the filament will be deleted after exiting the dialog." -msgstr "Pastaba: Jei ištrintas vienintelis šios gijos išankstinis nustatymas, gija bus ištrinta išėjus iš dialogo lango." +msgstr "Pastaba: jei bus ištrintas vienintelis šiai gijai priklausantis profilis, pati gija bus ištrinta uždarius šį langą." msgid "Presets inherited by other presets cannot be deleted" -msgstr "Iš anksto nustatytų nustatymų, kuriuos paveldėjo kiti iš anksto nustatyti nustatymai, negalima ištrinti" +msgstr "Profilių, kuriuos paveldi kiti profiliai, ištrinti negalima" msgid "The following presets inherits this preset." msgid_plural "The following preset inherits this preset." -msgstr[0] "Šį išankstinį nustatymą paveldi šis išankstinis nustatymas." -msgstr[1] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." -msgstr[2] "Šiuos išankstinius nustatymus paveldi šie išankstiniai nustatymai." +msgstr[0] "Šį profilį paveldi šis profilis." +msgstr[1] "Šį profilį paveldi šie profiliai." +msgstr[2] "Šį profilį paveldi šie profiliai." msgid "Delete Preset" -msgstr "Ištrinti nustatymą" +msgstr "Ištrinti profilį" msgid "Are you sure to delete the selected preset?" -msgstr "Ar tikrai norite ištrinti pasirinktą nustatymą?" +msgstr "Ar tikrai norite ištrinti pasirinktą profilį?" msgid "Delete preset" -msgstr "Ištrinti nustatymą" +msgstr "Ištrinti profilį" msgid "+ Add Preset" -msgstr "+ Pridėti nustatymą" +msgstr "+ Pridėti profilį" 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 "" -"Visi šiai gijai priklausantys išankstiniai nustatymai bus ištrinti.\n" -"Jei spausdintuve naudojate šią giją, iš naujo nustatykite tos angos gijos informaciją." +"Visi šiai gijai priklausantys profiliai bus ištrinti.\n" +"Jei naudojate šią giją spausdintuve, iš naujo nustatykite to lizdo gijos informaciją." msgid "Delete filament" msgstr "Ištrinti giją" msgid "Add Preset" -msgstr "Pridėti nustatymą" +msgstr "Pridėti profilį" msgid "Add preset for new printer" -msgstr "Pridėti iš naujo spausdintuvo nustatymą" +msgstr "Pridėti profilį naujam spausdintuvui" msgid "Copy preset from filament" -msgstr "Nukopijuoti nustatymą iš gijos" +msgstr "Kopijuoti profilį iš gijos" msgid "The filament choice not find filament preset, please reselect it" -msgstr "Gijos pasirinkimas nerandamas iš anksto nustatytas, pasirinkite jį iš naujo" +msgstr "Pasirinktai gijai nerastas joks gijos profilis, pasirinkite iš naujo" msgid "[Delete Required]" msgstr "[Reikia ištrinti]" msgid "Edit Preset" -msgstr "Redaguoti nustatymą" +msgstr "Redaguoti profilį" -# TODO: Review, changed by lang refactor. PR 14254 msgid "For more information, please check out our Wiki" -msgstr "Daugiau informacijos rasite Wiki" +msgstr "" msgid "Wiki" msgstr "Wiki" @@ -17875,15 +17892,19 @@ msgid "" "The printer nozzle information has not been set.\n" "Please configure it before proceeding with the calibration." msgstr "" +"Spausdintuvo purkštuko informacija nenustatyta.\n" +"Konfigūruokite ją prieš tęsdami kalibravimą." msgid "" "The nozzle type does not match the actual printer nozzle type.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Purkštuko tipas neatitinka faktinio spausdintuvo purkštuko tipo.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite kalibravimą iš naujo." #, c-format, boost-format msgid "Printing %1s material with %2s nozzle may cause nozzle damage." -msgstr "" +msgstr "Spausdinant %1s medžiagą su %2s purkštuku, galima sugadinti purkštuką." msgid "Need select printer" msgstr "Reikia pasirinkti spausdintuvą" @@ -17892,28 +17913,34 @@ msgid "The start, end or step is not valid value." msgstr "Pradžios, pabaigos arba žingsnio reikšmė netinkama." msgid "The number of printer extruders and the printer selected for calibration does not match." -msgstr "" +msgstr "Spausdintuvo ekstruderių skaičius neatitinka kalibravimui pasirinkto spausdintuvo parametrų." #, c-format, boost-format msgid "The nozzle diameter of %s extruder is 0.2mm which does not support automatic Flow Dynamics calibration." -msgstr "" +msgstr "%s ekstruderio purkštuko skersmuo yra 0,2 mm, o toks skersmuo nepalaiko automatinio srauto dinamikos kalibravimo." #, 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 "" +"Šiuo metu pasirinktas %s ekstruderio purkštuko skersmuo neatitinka faktinio purkštuko skersmens.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite kalibravimą iš naujo." msgid "" "The nozzle diameter does not match the actual printer nozzle diameter.\n" "Please click the Sync button above and restart the calibration." msgstr "" +"Purkštuko skersmuo neatitinka faktinio spausdintuvo purkštuko skersmens.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite kalibravimą iš naujo." #, 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 "" +"Šiuo metu pasirinktas %s ekstruderio purkštuko tipas neatitinka faktinio spausdintuvo purkštuko tipo.\n" +"Spustelėkite viršuje esantį sinchronizavimo mygtuką ir paleiskite kalibravimą iš naujo." msgid "Unable to calibrate: maybe because the set calibration value range is too large, or the step is too small" msgstr "Nepavyksta sukalibruoti: galbūt dėl to, kad nustatytas kalibravimo vertės intervalas yra per didelis arba žingsnis yra per mažas" @@ -17925,19 +17952,19 @@ msgid "Print Host upload" msgstr "Įkėlimas spausdinimui tinkle" msgid "Select the network agent implementation for printer communication. Available agents are registered at startup." -msgstr "" +msgstr "Pasirinkite tinklo agento modulį ryšiui su spausdintuvu palaikyti. Prieinami agentai užregistruojami paleidimo metu." msgid "Select a Flashforge printer" -msgstr "" +msgstr "Pasirinkite „Flashforge“ spausdintuvą" msgid "Discovered Printers" -msgstr "" +msgstr "Aptikti spausdintuvai" 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 "" +msgstr "Nerasta galiojančios sesijos. Prisijungti prie „3DPrinterOS“?" msgid "Success!" msgstr "Pavyko!" @@ -17946,10 +17973,10 @@ msgid "Are you sure to log out?" msgstr "Ar tikrai norite atsijungti?" msgid "View print host webui in Device tab" -msgstr "Spausdintuvo sąsajos peržiūra skirtuke Įrenginys" +msgstr "Rodyti tinklo mazgo (host) puslapį skirtuke „Įrenginys“" msgid "Replace the BambuLab's device tab with print host webui" -msgstr "Pakeiskite \"BambuLab\" įrenginio skirtuką spausdintuvo sąsaja" +msgstr "Pakeisti „BambuLab“ įrenginio skirtuką tinklo mazgo (host) puslapiu" msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate." msgstr "HTTPS CA failas yra neprivalomas. Jis reikalingas tik tuo atveju, jei naudojate HTTPS su savarankiškai pasirašytu sertifikatu." @@ -17962,10 +17989,10 @@ msgstr "Atidaryti CA sertifikato failą" #, c-format, boost-format msgid "On this system, %s uses HTTPS certificates from the system Certificate Store or Keychain." -msgstr "Šioje sistemoje %s naudoja HTTPS sertifikatus iš sistemos Certificate Store arba Keychain." +msgstr "Šioje sistemoje %s naudoja HTTPS sertifikatus iš sisteminės sertifikatų saugyklos (Certificate Store) arba raktinės (Keychain)." msgid "To use a custom CA file, please import your CA file into Certificate Store / Keychain." -msgstr "Norėdami naudoti pasirinktinį CA failą, importuokite CA failą į sertifikatų saugyklą / raktų pakabuką." +msgstr "Norėdami naudoti pasirinktinį CA failą, importuokite jį į sertifikatų saugyklą arba raktinę (Keychain)." msgid "Login/Test" msgstr "Prisijungimas / bandymas" @@ -17973,54 +18000,180 @@ 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" +msgid "Detect Creality K-series printer" msgstr "" +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + +msgid "3DPrinterOS Cloud upload options" +msgstr "„3DPrinterOS“ debesijos įkėlimo parinktys" + msgid "Single file" -msgstr "" +msgstr "Vienas failas" msgid "Project File" -msgstr "" +msgstr "Projekto failas" msgid "Project:" -msgstr "" +msgstr "Projektas:" msgid "Printer type:" -msgstr "" +msgstr "Spausdintuvo tipas:" msgid "Printer type not found, please select manually." -msgstr "" +msgstr "Spausdintuvo tipas nerastas, pasirinkite rankiniu būdu." msgid "Authorizing..." -msgstr "" +msgstr "Autorizuojama..." msgid "Error. Can't get api token for authorization" -msgstr "" +msgstr "Klaida. Nepavyko gauti API žetono (token) autorizacijai" msgid "Could not parse server response." -msgstr "" +msgstr "Nepavyko apdoroti serverio atsakymo." msgid "Error saving session to file" -msgstr "" +msgstr "Klaida įrašant sesiją į failą" msgid "Error session check" -msgstr "" +msgstr "Klaida tikrinant sesiją" msgid "Error during file upload" -msgstr "" +msgstr "Klaida įkeliant failą" #, c-format, boost-format msgid "Mismatched type of print host: %s" -msgstr "Neatitinka tinklinio spausdintuvo tipas: %s" +msgstr "Neatitinkantis tinklo mazgo (host) tipas: %s" msgid "Connection to AstroBox is working correctly." -msgstr "Prisijungimas prie AstroBox veikia tinkamai." +msgstr "Ryšys su „AstroBox“ veikia tinkamai." msgid "Could not connect to AstroBox" -msgstr "Nepavyko prisijungti prie AstroBox" +msgstr "Nepavyko prisijungti prie „AstroBox“" msgid "Note: AstroBox version 1.1.0 or higher is required." -msgstr "Pastaba: reikalinga bent 1.1.0 AstroBox versija." +msgstr "Pastaba: reikalinga „AstroBox“ 1.1.0 arba naujesnė versija." msgid "Connection to Duet is working correctly." msgstr "Ryšys su Duet veikia tinkamai." @@ -18038,10 +18191,10 @@ msgid "Could not get resources to create a new connection" msgstr "Nepavyko gauti išteklių naujam ryšiui sukurti" msgid "Upload not enabled on FlashAir card." -msgstr "Įkėlimas neįjungtas FlashAir kortelėje." +msgstr "Įkėlimas neįjungtas „FlashAir“ kortelėje." msgid "Connection to FlashAir is working correctly and upload is enabled." -msgstr "Prisijungimas prie FlashAir veikia tinkamai ir įkėlimas įjungtas." +msgstr "Prisijungimas prie „FlashAir“ veikia tinkamai ir įkėlimas įjungtas." msgid "Could not connect to FlashAir" msgstr "Nepavyko prisijungti prie „FlashAir“" @@ -18055,6 +18208,19 @@ msgstr "Ryšys su MKS veikia tinkamai." msgid "Could not connect to MKS" msgstr "Nepavyko prisijungti prie MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Prisijungimas prie OctoPrint veikia tinkamai." @@ -18062,7 +18228,7 @@ msgid "Could not connect to OctoPrint" msgstr "Nepavyko prisijungti prie „OctoPrint“" msgid "Note: OctoPrint version 1.1.0 or higher is required." -msgstr "Pastaba: reikalinga bent 1.1.0 OctoPrint versija." +msgstr "Pastaba: reikalinga „OctoPrint“ 1.1.0 arba naujesnė versija." msgid "Connection to Prusa SL1 / SL1S is working correctly." msgstr "Ryšys su Prusa SL1 / SL1S veikia tinkamai." @@ -18095,19 +18261,19 @@ msgid "Upload has failed. There is no suitable storage found at %1%." msgstr "Įkelti nepavyko. %1% tinkamos saugyklos nerasta." msgid "Connection to Prusa Connect is working correctly." -msgstr "Ryšys su \"Prusa Connect\" veikia tinkamai." +msgstr "Ryšys su „Prusa Connect“ veikia tinkamai." msgid "Could not connect to Prusa Connect" -msgstr "Nepavyko prisijungti prie \"Prusa Connect\"" +msgstr "Nepavyko prisijungti prie „Prusa Connect“" msgid "Connection to Repetier is working correctly." -msgstr "Ryšys su REpieter veikia tinkamai." +msgstr "Ryšys su „Repetier“ veikia tinkamai." msgid "Could not connect to Repetier" -msgstr "Nepavyko prisijungti prie Repieter" +msgstr "Nepavyko prisijungti prie „Repetier“" msgid "Note: Repetier version 0.90.0 or higher is required." -msgstr "Pastaba: reikalinga bent 0.90.0 Repetier versija." +msgstr "Pastaba: reikalinga „Repetier“ 0.90.0 arba naujesnė versija." #, boost-format msgid "" @@ -18141,7 +18307,7 @@ msgid "It has a small layer height. This results in almost negligible layer line msgstr "Dėl mažo sluoksnio aukščio sluoksnio linijos yra beveik nereikšmingos, o spausdinimo kokybė - aukšta. Tinka daugeliui bendrųjų spausdinimo atvejų." 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 "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo greitis ir pagreitis yra mažesni, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo pasiekiama daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo greitis ir pagreitis yra mažesni, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Tai užtikrina daug aukštesnę spausdinimo kokybę, tačiau spausdinimas trunka daug ilgiau." 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 "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra šiek tiek didesnis, todėl sluoksnio linijos yra beveik nepastebimos, o spausdinimo laikas šiek tiek trumpesnis." @@ -18153,19 +18319,19 @@ msgid "Compared with the default profile of a 0.2 mm nozzle, it has a smaller la msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra beveik nematomos, o spausdinimo kokybė yra geresnė, tačiau spausdinimo laikas yra ilgesnis." 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 "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jis turi mažesnes sluoksnių linijas, mažesnį greitį ir pagreitį, o reto užpildymo raštas yra Gyroid. Dėl to sluoksnių linijos yra beveik nematomos, o spausdinimo kokybė yra daug geresnė, tačiau spausdinimo laikas yra daug ilgesnis." +msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, šis profilis pasižymi mažesnėmis sluoksnių linijomis, mažesniu greičiu bei pagreičiu, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Dėl to sluoksnių linijos tampa beveik nematomos, o spausdinimo kokybė – daug aukštesnė, tačiau spausdinimas trunka daug ilgiau." 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 "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra minimalios, o spausdinimo kokybė geresnė, tačiau spausdinimo laikas ilgesnis." 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 "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl jo gaunamos minimalios sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." +msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, šis profilis pasižymi mažesnėmis sluoksnių linijomis, mažesniu greičiu bei pagreičiu, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Tai sumažina sluoksnių linijas iki minimumo ir užtikrina daug aukštesnę spausdinimo kokybę, tačiau spausdinimas trunka daug ilgiau." msgid "It has a normal layer height. This results in average layer lines and print quality. It is suitable for most printing cases." msgstr "Jo sluoksnio aukštis yra normalus. Dėl to gaunamos vidutinės sluoksnio linijos ir spausdinimo kokybė. Jis tinka daugumai spausdinimo atvejų." 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 "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jame yra daugiau sienelių kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai būna tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka spausdinimas." +msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis turi daugiau sienelių kontūrų (wall loops) ir didesnį reto užpildymo tankį (sparse infill density). Dėl to spaudiniai yra tvirtesni, tačiau sunaudojama daugiau gijos ir pailgėja spausdinimo laikas." 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 "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl matomos ryškesnės sluoksnio linijos ir prastesnė spausdinimo kokybė, tačiau šiek tiek trumpesnis spausdinimo laikas." @@ -18177,13 +18343,13 @@ msgid "Compared with the default profile of a 0.4 mm nozzle, it has a smaller la msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." 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 "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." +msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis pasižymi mažesniu sluoksnio aukščiu, mažesniu greičiu bei pagreičiu, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Tai padaro sluoksnių linijas mažiau pastebimas ir užtikrina daug aukštesnę spausdinimo kokybę, tačiau spausdinimas trunka daug ilgiau." 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 "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl sluoksnio linijos beveik nežymios, spausdinimo kokybė geresnė, tačiau spausdinimo laikas ilgesnis." 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 "Palyginti su numatytuoju 0,4 mm purkštuvo profiliu, jo sluoksnio aukštis yra mažesnis, greitis ir pagreitis mažesni, o reto užpildymo raštas yra Gyroid. Dėl to sluoksnių linijos yra beveik nepastebimos, o spausdinimo kokybė yra daug geresnė, tačiau spausdinimo laikas yra daug ilgesnis." +msgstr "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, šis profilis pasižymi mažesniu sluoksnio aukščiu, mažesniu greičiu bei pagreičiu, o retas užpildymo raštas (sparse infill) yra „Gyroid“. Dėl to sluoksnių linijos tampa beveik nepastebimos, o spausdinimo kokybė – daug aukštesnė, tačiau spausdinimas trunka daug ilgiau." 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 "Palyginti su numatytuoju 0,4 mm purkštuko profiliu, jis turi mažesnį sluoksnio aukštį, todėl sluoksnio linijos yra beveik nežymios, o spausdinimo laikas ilgesnis." @@ -18192,19 +18358,19 @@ msgid "It has a big layer height. This results in apparent layer lines and ordin msgstr "Jis pasižymi dideliu sluoksnio aukščiu, todėl matomos sluoksnio linijos ir įprasta spausdinimo kokybė bei spausdinimo laikas." 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 "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jame yra daugiau sienų kontūrų ir didesnis reto užpildo tankis. Taigi, dėl to spaudiniai būna tvirtesni, tačiau sunaudojama daugiau gijų ir ilgiau trunka spausdinimas." +msgstr "Palyginti su numatytuoju 0,6 mm purkštuko profiliu, šis profilis turi daugiau sienelių kontūrų (wall loops) ir didesnį reto užpildymo tankį (sparse infill density). Dėl to spaudiniai yra tvirtesni, tačiau sunaudojama daugiau gijos ir pailgėja spausdinimo laikas." 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 "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, dėl to ryškesnės sluoksnio linijos ir prastesnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnių linijos yra ryškesnės, o spausdinimo kokybė žemesnė, tačiau kai kuriais atvejais sutrumpėja spausdinimo laikas." 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 "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnio linijos yra daug akivaizdesnės, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnių linijos yra daug ryškesnės, o spausdinimo kokybė daug žemesnė, tačiau kai kuriais atvejais sutrumpėja spausdinimo laikas." 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 "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir šiek tiek geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnių linijos ir šiek tiek geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." 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 "Palyginti su numatytuoju 0,6 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnio linijos ir geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,6 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl mažiau matomos sluoksnių linijos ir geresnė spausdinimo kokybė, tačiau ilgesnis spausdinimo laikas." msgid "It has a very big layer height. This results in very apparent layer lines, low print quality and shorter print time." msgstr "Jo sluoksnio aukštis yra labai didelis. Dėl to sluoksnių linijos yra labai ryškios, spausdinimo kokybė prasta, o spausdinimo laikas trumpesnis." @@ -18216,82 +18382,82 @@ msgid "Compared with the default profile of a 0.8 mm nozzle, it has a much bigge msgstr "Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra daug didesnis. Dėl to sluoksnių linijos tampa labai ryškios, o spausdinimo kokybė – žymiai prastesnė, tačiau kai kuriais atvejais spausdinimo laikas sutrumpėja." 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 "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra šiek tiek mažesnis, todėl gaunama šiek tiek mažiau, bet vis tiek matomų sluoksnio linijų ir šiek tiek geresnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais ilgesnis spausdinimo laikas." +msgstr "Palyginti su numatytuoju 0,8 mm purkštuko profiliu, jo sluoksnio aukštis yra šiek tiek mažesnis, todėl sluoksnių linijos yra šiek tiek mažiau pastebimos (bet vis dar matomos), o spausdinimo kokybė šiek tiek geresnė, tačiau kai kuriais atvejais pailgėja spausdinimo laikas." 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 "Palyginti su numatytuoju 0,8 mm purkštuvo profiliu, jo sluoksnio aukštis yra mažesnis. Dėl to sluoksnių linijos yra mažesnės, bet vis dar matomos, o spausdinimo kokybė yra šiek tiek geresnė, tačiau kai kuriais atvejais spausdinimo laikas yra ilgesnis." +msgstr "Palyginti su numatytuoju 0,8 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl sluoksnių linijos yra mažiau pastebimos (bet vis dar matomos), o spausdinimo kokybė šiek tiek geresnė, tačiau kai kuriais atvejais pailgėja spausdinimo laikas." 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 "" +msgstr "Tai nėra nei dažnai naudojama gija, nei viena iš „Bambu“ gijų, be to, ji labai skiriasi priklausomai od prekės ženklo. Todėl prieš spausdinant primygtinai rekomenduojama pasiteirauti jos tiekėjo tinkamo profilio ir pakoreguoti kai kuriuos parametrus atsižvelgiant į gijos savybes." 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 "" +msgstr "Spausdinant šią giją kyla deformavimosi (warping) ir prasto sluoksnių sukibimo tvirtumo rizika. Norėdami pasiekti geresnių rezultatų, skaitykite šį „Wiki“ puslapį: „Aukštos temperatūros ir inžinerinių medžiagų spausdinimo patarimai“." 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 "" +msgstr "Spausdinant šią giją kyla purkštuko užsikimšimo, medžiagos nutekėjimo (oozing), deformavimosi (warping) ir prasto sluoksnių sukibimo tvirtumo rizika. Norėdami pasiekti geresnių rezultatų, skaitykite šį „Wiki“ puslapį: „Aukštos temperatūros ir inžinerinių medžiagų spausdinimo patarimai“." msgid "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG." -msgstr "" +msgstr "Norėdami išgauti geresnį skaidrumo ar peršviečiamumo rezultatą su atitinkama gija, skaitykite šį „Wiki“ puslapį: „Skaidraus PETG spausdinimo patarimai“." 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 "" +msgstr "Norėdami, kad spaudiniai labiau blizgėtų, prieš naudodami išdžiovinkite giją, o pjaustyklėje (slicing) nustatykite 40–60 mm/s išorinės sienelės greitį." 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 "" +msgstr "Ši gija paprastai naudojama tik mažo tankio modeliams spausdinti, tam reikalingi specialūs parametrai. Norėdami gauti geresnę spausdinimo kokybę, skaitykite šį „Wiki“ puslapį: „RC modelių spausdinimo su putojančiu PLA (PLA Aero) instrukcijos“." 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 "" +msgstr "Ši gija paprastai naudojama tik mažo tankio modeliams spausdinti, tam reikalingi specialūs parametrai. Norėdami gauti geresnę spausdinimo kokybę, skaitykite šį „Wiki“ puslapį: „ASA Aero spausdinimo gidas“." 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 "" +msgstr "Ši gija yra per minkšta ir nesuderinama su AMS sistema. Jos spausdinimui keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „TPU spausdinimo gidas“." 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 "" +msgstr "Ši gija yra pakankamai keta (apie 67D) ir yra suderinama su AMS sistema. Jos spausdinimui keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „TPU spausdinimo gidas“." 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 "" +msgstr "Jei ketinate spausdinti minkšto tipo TPU, nepjaustykite modelio naudodami šį profilį – jis skirtas tik pakankamai kietam TPU (ne mažiau kaip 55D), kuris yra suderinamas su AMS sistema. Norėdami gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „TPU spausdinimo gidas“." 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 "" +msgstr "Tai vandenyje tirpi gija palaikančioms konstrukcijoms (supports), paprastai ji naudojama tik atramoms, o ne pačiam modelio korpusui. Šios gijos spausdinimui keliama daug reikalavimų, todėl norėdami gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „PVA spausdinimo gidas“." 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 "" +msgstr "Tai vandenyje netirpi gija palaikančioms konstrukcijoms (supports), paprastai ji naudojama tik atramoms, o ne pačiam modelio korpusui. Norėdami gauti geresnę kokybę, skaitykite šį „Wiki“ puslapį: „Palaikančiųjų gijų ir atramų funkcijos spausdinimo patarimai“." 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 "" +msgstr "Generiniai (bendrieji) profiliai yra suderinti konservatyviai, kad tiktų kuo platesniam gijų asortimentui. Norėdami pasiekti geresnės spausdinimo kokybės ir didesnio greičio, naudokite „Bambu“ gijas su joms skirtais „Bambu“ profiliais." msgid "High quality profile for 0.2mm nozzle, prioritizing print quality." -msgstr "" +msgstr "Aukštos kokybės profilis 0,2 mm purkštukui, teikiantis pirmenybę spausdinimo kokybei." msgid "High quality profile for 0.16mm layer height, prioritizing print quality and strength." -msgstr "" +msgstr "Aukštos kokybės profilis 0,16 mm sluoksnio aukščiui, teikiantis pirmenybę spausdinimo kokybei ir tvirtumui." msgid "Standard profile for 0.16mm layer height, prioritizing speed." -msgstr "" +msgstr "Standartinis profilis 0,16 mm sluoksnio aukščiui, teikiantis pirmenybę greičiui." msgid "High quality profile for 0.2mm layer height, prioritizing strength and print quality." -msgstr "" +msgstr "Aukštos kokybės profilis 0,2 mm sluoksnio aukščiui, teikiantis pirmenybę tvirtumui ir spausdinimo kokybei." msgid "Standard profile for 0.4mm nozzle, prioritizing speed." -msgstr "" +msgstr "Standartinis profilis 0,4 mm purkštukui, teikiantis pirmenybę greičiui." msgid "High quality profile for 0.6mm nozzle, prioritizing print quality and strength." -msgstr "" +msgstr "Aukštos kokybės profilis 0,6 mm purkštukui, teikiantis pirmenybę spausdinimo kokybei ir tvirtumui." msgid "Strength profile for 0.6mm nozzle, prioritizing strength." -msgstr "" +msgstr "Tvirtumo profilis 0,6 mm purkštukui, teikiantis pirmenybę konstrukcijos tvirtumui." msgid "Standard profile for 0.6mm nozzle, prioritizing speed." -msgstr "" +msgstr "Standartinis profilis 0,6 mm purkštukui, teikiantis pirmenybę greičiui." msgid "High quality profile for 0.8mm nozzle, prioritizing print quality." -msgstr "" +msgstr "Aukštos kokybės profilis 0,8 mm purkštukui, teikiantis pirmenybę spausdinimo kokybei." msgid "Strength profile for 0.8mm nozzle, prioritizing strength." -msgstr "" +msgstr "Tvirtumo profilis 0,8 mm purkštukui, teikiantis pirmenybę konstrukcijos tvirtumui." msgid "Standard profile for 0.8mm nozzle, prioritizing speed." -msgstr "" +msgstr "Standartinis profilis 0,8 mm purkštukui, teikiantis pirmenybę greičiui." msgid "No AMS" msgstr "Be AMS" @@ -18324,7 +18490,7 @@ msgid "Printing Options" msgstr "Spausdinimo parinktys" msgid "Flow Dynamic Calibration" -msgstr "Dinaminis srauto kalibravimas" +msgstr "Dinaminis srauto kalibravimas (K-factor)" msgid "Send Options" msgstr "Siuntimo parinktys" @@ -18333,14 +18499,13 @@ msgid "Send to" msgstr "Siųsti į" msgid "printers at the same time. (It depends on how many devices can undergo heating at the same time.)" -msgstr "spausdintuvus vienu metu. (Priklauso nuo to, kiek įrenginių gali būti kaitinami vienu metu.)" +msgstr "spausdintuvus vienu metu. (Priklauso nuo to, kiek įrenginių gali būti kaitinama vienu metu.)" msgid "Wait" msgstr "Laukti" -# TODO: Review, changed by lang refactor. PR 14254 msgid "minute each batch. (It depends on how long it takes to complete heating.)" -msgstr "minutę kiekvienai partijai. (Priklauso nuo to, kiek laiko trunka įkaitinimas.)" +msgstr "" msgid "Task Sending" msgstr "Užduotis siunčiama" @@ -18349,7 +18514,7 @@ msgid "Task Sent" msgstr "Užduotis nusiųsta" msgid "Edit multiple printers" -msgstr "Taisyti kelis spausdintuvus" +msgstr "Redaguoti kelis spausdintuvus" msgid "Select connected printers (0/6)" msgstr "Pasirinkite prijungtus spausdintuvus (0/6)" @@ -18366,7 +18531,7 @@ msgid "No task" msgstr "Nėra užduočių" msgid "Edit Printers" -msgstr "Taisyti spausdintuvus" +msgstr "Redaguoti spausdintuvus" msgid "Task Name" msgstr "Užduoties pavadinimas" @@ -18390,7 +18555,7 @@ msgid "Upgrading" msgstr "Atnaujinama" msgid "Syncing" -msgstr "sinchronizuojama" +msgstr "Sinchronizuojama" msgid "Printing Finish" msgstr "Spausdinimas baigtas" @@ -18426,58 +18591,58 @@ msgid "Removed" msgstr "Pašalinta" msgid "Don't remind me again" -msgstr "" +msgstr "Daugiau neberodyti šio priminimo" msgid "No further pop-up will appear. You can reopen it in 'Preferences'" -msgstr "" +msgstr "Iškylantieji langai daugiau nebus rodomi. Juos vėl galite įjungti „Nuostatose“" msgid "Filament-Saving Mode" -msgstr "" +msgstr "Gijos taupymo režimas" msgid "Convenience Mode" -msgstr "" +msgstr "Patogumo režimas" msgid "Custom Mode" -msgstr "" +msgstr "Pasirinktinis režimas" msgid "Generates filament grouping for the left and right nozzles based on the most filament-saving principles to minimize waste." -msgstr "" +msgstr "Sugrupuoja kairiojo ir dešiniojo purkštukų gijas remiantis maksimalaus taupymo principais, kad būtų sumažintas gijos likučių kiekis." 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 "" +msgstr "Sugrupuoja kairiojo ir dešiniojo purkštukų gijas atsižvelgiant į faktinę spausdintuvo gijų būseną, taip sumažinant poreikį rankiniu būdu keisti gijas." msgid "Manually assign filament to the left or right nozzle" -msgstr "" +msgstr "Rankiniu būdu priskirti giją kairiajam arba dešiniajam purkštukui" msgid "Global settings" -msgstr "" +msgstr "Visuotiniai nustatymai" msgid "Video tutorial" -msgstr "" +msgstr "Vaizdo pamoka" msgid "(Sync with printer)" -msgstr "" +msgstr "(Sinchronizuoti su spausdintuvu)" msgid "We will slice according to this grouping method:" -msgstr "" +msgstr "Pjaustymas bus atliekamas pagal šį priskyrimo metodą:" msgid "Tip: You can drag the filaments to reassign them to different nozzles." -msgstr "" +msgstr "Patarimas: galite vilkti gijas, kad priskirtumėte jas kitiems purkštukams." msgid "The filament grouping method for current plate is determined by the dropdown option at the slicing plate button." -msgstr "" +msgstr "Dabartinio pagrindo gijų priskyrimo metodą lemia išskleidžiamojo sąrašo parinktis, esanti prie pagrindo pjaustymo mygtuko." msgid "Connected to Obico successfully!" msgstr "Sėkmingai prisijungta prie \"Obico\"!" msgid "Could not connect to Obico" -msgstr "Nepavyko prisijungti prie \"Obico" +msgstr "Nepavyko prisijungti prie „Obico“" msgid "Connected to SimplyPrint successfully!" msgstr "Sėkmingai prisijungta prie \"SimplyPrint\"!" msgid "Could not connect to SimplyPrint" -msgstr "Nepavyko prisijungti prie \"SimplyPrint" +msgstr "Nepavyko prisijungti prie „SimplyPrint“" msgid "Internal error" msgstr "Vidinė klaida" @@ -18489,116 +18654,116 @@ msgid "SimplyPrint account not linked. Go to Connect options to set it up." msgstr "\"SimplyPrint\" paskyra nesusieta. Eikite į Prisijungimo parinktis ir ją nustatykite." msgid "Flashforge returned an invalid JSON response." -msgstr "" +msgstr "„Flashforge“ grąžino negaliojantį JSON atsakymą." msgid "No Flashforge printers were discovered on the local network." -msgstr "" +msgstr "Vietiniame tinkle nerasta jokių „Flashforge“ spausdintuvų." msgid "Connected to Flashforge local API successfully." -msgstr "" +msgstr "Sėkmingai prisijungta prie „Flashforge“ vietinės API." 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 "" +msgstr "Nepavyko prisijungti prie „Flashforge“ vietinės API" 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 "" +msgstr "„Flashforge“ vietinei API reikalingas ir serijos numeris, ir prieigos kodas." msgid "Printer returned an error" -msgstr "" +msgstr "Spausdintuvas grąžino klaidą" msgid "Missing system_info in response" -msgstr "" +msgstr "Atsakyme trūksta „system_info“" msgid "Missing printer serial number in response" -msgstr "" +msgstr "Atsakyme trūksta spausdintuvo serijos numerio" msgid "Error parsing response" -msgstr "" +msgstr "Klaida analizuojant atsakymą" msgid "ElegooLink not detected" -msgstr "" +msgstr "„ElegooLink“ neaptikta" msgid "Invalid access code" -msgstr "" +msgstr "Neteisingas prieigos kodas" msgid "CC2 device not detected" -msgstr "" +msgstr "CC2 įrenginys neaptiktas" msgid "Connection to ElegooLink is working correctly." -msgstr "" +msgstr "Ryšys su „ElegooLink“ veikia tinkamai." msgid "Could not connect to ElegooLink" -msgstr "" +msgstr "Nepavyko prisijungti prie „ElegooLink“" #, boost-format msgid "Error code: %1%" -msgstr "" +msgstr "Klaidos kodas: %1%" msgid "Upload failed" -msgstr "" +msgstr "Įkėlimas nepavyko" msgid "The file has been transferred, but some unknown errors occurred. Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "Failas buvo perduotas, tačiau įvyko nežinomų klaidų. Patikrinkite failą įrenginio puslapyje ir bandykite paleisti spausdinimą iš naujo." msgid "Failed to open file for upload." -msgstr "" +msgstr "Nepavyko atverti failo įkėlimui." msgid "Failed to read file chunk for upload." -msgstr "" +msgstr "Nepavyko nuskaityti failo dalies įkėlimui." msgid "CC2 upload failed" -msgstr "" +msgstr "CC2 įkėlimas nepavyko" msgid "The file is empty or could not be read." -msgstr "" +msgstr "Failas yra tuščias arba jo nepavyko nuskaityti." msgid "Failed to calculate file checksum." -msgstr "" +msgstr "Nepavyko apskaičiuoti failo kontrolinės sumos." msgid "Error code not found" -msgstr "" +msgstr "Klaidos kodas nerastas" msgid "The printer is busy, Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "Spausdintuvas užimtas. Patikrinkite failą įrenginio puslapyje ir bandykite paleisti spausdinimą iš naujo." msgid "The file is lost, please check and try again." -msgstr "" +msgstr "Failas prarastas, patikrinkite ir bandykite dar kartą." msgid "The file is corrupted, please check and try again." -msgstr "" +msgstr "Failas sugadintas, patikrinkite ir bandykite dar kartą." msgid "Transmission abnormality, please check and try again." -msgstr "" +msgstr "Perdavimo sutrikimas, patikrinkite ir bandykite dar kartą." msgid "The file does not match the printer, please check and try again." -msgstr "" +msgstr "Failas neatitinka spausdintuvo, patikrinkite ir bandykite dar kartą." msgid "Start print timeout" -msgstr "" +msgstr "Viršytas spausdinimo paleidimo laikas" msgid "Start print failed" -msgstr "" +msgstr "Spausdinimo paleidimo klaida" msgid "Connected to CrealityPrint successfully!" -msgstr "" +msgstr "Sėkmingai prisijungta prie „CrealityPrint“!" msgid "Could not connect to CrealityPrint" -msgstr "" +msgstr "Nepavyko prisijungti prie „CrealityPrint“" msgid "Connection timed out. Please check if the printer and computer network are functioning properly, and confirm that they are on the same network." -msgstr "" +msgstr "Baigėsi prisijungimo laikas. Patikrinkite, ar spausdintuvo ir kompiuterio tinklas veikia tinkamai, ir įsitikinkite, kad jie yra tame pačiame tinkle." msgid "The Hostname/IP/URL could not be parsed, please check it and try again." -msgstr "" +msgstr "Nepavyko išanalizuoti mazgo vardo / IP / URL, patikrinkite ir bandykite dar kartą." msgid "File/data transfer interrupted. Please check the printer and network, then try it again." -msgstr "" +msgstr "Failo / duomenų perdavimas nutrūko. Patikrinkite spausdintuvą bei tinklą ir bandykite dar kartą." msgid "The provided state is not correct." msgstr "Pateikta būsena neteisinga." @@ -18622,16 +18787,16 @@ msgid "Detection radius" msgstr "Aptikimo spindulys" msgid "Selected" -msgstr "" +msgstr "Pasirinkta" msgid "Auto-generate" -msgstr "" +msgstr "Automatiškai sugeneruoti" msgid "Generate brim ears using Max angle and Detection radius" -msgstr "" +msgstr "Sugeneruoti krašto „ausis“ naudojant maksimalų kampą ir aptikimo spindulį" msgid "Add or Select" -msgstr "" +msgstr "Pridėti arba pasirinkti" msgid "Warning: The brim type is not set to \"painted\", the brim ears will not take effect!" msgstr "Įspėjimas: Jei krašto tipas nenustatytas kaip „pieštas“, krašto \"ausys\" nebus įjungtos!" @@ -18639,9 +18804,8 @@ msgstr "Įspėjimas: Jei krašto tipas nenustatytas kaip „pieštas“, krašto msgid "Set the brim type of this object to \"painted\"" msgstr "Nustatykite šio objekto krašto tipą kaip „pieštas“" -# TODO: Review, changed by lang refactor. PR 14254 msgid "invalid brim ears" -msgstr " netinkamos krašto \"ausys\"" +msgstr "negaliojančios krašto „ausys“" msgid "Brim Ears" msgstr "Krašto \"ausys\"" @@ -18650,266 +18814,275 @@ msgid "Please select single object." msgstr "Pasirinkite vieną objektą." msgid "Entering Brim Ears" -msgstr "" +msgstr "Įeinama į krašto „ausų“ režimą" msgid "Leaving Brim Ears" -msgstr "" +msgstr "Išeinama iš krašto „ausų“ režimo" msgid "Zoom Out" -msgstr "" +msgstr "Nutolinti" msgid "Zoom In" -msgstr "" +msgstr "Artinti" msgid "Load skipping objects information failed. Please try again." -msgstr "" +msgstr "Nepavyko įkelti praleidžiamų objektų informacijos. Bandykite dar kartą." msgid "Failed to create the temporary folder." -msgstr "" +msgstr "Nepavyko sukurti laikinojo aplanko." #, c-format, boost-format msgid "/%d Selected" -msgstr "" +msgstr "/Pasirinkta: %d" msgid "Nothing selected" -msgstr "" +msgstr "Nieko nepasirinkta" msgid "Over 64 objects in single plate" -msgstr "" +msgstr "Viename pagrinde yra daugiau nei 64 objektai" msgid "The current print job cannot be skipped" -msgstr "" +msgstr "Dabartinės spausdinimo užduoties negalima praleisti" msgid "Skipping all objects." -msgstr "" +msgstr "Praleidžiami visi objektai." msgid "The printing job will be stopped. Continue?" -msgstr "" +msgstr "Spausdinimo užduotis bus sustabdyta. Tęsti?" #, c-format, boost-format msgid "Skipping %d objects." -msgstr "" +msgstr "Praleidžiama objektų: %d." msgid "This action cannot be undone. Continue?" -msgstr "" +msgstr "Šio veiksmo atšaukti nebus galima. Tęsti?" msgid "Skipping objects." -msgstr "" +msgstr "Praleidžiami objektai." msgid "Select Filament" -msgstr "" +msgstr "Pasirinkti giją" msgid "Null Color" -msgstr "" +msgstr "Be spalvos" msgid "Multiple Color" -msgstr "" +msgstr "Daugiaspalvis" msgid "Official Filament" -msgstr "" +msgstr "Oficiali gija" msgid "More Colors" -msgstr "" +msgstr "Daugiau spalvų" msgid "Network Plug-in Update Available" -msgstr "" +msgstr "Yra tinklo papildinio atnaujinimas" msgid "Bambu Network Plug-in Required" -msgstr "" +msgstr "Reikalingas „Bambu“ tinklo papildinys" msgid "The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it." -msgstr "" +msgstr "„Bambu“ tinklo papildinys yra sugadintas arba nesuderinamas. Įdiekite jį iš naujo." msgid "The Bambu Network Plug-in is required for cloud features, printer discovery, and remote printing." -msgstr "" +msgstr "„Bambu“ tinklo papildinys yra būtinas, kad veiktų debesijos funkcijos, spausdintuvo aptikimas ir nuotolinis spausdinimas." #, c-format, boost-format msgid "Error: %s" -msgstr "" +msgstr "Klaida: %s" msgid "Show details" -msgstr "" +msgstr "Rodyti išsamiau" msgid "Version to install:" -msgstr "" +msgstr "Diegiama versija:" msgid "Download and Install" -msgstr "" +msgstr "Atsisiųsti ir įdiegti" msgid "Skip for Now" -msgstr "" +msgstr "Kol kas praleisti" msgid "A new version of the Bambu Network Plug-in is available." -msgstr "" +msgstr "Išleista nauja „Bambu“ tinklo papildinio versija." #, c-format, boost-format msgid "Current version: %s" -msgstr "" +msgstr "Dabartinė versija: %s" msgid "Update to version:" -msgstr "" +msgstr "Atnaujinti iki versijos:" msgid "Update Now" -msgstr "" +msgstr "Atnaujinti dabar" msgid "Remind Later" -msgstr "" +msgstr "Priminti vėliau" msgid "Skip Version" -msgstr "" +msgstr "Praleisti šią versiją" msgid "Don't Ask Again" -msgstr "" +msgstr "Daugiau neklausti" msgid "The Bambu Network Plug-in has been installed successfully." -msgstr "" +msgstr "„Bambu“ tinklo papildinys sėkmingai įdiegtas." msgid "A restart is required to load the new plug-in. Would you like to restart now?" -msgstr "" +msgstr "Norint įkelti naują papildinį, programą reikia paleisti iš naujo. Ar norite paleisti dabar?" msgid "Restart Now" -msgstr "" +msgstr "Paleisti iš naujo dabar" msgid "Restart Later" -msgstr "" +msgstr "Paleisti iš naujo vėliau" msgid "NO RAMMING AT ALL" -msgstr "" +msgstr "VISIŠKAI NENAUDOTI SUTANKINIMO" msgid "Volumetric speed" -msgstr "" +msgstr "Tūrinis greitis" msgid "Step file import parameters" -msgstr "" +msgstr "STEP failų importavimo parametrai" msgid "Smaller linear and angular deflections result in higher-quality transformations but increase the processing time." -msgstr "" +msgstr "Mažesni linijiniai ir kampiniai nuokrypiai užtikrina aukštesnės kokybės transformacijas, tačiau pailgina apdorojimo laiką." msgid "Linear Deflection" -msgstr "" +msgstr "Linijinis nuokrypis" msgid "Please input a valid value (0.001 < linear deflection < 0.1)" -msgstr "" +msgstr "Įveskite galiojančią reikšmę (0,001 < linijinis nuokrypis < 0,1)" msgid "Angle Deflection" -msgstr "" +msgstr "Kampinis nuokrypis" msgid "Please input a valid value (0.01 < angle deflection < 1.0)" -msgstr "" +msgstr "Įveskite galiojančią reikšmę (0,01 < kampinis nuokrypis < 1,0)" msgid "Split compound and compsolid into multiple objects" -msgstr "" +msgstr "Skaidyti „compound“ ir „compsolid“ darinius į kelis objektus" msgid "Number of triangular facets" -msgstr "" +msgstr "Trikampių briaunų skaičius" msgid "Calculating, please wait..." +msgstr "Skaičiuojama, palaukite..." + +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." msgstr "" msgid "PresetBundle" -msgstr "" +msgstr "ProfiliųRinkinys" msgid "Bundle folder does not exist." -msgstr "" +msgstr "Rinkinio aplankas neegzistuoja." msgid "Failed to open folder." -msgstr "" +msgstr "Nepavyko atverti aplanko." msgid "Delete selected bundle from folder and all presets loaded from it?" -msgstr "" +msgstr "Ištrinti pasirinktą rinkinį iš aplanko ir visus iš jo įkeltus profilius?" msgid "Delete Bundle" -msgstr "" +msgstr "Ištrinti rinkinį" msgid "Failed to remove bundle." -msgstr "" +msgstr "Nepavyko pašalinti rinkinio." msgid "Remove Bundle" -msgstr "" +msgstr "Pašalinti rinkinį" msgid "Unsubscribe bundle?" -msgstr "" +msgstr "Atsisakyti rinkinio prenumeratos?" msgid "UnsubscribeBundle" -msgstr "" +msgstr "AtsisakytiRinkinioPrenumeratos" msgid "Failed to unsubscribe bundle." -msgstr "" +msgstr "Nepavyko atsisakyti rinkinio prenumeratos." msgid "Unsubscribe Bundle" -msgstr "" +msgstr "Atsisakyti rinkinio prenumeratos" msgid "ExportPresetBundle" -msgstr "" +msgstr "EksportuotiProfiliųRinkinį" msgid "Save preset bundle" -msgstr "" +msgstr "Išsaugoti profilių rinkinį" msgid "Performing desktop integration failed - boost::filesystem::canonical did not return appimage path." -msgstr "" +msgstr "Nepavyko atlikti integracijos su darbalaukiu – „boost::filesystem::canonical“ negrąžino „AppImage“ kelio." msgid "Performing desktop integration failed - Could not find executable." -msgstr "" +msgstr "Nepavyko atlikti integracijos su darbalaukiu – nepavyko rasti vykdomojo failo." msgid "Performing desktop integration failed because the application directory was not found." -msgstr "" +msgstr "Nepavyko atlikti integracijos su darbalaukiu, nes nerastas programos katalogas." msgid "Performing desktop integration failed - could not create Gcodeviewer desktop file. OrcaSlicer desktop file was probably created successfully." -msgstr "" +msgstr "Nepavyko atlikti integracijos su darbalaukiu – nepavyko sukurti „Gcodeviewer“ darbalaukio failo. „OrcaSlicer“ darbalaukio failas tikriausiai buvo sukurtas sėkmingai." msgid "Performing downloader desktop integration failed - boost::filesystem::canonical did not return appimage path." -msgstr "" +msgstr "Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu – „boost::filesystem::canonical“ negrąžino „AppImage“ kelio." msgid "Performing downloader desktop integration failed - Could not find executable." -msgstr "" +msgstr "Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu – nepavyko rasti vykdomojo failo." msgid "Performing downloader desktop integration failed because the application directory was not found." -msgstr "" +msgstr "Nepavyko atlikti parsisiuntimo įrankio integracijos su darbalaukiu, nes nerastas programos katalogas." msgid "Desktop Integration" -msgstr "" +msgstr "Integracija su darbalaukiu" msgid "" "Desktop Integration sets this binary to be searchable by the system.\n" "\n" "Press \"Perform\" to proceed." msgstr "" +"Integracija su darbalaukiu nustato šį vykdomąjį failą taip, kad sistema galėtų jį rasti.\n" +"\n" +"Norėdami tęsti, paspauskite „Atlikti“." msgid "The download has failed" -msgstr "" +msgstr "Atsisiuntimas nepavyko" #. TRN %1% = file path #, boost-format msgid "Can't create file at %1%" -msgstr "" +msgstr "Nepavyko sukurti failo ties %1%" msgid "Archive preview" -msgstr "" +msgstr "Archyvo peržiūra" msgid "Open File" -msgstr "" +msgstr "Atverti failą" msgid "The filament may not be compatible with the current machine settings. Generic filament presets will be used." -msgstr "" +msgstr "Gija gali būti nesuderinama su dabartiniais įrenginio nustatymais. Bus naudojami bendrieji gijos profiliai." msgid "The filament model is unknown. Still using the previous filament preset." -msgstr "" +msgstr "Gijos modelis nežinomas. Toliau naudojamas ankstesnis gijos profilis." msgid "The filament model is unknown. Generic filament presets will be used." -msgstr "" +msgstr "Gijos modelis nežinomas. Bus naudojami bendrieji gijos profiliai." msgid "The filament may not be compatible with the current machine settings. A random filament preset will be used." -msgstr "" +msgstr "Gija gali būti nesuderinama su dabartiniais įrenginio nustatymais. Bus naudojamas atsitiktinis gijos profilis." msgid "The filament model is unknown. A random filament preset will be used." -msgstr "" +msgstr "Gijos modelis nežinomas. Bus naudojamas atsitiktinis gijos profilis." #: 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 "" -"Tiksli siena\n" +"Tiksli sienelė\n" "Ar žinojote, kad įjungus tikslią sienelę galima pagerinti tikslumą ir sluoksnių nuoseklumą?" #: resources/data/hints.ini: [hint:Sandwich mode] @@ -18918,7 +19091,7 @@ msgid "" "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 "" "Sumuštinio režimas\n" -"Ar žinojote, kad galite naudoti daugiasluoksnį režimą (vidinis-išorinis-vidinis), kad padidintumėte tikslumą ir sluoksnių nuoseklumą, jei jūsų modelyje nėra labai stačių iškyšų?" +"Ar žinojote, kad galite naudoti daugiasluoksnį režimą (vidinis–išorinis–vidinis), kad padidintumėte tikslumą ir sluoksnių nuoseklumą, jei jūsų modelyje nėra labai stačių iškyšų?" #: resources/data/hints.ini: [hint:Chamber temperature] msgid "" @@ -18926,7 +19099,7 @@ msgid "" "Did you know that OrcaSlicer supports chamber temperature?" msgstr "" "Kameros temperatūra\n" -"Ar žinojote, kad \"OrcaSlicer\" palaiko kameros temperatūrą?" +"Ar žinojote, kad „OrcaSlicer“ palaiko kameros temperatūrą?" #: resources/data/hints.ini: [hint:Calibration] msgid "" @@ -18934,7 +19107,7 @@ msgid "" "Did you know that calibrating your printer can do wonders? Check out our beloved calibration solution in OrcaSlicer." msgstr "" "Kalibravimas\n" -"Ar žinojote, kad spausdintuvo kalibravimas gali padaryti stebuklus? Išbandykite mūsų mėgstamą kalibravimo sprendimą \"OrcaSlicer\"." +"Ar žinojote, kad spausdintuvo kalibravimas gali padaryti stebuklus? Išbandykite mūsų mėgstamą kalibravimo sprendimą „OrcaSlicer“." #: resources/data/hints.ini: [hint:Auxiliary fan] msgid "" @@ -18942,7 +19115,7 @@ msgid "" "Did you know that OrcaSlicer supports Auxiliary part cooling fan?" msgstr "" "Pagalbinis ventiliatorius\n" -"Ar žinojote, kad \"OrcaSlicer\" palaiko pagalbinį dalių aušinimo ventiliatorių?" +"Ar žinojote, kad „OrcaSlicer“ palaiko pagalbinį dalių aušinimo ventiliatorių?" #: resources/data/hints.ini: [hint:Air filtration] msgid "" @@ -18950,7 +19123,7 @@ msgid "" "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?" msgstr "" "Oro filtravimas / išmetimo ventiliatorius\n" -"Ar žinojote, kad \"OrcaSlicer\" gali palaikyti oro filtravimo / išmetimo ventiliatorių?" +"Ar žinojote, kad „OrcaSlicer“ palaiko oro filtravimą ir išmetimo ventiliatorių?" #: resources/data/hints.ini: [hint:G-code window] msgid "" @@ -18966,21 +19139,23 @@ msgid "" "You can switch between Prepare and Preview workspaces by pressing the Tab key." msgstr "" "Perjungti darbines erdves\n" -"Paspaudę Tab klavišą, galite perjungti Paruošti ir Peržiūrėti darbines erdves." +"Paspaudę klavišą Tab, galite perjungti Paruošimo ir Peržiūros darbines erdves." #: 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 "" -"Kaip naudoti klavišų kombinacijas\n" -"Ar žinojote, kad „Orca Slicer“ siūlo platų klavišų kombinacijų ir 3D scenos operacijų pasirinkimą?" +"Kaip naudoti sparčiuosius klavišus\n" +"Ar žinojote, kad „OrcaSlicer“ siūlo platų sparčiųjų klavišų ir 3D scenos operacijų pasirinkimą?" #: 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 "" +"Atvirkštinė kryptis lyginiuose sluoksniuose\n" +"Ar žinojote, kad funkcija Atvirkštinė kryptis lyginiuose sluoksniuose gali gerokai pagerinti iškyšų paviršiaus kokybę? Tačiau ji gali sukelti sienelės netolygumų, todėl naudokite atsargiai!" #: resources/data/hints.ini: [hint:Cut Tool] msgid "" @@ -18988,25 +19163,24 @@ msgid "" "Did you know that you can cut a model at any angle and position with the cutting tool?" msgstr "" "Pjovimo įrankis\n" -"Ar žinojote, kad pjovimo įrankiu galite pjauti modelį bet kokiu kampu ir bet kokioje padėtyje?" +"Ar žinojote, kad pjovimo įrankiu galite perpjauti modelį bet kokiu kampu ir bet kurioje padėtyje?" #: 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 "" -"Fiksuoti modelį\n" -"Ar žinojote, kad galite ištaisyti sugadintą 3D modelį ir išvengti daugybės sluoksniavimo problemų \"Windows\" sistemoje?" +"Taisyti modelį\n" +"Ar žinojote, kad „Windows“ sistemoje galite pataisyti sugadintą 3D modelį ir taip išvengti daugybės pjaustymo problemų?" #: resources/data/hints.ini: [hint:Timelapse] msgid "" "Timelapse\n" "Did you know that you can generate a timelapse video during each print?" msgstr "" -"Laiko intervalas\n" -"Ar žinojote, kad kiekvieno spausdinimo metu galite sukurti laiko intervalų vaizdo įrašą?" +"Intervalinis fotografavimas (Timelapse)\n" +"Ar žinojote, kad kiekvieno spausdinimo metu galite sugeneruoti intervalinio fotografavimo vaizdo įrašą?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" @@ -19015,22 +19189,21 @@ msgstr "" "Automatinis išdėstymas\n" "Ar žinojote, kad galite automatiškai išdėstyti visus savo projekto objektus?" -# TODO: Review, changed by lang refactor. PR 14254 #: 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 "" "Automatinis orientavimas\n" -"Ar žinojote, kad vienu paspaudimu galite pasukti objektus į optimalų orientavimą spausdinimui?" +"Ar žinojote, kad vienu spustelėjimu galite pasukti objektus į optimalią padėtį spausdinimui?" #: 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 "" -"Padėti ant plokštumos\n" -"Ar žinojote, kad galite greitai suorientuoti modelį taip, kad viena jo plokštuma būtų ant spausdinimo plokštės? Pasirinkite funkciją \"Padėti ant plokštumos\" arba paspauskite klavišą F." +"Guldyti ant sienelės\n" +"Ar žinojote, kad galite greitai suorientuoti modelį taip, kad viena iš jo sienelių priglustų prie spausdinimo pagrindo? Pasirinkite funkciją „Guldyti ant sienelės“ arba paspauskite klavišą F." #: resources/data/hints.ini: [hint:Object List] msgid "" @@ -19038,15 +19211,15 @@ msgid "" "Did you know that you can view all objects/parts in a list and change settings for each object/part?" msgstr "" "Objektų sąrašas\n" -"Ar žinojote, kad visus objektus/dalis galite peržiūrėti sąraše ir keisti kiekvieno objekto/dalies nustatymus?" +"Ar žinojote, kad galite peržiūrėti visus objektus bei dalis sąraše ir keisti kiekvieno objekto ar dalies nustatymus?" #: 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 "" -"Paieškos funkcijos\n" -"Ar žinojote, kad naudodami paieškos įrankį galite greitai rasti konkretų \"Orca Slicer\" nustatymą?" +"Paieškos funkcija\n" +"Ar žinojote, kad naudodami paieškos įrankį galite greitai rasti konkretų „OrcaSlicer“ nustatymą?" #: resources/data/hints.ini: [hint:Simplify Model] msgid "" @@ -19054,23 +19227,23 @@ msgid "" "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 "" "Supaprastinti modelį\n" -"Ar žinojote, kad galite sumažinti trikampių skaičių figūroje naudodami funkciją \"Supaprastinti modelį\"? Dešiniuoju pelės klavišu spustelėkite modelį ir pasirinkite Supaprastinti modelį." +"Ar žinojote, kad galite sumažinti trikampių skaičių tinklelyje naudodami tinklelio supaprastinimo funkciją? Dešiniuoju pelės mygtuku spustelėkite modelį ir pasirinkite „Supaprastinti modelį“." #: 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 "" -"Sluoksniavimo parametrų lentelė\n" -"Ar žinojote, kad lentelėje galite peržiūrėti visus objektus/dalis ir keisti kiekvieno objekto/dalies nustatymus?" +"Pjaustymo parametrų lentelė\n" +"Ar žinojote, kad lentelėje galite peržiūrėti visus objektus bei dalis ir keisti kiekvieno objekto ar dalies nustatymus?" #: 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 "" -"Skirstymas į objektus/dalis\n" -"Ar žinojote, kad didelį objektą galite suskaidyti į mažesnius, kad būtų lengviau jį nuspalvinti ar spausdinti?" +"Skaidymas į objektus / dalis\n" +"Ar žinojote, kad didelį objektą galite suskaidyti į mažesnius, kad būtų lengviau jį nuspalvinti ar atspausdinti?" #: resources/data/hints.ini: [hint:Subtract a Part] msgid "" @@ -19078,7 +19251,7 @@ msgid "" "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 "" "Atimti dalį\n" -"Ar žinojote, kad galite atimti vieną figūrą iš kitos naudodami modifikatorių \"Negatyvioji dalis\"? Taip galite, pavyzdžiui, tiesiogiai \"Orca Slicer\" programoje kurti lengvai keičiamo dydžio skyles." +"Ar žinojote, kad galite atimti vieną tinklelį iš kito naudodami neigiamos dalies (Negative part) modifikatorių? Taip galite, pavyzdžiui, tiesiogiai „OrcaSlicer“ programoje kurti lengvai keičiamo dydžio skyles." #: resources/data/hints.ini: [hint:STEP] msgid "" @@ -19087,8 +19260,8 @@ msgid "" "Orca Slicer supports slicing STEP files, providing smoother results than a lower resolution STL. Give it a try!" msgstr "" "STEP\n" -"Ar žinojote, kad spausdinimo kokybę galite pagerinti sluoksniuodami ne STL, o STEP failą?\n" -"\"Orca Slicer\" palaiko STEP failų sluoksniavimą ir užtikrina sklandesnį rezultatą nei mažesnės raiškos STL. Išbandykite!" +"Ar žinojote, kad spausdinimo kokybę galite pagerinti pjaustydami ne STL, o STEP failą?\n" +"„OrcaSlicer“ palaiko STEP failų pjaustymą, užtikrindama sklandesnius rezultatus nei mažos raiškos STL. Išbandykite!" #: resources/data/hints.ini: [hint:Z seam location] msgid "" @@ -19096,33 +19269,30 @@ msgid "" "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 siūlės vieta\n" -"Ar žinojote, kad galite keisti Z siūlės vietą ir net nupiešti ją ant spaudinio, kad ji būtų mažiau matomoje vietoje? Tai pagerina bendrą modelio išvaizdą. Patikrinkite!" +"Ar žinojote, kad galite pritaikyti Z siūlės vietą ir net užpiešti ją ant spaudinio, kad ji būtų mažiau matomoje vietoje? Tai pagerina bendrą modelio išvaizdą. Išbandykite!" #: 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 "" -"Tikslus srauto greičio reguliavimas\n" -"Ar žinojote, kad srauto greitį galima tiksliai sureguliuoti, kad spaudiniai atrodytų dar geriau? Priklausomai nuo medžiagos, atlikdami smulkų reguliavimą galite pagerinti bendrą atspausdinto modelio apdailą." +"Tikslus srauto reguliavimas\n" +"Ar žinojote, kad srauto greitį (flow rate) galima sureguliuoti tiksliau, kad spaudiniai atrodytų dar geriau? Priklausomai nuo medžiagos, atlikę tikslų sureguliavimą galite pagerinti bendrą atspausdinto modelio paviršiaus kokybę." #: 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 "" -"Suskirstykite atspaudus į plokštes\n" -"Ar žinojote, kad daug dalių turintį modelį galite padalyti į atskiras spausdinti paruoštas plokštes? Tai supaprastins visų dalių apskaitos procesą." +"Suskirstykite spaudinius į pagrindus\n" +"Ar žinojote, kad daug dalių turintį modelį galite padalyti į atskirus, spausdinimui paruoštus pagrindus? Tai supaprastins visų dalių sekimo procesą." -# TODO: Review, changed by lang refactor. PR 14254 #: 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 "" -"Spartinkite spausdinimą naudodami prisitaikantį sluoksnio aukštį\n" -"Ar žinojote, kad naudodami parinktį Prisitaikantis sluoksnio aukštis galite spausdinti modelį dar greičiau? Patikrinkite!" #: resources/data/hints.ini: [hint:Support painting] msgid "" @@ -19130,25 +19300,19 @@ msgid "" "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 "" "Atramų piešimas\n" -"Ar žinojote, kad galite nupiešti savo atramų vietą? Ši funkcija leidžia lengvai naudoti atraminę medžiagą tik tose modelio dalyse, kuriose jos iš tikrųjų reikia." +"Ar žinojote, kad galite užpiešti vietas, kur reikalingos atramos? Ši funkcija leidžia lengvai pritaikyti atraminę medžiagą tik tose modelio dalyse, kurioms jos iš tikrųjų reikia." -# TODO: Review, changed by lang refactor. PR 14254 #: 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 "" -"Įvairių tipų atramos\n" -"Ar žinojote, kad galite rinktis iš kelių tipų atramų? Medžio formos atramos puikiai tinka organiniams modeliams, taupo gijas ir padidina spausdinimo greitį. Išbandykite jas!" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" "Printing Silk Filament\n" "Did you know that Silk filament needs special consideration to print successfully? A higher temperature and lower speed are always recommended for the best results." msgstr "" -"Spausdinimas šilko gija\n" -"Ar žinojote, kad norint sėkmingai atspausdinti šilko giją reikia ypatingo dėmesio? Siekiant geriausių rezultatų, visada rekomenduojama aukštesnė temperatūra ir mažesnis greitis." #: resources/data/hints.ini: [hint:Brim for better adhesion] msgid "" @@ -19156,93 +19320,513 @@ msgid "" "Did you know that when printed models have a small contact interface with the printing surface, it's recommended to use a brim?" msgstr "" "Kraštas geresniam sukibimui\n" -"Ar žinojote, kad kai spausdinimo modeliai turi nedidelę sąlyčio sąsają su spausdinimo paviršiumi, rekomenduojama naudoti kraštą?" +"Ar žinojote, kad kai spausdinami modeliai turi nedidelį sąlyčio plotą su spausdinimo paviršiumi, rekomenduojama naudoti kraštą (brim)?" -# TODO: Review, changed by lang refactor. PR 14254 #: 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 "" -"Nustatyti parametrus keliems objektams\n" -"Ar žinojote, kad galite nustatyti sluoksniavimo parametrus visiems pasirinktiems objektams iš karto?" +"Parametrų nustatymas keliems objektams\n" +"Ar žinojote, kad pjaustymo parametrus galite nustatyti visiems pasirinktiems objektams iš karto?" #: resources/data/hints.ini: [hint:Stack objects] msgid "" "Stack objects\n" "Did you know that you can stack objects as a whole one?" msgstr "" -"Daiktų krūva\n" -"Ar žinojote, kad objektus galima sudėti į krūvą kaip vieną?" +"Objektų krovimas vienas ant kito\n" +"Ar žinojote, kad galite krauti objektus vieną ant kito, sujungdami juos į vieną visumą?" -# TODO: Review, changed by lang refactor. PR 14254 #: 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 changes?" msgstr "" -"Išspausti į atramą/objektus/užpildą \n" -"Ar žinojote, kad galite sutaupyti eikvojamą giją, išspaudžiant ją į atramą/objektus/užpildą keičiant giją?" #: 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 "" -"Padidinkite stiprumą\n" -"Ar žinojote, kad modelio tvirtumui padidinti galite naudoti daugiau sienų kontūrų ir didesnį reto užpildo tankį?" +"Tvirtumo didinimas\n" +"Ar žinojote, kad modelio tvirtumui padidinti galite naudoti daugiau sienelės kontūrų ir didesnį reto užpildo tankį?" -# TODO: Review, changed by lang refactor. PR 14254 #: 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? There is more info about this in the Wiki." msgstr "" -"Kai reikia spausdinti atidarius spausdintuvo dureles\n" -"Ar žinojote, kad atidarius spausdintuvo dureles gali sumažėti ekstruderio ir (arba) karštosios jungties užsikimšimo tikimybė, kai spausdinate žemesnės temperatūros filamentą su aukštesne korpuso temperatūra. Daugiau informacijos apie tai rasite \"Wiki\"." -# TODO: Review, changed by lang refactor. PR 14254 #: 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 "" -"Išvengti deformacijos\n" -"Ar žinojote, kad spausdinant medžiagas, kurios linkusios deformuotis, pavyzdžiui, ABS, tinkamai padidinus kaitinimo pagrindo temperatūrą galima sumažinti deformavimosi tikimybę." +"Venkite deformacijų (warping)\n" +"Ar žinojote, kad spausdinant medžiagas, kurios yra linkusios trauktis ir riestis (pvz., ABS), tinkamas kaitinamojo pagrindo temperatūros padidinimas gali sumažinti deformacijų (warping) tikimybę?" -#~ msgid "Enable network plug-in" -#~ msgstr "Įjungti tinklo papildinį" +#~ msgid "Print" +#~ msgstr "Spausdinti" -#~ 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 "Įjunkite prisitaikantį IS iškyšoms, taip pat kai srautas keičiasi toje pačioje vietoje. Tai eksperimentinė parinktis, nes jei IS profilis nustatomas netiksliai, gali kilti išorinių paviršių vienodumo problemų prieš ir už iškyšų.\n" +#~ msgid "in" +#~ msgstr "col." #~ msgid "Perform" #~ msgstr "Atlikti" +#~ msgid "Highlight overhang areas" +#~ msgstr "Paryškinti kabančias vietas" + +#~ msgid "Support Generated" +#~ msgstr "Atramos sugeneruotos" + +#~ msgid "Lay on face" +#~ msgstr "Paguldyti ant paviršiaus" + +#~ msgid "Object Operations" +#~ msgstr "Objekto veiksmai" + +#~ msgid "Volume Operations" +#~ msgstr "Tūrio veiksmai" + +#~ msgid "Group Operations" +#~ msgstr "Grupės veiksmai" + +#~ msgid "Set Orientation" +#~ msgstr "Nustatyti orientaciją" + +#~ msgid "Set Scale" +#~ msgstr "Nustatyti mastelį" + +#~ msgid "Reset Position" +#~ msgstr "Atstatyti padėtį" + #~ msgid "Reset Rotation" #~ msgstr "Iš naujo nustatyti pasukimą" +#~ msgid "Object coordinates" +#~ msgstr "Objekto koordinatės" + +#~ msgid "World coordinates" +#~ msgstr "Pasaulio koordinatės" + +#~ msgid "Translate(Relative)" +#~ msgstr "Slinkti (santykinai)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Pasukti (absoliučiai)" + +#~ msgid "Part coordinates" +#~ msgstr "Detalės koordinatės" + +#~ msgid "Non-manifold edges be caused by cut tool, do you want to fix it now?" +#~ msgstr "Pjovimo įrankis suformavo nesandarias (non-manifold) briaunas. Ar norite jas sutvarkyti dabar?" + +#~ msgid "Can't apply when processing preview." +#~ msgstr "Negalima taikyti atliekant sluoksniavimo (preview) apdorojimą." + +#~ msgid "Entering Seam painting" +#~ msgstr "Įjungiamas siūlių piešimas" + +#~ msgid "" +#~ "Embedded\n" +#~ "depth" +#~ msgstr "" +#~ "Įspaudimo\n" +#~ "gylis" + +#~ msgid "Configuration package was loaded, but some values were not recognized." +#~ msgstr "Konfigūracijos paketas buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." + +#, boost-format +#~ msgid "Configuration file \"%1%\" was loaded, but some values were not recognized." +#~ msgstr "Konfigūracijos failas „%1%“ buvo įkeltas, tačiau kai kurios reikšmės nebuvo atpažintos." + +#~ msgid "You can keep the modified presets to the new project, discard or save changes as new presets." +#~ msgstr "Modifikuotus profilius galite išlaikyti naujame projekte, atmesti pakeitimus arba išsaugoti juos kaip naujus profilius." + +#~ 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 "" +#~ "Debesų sinchronizavimo konfliktas: „OrcaCloud“ yra naujesnė šio profilio versija.\n" +#~ "Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. Pasirinkus \n" +#~ "„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų vietiniu profiliu." + +#~ 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 "" +#~ "Debesų sinchronizavimo konfliktas: „OrcaCloud“ jau yra šio profilio su šiuo pavadinimu.\n" +#~ "Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. Pasirinkus \n" +#~ "„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų vietiniu profiliu." + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Debesų sinchronizavimo konfliktas: anksčiau iš debesies buvo ištrintas to paties pavadinimo profilis.\n" +#~ "Pasirinkus „Ištrinti“ bus ištrintas jūsų vietinis profilis. Pasirinkus „Priverstinai įkelti“ \n" +#~ "debesyje jis bus perrašytas jūsų vietiniu profiliu." + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Debesų sinchronizavimo konfliktas: įvyko netikėtas arba nenustatytas nustatymų konfliktas.\n" +#~ "Pasirinkus „Pull“ („Parsiųsti\") bus atsisiųsta kopija iš debesies. Pasirinkus \n" +#~ "„Force push“ („Priverstinai įkelti“) debesyje jis bus perrašytas jūsų vietiniu profiliu." + +#~ 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 "Profilio turinys yra per didelis, kad būtų galima sinchronizuoti su debesimi (viršija 1 MB). Prašome sumažinti profilio dydį, pašalinant pasirinktinius nustatymus, arba jį naudoti tik lokaliai." + +#, boost-format +#~ msgid "Fatal error, exception caught: %1%" +#~ msgstr "Lemtingoji klaida, sugauta išimtis: %1%" + #~ msgid "Top Solid Layers" #~ msgstr "Viršutiniai ištisiniai sluoksniai" +#~ msgid "Top Minimum Shell Thickness" +#~ msgstr "Mažiausias viršutinio apvalkalo storis" + +#~ msgid "Bottom Solid Layers" +#~ msgstr "Apatiniai ištisiniai sluoksniai" + +#~ msgid "Bottom Minimum Shell Thickness" +#~ msgstr "Mažiausias apatinio apvalkalo storis" + +#~ msgid "Fuzzy Skin" +#~ msgstr "Grublėtas paviršius" + +#~ msgid "Extrusion Width" +#~ msgstr "Išspaudimo plotis" + +#~ msgid "Add part" +#~ msgstr "Pridėti detalę" + +#~ msgid "Add negative part" +#~ msgstr "Pridėti neigiamą elementą" + #~ msgid "Add modifier" #~ msgstr "Pridėti modifikatorių" +#~ msgid "Add support blocker" +#~ msgstr "Pridėti atramų blokatorių" + +#~ msgid "Add support enforcer" +#~ msgstr "Pridėti priverstines atramas" + +#~ msgid "Height range Modifier" +#~ msgstr "Aukščio diapazono modifikatorius" + +#~ msgid "Add settings" +#~ msgstr "Pridėti nustatymus" + +#~ msgid "Change type" +#~ msgstr "Keisti tipą" + +#~ msgid "Set as an individual object" +#~ msgstr "Nustatyti kaip atskirą objektą" + +#~ msgid "Set as individual objects" +#~ msgstr "Nustatyti kaip atskirus objektus" + +#~ msgid "Automatically drops the selected object to the build plate" +#~ msgstr "Automatiškai nuleidžia pasirinktą objektą ant spausdinimo plokštės" + +#~ msgid "Fix model" +#~ msgstr "Sutaisyti objektą" + +#~ msgid "Convert from inches" +#~ msgstr "Konvertuoti iš colių" + +#~ msgid "Restore to inches" +#~ msgstr "Grąžinti į colius" + +#~ msgid "Convert from meters" +#~ msgstr "Konvertuoti iš metrų" + +#~ msgid "Restore to meters" +#~ msgstr "Grąžinti į metrus" + +#~ msgid "Along X axis" +#~ msgstr "Išilgai X ašies" + +#~ msgid "Mirror along the X axis" +#~ msgstr "Atspindėti pagal X ašį" + +#~ msgid "Along Y axis" +#~ msgstr "Išilgai Y ašies" + +#~ msgid "Mirror along the Y axis" +#~ msgstr "Atspindėti pagal Y ašį" + +#~ msgid "Along Z axis" +#~ msgstr "Išilgai Z ašies" + +#~ msgid "Mirror along the Z axis" +#~ msgstr "Atspindėti pagal Z ašį" + +#~ msgid "To objects" +#~ msgstr "Į objektus" + +#~ msgid "To parts" +#~ msgstr "Paversti detalėmis" + +#~ msgid "Automatically snaps the selected object to the build plate" +#~ msgstr "Automatiškai pritraukia pasirinktą objektą prie spausdinimo plokštės" + +#~ msgid "Right button click the icon to drop the object settings" +#~ msgstr "Spustelėkite piktogramą dešiniuoju pelės mygtuku, kad atmestumėte objekto nustatymus" + +#~ msgid "Right button click the icon to drop the object printable property" +#~ msgstr "Spustelėkite piktogramą dešiniuoju pelės mygtuku, kad panaikintumėte objekto spausdinimo savybę" + +#~ msgid "Click the icon to toggle printable property of the object" +#~ msgstr "Spustelėkite piktogramą, kad įjungtumėte / išjungtumėte objekto spausdinimo galimybę" + +#~ msgid "Click the icon to edit color painting of the object" +#~ msgstr "Spustelėkite piktogramą, kad redaguotumėte objekto spalvinimą" + +#~ 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 "" +#~ "Šis veiksmas nutrauks pjūvių susietumą.\n" +#~ "Po to modelio vientisumas negali būti garantuotas.\n" +#~ "\n" +#~ "Norėdami manipuliuoti geometrinėmis detalėmis arba neigiamais tūriais, pirmiausia turite panaikinti pjovimo informacijos galiojimą." + +#~ msgid "Object Settings to modify" +#~ msgstr "Keičiami objekto parametrai" + +#~ msgid "Part Settings to modify" +#~ msgstr "Keičiami detalės parametrai" + +#~ msgid "Layer range Settings to modify" +#~ msgstr "Keičiami sluoksnių ribų nustatymai" + +#~ msgid "The type of the last solid object part is not to be changed." +#~ msgstr "Paskutinės vientisos objekto detalės tipo keisti negalima." + +#~ msgid "Following model object has been repaired" +#~ msgid_plural "Following model objects have been repaired" +#~ msgstr[0] "Sutaisytas šis modelio objektas" +#~ msgstr[1] "Sutaisyti šie modelio objektai" +#~ msgstr[2] "Sutaisyta šio modelio objektų" + +#~ msgid "Failed to repair following model object" +#~ msgid_plural "Failed to repair following model objects" +#~ msgstr[0] "Nepavyko sutaisyti šio modelio objekto" +#~ msgstr[1] "Nepavyko sutaisyti šio modelio objektų" +#~ msgstr[2] "Nepavyko sutaisyti šio modelio objektų" + +#~ msgid "Open Preferences." +#~ msgstr "Atidaryti nuostatas." + +#~ msgid "Open next tip." +#~ msgstr "Kitas patarimas." + +#~ msgid "Open Documentation in web browser." +#~ msgstr "Atidaryti dokumentaciją žiniatinklio naršyklėje." + +#~ msgid "Jump to Layer" +#~ msgstr "Peršokti į sluoksnį" + +#~ msgid "Please enter the layer number" +#~ msgstr "Įveskite sluoksnio numerį" + +#~ msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filaments." +#~ msgstr "Pasirinkite AMS angą, tada paspauskite „Įkelti“ arba „Iškrauti“ mygtuką, kad automatiškai įkeltumėte arba iškrautumėte gijas." + +#~ msgid "Pull back current filament" +#~ msgstr "Patraukti atgal dabartinę giją" + +#~ msgid "Arranging is done but there are unpacked items. Reduce spacing and try again." +#~ msgstr "Išdėstymas baigtas, tačiau liko nesublokuotų elementų (unpacked). Sumažinkite tarpus ir bandykite dar kartą." + +#~ msgid "Abnormal print file data. Please slice again." +#~ msgstr "Klaidingi spausdinimo failo duomenys. Paruoškite spausdinimui (slice) iš naujo." + +#~ msgid "Print file not found. Please slice again." +#~ msgstr "Spausdinimo failas nerastas. Paruoškite spausdinimui (slice) iš naujo." + +#~ msgid "Check the current status of the bambu server by clicking on the link above." +#~ msgstr "Paspaudę nuorodą viršuje, galite patikrinti aktualią Bambu serverio būseną." + +#~ msgid "Print file not found, please slice it again and send it for printing." +#~ msgstr "Nerastas spausdinimo failas. Prašome dar kartą išsluoksniuoti ir išsiųsti spausdinimui." + +#~ msgid "Failed to upload print file to FTP. Please check the network status and try again." +#~ msgstr "Nepavyko spausdinimo failo įkelti į FTP serverį. Patikrinkite tinklo būseną ir bandykite dar kartą." + +#~ msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer preset first before importing that SLA archive." +#~ msgstr "SLA archyve nėra jokių profilių. Prieš importuodami šį SLA archyvą, pirmiausia aktyvinkite kurį nors SLA spausdintuvo profilį. / Importuotame SLA archyve nebuvo jokių profilių. Kaip atsarginiai buvo panaudoti dabartiniai SLA profiliai." + +#~ msgid "You cannot load SLA project with a multi-part object on the bed" +#~ msgstr "Negalite įkelti SLA projekto, kai ant pagrindo yra kelių detalių objektas." + +#~ msgid "Portions copyright" +#~ msgstr "Dalys saugomos autorių teisių" + #~ msgid "Bed Type" #~ msgstr "Pagrindo tipas" +#~ msgid "Start calibration" +#~ msgstr "Pradėti kalibravimą" + #~ msgid "Last Step" -#~ msgstr "Paskutinis žingsnis" +#~ msgstr "Atgal" #~ msgid "Dynamic flow Calibration" #~ msgstr "Dinaminio srauto kalibravimas" +#~ msgid "Print with filaments in the AMS" +#~ msgstr "Spausdinti su gijomis iš AMS" + +#~ msgid "Print with the filament mounted on the back of chassis" +#~ msgstr "Spausdinti naudojant giją, sumontuotą korpuso galinėje dalyje" + +#~ 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 "Pakeiskite drėgmės sugėriklį (sausiklį), kai jis per daug sudrėgsta. Indikatoriaus rodmenys gali būti netikslūs šiais atvejais: kai atidarytas dangtis arba pakeistas drėgmės sugėriklio paketas. Drėgmei sugerti reikia kelių valandų, o žema temperatūra šį procesą dar labiau sulėtina." + +#~ msgid "Print using materials mounted on the back of the case" +#~ msgstr "Spausdinti naudojant medžiagas, sumontuotas korpuso galinėje dalyje" + +#~ msgid "Print with filaments in AMS" +#~ msgstr "Spausdinti AMS gijomis" + #~ msgid "Print with filaments mounted on the back of the chassis" -#~ msgstr "Spausdinti gijomis, sumontuotomis ant dėžės" +#~ msgstr "Spausdinti naudojant gijas, sumontuotas korpuso galinėje dalyje" + +#~ msgid "AMS filament backup is not enabled, please enable it in the AMS settings." +#~ msgstr "AMS atsarginė gija neįjungta, įjunkite ją AMS nustatymuose." + +#~ msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament. This takes about 20 seconds." +#~ msgstr "Įdėjus naują Bambu Lab giją, AMS automatiškai nuskaitys jos informaciją. Tai trunka apie 20 sekundžių." + +#~ msgid "Power on update" +#~ msgstr "Atnaujinimas įjungiant maitinimą" + +#~ 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 "Paleidimo metu AMS automatiškai nuskaitys įdėtos gijos informaciją. Tai užtruks apie 1 minutę. Nuskaitymo proceso metu bus pasukamos gijos ritės." + +#~ 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 "Nepavyko įdiegti papildinio. Papildinio failas gali būti naudojamas. Paleiskite „OrcaSlicer“ iš naujo ir bandykite dar kartą. Taip pat patikrinkite, ar jo neužblokavo arba neištrynė antivirusinė programa." + +#~ msgid "A error occurred. Maybe memory of system is not enough or it's a bug of the program" +#~ msgstr "Įvyko klaida. Sistemoje galėjo pritrūkti atminties arba įvyko programos klaida" + +#~ msgid "Please save project and restart the program." +#~ msgstr "Išsaugokite projektą ir iš naujo paleiskite programą." + +#~ msgid "Processing G-code from Previous file..." +#~ msgstr "Vykdomas G-kodas iš prieš tai buvusio failo..." + +#~ msgid "Unknown error when exporting G-code." +#~ msgstr "Nežinoma G kodo eksporto klaida." + +#~ msgid "Copying of the temporary G-code to the output G-code failed" +#~ msgstr "Nepavyko nukopijuoti laikinojo G-kodo į išvesties G-kodą" + +#~ msgid "Error! Invalid model" +#~ msgstr "Klaida! Netinkamas modelis" + +#~ msgid "The selected file contains several disjoint areas. This is not supported." +#~ msgstr "Pasirinktame faile yra keletas nesusijusių sričių. Tai nepalaikoma." + +#~ 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 "" +#~ "Jei temperatūra viršija rekomenduojamas ribas, purkštukas (nozzle) gali užsikimšti.\n" +#~ "Įsitikinkite, ar tikrai norite spausdinti pasirinkta temperatūra.\n" +#~ "\n" + +#~ msgid "" +#~ "Too small max volumetric speed.\n" +#~ "Reset to 0.5." +#~ msgstr "" +#~ "Per mažas maksimalus tūrinis greitis.\n" +#~ "Nustatoma iš naujo į 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 "Dabartinė kameros temperatūra yra aukštesnė už saugią medžiagos temperatūrą, dėl to medžiaga gali suminkštėti ir užkimšti purkštuką. Maksimali saugi medžiagos temperatūra yra %d." + +#~ msgid "" +#~ "Too small layer height.\n" +#~ "Reset to 0.2." +#~ msgstr "" +#~ "Per mažas sluoksnio aukštis.\n" +#~ "Nustatoma iš naujo į 0,2." + +#~ msgid "" +#~ "Too small ironing spacing.\n" +#~ "Reset to 0.1." +#~ msgstr "" +#~ "Per mažas lyginimo tarpas.\n" +#~ "Nustatoma iš naujo į 0,1." + +#~ 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 "" +#~ "Šis parametras kai kuriais atvejais naudojamas tik nedideliam modelio matmenų tikslinimui (tuning).\n" +#~ "Pavyzdžiui, kai modelio dydis turi nedidelę paklaidą ir jį sunku surinkti.\n" +#~ "Didelio dydžio koregavimui naudokite modelio mastelio keitimo funkciją.\n" +#~ "\n" +#~ "Reikšmė bus nustatyta iš naujo į 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 "" +#~ "Per didelė „dramblio pėdos“ (Elephant foot) kompensacija yra nepagrįsta.\n" +#~ "Jei tikrai susiduriate su stipriu „dramblio pėdos“ efektu, patikrinkite kitus parametrus.\n" +#~ "Pavyzdžiui, ar pagrindo temperatūra nėra per aukšta.\n" +#~ "\n" +#~ "Nustatoma iš naujo į 0." + +#~ 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 "" +#~ "Automatiškai pakeisti šiuos nustatymus?\n" +#~ "Taip – pakeisti šiuos nustatymus ir automatiškai įjungti spiralinį režimą\n" +#~ "Ne – šį kartą nenaudoti spiralinio režimo" #~ msgid "Load Filament" -#~ msgstr "Įdėti giją" +#~ msgstr "Įverti giją" + +#, c-format, boost-format +#~ msgid "%s can't be a percentage" +#~ msgstr "%s negali būti išreikštas procentais" + +#~ msgid "Total Estimation" +#~ msgstr "Bendras įvertis (skaičiavimas)" + +#~ msgid "Layer Height (mm)" +#~ msgstr "Sluoksnio aukštis (mm)" + +#~ msgid "Line Width (mm)" +#~ msgstr "Linijos plotis (mm)" + +#~ msgid "Fan Speed (%)" +#~ msgstr "Ventiliatoriaus greitis (%)" #~ msgid "Filament Changes" #~ msgstr "Gijų keitimai" @@ -19250,20 +19834,105 @@ msgstr "" #~ msgid "Mirror Object" #~ msgstr "Atspindėti objektą" +#~ msgid "Tool Move" +#~ msgstr "Įrankis: perkėlimas" + +#~ msgid "Move Object" +#~ msgstr "Perkelti objektą" + +#~ msgid "Auto Orientation options" +#~ msgstr "Automatinio orientavimo parametrai" + +#~ msgid "Assemble Control" +#~ msgstr "Surinkimo valdymas" + +#~ msgid "A G-code path goes beyond the plate boundaries." +#~ msgstr "G-kodo trajektorija išeina už plokštės ribų." + +#~ msgid "Invalid input." +#~ msgstr "Netinkama įvestis." + +#~ msgid "Application is closing" +#~ msgstr "Programa uždaroma" + +#~ msgid "Delete selected" +#~ msgstr "Ištrinti pasirinkimą" + #~ msgid "Delete all" #~ msgstr "Ištrinti viską" +#~ msgid "Clone selected" +#~ msgstr "Klonuoti pasirinktą" + #~ msgid "Select all" #~ msgstr "Pasirinkti viską" #~ msgid "Deselect all" -#~ msgstr "Atžymėti visus pasirinkimus" +#~ msgstr "Panaikinti visų objektų pasirinkimą" + +#, c-format, boost-format +#~ msgid "A file exists with the same name: %s, do you want to overwrite it?" +#~ msgstr "Failas tokiu pavadinimu jau egzistuoja: %s. Ar norite jį pakeisti?" + +#, c-format, boost-format +#~ msgid "A config exists with the same name: %s, do you want to overwrite it?" +#~ msgstr "Konfigūracija tokiu pavadinimu jau egzistuoja: %s. Ar norite ją pakeisti?" + +#~ msgid "Export result" +#~ msgstr "Eksportavimo rezultatas" #~ msgid "Filament Settings" #~ msgstr "Gijos nustatymai" +#~ msgid "The player is not loaded, please click \"play\" button to retry." +#~ msgstr "Grotuvas neįkeltas. Norėdami pakartoti, spustelėkite paleidimo mygtuką „Play“." + +#~ msgid "Please enter the IP of printer to connect." +#~ msgstr "Įveskite spausdintuvo IP adresą, kad prisijungtumėte." + +#~ msgid "Can't find my devices?" +#~ msgstr "Nepavyksta rasti įrenginių?" + +#~ msgid "The name is not allowed to be empty." +#~ msgstr "Pavadinimas negali būti tuščias." + +#~ msgid "The name is not allowed to start with space character." +#~ msgstr "Pavadinimas negali prasidėti tarpu." + +#~ msgid "The name is not allowed to end with space character." +#~ msgstr "Pavadinimas negali baigtis tarpu." + +#~ msgid "Printing Progress" +#~ msgstr "Spausdinimo eiga" + +#~ msgid "" +#~ "You have completed printing the mall model, \n" +#~ "but the synchronization of rating information has failed." +#~ msgstr "" +#~ "Baigėte spausdinti modelį iš galerijos, \n" +#~ "tačiau įvertinimo informacijos sinchronizavimas nepavyko." + +#, c-format, boost-format +#~ msgid "In Cloud Slicing Queue, there are %s tasks ahead." +#~ msgstr "Debesies sluoksniavimo eilėje priekyje yra %s užduotys (-ių)." + +#~ msgid "Cannot read filament info: the filament is loaded to the tool head,please unload the filament and try again." +#~ msgstr "Nepavyko nuskaityti gijos informacijos: gija yra paduota į spausdinimo galvutę. Išverkite giją ir bandykite dar kartą." + +#~ msgid "Configuration can update now." +#~ msgstr "Dabar galima atnaujinti konfigūraciją." + #~ msgid "Detail." -#~ msgstr "Daugiau." +#~ msgstr "Išsamiau." + +#~ msgid "Exporting." +#~ msgstr "Eksportuojama." + +#~ msgid "Software has New version." +#~ msgstr "Išleista nauja programos versija." + +#~ msgid "Goto download page." +#~ msgstr "Eiti į atsisiuntimo puslapį." #~ msgid "Support painting" #~ msgstr "Atramų piešimas" @@ -19271,1563 +19940,1023 @@ msgstr "" #~ msgid "Color painting" #~ msgstr "Spalvų piešimas" +#~ msgid "The localization tag of build plate is detected, and printing is paused if the tag is not in predefined range." +#~ msgstr "Spausdinimo pagrindo lokalizavimo žymė įjungta. Spausdinimas bus pristabdytas, jei žymė išeis už nustatytų ribų." + +#~ msgid "Auto-recovery from step loss" +#~ msgstr "Atstatymas po žingsnių praleidimo" + +#~ msgid "Filament Tangle Detect" +#~ msgstr "Gijos susipainiojimo aptikimas" + +#~ msgid "Previous unsaved project detected, do you want to restore it?" +#~ msgstr "Aptiktas ankstesnis neišsaugotas projektas. Ar norite jį atkurti?" + +#~ 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 "Kaitinamo pagrindo temperatūra yra gana aukšta. Spausdinant šią giją uždaroje kameroje, purkštukas gali užsikimšti. Prašome atidaryti priekines dureles ir (arba) nuimti viršutinį stiklą." + +#~ 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 "Gijai reikalingas purkštuko kietumas yra didesnis už numatytąjį spausdintuvo purkštuko kietumą. Pakeiskite purkštuką į grūdintą arba naudokite kitą giją, kitaip purkštukas nusidėvės arba bus sugadintas." + +#~ msgid "You'd better upgrade your software.\n" +#~ msgstr "Geriau jau atnaujinkite savo programinę įrangą\n" + +#~ msgid "Please correct them in the param tabs" +#~ msgstr "Prašome juos ištaisyti parametrų skirtukuose" + +#~ msgid "Name of components inside STEP file is not UTF8 format!" +#~ msgstr "Komponentų pavadinimai STEP faile nėra UTF-8 formato!" + +#~ msgid "The name may show garbage characters!" +#~ msgstr "Pavadinimas gali rodyti neskaitomus simbolius!" + +#, 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 "" +#~ "Objektas iš failo „%s“ yra per mažas ir galimai nurodytas metrais arba coliais.\n" +#~ "Ar norite mastelį pakeisti į milimetrus?" + +#~ 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 "" +#~ "Šiame faile yra keli objektai, išdėstyti keliuose aukščiuose.\n" +#~ "Ar užuot laikius juos atskirais objektais, reikėtų\n" +#~ "įkelti failą kaip vieną objektą, turintį kelias dalis?" + +#~ msgid "Object with multiple parts was detected" +#~ msgstr "Aptiktas objektas su keliomis detalėmis" + +#~ msgid "Save file as:" +#~ msgstr "Išsaugoti failą kaip:" + +#, c-format, boost-format +#~ msgid "" +#~ "The file %s already exists\n" +#~ "Do you want to replace it?" +#~ msgstr "" +#~ "Failas %s jau yra\n" +#~ "Ar norite jį perrašyti?" + +#~ 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 "" +#~ "Bandote ištrinti objektą, kuris yra supjaustyto objekto dalis.\n" +#~ "Šis veiksmas sugadins pjovimo atitikimą.\n" +#~ "Po šio veiksmo modelio vientisumas negali būti garantuotas." + +#~ msgid "Error during replace" +#~ msgstr "Klaida keičiant" + +#~ msgid "File for the replace wasn't selected" +#~ msgstr "Nepasirinktas keičiamas failas" + +#~ msgid "You can keep the modified presets to the new project or discard them" +#~ msgstr "Pakeistus profilius galite išsaugoti naujam projektui arba juos atmesti" + +#~ msgid "" +#~ "Failed to save the project.\n" +#~ "Please check whether the folder exists online or if other programs open the project file." +#~ msgstr "" +#~ "Nepavyko išsaugoti projekto.\n" +#~ "Prašome patikrinti, ar nurodytas katalogas egzistuoja tinkle ir ar kitos programos nenaudoja projekto failo." + +#~ msgid "Download failed, unknown file format." +#~ msgstr "Atsisuntimas nepavyko, nežinomas failo tipas." + +#~ msgid "Download failed, File size exception." +#~ msgstr "Atsisiųsti nepavyko. Failo dydžio išimtis." + +#~ msgid "does not contain valid G-code." +#~ msgstr "nėra galiojančio G-kodo." + +#~ msgid "Error occurs while loading G-code file" +#~ msgstr "Įkeliant G-kodo failą įvyko klaida" + +#~ msgid "Only one G-code file can be opened at the same time." +#~ msgstr "Vienu metu gali būti atidarytas tik vienas G-kodo failas." + +#~ msgid "G-code files cannot be loaded with models together!" +#~ msgstr "G-kodas negali būti įkeltas kartu su modeliais!" + +#~ msgid "Cannot add models when in preview mode!" +#~ msgstr "Negalima pridėti modelių peržiūros režime!" + +#~ msgid "The current project has unsaved changes, save it before continue?" +#~ msgstr "Dabartiniame projekte yra neišsaugotų pakeitimų. Ar išsaugoti prieš tęsiant?" + +#~ msgid "" +#~ "Print By Object: \n" +#~ "Suggest to use auto-arrange to avoid collisions when printing." +#~ msgstr "" +#~ "Spausdinimas pagal objektus:\n" +#~ "Siekiant spausdinant išvengti susidūrimų, patariama naudoti automatinį išdėstymą." + +#, 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 "Spausdinimo pagrindas %d: nesiūloma naudoti %s gijai %s (%s) spausdinti. Jei vis tiek norite atlikti šią spausdinimo užduotį, nustatykite šios gijos pagrindo temperatūrą į nenulinę vertę." + +#~ msgid "Switching the language requires application restart.\n" +#~ msgstr "Kalbos keitimas reikalauja programos paleidimo iš naujo.\n" + +#~ msgid "Changing the region will log out your account.\n" +#~ msgstr "Keičiant regioną bus atjungta jūsų paskyra.\n" + +#~ msgid "Enable dark mode" +#~ msgstr "Įjungti tamsųjį režimą" + +#~ msgid "Backup your project periodically for restoring from the occasional crash." +#~ msgstr "Periodiškai saugoti jūsų projekto atsargines kopijas kad programos gedimo atveju jį būtų galima atkurti." + +#~ msgid "Update built-in Presets automatically." +#~ msgstr "Automatiškai atnaujinti gamyklinius (įmontuotus) profilius." + +#~ msgid "Filament Sync Options" +#~ msgstr "Gijų sinchronizavimo parinktys" + +#~ msgid "Network plug-in" +#~ msgstr "Tinklo įskiepis" + +#~ msgid "Enable network plug-in" +#~ msgstr "Įjungti tinklo papildinį" + +#~ msgid "If enabled, sets OrcaSlicer as default application to open 3MF files." +#~ msgstr "Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa 3MF failams atidaryti." + +#~ msgid "If enabled, sets OrcaSlicer as default application to open STL files." +#~ msgstr "Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa STL failams atidaryti." + +#~ msgid "If enabled, sets OrcaSlicer as default application to open STEP files." +#~ msgstr "Jei įjungta, „OrcaSlicer“ nustatoma kaip numatytoji programa STEP failams atidaryti." + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(Eksperimentinis) Išsaugoti nudažytas ypatybes pakeitus tinklelio modelį" + +#~ msgid "View control settings" +#~ msgstr "Peržiūrėti valdymo nustatymus" + +#~ msgid "Rotate view" +#~ msgstr "Pasukti vaizdą" + +#~ msgid "Pan view" +#~ msgstr "Judinti vaizdą" + +#~ msgid "Zoom view" +#~ msgstr "Padidinti vaizdą" + +#~ msgid "Mouse wheel reverses when zooming" +#~ msgstr "Apversta pelės ratuko didinimo kryptis" + +#~ msgid "DEBUG settings have been saved successfully!" +#~ msgstr "TESTAVIMO nuostatos sėkmingai išsaugotos!" + +#~ msgid "Cloud environment switched, please login again!" +#~ msgstr "Pakeista debesų aplinka, prašome prisijungti iš naujo!" + +#~ msgid "AMS filaments" +#~ msgstr "AMS gijos" + +#~ msgid "Add/Remove filaments" +#~ msgstr "Pridėti / pašalinti gijas" + #~ msgid "Same as Global Bed Type" #~ msgstr "Toks pats, kaip ir bendras pagrindo tipas" +#~ msgid "Slice all plate to obtain time and filament estimation" +#~ msgstr "Norėdami sužinoti laiko ir gijos sąnaudų įvertinimą, supjaustykite (slice) visus pagrindus" + +#~ msgid "Please note that saving will overwrite this preset." +#~ msgstr "Atkreipkite dėmesį, kad išsaugojus bus perrašytas šis profilis." + +#~ msgid "When enable spiral vase mode, machines with I3 structure will not generate timelapse videos." +#~ msgstr "Įjungus spiralinės vazos režimą, I3 struktūros įrenginiai negeneruos laiko tarpų (timelapse) vaizdo įrašų." + +#~ 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 sistemoje yra nežinomų gijų. Prašome patikrinti, ar tai yra reikalingos gijos. Jei viskas tvarkoje, spausdinimą galite pradėti paspaudę „Patvirtinti“." + +#~ msgid "Cannot send the print job to a printer whose firmware is required to get updated." +#~ msgstr "Neįmanoma išsiųsti spausdinimo užduoties spausdintuvui, kurio programinę įrangą reikia atnaujinti." + +#~ msgid "Cannot send the print task when the upgrade is in progress" +#~ msgstr "Negalima nusiųsti spausdinimo užduočių programinės įrangos atnaujinimo metu" + +#~ msgid "The printer is required to be in the same LAN as Orca Slicer." +#~ msgstr "Spausdintuvas privalo būti tame pačiame vietiniame tinkle (LAN) kaip ir „OrcaSlicer“." + +#~ msgid "Slice ok." +#~ msgstr "Sluoksniavimas baigtas." + +#~ msgid "Get ticket from device timeout" +#~ msgstr "Įrenginio bilieto laukimo laikas baigėsi" + +#~ msgid "Get ticket from server timeout" +#~ msgstr "Serverio bilieto laukimo laikas baigėsi" + +#~ 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 "Norint sklandžiai įrašyti laiko tarpų (timelapse) vaizdo įrašą, reikalingas valymo bokštas. Be valymo bokšto modelyje gali atsirasti defektų. Ar tikrai norite išjungti valymo bokštą?" + +#~ 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 "Norint sklandžiai įrašyti laiko tarpų (timelapse) vaizdo įrašą, reikalingas valymo bokštas. Be valymo bokšto modelyje gali atsirasti defektų. Ar norite įjungti valymo bokštą?" + +#~ msgid "" +#~ "Change these settings automatically?\n" +#~ "Yes - Change these settings automatically\n" +#~ "No - Do not change these settings for me" +#~ msgstr "" +#~ "Automatiškai pakeisti šiuos nustatymus?\n" +#~ "Taip - Pakeiskite šiuos nustatymus automatiškai.\n" +#~ "Ne - Nekeiskite šių nustatymų už mane" + +#~ msgid "Support filament" +#~ msgstr "Atramų gija" + +#, 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] "" +#~ "Šioje eilutėje %s yra rezervuotų raktinių žodžių.\n" +#~ "Pašalinkite jas, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko skaičiavimas." +#~ msgstr[1] "" +#~ "Šiose eilutėse %s yra rezervuotų raktinių žodžių.\n" +#~ "Pašalinkite jas, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko skaičiavimas." +#~ msgstr[2] "" +#~ "Šiose eilutėse %s yra rezervuotų raktinių žodžių.\n" +#~ "Pašalinkite ją, kitaip sutriks G-kodo vizualizavimas ir spausdinimo laiko skaičiavimas." + +#~ msgid "Recommended nozzle temperature range of this filament. 0 means no set" +#~ msgstr "Rekomenduojamas šios gijos purkštuko temperatūros diapazonas. 0 reiškia, kad nenustatyta" + +#~ 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 "Spausdinimo pagrindo temperatūra, kai naudojamas šaltas pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant šalto pagrindo." + +#~ 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 "Spausdinimo pagrindo temperatūra, kai naudojamas tekstūruotas šaltas pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant tekstūruoto šalto pagrindo." + +#~ 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 "Spausdinimo pagrindo temperatūra, kai naudojamas inžinerinis pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant inžinerinio pagrindo." + +#~ 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 "Spausdinimo pagrindo temperatūra, kai naudojamas lygus PEI pagrindas / aukštos temperatūros pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant lygaus PEI pagrindo / aukštos temperatūros pagrindo." + +#~ 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 "Spausdinimo pagrindo temperatūra, kai naudojamas tekstūruotas PEI pagrindas. Reikšmė 0 reiškia, kad gija nepritaikyta spausdinti ant tekstūruoto PEI pagrindo." + +#~ 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 "Detalių aušinimo ventiliatorius veiks mažiausiu ventiliatoriaus greičiu, kai numatoma sluoksnio trukmė bus ilgesnė už ribinę vertę. Kai sluoksnio trukmė trumpesnė už ribinę vertę, ventiliatoriaus greitis bus apskaičiuojamas tarp mažiausio ir didžiausio ventiliatoriaus greičio, atsižvelgiant į sluoksnio spausdinimo trukmę" + +#~ msgid "Part cooling fan speed will be max when the estimated layer time is shorter than the setting value" +#~ msgstr "Detalių aušinimo ventiliatorius veiks didžiausiu greičiu, kai numatoma sluoksnio trukmė bus trumpesnė už ribinę vertę" + +#~ msgid "Following preset will be deleted too." +#~ msgid_plural "Following presets will be deleted too." +#~ msgstr[0] "Šis profilis taip pat bus ištrintas." +#~ msgstr[1] "Šie profiliai taip pat bus ištrinti." +#~ msgstr[2] "Šie profiliai taip pat bus ištrinti." + +#, boost-format +#~ msgid "Are you sure to %1% the selected preset?" +#~ msgstr "Ar tikrai norite %1% pasirinktą profilį?" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Kairėje: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Dešinėje: %s" + +#~ msgid "Click to drop current modify and reset to saved value." +#~ msgstr "Spustelėkite , jei norite atsisakyti dabartinio pakeitimo ir atstatyti išsaugotą reikšmę." + #~ msgid "Undef" #~ msgstr "Neapib" +#~ msgid "Unsaved Changes" +#~ msgstr "Neišsaugoti pakeitimai" + +#~ msgid "All changes will not be saved" +#~ msgstr "Pakeitimai nebus išsaugoti" + +#~ msgid "Move selection 10 mm in positive Y direction" +#~ msgstr "Perkelti pasirinkimą 10 mm teigiama Y kryptimi" + +#~ msgid "Move selection 10 mm in negative Y direction" +#~ msgstr "Perkelti pasirinkimą 10 mm neigiama Y kryptimi" + +#~ msgid "Move selection 10 mm in negative X direction" +#~ msgstr "Perkelti pasirinkimą 10 mm neigiama X kryptimi" + +#~ msgid "Move selection 10 mm in positive X direction" +#~ msgstr "Perkelti pasirinkimą 10 mm teigiama X kryptimi" + +#~ msgid "Movement step set to 1 mm" +#~ msgstr "Judėjimo žingsnis nustatytas į 1 mm" + +#~ msgid "Click OK to update the Network plug-in when Orca Slicer launches next time." +#~ msgstr "Spustelėkite OK, kad kitą kartą paleidus \"Orca Slicer\" būtų atnaujintas tinklo papildinys." + +#~ 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 "Aptiktas svarbus atnaujinimas, kurį būtina įdiegti prieš tęsiant spausdinimą. Ar norite atnaujinti dabar? Atnaujinti galėsite ir vėliau, pasirinkę „Atnaujinti programinę aparatinę įrangą“." + +#~ 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 "Aptikta neįprasta programinės aparatinės įrangos versija. Prieš spausdinant reikalingas jos atkūrimas ir atnaujinimas. Ar norite atnaujinti dabar? Tai atlikti galėsite ir vėliau pačiame spausdintuve arba kitą kartą paleidę „Orca“." + +#~ msgid "Need to check the unsaved changes before configuration updates." +#~ msgstr "Prieš atnaujinant konfigūraciją reikia patikrinti neišsaugotus pakeitimus." + +#, boost-format +#~ msgid "Object can't be printed for empty layer between %1% and %2%." +#~ msgstr "Objekto negalima spausdinti dėl tuščio sluoksnio tarp %1% ir %2%." + +#~ msgid "Maybe parts of the object at these height are too thin, or the object has faulty mesh" +#~ msgstr "Gali būti, kad objekto dalys šiame aukštyje yra per plonos arba objekto tinklelis (mesh) turi klaidų" + +#~ msgid "No object can be printed. Maybe too small" +#~ msgstr "Negalima spausdinti jokio objekto. Jis gali būti per mažas" + +#~ 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 "" +#~ "„Input shaping“ funkcija nepalaikoma „Marlin“ versijose, senesnėse nei 2.1.2.\n" +#~ "Patikrinkite savo programinės aparatinės įrangos versiją ir atnaujinkite G-kodo tipą (G-code flavor) į „Marlin 2“." + +#~ msgid "Input shaping is only supported by Klipper, RepRapFirmware and Marlin 2" +#~ msgstr "„Input shaping“ funkcija palaikoma tik „Klipper“, „RepRapFirmware“ ir „Marlin 2“ programinėje aparatinėje įrangoje" + +#, boost-format +#~ msgid "Failed to calculate line width of %1%. Cannot get value of \"%2%\" " +#~ msgstr "Nepavyko apskaičiuoti %1% linijos pločio. Nepavyksta gauti „%2%“ reikšmės." + +#~ msgid "file too large" +#~ msgstr "per didelis failas" + +#~ msgid "unsupported multidisk" +#~ msgstr "kelių diskų (multidisk) archyvai nepalaikomi" + +#~ msgid "buffer too small" +#~ msgstr "per mažas buferis" + +#~ msgid "archive too large" +#~ msgstr "per didelis archyvas" + +#, boost-format +#~ msgid "%1% is too close to exclusion area, there may be collisions when printing." +#~ msgstr "%1% yra per arti uždraustos srities, spausdinant gali įvykti susidūrimų." + +#~ msgid " is too close to exclusion area, and collisions will be caused.\n" +#~ msgstr " yra per arti uždraustosios zonos, todėl įvyks susidūrimai.\n" + +#~ msgid "The spiral vase mode does not work when an object contains more than one materials." +#~ msgstr "Spiralinės vazos (vase mode) režimas neveikia, kai objektą sudaro daugiau nei viena medžiaga." + +#~ msgid "The prime tower is not supported in \"By object\" print." +#~ msgstr "Valymo bokštas nepalaikomas spausdinant seka „Pagal objektą“." + +#~ msgid "The prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." +#~ msgstr "Valymo bokštas nepalaikomas, kai įjungtas adaptyvusis sluoksnio aukštis. Visi objektai privalo turėti vienodą sluoksnio aukštį." + +#~ msgid "The prime tower requires \"support gap\" to be multiple of layer height." +#~ msgstr "Valymo bokštui reikia, kad „atramos tarpas“ (support gap) būtų sluoksnio aukščio kartotinis." + +#~ msgid "The prime tower requires that all objects have the same layer heights." +#~ msgstr "Valymo bokštui reikia, kad visų objektų sluoksnio aukštis būtų vienodas." + +#~ msgid "The prime tower requires that all objects are printed over the same number of raft layers." +#~ msgstr "Valymo bokštui reikia, kad visi objektai būtų spausdinami ant vienodo skaičiaus platformos sluoksnių." + +#~ msgid "The prime tower requires that all objects are sliced with the same layer heights." +#~ msgstr "Valymo bokštui reikia, kad visi objektai būtų supjaustyti vienodu sluoksnių aukščiu." + +#~ msgid "Too small line width" +#~ msgstr "Per mažas linijos plotis" + +#~ msgid "Too large line width" +#~ msgstr "Per didelis linijos plotis" + +#~ msgid "The prime tower requires that support has the same layer height with object." +#~ msgstr "Valymo bokštui reikia, kad atramų ir objekto sluoksnių aukščiai sutaptų." + +#~ msgid "Failed processing of the filename_format template." +#~ msgstr "Nepavyko apdoroti šablono filename_format." + +#~ msgid "Bed exclude area" +#~ msgstr "Nespausdinama pagrindo sritis" + +#~ msgid "Shrinks the first layer on build plate to compensate for elephant foot effect." +#~ msgstr "Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas dramblio pėdos efektas." + +#~ msgid "Slicing height for each layer. Smaller layer height means more accurate and more printing time." +#~ msgstr "Tai kiekvieno sluoksnio aukštis. Mažesni sluoksnių aukščiai užtikrina didesnį tikslumą, bet ilgesnį spausdinimo laiką." + +#~ msgid "Maximum printable height which is limited by mechanism of printer." +#~ msgstr "Tai didžiausias spausdinamas aukštis, kurį riboja spausdinimo zonos aukštis." + +#~ 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 "Nepaisyti HTTPS sertifikato atšaukimo patikrų, jei paskirstymo taškų trūksta arba jie neprisijungę. Jei nepavyksta prisijungti, galite įjungti šią parinktį savarankiškai pasirašytiems sertifikatams." + +#~ msgid "Detour to avoid traveling across walls, which may cause blobs on the surface." +#~ msgstr "Formuoti apylankas, kad judant nebūtų kertamos sienelės – taip išvengiama apnašų (blobs) ant modelio paviršiaus." + +#~ 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 "Maksimalus apylankos atstumas sienelių kirtimui išvengti. Apylanka nedaroma, jei jos atstumas viršija šią reikšmę. Apylankos ilgis gali būti nurodomas absoliučia verte arba procentais (pavyzdžiui, 50 %) nuo tiesioginio judėjimo trajektorijos. Įrašius 0 – funkcija išjungiama." + +#~ 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 "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant šalto pagrindo (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 "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto šalto pagrindo (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 "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant inžinerinio pagrindo (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 "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant aukštos temperatūros pagrindo (High Temp Plate)." + +#~ 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 "Pagrindo temperatūra visiems sluoksniams, išskyrus pirmąjį. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto PEI pagrindo (Textured PEI Plate)." + +#~ msgid "Bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." +#~ msgstr "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant „Cool Plate SuperTack“ pagrindo." + +#~ msgid "Bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate." +#~ msgstr "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant šalto pagrindo (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 "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto šalto pagrindo (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 "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant inžinerinio pagrindo (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 "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant aukštos temperatūros pagrindo (High Temp Plate)." + +#~ msgid "Bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured PEI Plate." +#~ msgstr "Pirmojo sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad ši gija nepritaikyta spausdinti ant tekstūruoto PEI pagrindo (Textured PEI Plate)." + +#~ msgid "Bed types supported by the printer." +#~ msgstr "Spausdintuvo palaikomi pagrindo tipai." + +#~ 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 "Pjaustant didinamas apatinių vientisų sluoksnių skaičius, jei pagal apatinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir apatinio apvalkalo storis visiškai nustatomas pagal apatinio apvalkalo sluoksnius." + +#~ msgid "Slow down for overhang" +#~ msgstr "Sulėtinti greitį dėl iškyšų" + +#~ msgid "Enable this option to slow printing down for different overhang degree." +#~ msgstr "Įjunkite šią parinktį, kad spausdinimo greitis būtų mažinamas proporcingai pagal iškyšos pasvirimo laipsnį." + +#~ msgid "Distance from model to the outermost brim line." +#~ msgstr "Atstumas nuo modelio iki tolimiausios apvado linijos." + +#~ msgid "A gap between innermost brim line and object can make brim be removed more easily." +#~ msgstr "Tarpas tarp artimiausios apvado linijos ir objekto leidžia lengviau pašalinti apvadą po spausdinimo." + +#~ 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 "Loginė išraiška, kurioje naudojamos aktyvaus spausdintuvo profilio konfigūracijos vertės. Jei ši išraiška yra \"tiesa\", šis profilis laikomas suderinamu su aktyviu spausdintuvo profiliu." + +#~ 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 "Loginė išraiška, naudojanti aktyvaus spausdinimo profilio konfigūracijos reikšmes. Jei šios išraiškos rezultatas yra teigiamas (true), šis profilis laikomas suderinamu su aktyviuoju spausdinimo profiliu." + +#~ msgid "Print sequence, layer by layer or object by object." +#~ msgstr "Spausdinimo seka: sluoksnis po sluoksnio arba objektas po objekto." + +#~ 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 "Įjunkite šią parinktį, kad sumažintumėte spausdinimo greitį, užtikrinant, jog sluoksnio spausdinimo laikas nebūtų trumpesnis už ribą, nurodytą nustatyme „Maksimalaus ventiliatoriaus greičio slenkstis“. Taip sluoksnis aušinamas ilgiau, o tai pastebimai pagerina smailių viršūnių bei smulkių elementų spausdinimo kokybę." + +#~ msgid "The default acceleration of both normal printing and travel except initial layer." +#~ msgstr "Numatytasis pagreitis tiek spausdinimo, tiek tuščiosios eigos (travel) judesiams, išskyrus pirmąjį sluoksnį." + +#~ 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 "Nekurti atramų po ištisomis tiltelių sritimis, dėl kurių atramų struktūros tampa labai didelės. Jei tilteliai nėra itin ilgi, jie paprastai gali būti sėkmingai atspausdinami tiesiai ore be jokių atramų." + +#~ 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 "Maksimalus tiltelių, kuriems nereikia atramų, ilgis. Nustatykite 0, jei norite, kad atramos būtų kuriamos po visais tilteliais. Įrašykite labai didelę reikšmę, jei norite, kad tilteliai visada būtų spausdinami be atramų." + +#~ msgid "End G-code when finishing the entire print." +#~ msgstr "Pabaigos G-kodas, vykdomas baigus visą spausdinimą." + +#~ msgid "End G-code when finishing the printing of this filament." +#~ msgstr "Pabaigos G-kodas, vykdomas baigus spausdinti šią giją." + +#~ msgid "Line pattern of top surface infill." +#~ msgstr "Tai viršutinio paviršiaus užpildymo linijomis modelis." + +#~ msgid "Line pattern of bottom surface infill, not bridge infill." +#~ msgstr "Tai apatinio paviršiaus užpildymo linijioms raštas, išskyrus tiltų užpildymą." + +#~ 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 "Išorinės (pačios labiausiai matomos) sienelės spausdinimo greitis. Siekiant geresnės vizualinės kokybės, jis paprastai nustatomas mažesnis nei vidinių sienelių greitis." + +#~ msgid "Distance of the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." +#~ msgstr "Atstumas nuo purkštuko galiuko iki žemiausio ašies strypo. Naudojamas siekiant išvengti spausdinimo galvutės susidūrimų, kai pasirinkta seka „Objektas po objekto“." + +#~ msgid "Distance of the nozzle tip to the lid. Used for collision avoidance in by-object printing." +#~ msgstr "Atstumas nuo purkštuko galiuko iki korpuso dangčio. Naudojamas siekiant išvengti spausdinimo galvutės susidūrimų, kai pasirinkta seka „Objektas po objekto“." + +#~ msgid "Clearance radius around extruder. Used for collision avoidance in by-object printing." +#~ msgstr "Laisvos vietos spindulys (clearance) aplink ekstruderį. Naudojamas saugaus atstumo išlaikymui spausdinant sekone „Objektas po objekto“." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Įjungti adaptyvų slėgio kompensavimą (PA) iškyšoms (beta)" + +#~ 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 "" +#~ "Įjungti prisitaikantį (PA) iškyšoms, taip pat kai srautas keičiasi tame pačiame elemente. Tai eksperimentinė parinktis, nes jei (PA) profilis nustatomas netiksliai, gali kilti išorinių paviršių vienodumo problemų prieš iškyšas ir už jų.\n" +#~ "\n" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Tiltų slėgio kompensavimas (PA)" + +#~ 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 "" +#~ "Slėgio kompensavimo (PA) reikšmė spausdinant tiltus. Nustatykite 0, jei norite išjungti.\n" +#~ "\n" +#~ "Mažesnė PA reikšmė spausdinant tiltus padeda sumažinti nežymų plastiko trūkumą (under-extrusion) iškart po tilto formavimo. Šį trūkumą sukelia slėgio kritimas purkštuke spausdinant „ore“, o mažesnė PA reikšmė padeda šį efektą kompensuoti." + +#~ 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 "Aktyvavus šį nustatymą, detalės aušinimo ventiliatorius niekada visiškai nesustos ir suksis bent minimaliu greičiu – tai sumažina nuolatinio ventiliatoriaus stabdymo ir paleidimo dažnį." + +#~ 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 "Detalės aušinimo ventiliatorius bus suaktyvintas tiems sluoksniams, kurių preliminarus spausdinimo laikas yra trumpesnis už šią reikšmę. Ventiliatoriaus sūkiai bus interpoliuojami tarp minimalaus ir maksimalaus greičio, priklausomai nuo sluoksnio spausdinimo trukmės." + +#~ msgid "Minimum HRC of nozzle required to print the filament. Zero means no checking of nozzle's HRC." +#~ msgstr "Minimalus purkštuko HRC, reikalingas spausdinti šia gija. Nulis reiškia, kad purkštuko HRC netikrinama." + +#~ 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 "Gijos tūris, kurį galima išlydyti ir išspausti per sekundę. Jei nustatytas per didelis ir nepagrįstas greitis, spausdinimo greitį riboja maksimalus tūrinis greitis. Ši reikšmė negali būti lygi nuliui." + +#~ msgid "Filament diameter is used to calculate extrusion in G-code, so it is important and should be accurate." +#~ msgstr "G-kodo ekstruzijos apskaičiavimui naudojamas gijos skersmuo, todėl jis yra svarbus ir turi būti tikslus." + +#~ msgid "Filament density. For statistics only." +#~ msgstr "Gijų tankis, tik statistikai." + +#~ msgid "The material type of filament." +#~ msgstr "Gijos medžiagos tipas." + +#~ 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 "Esant tokiai temperatūrai medžiaga suminkštėja, todėl, kai pagrindo temperatūra yra lygi arba didesnė už ją, labai rekomenduojama atidaryti priekines dureles ir (arba) nuimti viršutinį stiklą, kad būtų išvengta užsikimšimo." + +#~ msgid "Filament price. For statistics only." +#~ msgstr "Gijos kaina, tik statistikai." + +#~ msgid "Angle for sparse infill pattern, which controls the start or main direction of line." +#~ msgstr "Reto užpildo rašto kampas, kuris valdo linijos pradžią arba pagrindinę kryptį." + +#~ msgid "Line pattern for internal sparse infill." +#~ msgstr "Linijų raštas vidiniam retam užpildui." + +#~ msgid "Acceleration of top surface infill. Using a lower value may improve top surface quality." +#~ msgstr "Viršutinio paviršiaus užpildo pagreitis. Naudojant mažesnę vertę gali pagerėti viršutinio paviršiaus kokybė." + +#~ msgid "Acceleration of outer wall. Using a lower value can improve quality." +#~ msgstr "Išorinės sienelės pagreitis. Naudojant mažesnę vertę galima pagerinti kokybę." + +#~ msgid "Acceleration of the first layer. Using a lower value can improve build plate adhesion." +#~ msgstr "Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį galima pagerinti sukibimą su pagrindu." + +#~ msgid "Speed of the first layer except the solid infill part." +#~ msgstr "Pirmojo sluoksnio greitis, išskyrus vientiso užpildo dalį." + +#~ msgid "Speed of solid infill part of the first layer." +#~ msgstr "Pirmojo sluoksnio vientiso užpildo dalies greitis." + +#~ msgid "Nozzle temperature for printing the first layer when using this filament." +#~ msgstr "Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija." + +#~ msgid "Randomly jitter while printing the wall, so that the surface has a rough look. This setting controls the fuzzy position." +#~ msgstr "Atsitiktinis virpesys spausdinant sienelę, kad paviršius įgautų grublėtą išvaizdą. Šis nustatymas valdo grublėtumo (fuzzy skin) poziciją.." + +#~ msgid "The width within which to jitter. It's advised to be below outer wall line width." +#~ msgstr "Plotis, kurio ribose atliekamas virpesys. Rekomenduojama, kad jis būtų mažesnis už išorinės sienelės linijos plotį." + +#~ msgid "Speed of gap infill. Gap usually has irregular line width and should be printed more slowly." +#~ msgstr "Tarpų užpildo greitis. Tarpai paprastai būna netaisyklingo linijos pločio, todėl juos reikėtų spausdinti lėčiau." + +#~ msgid "Enable this to enable the camera on printer to check the quality of first layer." +#~ msgstr "Įjunkite, kad spausdintuvo kamera patikrintų pirmojo sluoksnio kokybę." + +#~ msgid "The metallic material of nozzle. This determines the abrasive resistance of nozzle, and what kind of filament can be printed." +#~ msgstr "Purkštuko metalo lydinys. Tai lemia purkštuko atsparumą abrazyvui ir nurodo, kokias gijas galima spausdinti." + #~ msgid "Undefine" -#~ msgstr "Neapibrėžti" +#~ msgstr "Neapibrėžta" + +#~ msgid "The nozzle's hardness. Zero means no checking for nozzle's hardness during slicing." +#~ msgstr "Purkštuko kietumas. Nulis reiškia, kad pjaustymo metu purkštuko kietumas nebus tikrinamas." + +#~ msgid "Support control chamber temperature" +#~ msgstr "Kameros temperatūros valdymo palaikymas" + +#~ msgid "Automatically Combine sparse infill of several layers to print together to reduce time. Wall is still printed with original layer height." +#~ msgstr "Automatiškai apjungia kelių sluoksnių retą užpildą bendram spausdinimui, kad sutrumpėtų laikas. Sienelė vis tiek spausdinama išlaikant pradinį sluoksnio aukštį." + +#~ msgid "Infill/Wall overlap" +#~ msgstr "Užpildo ir sienelės persidengimas" + +#, 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 "Užpildo plotas yra šiek tiek padidinamas, kad persidengtų su sienele geresniam sukibimui. Procentinė vertė yra santykinė su reto užpildo linijos pločiu. Nustatykite šią vertę ties ~10–15%%, kad sumažintumėte perteklinio išspaudimo (overextrusion) ir medžiagos sankaupų riziką, dėl kurios viršutiniai paviršiai tampa šiurkštūs." + +#~ msgid "Speed of internal sparse infill." +#~ msgstr "Vidinio reto užpildo greitis." + +#~ msgid "Maximum width of a segmented region. Zero disables this feature." +#~ msgstr "Didžiausias segmentuotos srities plotis. Nulis išjungia šią funkciją." + +#~ msgid "Ironing Type" +#~ msgstr "Lyginimo tipas" + +#~ 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 "Lyginimo metu naudojamas nedidelis medžiagos srautas, pakartotinai spausdinant tame pačiame paviršiaus aukštyje, kad plokščia dalis taptų lygesnė. Šis nustatymas valdo, kurie sluoksniai yra lyginami." + +#~ msgid "Top surfaces" +#~ msgstr "Viršutiniai paviršiai" + +#~ msgid "Topmost surface" +#~ msgstr "Pats viršutinis paviršius (Topmost)" + +#~ 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 "Medžiagos kiekis, išspaudžiamas lyginimo metu. Santykinis dydis, skaičiuojamas pagal įprasto sluoksnio aukščio srautą. Per didelė vertė sukelia perteklinį medžiagos išspaudimą (overextrusion) ant paviršiaus." + +#~ msgid "The distance between the lines of ironing." +#~ msgstr "Atstumas tarp lyginimui naudojamų linijų." + +#~ msgid "Print speed of ironing lines." +#~ msgstr "Lyginimo linijų spausdinimo greitis." + +#~ msgid "Supports silent mode" +#~ msgstr "Palaikomas tylusis režimas" + +#~ msgid "Whether the machine supports silent mode in which machine use lower acceleration to print." +#~ msgstr "Ar įrenginys palaiko tylųjį režimą, kai spausdindamas naudoja mažesnį pagreitį." + +#~ msgid "Part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan." +#~ msgstr "Kai įjungtas automatinis aušinimas, modelio aušinimo ventiliatoriaus greitis gali būti padidintas. Tai yra didžiausias modelio aušinimo ventiliatoriaus greitis." + +#~ msgid "Volume of nozzle between the cutter and the end of nozzle." +#~ msgstr "Purkštuko tūris tarp pjaustytuvo ir purkštuko galo." + +#~ msgid "The start and end points which is from cutter area to garbage can." +#~ msgstr "Pradžios ir pabaigos taškai, esantys tarp gijos kirpimo zonos ir atliekų konteinerio." + +#~ msgid "Users can define the project file name when exporting." +#~ msgstr "Eksportuodami vartotojai gali pasirinkti projekto failų pavadinimus." + +#, 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 "Nustatyti iškyšos procentinę dalį, palyginti su linijos pločiu, ir spausdinimui naudoti skirtingą greitį. Esant 100%% iškyšai, naudojamas tiltelių (bridging) greitis." + +#~ msgid "Speed of inner wall." +#~ msgstr "Vidinių sienelių greitis." + +#~ msgid "Number of walls of every layer." +#~ msgstr "Sienelių skaičius kiekviename sluoksnyje." + +#~ msgid "Expand all raft layers in XY plane." +#~ msgstr "Išplėsti visus pagrindo (Raft) sluoksnius XY plokštumoje." + +#~ msgid "Density of the first raft or support layer." +#~ msgstr "Pirmojo pagrindo (Raft) arba atraminio sluoksnio tankis." + +#~ msgid "Expand the first raft or support layer to improve bed plate adhesion." +#~ msgstr "Išplėsti pirmąjį pagrindo (Raft) arba atraminį sluoksnį, kad pagerėtų sukibimas su spausdinimo pagrindu." + +#~ 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-kodo (G-code) trajektorija generuojama supaprastinus modelio kontūrus, kad būtų išvengta per didelio taškų ir G-kodo eilučių skaičiaus. Mažesnė reikšmė užtikrina didesnę skiriamąją gebą, bet pailgina sluoksniavimo laiką." + +#~ msgid "The length of fast retraction before wipe, relative to retraction length." +#~ msgstr "Greito įtraukimo prieš nuvalymą ilgis, palyginti su įtraukimo ilgiu." + +#~ msgid "Retract when change layer" +#~ msgstr "Įtraukti, kai keičiamas sluoksnis" + +#~ msgid "Force a retraction when changes layer." +#~ msgstr "Priverstinai atlikti gijos įtraukimą keičiantis sluoksniui." + +#~ 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 "Atlikus įtraukimą, purkštukas šiek tiek pakeliamas virš modelio, kad susidarytų tarpas. Tai apsaugo, kad purkštukas tuščios eigos metu nekliudytų spaudinio. Spiralinis Z ašies kėlimas gali padėti išvengti gijų stygavimosi (stringing)." + +#~ msgid "Retraction Speed" +#~ msgstr "Gijos įtraukimo greitis" + +#~ msgid "De-retraction Speed" +#~ msgstr "Gijos sugrąžinimo greitis" + +#~ msgid "The start position to print each part of outer wall." +#~ msgstr "Kiekvienos išorinės sienelės dalies pradinė padėtis." + +#~ msgid "The distance from the skirt to the brim or the object." +#~ msgstr "Tai atstumas nuo apvado iki krašto arba objekto." + +#~ msgid "How many layers of skirt. Usually only one layer." +#~ msgstr "Kiek sluoksnių apvado. Paprastai tik vienas sluoksnis." + +#~ msgid "Number of loops for the skirt. Zero means disabling skirt." +#~ msgstr "Tai yra apvado kontūrų skaičius. 0 reiškia, kad apvadas išjungtas." + +#~ msgid "Sparse infill areas smaller than this threshold value are replaced by internal solid infill." +#~ msgstr "Reto užpildo sritys, mažesnės už šią ribinę reikšmę, pakeičiamos vidiniu vientisu užpildu." + +#~ msgid "Speed of internal solid infill, not the top and bottom surface." +#~ msgstr "Tai vidinio vientiso užpildo greitis, neįskaitant viršutinio ar apatinio paviršiaus." + +#~ 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 "Tai leidžia atlikti spiralinį išlyginimą, kuris išlygina išorinio kontūro Z judesius ir paverčia vientisą modelį į vienos sienelės atspaudą su vientisais apatiniais sluoksniais. Galutiniame sudarytame modelyje nėra siūlės." + +#~ 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 "Jei pasirinktas sklandus (smooth) arba tradicinis režimas, kiekvienam spaudiniui bus generuojamas intervalinis vaizdo įrašas (timelapse). Atspausdinus kiekvieną sluoksnį, korpuso kamera padaro nuotrauką. Baigus spausdinti, visos nuotraukos sujungiamos į vieną intervalinį vaizdo įrašą. Jei pasirinktas sklandus režimas, po kiekvieno sluoksnio spausdinimo galvutė pasitrauks prie atliekų latako (excess chute) ir tik tada bus daroma nuotrauka. Kadangi fotografavimo metu iš purkštuko gali ištekėti išsilydžiusi gija, sklandžiam režimui reikalingas valymo bokštelis (prime tower) purkštuko nuvalymui." + +#~ msgid "Start G-code when starting the entire print." +#~ msgstr "Pradžios G-kodas pradedant visą spausdinimą." + +#~ msgid "Start G-code when starting the printing of this filament." +#~ msgstr "Pradžios G-kodas pradedant spausdinti šia gija." + +#~ msgid "Enable support generation." +#~ msgstr "Įgalinti atramų generavimą." + +#~ msgid "XY separation between an object and its support." +#~ msgstr "Šiuo parametru nustatomas objekto ir atramos XY atstumas." + +#~ msgid "Don't create support on model surface, only on build plate." +#~ msgstr "Šis nustatymas generuoja tik tas atramas, kurios prasideda ant spausdinimo plokštės." + +#~ msgid "Interface use loop pattern" +#~ msgstr "Sąsajai naudoti kontūro raštą" + +#~ msgid "Cover the top contact layer of the supports with loops. Disabled by default." +#~ msgstr "Viršutinį kontaktinį atramų sluoksnį užpildyti uždarais kontūrais (loops). Gamykliškai išjungta." #~ msgid "Number of top interface layers." #~ msgstr "Viršutinių sąsajos sluoksnių skaičius." +#~ msgid "Spacing of bottom interface lines. Zero means solid interface." +#~ msgstr "Atstumas tarp apatinių sąsajos linijų. 0 reiškia vientisą sąsają." + +#~ msgid "Speed of support interface." +#~ msgstr "Atramų sąsajų greitis." + +#~ 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 "Atramų sąsajos linijų raštas. Numatytasis netirpių atramų sąsajos raštas yra tiesiaeigis (Rectilinear), o tirpių atramų sąsajos – koncentrinis (Concentric)." + +#~ msgid "Spacing between support lines." +#~ msgstr "Atstumai tarp atraminių linijų." + +#~ msgid "Normal Support expansion" +#~ msgstr "Įprastų atramų horizontalus išplėtimas" + +#~ msgid "Speed of support." +#~ msgstr "Atramų greitis." + +#~ msgid "Nozzle temperature for layers after the initial one." +#~ msgstr "Po pradinio sluoksnio esančių sluoksnių purkštuko temperatūra." + +#~ 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 "Aptikti plonas sieneles, kuriose netelpa du linijos pločiai, ir spausdinimui naudoti vieną liniją. Gali būti atspausdinta prasčiau, kadangi tai nėra uždaras kontūras (loop)." + +#~ msgid "Speed of top surface infill which is solid." +#~ msgstr "Viršutinio vientiso paviršiaus užpildo greitis." + +#~ 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 "Tai viršutinio apvalkalo (shell) vientisų sluoksnių skaičius, įskaitant patį viršutinį paviršiaus sluoksnį. Jei pagal šį skaičių apskaičiuotas storis yra mažesnis už nustatytą viršutinio apvalkalo storį, viršutinio apvalkalo sluoksnių skaičius bus automatiškai padidintas." + +#~ 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 "Sluoksniuojant didinamas viršutinių vientisų sluoksnių skaičius, jei pagal viršutinius apvalkalo sluoksnius apskaičiuotas storis yra plonesnis už šią vertę. Taip galima išvengti per plono apvalkalo, kai sluoksnių aukštis yra mažas. 0 reiškia, kad šis nustatymas išjungtas ir viršutinio apvalkalo storis visiškai nustatomas pagal viršutinio apvalkalo sluoksnius." + +#~ msgid "Speed of travel which is faster and without extrusion." +#~ msgstr "Tuščiojo judėjimo (travel) greitis, kai galvutė juda nespausdindama." + +#~ 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 "Atliekant gijos įtraukimą (retraction), judinti purkštuką išilgai paskutinės ekstruzijos trajektorijos, kad nusivalytų gijos likučiai. Tai padeda sumažinti gumbelių (blobs) susidarymą, kai po tuščiojo judėjimo pradedama spausdinti nauja dalis." + +#~ msgid "Wipe Distance" +#~ msgstr "Valymo atstumas" + +#~ 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 "Valymo bokštelis (wipe tower) naudojamas purkštuko likučiams nuvalyti ir slėgiui jo viduje stabilizuoti, kad spausdinant objektus būtų išvengta vizualių paviršiaus defektų." + +#~ msgid "The actual flushing volumes is equal to the flush multiplier multiplied by the flushing volumes in the table." +#~ msgstr "Faktinis pravalymo (flushing) tūris yra lygus pravalymo daugikliui, padaugintam iš lentelėje nurodytų tūrių reikšmių." + +#~ msgid "The volume of material to prime extruder on tower." +#~ msgstr "Medžiagos tūris, naudojamas ekstruderiui paruošti (prime) ant valymo bokštelio." + +#~ msgid "Width of the prime tower." +#~ msgstr "Valymo bokštelio (prime tower) plotis." + +#~ 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 "Pakeitus giją, pravalymas (purging) bus atliekamas spausdinamų objektų užpildo viduje. Tai padeda sumažinti gijos atliekų kiekį bei sutrumpinti spausdinimo laiką. Jei išorinės sienelės spausdinamos iš skaidrios gijos, sumaišytų spalvų užpildas gali matytis išorėje. Ši funkcija veikia tik tuomet, kai įjungtas valymo bokštelis." + +#~ 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 "Pakeitus giją, pravalymas (purging) bus atliekamas objektų atramų (support) viduje. Tai padeda sumažinti gijos atliekų kiekį bei sutrumpinti spausdinimo laiką. Ši funkcija veikia tik tuomet, kai įjungtas valymo bokštelis." + +#~ 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 "Objekto angos XY plokštumoje bus praplėstos arba susiaurintos pagal nurodytą reikšmę. Teigiamos reikšmės angas padidina, neigiamos – sumažina. Ši funkcija naudojama matmenims tikslinti, kai kyla spausdintų detalių surinkimo sunkumų." + +#~ 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 "Išoriniai objektų kontūrai XY plokštumoje bus praplėsti arba susiaurinti pagal nurodytą reikšmę. Teigiamos reikšmės kontūrą padidina, neigiamos – sumažina. Ši funkcija naudojama matmenims tikslinti, kai kyla spausdintų detalių surinkimo sunkumų." + +#~ 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 "Klasikinis sienelių generatorius sukuria pastovaus išspaudimo pločio sieneles, o labai plonoms sritims naudoja tarpų užpildymą (gap-fill). „Arachne“ variklis sukuria kintamo išspaudimo pločio sieneles." + +#~ msgid "Export project as 3MF." +#~ msgstr "Eksportuokite projektą kaip 3MF." + +#~ msgid "Export slicing data to a folder." +#~ msgstr "Eksportuoti sluoksniavimo duomenis į katalogą." + +#~ msgid "Show command help." +#~ msgstr "Rodoma komandos pagalba." + +#~ msgid "max triangle count per plate for slicing." +#~ msgstr "maksimalus trikampių skaičius plokštelėje sluoksniavimui." + +#~ msgid "max slicing time per plate in seconds." +#~ msgstr "maksimalus vienos plokštės sluoksniavimo laikas sekundėmis." + +#~ msgid "Output the model's information." +#~ msgstr "Išvesti modelio informaciją." + +#~ msgid "Export settings to a file." +#~ msgstr "Eksportuoti nustatymus į failą." + +#~ msgid "Load uptodate process/machine settings from the specified file when using uptodate." +#~ msgstr "Naudojant „UpToDate“, įkelti naujausius proceso / mašinos nustatymus iš nurodyto failo." + +#~ msgid "Output directory for the exported files." +#~ msgstr "Eksportuojamų failų išvesties katalogas." + +#~ msgid "The supplied file couldn't be read because it's empty" +#~ 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)." + +#~ 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." + +#~ msgid "How to use calibration result?" +#~ msgstr "Kaip naudoti kalibravimo rezultatą?" + +#~ 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 "" +#~ "Šio tipo mašinoje galima laikyti tik 16 istorijos rezultatų iš vieno purkštuko. Galite ištrinti turimus ankstesnius rezultatus ir tada pradėti kalibravimą. Arba galite tęsti kalibravimą, tačiau negalite sukurti naujų kalibravimo istorijos rezultatų.\n" +#~ "Ar vis dar norite tęsti kalibravimą?" + +#, 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 "Jau yra ankstesnio kalibravimo rezultatas tokiu pačiu pavadinimu: %s. Išsaugomas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite pakeisti ankstesnį rezultatą?" + +#, c-format, boost-format +#~ msgid "This machine type can only hold %d history results per nozzle. This result will not be saved." +#~ msgstr "Šis įrenginio tipas gali talpinti tik %d istorijos rezultatų iš vieno purkštuko. Šis rezultatas nebus išsaugotas." + +#~ 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 "" +#~ "Automatinis srauto greičio kalibravimas naudoja \"Bambu Lab\" mikrolidarų technologiją, tiesiogiai matuojančią kalibravimo modelius. Tačiau atkreipkite dėmesį, kad šio metodo veiksmingumas ir tikslumas gali sumažėti naudojant tam tikrų tipų medžiagas. Ypač skaidrios ar pusiau skaidrios, blizgančios arba turinčios labai atspindinčią apdailą gijos gali būti netinkamos šiam kalibravimui ir gali duoti prastesnius nei pageidaujami rezultatus.\n" +#~ "\n" +#~ "Kalibravimo rezultatai gali skirtis priklausomai nuo kalibravimo ar gijų. Vykdydami programinės aparatinės įrangos atnaujinimus laikui bėgant vis dar tobuliname šio kalibravimo tikslumą ir suderinamumą.\n" +#~ "\n" +#~ "Įspėjimas: Srauto greičio kalibravimas yra sudėtingas procesas, kurį gali atlikti tik tie, kurie visiškai supranta jo paskirtį ir pasekmes. Neteisingas naudojimas gali lemti nekokybiškus spaudinius arba spausdintuvo sugadinimą. Prieš atlikdami šį procesą būtinai atidžiai susipažinkite ir supraskite jo eigą." + +#~ msgid "Refreshing the historical Flow Dynamics Calibration records" +#~ msgstr "Senesnių srauto dinamikos kalibravimo įrašų atnaujinimas" + +#, c-format, boost-format +#~ msgid "This machine type can only hold %d history results per nozzle." +#~ msgstr "Šis įrenginio tipas gali talpinti tik %d ankstesnių rezultatų iš vieno purkštuko." + +#~ msgid "Vendor is not selected, please reselect vendor." +#~ msgstr "Prekės ženklas nepasirinktas, pasirinkite prekės ženklą iš naujo." + +#~ msgid "Custom vendor is missing, please input custom vendor." +#~ msgstr "Pasirinktinis prekės ženklas neįvestas, įveskite pasirinktinį prekės ženklą." + +#~ msgid "Filament serial is not entered, please enter serial." +#~ msgstr "Gijos serija neįvesta, įveskite seriją." + +#~ msgid "There may be escape characters in the vendor or serial input of filament. Please delete and re-enter." +#~ msgstr "Gijos prekės ženklo arba serijos įvesties laukelyje gali būti valdymo (escape) simbolių. Ištrinkite ir įveskite iš naujo." + +#~ msgid "The vendor cannot be a number. Please re-enter." +#~ msgstr "Prekės ženklas negali būti skaičius. Įveskite iš naujo." + +#~ msgid "The model was not found, please reselect vendor." +#~ msgstr "Modelis nerastas, iš naujo pasirinkite prekės ženklą." + +#~ msgid "Preset path was not found, please reselect vendor." +#~ msgstr "Profilio kelias nerastas, iš naujo pasirinkite prekės ženklą." + +#~ msgid "The nozzle diameter was not found, please reselect." +#~ msgstr "Purkštuko skersmuo nerastas, pasirinkite iš naujo." + +#~ msgid "The printer preset was not found, please reselect." +#~ msgstr "Spausdintuvo profilis nerastas, pasirinkite iš naujo." + +#~ msgid "You have entered an illegal input in the printable area section on the first page. Please check before creating it." +#~ msgstr "Pirmojo puslapio spausdintinos srities skiltyje įvedėte neleistiną reikšmę. Prieš jį kurdami patikrinkite." + +#~ 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 "" +#~ "Jūsų sukurtame spausdintuvo profilyje jau yra profilis su tokiu pačiu pavadinimu. Ar norite jį perrašyti?\n" +#~ "\tTaip: perrašyti to paties pavadinimo spausdintuvo profilį; gijų ir procesų profiliai su tokiais pačiais pavadinimais bus sukurti iš naujo, o profiliai su kitokiais pavadinimais bus išsaugoti.\n" +#~ "\tAtšaukti: nekurti profilio ir grįžti į kūrimo sąsają." + +#~ msgid "Vendor was not found, please reselect." +#~ msgstr "Prekės ženklas nerastas, pasirinkite iš naujo." + +#~ msgid "You have not selected the vendor and model or entered the custom vendor and model." +#~ msgstr "Nepasirinkote prekės ženklo bei modelio arba neįvedėte pasirinktinio prekės ženklo bei modelio." + +#~ msgid "You have not yet selected the printer to replace the nozzle, please choose." +#~ msgstr "Dar nepasirinkote spausdintuvo, kuriam norite pakeisti purkštuką, pasirinkite." + +#~ 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 "" +#~ "Jei reikia, eikite į gijos nustatymus ir redaguokite savo profilius.\n" +#~ "Atkreipkite dėmesį, kad purkštuko temperatūra, šildomo pagrindo temperatūra ir maksimalus tūrinis greitis turi didelę įtaką spausdinimo kokybei. Nustatykite juos atsakingai." + +#, 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 "" +#~ "Dabartiniame kataloge jau yra aplankas „%s“. Ar norite jį išvalyti ir sukurti iš naujo?\n" +#~ "Jei ne, bus pridėta laiko priesaga, o pavadinimą galėsite pakeisti jau po sukūrimo." + +#~ msgid "Only display printer names with changes to printer, filament, and process presets." +#~ msgstr "Rodyti tik tuos spausdintuvų pavadinimus, kurių spausdintuvo, gijos ar proceso profiliai buvo pakeisti." + +#~ msgid "Please select a type you want to export" +#~ msgstr "Pasirinkite tipą, kurį norite eksportuoti" + +#~ msgid "For more information, please check out Wiki" +#~ msgstr "Daugiau informacijos rasite Wiki" + #~ msgid "Bed Leveling" #~ msgstr "Lyginimas pagal spausdinimo pagrindą" -#~ msgid "part selection" -#~ msgstr "detalės pasirinkimas" - -#~ msgid "°" -#~ msgstr "°" +#~ msgid "minute each batch. (It depends on how long it takes to complete the heating.)" +#~ msgstr "min. kiekvienai partijai. (Priklauso nuo to, kiek laiko trunka įkaitinimas.)" #~ 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?" +#~ "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 "" -#~ "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°." +#~ "Paspartinkite spausdinimą naudodami prisitaikantį sluoksnio aukštį\n" +#~ "Ar žinojote, kad naudodami prisitaikančio sluoksnio aukščio (Adaptive Layer Height) parinktį modelį galite atspausdinti dar greičiau? Išbandykite!" #~ 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." +#~ "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 "" -#~ "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." +#~ "Įvairių tipų atramos\n" +#~ "Ar žinojote, kad galite rinktis iš kelių tipų atramų? Medžio formos atramos puikiai tinka organiškiems modeliams, kartu taupydamos giją ir padidindamos spausdinimo greitį. Išbandykite jas!" #~ 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." +#~ "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 "" -#~ "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į" - -#~ msgid "Reset cut" -#~ msgstr "Atstatyti pjovimą" - -#~ msgid "Swap pan and rotate mouse buttons" -#~ msgstr "Sukeisti judėjimą ir sukimąsi pelės mygtuko" - -#~ msgid "If enabled, swaps the left and right mouse buttons pan and rotate functions." -#~ msgstr "Jei įjungta, sukeičia kairiojo ir dešiniojo pelės mygtukų panoraminio ir pasukimo funkcijas." - -#, c-format, boost-format -#~ msgid "nozzle size in preset: %d" -#~ msgstr "nozzle size in preset: %d" - -#, c-format, boost-format -#~ msgid "nozzle size memorized: %d" -#~ msgstr "nozzle size memorized: %d" - -#~ msgid "The size of nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" -#~ msgstr "The size of nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" - -#, c-format, boost-format -#~ msgid "nozzle[%d] in preset: %.1f" -#~ msgstr "nozzle[%d] in preset: %.1f" - -#, c-format, boost-format -#~ msgid "nozzle[%d] memorized: %.1f" -#~ msgstr "nozzle[%d] memorized: %.1f" - -#~ msgid "Your nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" -#~ msgstr "Your nozzle type in preset is not consistent with memorized nozzle. Did you change your nozzle lately?" - -#~ msgid "Remove selected points" -#~ msgstr "Pašalinti pasirinktus taškus" - -#~ msgid "Remove all" -#~ msgstr "Pašalinti viską" - -#~ msgid "Auto-generate points" -#~ msgstr "Automatiškai generuoti taškus" - -#~ msgid "Add a brim ear" -#~ msgstr "Krašto \"ausys\"" - -#~ msgid "Delete a brim ear" -#~ msgstr "Ištrinti krašto \"ausį\"" - -#~ msgid "Adjust head diameter" -#~ msgstr "Nustatykite galvutės skersmenį" - -#~ msgid "Adjust section view" -#~ msgstr "Pritaikyti sekcijos vaizdą" - -#~ msgid " invalid brim ears" -#~ msgstr " netinkamos krašto \"ausys\"" - -#~ msgid "" -#~ "Reverse on odd\n" -#~ "Did you know that Reverse on odd feature can significantly improve the surface quality of your overhangs?" -#~ msgstr "" -#~ "Atvirkštinis ant nelyginio paviršiaus\n" -#~ "Ar žinojote, kad atvirkštinio ant nelyginio paviršiaus funkcija gali gerokai pagerinti jūsų iškyšų paviršiaus kokybę?" - -#~ msgid "Pen size" -#~ msgstr "Pieštuko dydis" - -#~ msgid "Pen shape" -#~ msgstr "Rašiklio forma" - -#~ msgid "Key 1~9" -#~ msgstr "Klavišai 1~9" - -#~ msgid "Left click" -#~ msgstr "Kairysis spustelėjimas" - -#~ msgid "Right click" -#~ msgstr "Spustelėti dešinįjį pelės mygtuką" - -#~ msgid "Select feature" -#~ msgstr "Pasirinkti elementą" - -#~ msgid "Based on PrusaSlicer and BambuStudio" -#~ msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“" - -#~ msgid "Object/Part Setting" -#~ msgstr "Objekto / Dalies nustatymai" - -#~ msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer." -#~ msgstr "OrcaSlicer sukurtas remiantis BambuStudio, PrusaSlicer ir SuperSlicer." - -#~ msgid "BambuStudio is originally based on PrusaSlicer by PrusaResearch." -#~ msgstr "Pradinė BambuStudio programos kūrimo bazė buvo PrusaSlicer iš PrusaResearch." - -#~ msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci." -#~ msgstr "Pradinė PrusaSlicer programos kūrimo bazė buvo Slic3r, kurį sukūrė Alessandro Ranellucci." - -#~ msgid "Slic3r was created by Alessandro Ranellucci with the help of many other contributors." -#~ msgstr "Slic3r sukūrė Alessandro Ranellucci su daugelio kitų kūrėjų pagalba." - -#~ msgid "Actual Speed: " -#~ msgstr "Faktinis greitis: " - -#~ msgid "Mouse wheel:" -#~ msgstr "Pelės ratukas:" - -#~ msgid "Pass 1" -#~ msgstr "1 fazė" - -#~ msgid "Flow ratio test - Pass 1" -#~ msgstr "Srauto santykio testas - 1 fazė" - -#~ msgid "Pass 2" -#~ msgstr "2 fazė" - -#~ msgid "Flow ratio test - Pass 2" -#~ msgstr "Srauto santykio testas - 2 fazė" - -#~ msgid "Orca YOLO flowratio calibration, 0.01 step" -#~ msgstr "„Orca YOLO“ srauto santykio kalibravimas, 0,01 žingsnis" - -#~ msgid "YOLO (perfectionist version)" -#~ msgstr "YOLO (perfekcionistinė versija)" - -#~ msgid "Orca YOLO flowratio calibration, 0.005 step" -#~ msgstr "„Orca YOLO“ srauto santykio kalibravimas, 0,005 žingsnis" - -#~ msgid "Retraction test" -#~ msgstr "Įtraukimo testas" - -#~ msgid "Tutorial" -#~ msgstr "Pamokos" - -#~ msgid "Calibration help" -#~ msgstr "Kalibravimo pagalba" - -#~ msgid "" -#~ "Do you want to synchronize your personal data from Bambu Cloud?\n" -#~ "It contains the following information:\n" -#~ "1. The Process presets\n" -#~ "2. The Filament presets\n" -#~ "3. The Printer presets" -#~ msgstr "" -#~ "Ar norite sinchronizuoti asmeninius duomenis iš Bambu Cloud?\n" -#~ "Juose yra ši informacija:\n" -#~ "1. Procesų išankstiniai nustatymai\n" -#~ "2. Filamento išankstiniai nustatymai\n" -#~ "3. Spausdintuvo išankstiniai nustatymai" - -#~ msgid "Show/Hide advanced parameters" -#~ msgstr "Show/Hide advanced parameters" - -#, c-format, boost-format -#~ msgid "Left nozzle: %smm" -#~ msgstr "Left nozzle: %smm" - -#, c-format, boost-format -#~ msgid "Right nozzle: %smm" -#~ msgstr "Right nozzle: %smm" - -#~ msgid "\"Fix Model\" feature is currently only on Windows. Please repair the model on Orca Slicer(windows) or CAD softwares." -#~ msgstr "Funkcija „Pataisyti modelį“ šiuo metu pasiekiama tik „Windows“. Pataisykite modelį „Orca Slicer“ („Windows“) arba CAD programinėje įrangoje." - -#~ msgid "This stops the transmission of data to Bambu's cloud services. Users who don't use BBL machines or use LAN mode only can safely turn on this function." -#~ msgstr "Įjungus šią funkciją, sustabdomas duomenų perdavimas į „Bambu“ debesijos paslaugas. Šią funkciją gali drąsiai įjungti naudotojai, kurie nesinaudoja „BBL“ įrenginiais arba naudoja tik LAN režimą." - -#~ msgid "Resonance Avoidance" -#~ msgstr "Rezonanso vengimas" - -#~ msgid "Saving objects into the 3MF failed." -#~ msgstr "Saving objects into the 3MF failed.Nepavyko įrašyti objektų į 3MF." - -#~ msgid "Only Windows 10 is supported." -#~ msgstr "Palaikoma tik \"Windows 10\"." - -#~ msgid "Failed to initialize the WinRT library." -#~ msgstr "Nepavyko inicializuoti \"WinRT\" bibliotekos." - -#~ msgid "Exporting objects" -#~ msgstr "Objektų eksportavimas" - -#~ msgid "Failed loading objects." -#~ msgstr "Nepavyko įkelti objektų." - -#~ msgid "Repairing object by Windows service" -#~ msgstr "Objekto taisymas \"Windows\" paslauga" - -#~ msgid "Repair failed." -#~ msgstr "Taisymas nepavyko." - -#~ msgid "Loading repaired objects" -#~ msgstr "Pataisytų objektų įkėlimas" - -#~ msgid "Exporting 3MF file failed" -#~ msgstr "Nepavyko eksportuoti 3MF failo" - -#~ msgid "Import 3MF file failed" -#~ msgstr "Nepavyko importuoti 3MF failo" - -#~ msgid "Repaired 3MF file does not contain any object" -#~ msgstr "Pataisytame 3MF faile nėra jokių objektų" - -#~ msgid "Repaired 3MF file contains more than one object" -#~ msgstr "Pataisytame 3MF faile yra daugiau nei vienas objektas" - -#~ msgid "Repaired 3MF file does not contain any volume" -#~ msgstr "Pataisytame 3MF faile nėra jokio tūrio" - -#~ msgid "Repaired 3MF file contains more than one volume" -#~ msgstr "Pataisytame 3MF faile yra daugiau nei vienas tomas" - -#~ msgid "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage. If you still want to print, you can enable the option in Preferences." -#~ msgstr "Printing high-temp and low-temp filaments together may cause nozzle clogging or printer damage. If you still want to print, you can enable the option in Preferences." - -#~ msgid "Printing different-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing different-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing high-temp and mid-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing high-temp and mid-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "Printing mid-temp and low-temp filaments together may cause nozzle clogging or printer damage." -#~ msgstr "Printing mid-temp and low-temp filaments together may cause nozzle clogging or printer damage." - -#~ msgid "" -#~ "The direction which the wall loops are extruded when looking down from the top.\n" -#~ "\n" -#~ "By default all walls are extruded in counter-clockwise, unless Reverse on even is enabled. Set this to any option other than Auto will force the wall direction regardless of the Reverse on even.\n" -#~ "\n" -#~ "This option will be disabled if spiral vase mode is enabled." -#~ msgstr "" -#~ "Sienų kontūrų išspaudimo kryptis žiūrint iš viršaus žemyn.\n" -#~ "\n" -#~ "Pagal numatytuosius nustatymus visos sienos išspaudžiamos prieš laikrodžio rodyklę, nebent įjungta galimybė „ Apsukti lyginius“. Nustačius bet kurią kitą parinktį, išskyrus Auto (automatinis), sienos kryptis bus priverstinė, neatsižvelgiant į įjungtą funkciją Apsukti lyginius.\n" -#~ "\n" -#~ "Ši parinktis bus išjungta, jei įjungtas spiralinės vazos režimas." - -#~ 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." -#~ msgstr "" -#~ "Nelygumų tipas, kurį naudoti generuojant grublėtą paviršių.\n" -#~ "Klasikinis: Klasikinis vienodas atsitiktinis triukšmas.\n" -#~ "Perlin: Perlino triukšmas, kuris suteikia nuoseklesnę tekstūrą.\n" -#~ "Billow: Panašus į Perlino triukšmą, bet gremėzdiškesnis.\n" -#~ "Ridged Multifractal: Tai - rifliuotas triukšmas su aštriomis, dantytomis savybėmis. Sukuria marmurines tekstūras.\n" -#~ "Voronoi: Paviršius padalijamas į Voronoi ląsteles ir kiekviena iš jų pasislenka atsitiktiniu dydžiu. Sukuriama mozaikinė tekstūra." - -#~ msgid "Flow Rate" -#~ msgstr "Srautas" - -#~ msgid "Cannot print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing" -#~ msgstr "Negalima spausdinti kelių skirtingos temperatūros gijų kartu. Priešingu atveju, spausdinimo metu gali užsikimšti purkštukas arba sugesti ekstruderiai" - -#~ msgid "" -#~ "Zero first layer height is invalid.\n" -#~ "\n" -#~ "The first layer height will be reset to 0.2." -#~ msgstr "" -#~ "Netinkamas pradinio sluoksnio aukštis.\n" -#~ "\n" -#~ "Pirmojo sluoksnio aukštis bus atstatytas į 0,2." - -#~ msgid "Check for Update" -#~ msgstr "Patikrinti ar nėra atnaujinimų" - -#~ msgid "Rotate of view" -#~ msgstr "Vaizdo sukimas" - -#~ msgid "Move of view" -#~ msgstr "Vaizdo perkėlimas" - -#~ msgid "Zoom of view" -#~ msgstr "Vaizdo didinimas" - -#~ msgid "Enabling both precise Z height and the prime tower may cause the size of prime tower to increase. Do you still want to enable?" -#~ msgstr "Įjungus tikslaus Z aukščio ir pagrindinio bokšto funkcijas, pagrindinio bokšto dydis gali padidėti. Ar vis tiek norite įjungti?" - -#~ msgid "Extruders count" -#~ msgstr "Ekstruderių kiekis" - -#~ msgid "Missing BambuSource component registered for media playing! Please re-install BambuStudio or seek after-sales help." -#~ msgstr "Trūksta „BambuSource“ komponento, registruoto medijos atkūrimui! Iš naujo įdiekite „BambuStudio“ arba kreipkitės į pagalbą po pardavimo." - -#~ msgid "Line pattern of support." -#~ msgstr "Linijinis atramų raštas." - -#~ msgid "Failed to install the plug-in. Please check whether it is blocked or deleted by anti-virus software." -#~ msgstr "Nepavyko įdiegti papildinio. Patikrinkite, ar jo neblokuoja arba neištrina antivirusinė programinė įranga." - -#~ msgid "travel" -#~ msgstr "judėjimas" - -#~ msgid "Filament remapping finished." -#~ msgstr "Gijų perplanavimas baigtas." - -#~ msgid "Replace with STL" -#~ msgstr "Pakeisti STL" - -#~ msgid "Replace the selected part with new STL" -#~ msgstr "Pakeisti pasirinktą dalį į naują STL" - -#~ msgid "Loading G-code" -#~ msgstr "Įkeliami G-kodai" - -#~ msgid "Generating geometry vertex data" -#~ msgstr "Geometrijos viršūnių duomenų generavimas" - -#~ msgid "Generating geometry index data" -#~ msgstr "Geometrijos indeksų duomenų generavimas" - -#~ msgid "Switch to silent mode" -#~ msgstr "Persijungti į tylųjį režimą" - -#~ msgid "Switch to normal mode" -#~ msgstr "Persijungti į normalų režimą" - -#~ msgid "The application cannot run normally because OpenGL version is lower than 2.0.\n" -#~ msgstr "Programa negali normaliai veikti, nes OpenGL versija yra žemesnė nei 2.0.\n" - -#~ msgid "Nozzle Type" -#~ msgstr "Purkštuko tipas" - -#~ msgid "Advance" -#~ msgstr "Detaliau" - -#~ msgid "Use legacy network plug-in" -#~ msgstr "Naudoti senąjį tinklo įskiepį" - -#~ msgid "Disable to use latest network plug-in that supports new BambuLab firmwares." -#~ msgstr "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko naujas „BambuLab“ programinės įrangos versijas." - -#~ msgid "" -#~ "Controls the density (spacing) of external bridge lines. 100% means solid bridge. 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." -#~ msgstr "" -#~ "Valdo išorinių tiltelių linijų tankį (atstumus). 100 % reiškia vientisą tiltą. Numatytoji reikšmė yra 100 %.\n" -#~ "\n" -#~ "Mažesnio tankio išoriniai tilteliai gali padėti padidinti patikimumą, nes aplink išspaustą tiltelį cirkuliuoja daugiau vietos orui, todėl pagerėja jo aušinimo greitis." - -#~ msgid "Acceleration of outer walls." -#~ msgstr "Išorinių sienų pagreitis." - -#~ msgid "Rib width." -#~ msgstr "Briaunų plotis." - -#~ msgid "downward machines check" -#~ msgstr "tikrinti mažėjančias mašinas" - -#~ msgid "check whether current machine downward compatible with the machines in the list." -#~ msgstr "patikrinti, ar dabartinė mašina yra suderinama su sąraše esančiomis mašinomis." - -#~ msgid "metadata name list added into 3MF." -#~ msgstr "metaduomenų pavadinimų sąrašas įtrauktas į 3MF." - -#~ msgid "metadata value list added into 3MF." -#~ msgstr "į 3MF įtrauktas metaduomenų reikšmių sąrašas." - -#~ msgid "Connecting to printer" -#~ msgstr "Jungiamasi prie spausdintuvo" - -#~ msgid "Ok" -#~ msgstr "Gerai" - -#~ msgid "Junction Deviation calibration" -#~ msgstr "Jungties nuokrypio kalibravimas" - -#, c-format, boost-format -#~ msgid "Extruder %d" -#~ msgstr "Ekstruderis %d" - -#~ msgid "Maximum junction deviation (M205 J, only apply if JD > 0 for Marlin Firmware)" -#~ msgstr "Maksimalus jungties nuokrypis (M205 J, taikoma tik jei JD > 0 Marlin Firmware)" - -#~ msgid "Adaptive layer height" -#~ msgstr "Prisitaikantis sluoksnio aukštis" - -#~ msgid "Enabling this option means the height of tree support layer except the first will be automatically calculated." -#~ msgstr "Įjungus šią parinktį, medžio atraminio sluoksnio, išskyrus pirmąjį, aukštis bus apskaičiuojamas automatiškai." - -#~ msgid "Junction Deviation test" -#~ msgstr "Jungties nuokrypio bandymas" - -#~ msgid "Start junction deviation: " -#~ msgstr "Pradinis jungties nuokrypis: " - -#~ msgid "End junction deviation: " -#~ msgstr "Galinis jungties nuokrypis: " - -#~ msgid "Junction Deviation settings" -#~ msgstr "Jungties nuokrypio nustatymai" - -#~ msgid "Note: Lower values = sharper corners but slower speeds" -#~ msgstr "Pastaba: mažesnės vertės = aštresni kampai, bet mažesnis greitis" - -#~ msgid "" -#~ "Please input valid values:\n" -#~ "(0 <= Junction Deviation < 1)" -#~ msgstr "" -#~ "Įveskite tinkamas reikšmes:\n" -#~ "(0 <= Jungties nuokrypis < 1)" - -#~ msgid "NOTE: High values may cause Layer shift" -#~ msgstr "PASTABA: Didelės vertės gali sukelti sluoksnio poslinkį" - -#~ msgid "AMS not connected" -#~ msgstr "AMS neprijungta" - -#~ msgid "Ext Spool" -#~ msgstr "Išor ritė" - -#~ msgid "Guide" -#~ msgstr "Instrukcija" - -#~ msgid "Calibrating AMS..." -#~ msgstr "Kalibruojama AMS..." - -#~ msgid "A problem occurred during calibration. Click to view the solution." -#~ msgstr "Kalibruojant aptikta problema. Paspauskite kad pamatytumėte sprendimą." - -#~ msgid "Calibrate again" -#~ msgstr "Kalibruoti dar kartą" - -#~ msgid "Cancel calibration" -#~ msgstr "Atšaukti kalibravimą" - -#~ msgid "Feed Filament" -#~ msgstr "Paduoti giją" - -#~ msgid "An SD card needs to be inserted before printing via LAN." -#~ msgstr "Prieš spausdinant per vietinį tinklą, reikia įdėti SD kortelę." - -#~ msgid "An SD card needs to be inserted before sending to printer." -#~ msgstr "Prieš siunčiant į spausdintuvą reikia įdėti SD kortelę." - -#~ msgid "Note: Only the AMS slots loaded with the same material type can be selected." -#~ msgstr "Pastaba: Galima pasirinkti tik tuos AMS lizdus, kuriose yra tos pačios rūšies medžiaga." - -#~ msgid "" -#~ "If there are two identical filaments in AMS, AMS filament backup will be enabled.\n" -#~ "(Currently supporting automatic supply of consumables with the same brand, material type, and color)" -#~ msgstr "" -#~ "Jei AMS yra dvi identiškos gijos, tuomet bus įjungta AMS atsarginė gija. \n" -#~ "(Šiuo metu palaikomas automatinis to paties prekės ženklo, medžiagos tipo ir spalvos eksploatacinių medžiagų padavimas)" - -#~ msgid "The AMS will estimate Bambu filament's remaining capacity after the filament info is updated. During printing, remaining capacity will be updated automatically." -#~ msgstr "Atnaujinus gijų informaciją, AMS įvertins likusį Bambu gijų kiekį. Spausdinimo metu likęs kiekis bus atnaujinamas automatiškai." - -# TODO: Review, changed by lang refactor. PR 14254 -#~ msgid "The recommended minimum temperature is less than 190℃ or the recommended maximum temperature is greater than 300℃.\n" -#~ msgstr "Rekomenduojama minimali temperatūra yra žemesnė nei 190 laipsnių arba maksimali temperatūra aukštesnė nei 300 laipsnių.\n" - -#~ msgid "Spiral mode only works when wall loops is 1, support is disabled, top shell layers is 0, sparse infill density is 0 and timelapse type is traditional." -#~ msgstr "Spiralės režimas veikia tik tada, kai sienelės sluoksnių skaičius yra 1, atramos yra išjungtos, viršutinių sluoksnių skaičius yra 0, Retas užpildas yra 0% ir pakadrinis įrašymas tipas yra tradicinis." - -#~ msgid "Sweeping XY mech mode" -#~ msgstr "Kalibravimo judesiai X ir Y ašyse" - -#~ msgid "Paused due to filament runout" -#~ msgstr "Pristabdyta dėl gijos pasibaigimo" - -#~ msgid "Heating hotend" -#~ msgstr "Kaitinama galvutė" - -#~ msgid "Calibrating extrusion" -#~ msgstr "Kalibruojamas išspaudimas" - -#~ msgid "Printing was paused by the user" -#~ msgstr "Spausdinimas pristabdytas naudotojo" - -#~ msgid "Pause of front cover falling" -#~ msgstr "Pristabdymas dėl priekinio dangtelio gedimo" - -#~ msgid "Calibrating extrusion flow" -#~ msgstr "Gijos išspaudimo srauto kalibravimas" - -#~ msgid "Paused due to nozzle temperature malfunction" -#~ msgstr "Pristabdyta dėl purkštuko temperatūros gedimo" - -#~ msgid "Paused due to heat bed temperature malfunction" -#~ msgstr "Pristabdyta dėl pagrindo temperatūros gedimo" - -#~ msgid "Skip step pause" -#~ msgstr "Praleisti žingsnio pauzę" - -#~ msgid "Motor noise calibration" -#~ msgstr "Variklių triukšmo kalibravimas" - -#~ msgid "Paused due to AMS lost" -#~ msgstr "Pristabdyta dėl AMS praradimo" - -#~ msgid "Paused due to low speed of the heat break fan" -#~ msgstr "Pristabdyta dėl per mažo šilumos slenksčio ventiliatoriaus greičio" - -#~ msgid "Paused due to chamber temperature control error" -#~ msgstr "Pristabdyta dėl kameros temperatūros valdymo klaidos" - -#~ msgid "Paused by the G-code inserted by user" -#~ msgstr "Pristabdyta dėl naudotojo įterpto G-kodo" - -#~ msgid "Nozzle filament covered detected pause" -#~ msgstr "Pristabdyta - aptikta užspausta gija antgalyje" - -#~ msgid "Cutter error pause" -#~ msgstr "Pristabdyta dėl pjovimo klaidos" - -#~ msgid "First layer error pause" -#~ msgstr "Pristabdyta dėl pirmojo sluoksnio klaidos" - -#~ msgid "Nozzle clog pause" -#~ msgstr "Pristabdyta dėl galvutės užsikimšimo" - -#~ msgid "Fatal" -#~ msgstr "Kritinė" - -#~ msgid "Serious" -#~ msgstr "Svarbi" - -#~ msgid "Common" -#~ msgstr "Pasikartojanti" - -#~ msgid "Bambu PET-CF/PA6-CF is not supported by AMS." -#~ msgstr "AMS nepalaiko Bambu PET-CF/PA6-CF." - -#~ msgid "" -#~ "An object is laid over the plate boundaries 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 "" -#~ "Objektas yra už spausdinimo plokštės ribų arba viršija aukščio limitą.\n" -#~ "Norėdami išspręsti problemą, perkelkite objektą visiškai ant plokštės arba nuo jos ir įsitikinkite, kad aukštis yra leidžiamame spausdinimo tūryje." - -#~ msgid "" -#~ "You can find it in \"Settings > Network > Connection code\"\n" -#~ "on the printer, as shown in the figure:" -#~ msgstr "" -#~ "Galite jį rasti spausdintuvo nustatymuose, skiltyje \"Tinklas\" > \n" -#~ "\"Prisijungimo kodas\", kaip parodyta paveikslėlyje:" - -#~ msgid "Browsing file in SD card is not supported in current firmware. Please update the printer firmware." -#~ msgstr "Failų naršymas SD kortelėje nepalaikomas naudojant dabartinę programinę įrangą (firmware). Atnaujinkite spausdintuvo programinę įrangą." - -#~ msgid "" -#~ "Please check if the SD card is inserted into the printer.\n" -#~ "If it still cannot be read, you can try formatting the SD card." -#~ msgstr "" -#~ "Patikrinkite, ar SD kortelė įdėta į spausdintuvą.\n" -#~ "Jei jos vis tiek nepavyksta nuskaityti, galite pabandyti suformatuoti SD kortelę." - -#~ msgid "Browsing file in SD card is not supported in LAN Only Mode." -#~ msgstr "Failų naršymas SD kortelėje nepalaikomas LAN Only režime." - -#~ msgid "Storage unavailable, insert SD card." -#~ msgstr "Saugykla nepasiekiama, įdėkite SD kortelę." - -#~ msgid "Cham" -#~ msgstr "Kam" - -#~ msgid "Still unload" -#~ msgstr "Vis dar išstumiama" - -#~ msgid "Still load" -#~ msgstr "Vis dar įtraukiama" - -#~ msgid "Can't start this without SD card." -#~ msgstr "Negalima šito pradėti be SD kortelės." - -#~ msgid "Update" -#~ msgstr "Atnaujinti" - -#~ msgid "Sensitivity of pausing is" -#~ msgstr "Pristabdymo jautrumas yra" - -#, c-format, boost-format -#~ msgid "%.1f" -#~ msgstr "%.1f" - -#~ msgid "No AMS filaments. Please select a printer in 'Device' page to load AMS info." -#~ msgstr "Nėra AMS gijų. Kad būtų galima įkelti AMS informaciją, pasirinkite spausdintuvą \"Įrenginių\" puslapyje." - -#~ msgid "Sync filaments with AMS will drop all current selected filament presets and colors. Do you want to continue?" -#~ msgstr "Sinchronizuojant gijas su AMS bus prarasti visi dabartiniai gijų parametrai ir spalvos. Ar norite tęsti?" - -#~ msgid "Already did a synchronization, do you want to sync only changes or resync all?" -#~ msgstr "Sinchronizavimas jau atliktas. Ar norite sinchronizuoti tik pakeitimus, ar iš naujo sinchronizuoti viską?" - -#~ msgid "Sync" -#~ msgstr "Sinchronizuoti" - -#~ msgid "Resync" -#~ msgstr "Viską" - -#~ msgid "There are some unknown filaments mapped to generic preset. Please update Orca Slicer or restart Orca Slicer to check if there is an update to system presets." -#~ msgstr "Yra keletas nežinomų gijų, priskirtų bendram išankstiniam nustatymui. Atnaujinkite Orca Slicer arba paleiskite Orca Slicer iš naujo, kad patikrintų, ar yra sistemos išankstinių nustatymų atnaujinimas." - -#~ msgid "" -#~ "Are you sure you want to store original SVGs with their local paths into the 3MF file?\n" -#~ "If you hit 'NO', all SVGs in the project will not be editable any more." -#~ msgstr "" -#~ "Ar tikrai norite saugoti originalius SVG failus su jų lokaliais keliais 3MF faile?\n" -#~ "Jei pasirinksite „NE“, visi projekto SVG failai daugiau nebus redaguojami." - -#~ msgid "Private protection" -#~ msgstr "Privatumo apsauga" - -#~ msgid "General Settings" -#~ msgstr "Bendri nustatymai" - -#~ msgid "Show \"Tip of the day\" notification after start" -#~ msgstr "Pradėjus rodyti pranešimą „Dienos patarimas“" - -#~ msgid "If enabled, useful hints are displayed at startup." -#~ msgstr "Jei įjungta, paleidžiant rodomi naudingi patarimai." - -#~ msgid "Flushing volumes: Auto-calculate every time the color changed." -#~ msgstr "Išmetimo apimtys: Automatinis skaičiavimas kaskart, kai pasikeičia spalva." - -#~ msgid "If enabled, auto-calculate every time the color changed." -#~ msgstr "Jei įjungta, automatinis skaičiavimas atliekamas kaskart, kai pasikeičia spalva." - -#~ msgid "Flushing volumes: Auto-calculate every time when the filament is changed." -#~ msgstr "Valymo erdvės: Automatiškai perskaičiuoti kiekvieną kartą pasikeitus gijai." - -#~ msgid "If enabled, auto-calculate every time when filament is changed" -#~ msgstr "Jei įjungtas, kiekvieną kartą pasikeitus gijai automatiškai perskaičiuoja" - -#~ msgid "Auto arrange plate after object cloning" -#~ msgstr "Automatinis plokštės išdėstymas po objekto klonavimo" - -#~ msgid "Network" -#~ msgstr "Tinklas" - -#~ msgid "User Sync" -#~ msgstr "Naudotojo sinchronizavimas" - -#~ msgid "System Sync" -#~ msgstr "Sistemos sinchronizavimas" - -#~ msgid "Associate URLs to OrcaSlicer" -#~ msgstr "Susieti URL su Orca Slicer" - -#~ msgid "every" -#~ msgstr "kiekvienas" - -#~ msgid "Downloads" -#~ msgstr "Atsisuntimai" - -#~ msgid "Dark Mode" -#~ msgstr "Tamsusis režimas" - -#~ msgid "Home page and daily tips" -#~ msgstr "Pagrindinis puslapis ir dienos patarimai" - -#~ msgid "Show home page on startup" -#~ msgstr "Startuojant rodyti pagrindinį puslapį" - -#~ msgid "Please choose the filament color" -#~ msgstr "Prašome pasirinkti gijos spalvą" - -#~ msgid "Send print job to" -#~ msgstr "Siųsti spausdinti į" - -#, c-format, boost-format -#~ msgid "Filament %s exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -#~ msgstr "Gija %s viršija gijų rūšių skaičių, lyginant su AMS lizdų skaičiumi. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." - -#~ msgid "Filament exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment." -#~ msgstr "Įdėta daugiau gijų rūšių, nei turite AMS lizdų. Atnaujinkite spausdintuvo programinę įrangą, kad galėtumėte priskirti lizdus AMS." - -#~ msgid "Filaments to AMS slots mappings have been established. You can click a filament above to change its mapping AMS slot" -#~ msgstr "Gijų priskyrimas AMS lizdams atliktas. Norėdami pakeisti AMS lizdą, spustelėkite giją viršuje" - -#~ msgid "Please click each filament above to specify its mapping AMS slot before sending the print job" -#~ msgstr "Prieš siųsdami spausdinimo užduotį, spustelėkite kiekvieną giją viršuje, kad nurodytumėte jos priskyrimą AMS lizdui" - -#~ msgid "The printer firmware only supports sequential mapping of filament => AMS slot." -#~ msgstr "Spausdintuvo programinė įranga palaiko tik nuoseklų gijų ir AMS lizdų susiejimą." - -#~ msgid "An SD card needs to be inserted before printing." -#~ msgstr "Prieš spausdinant reikia įdėti SD kortelę." - -#~ msgid "An SD card needs to be inserted to record timelapse." -#~ msgstr "Norint įrašinėti pakadrinius video, reikia įdėti SD kortelę." - -#, c-format, boost-format -#~ msgid "nozzle in preset: %.1f %s" -#~ msgstr "purkštukas nustatytas: %.1f %s" - -#, c-format, boost-format -#~ msgid "nozzle memorized: %.1f %s" -#~ msgstr "įsimintas purkštukas: %.1f %s" - -#~ msgid "Your nozzle diameter in sliced file is not consistent with memorized nozzle. If you changed your nozzle lately, please go to Device > Printer Parts to change settings." -#~ msgstr "Purkštuko skersmuo susluoksniuotame faile neatitinka išsaugoto purkštuko skersmens. Jei pastaruoju metu pakeitėte purkštuką, eikite į Įrenginys > Spausdintuvo dalys ir pakeiskite nustatymus." - -#, c-format, boost-format -#~ msgid "Printing high temperature material (%s material) with %s may cause nozzle damage" -#~ msgstr "Spausdinant aukštos temperatūros medžiagą (%s medžiaga) su %s, gali būti sugadintas purkštukas" - -#~ msgid "Connecting to the printer. Unable to cancel during the connection process." -#~ msgstr "Jungiamasi prie spausdintuvo. Negalima atšaukti jungimosi metu." - -#~ msgid "Caution to use! Flow calibration on Textured PEI Plate may fail due to the scattered surface." -#~ msgstr "Dėmesio! Srauto kalibravimas ant tekstūruotos PEI gali nepavykti dėl nelygaus paviršiaus." - -#~ msgid "Automatic flow calibration using Micro Lidar" -#~ msgstr "Automatinis srauto kalibravimas naudojant mikrolidarą" - -#~ msgid "Send to Printer SD card" -#~ msgstr "Siųsti į spausdintuvo SD kortelę" - -#~ msgid "An SD card needs to be inserted before send to printer SD card." -#~ msgstr "Prieš siunčiant į spausdintuvo SD kortelę, reikia įdėti SD kortelę." - -#~ msgid "The printer does not support sending to printer SD card." -#~ msgstr "Spausdintuvas nepalaiko siuntimo į spausdintuvo SD kortelę." - -#, c-format, boost-format -#~ msgid "The color count should be in range [%d, %d]." -#~ msgstr "Spalvų skaičius turėtų būti tarp [%d, %d]." - -#~ msgid "Current filament colors:" -#~ msgstr "Dabartinės gijų spalvos:" - -#~ msgid "Quick set:" -#~ msgstr "Greitas nustatymas:" - -#~ msgid "Add consumable extruder after existing extruders." -#~ msgstr "Po esamų ekstruderių pridėti eksploatacinių medžiagų ekstruderį." - -#~ msgid "Cluster colors" -#~ msgstr "Klasterio spalvos" - -#~ msgid "Map Filament" -#~ msgstr "Ženklinti giją" - -#~ msgid "" -#~ "Note: The color has been selected, you can choose OK \n" -#~ "to continue or manually adjust it." -#~ msgstr "" -#~ "Pastaba: spalva buvo pasirinkta, galite pasirinkti Gerai \n" -#~ "tęsti arba ją koreguoti rankiniu būdu." - -#~ msgid "" -#~ "Warning: The count of newly added and \n" -#~ "current extruders exceeds 16." -#~ msgstr "" -#~ "Dėmesio: Naujai pridėtų ir \n" -#~ "esamų ekstruderių skaičius viršija 16." - -#~ msgid "Auto-Calc" -#~ msgstr "Automatinis skaičiavimas" - -#~ msgid "Orca would re-calculate your flushing volumes every time the filaments color changed. You could disable the auto-calculate in Orca Slicer > Preferences" -#~ msgstr "Orca iš naujo apskaičiuos išspaudimo kiekį kaskart, kai pasikeis siūlų spalva. Automatinį skaičiavimą galite išjungti Orca Slicer > Nustatymai" - -#~ msgid "unloaded" -#~ msgstr "išimtas" - -#~ msgid "loaded" -#~ msgstr "įkeltas" - -#~ msgid "Filament #" -#~ msgstr "Gijos #" - -#~ msgid "From" -#~ msgstr "Nuo" - -#~ msgid "To" -#~ msgstr "Į" - -#~ msgid "Resume Printing (defects acceptable)" -#~ msgstr "Tęsti spausdinimą (priimtini defektai)" - -#~ msgid "Resume Printing (problem solved)" -#~ msgstr "Tęsti spausdinimą (problema išspręsta)" - -#~ msgid "Step 1. Please confirm Orca Slicer and your printer are in the same LAN." -#~ msgstr "1 žingsnis. Patikrinkite, ar „Orca Slicer“ ir spausdintuvas yra tame pačiame tinkle." - -#~ msgid "Step 2. If the IP and Access Code below are different from the actual values on your printer, please correct them." -#~ msgstr "2 žingsnis. Jei toliau nurodyti IP ir prieigos kodai skiriasi nuo tikrųjų spausdintuvo verčių, pataisykite juos." - -#~ msgid "Step 3. Please obtain the device SN from the printer side; it is usually found in the device information on the printer screen." -#~ msgstr "3 veiksmas. Iš spausdintuvo pusės gaukite įrenginio SN; paprastai jį rasite spausdintuvo ekrane esančioje įrenginio informacijoje." - -#~ msgid "Laser 10 W" -#~ msgstr "Lazeris 10 W" - -#~ msgid "Laser 40 W" -#~ msgstr "Lazeris 40 W" - -#~ msgid " is too close to others, there may be collisions when printing." -#~ msgstr " yra per arti kitų, spausdinant gali įvykti susidūrimų." - -#~ msgid "Cannot print multiple filaments which have large difference of temperature together. Otherwise, the extruder and nozzle may be blocked or damaged during printing." -#~ msgstr "Negalima kartu spausdinti kelių gijų, kurių temperatūrų skirtumai yra dideli. Priešingu atveju spausdinant gali užsikimšti purkštukas arba sugesti ekstruderis." - -#~ msgid "Ironing angle" -#~ msgstr "Lyginimo kampas" - -#~ msgid "The angle ironing is done at. A negative number disables this function and uses the default method." -#~ msgstr "Atliekamas kampinis lyginimas. Neigiamas skaičius išjungia šią funkciją ir naudojamas numatytasis metodas." - -#~ msgid "Remove small overhangs" -#~ msgstr "Pašalinti nedideles iškyšas" - -#~ msgid "Remove small overhangs that possibly need no supports." -#~ msgstr "Pašalinti nedideles iškyšas, kurioms galbūt nereikia atramų." - -#~ msgid "Width of the brim." -#~ msgstr "Krašto plotis." - -#~ msgid "Only one of the results with the same name will be saved. Are you sure you want to overwrite the other results?" -#~ msgstr "Bus išsaugotas tik vienas iš to paties pavadinimo rezultatų. Ar tikrai norite pakeisti kitus rezultatus?" - -#~ msgid "External Spool" -#~ msgstr "Išorinė ritė" - -#~ msgid "" -#~ "Please input valid values:\n" -#~ "Start temp: <= 350\n" -#~ "End temp: >= 170\n" -#~ "Start temp > End temp + 5" -#~ msgstr "" -#~ "Įveskite tinkamas reikšmes:\n" -#~ "Pradžios temp: <= 350\n" -#~ "Galutinė temp: >= 170\n" -#~ "Pradžios temp > Galutinė temp + 5)" - -#~ msgid "" -#~ "Recommended: Set Damp to 0.\n" -#~ "This will use the printer's default or the last saved value." -#~ msgstr "" -#~ "Rekomenduojama: nustatykite „“Slopinimas“ į 0.\n" -#~ "Tai leis naudoti spausdintuvo numatytąją arba paskutinę išsaugotą vertę." - -#~ msgid "The custom printer or model is not entered, please enter it." -#~ msgstr "Pasirinktinis spausdintuvas arba modelis neįvestas, įveskite jį." - -#~ msgid "BigTraffic" -#~ msgstr "Didelis srautas" - -#, c-format, boost-format -#~ msgid "nozzle in preset: %s %s" -#~ msgstr "purkštukas parametre: %s %s" - -#~ msgid "Your nozzle diameter in preset is not consistent with memorized nozzle diameter. Did you change your nozzle lately?" -#~ msgstr "Jūsų purkštuko skersmuo nustatytame režime neatitinka įsiminto purkštuko skersmens. Ar neseniai keitėte purkštuką?" - -#, c-format, boost-format -#~ msgid "*Printing %s material with %s may cause nozzle damage" -#~ msgstr "*Spausdinant %s medžiagą su %s gali būti pažeistas purkštukas" - -#~ msgid "Improve shell precision by adjusting outer wall spacing. This also improves layer consistency." -#~ msgstr "Pagerinti korpuso tikslumą reguliuojant atstumus tarp išorinių sienelių. Tai taip pat pagerina sluoksnių nuoseklumą." - -#~ msgid "Enable filament ramming." -#~ msgstr "Įjungti gijų įspaudimą" - -#~ msgid "Alt + Mouse wheel" -#~ msgstr "Alt + pelės ratukas" - -#~ msgid "Ctrl + Mouse wheel" -#~ msgstr "Ctrl + pelės ratukas" - -#~ msgid "Shift + Left mouse button" -#~ msgstr "Shift + kairys pelės mygtukas" - -#~ msgid "Alt + Shift + Enter" -#~ msgstr "Alt + Shift + Enter" - -#~ msgid "Shift + Mouse move up or down" -#~ msgstr "Shift + pelės judėjimas aukštyn arba žemyn" - -#~ msgid "Left mouse button:" -#~ msgstr "Kairysis pelės mygtukas:" - -#~ msgid "Right mouse button:" -#~ msgstr "Dešinysis pelės mygtukas:" - -#~ msgid "Shift + Left mouse button:" -#~ msgstr "Shift + kairysis pelės mygtukas:" - -#~ msgid "Shift + Right mouse button:" -#~ msgstr "Shift + dešinysis pelės mygtukas:" - -#~ msgid "Recent projects" -#~ msgstr "Naujausi projektai" - -#~ msgid "Maximum recent projects" -#~ msgstr "Daugiausia buvusių projektų" - -#~ msgid "Maximum count of recent projects" -#~ msgstr "Didžiausias skaičius buvusių projektų" - -#~ msgid "⌘+Shift+G" -#~ msgstr "⌘+Shift+G" - -#~ msgid "Ctrl+Shift+G" -#~ msgstr "Ctrl+Shift+G" - -#~ msgid "Shift+A" -#~ msgstr "Shift+A" - -#~ msgid "Shift+Tab" -#~ msgstr "Shift+Tab" - -#~ msgid "⌘+Any arrow" -#~ msgstr "⌘+Bet kokia rodyklė" - -#~ msgid "⌥+Left mouse button" -#~ msgstr "⌥+ kairysis pelės mygtukas" - -#~ msgid "⌘+Left mouse button" -#~ msgstr "⌘+ kairysis pelės mygtukas" - -#~ msgid "Ctrl+Any arrow" -#~ msgstr "Ctrl + bet kokia rodyklė" - -#~ msgid "Alt+Left mouse button" -#~ msgstr "Alt + kairysis pelės mygtukas" - -#~ msgid "Ctrl+Left mouse button" -#~ msgstr "Ctrl + kairysis pelės mygtukas" - -#~ msgid "Shift+Left mouse button" -#~ msgstr "Shift + kairysis pelės mygtukas" - -#~ msgid "Shift+Any arrow" -#~ msgstr "Shift + bet kuri rodyklė" - -#~ msgid "⌘+Mouse wheel" -#~ msgstr "⌘+Pelės ratukas" - -#~ msgid "⌥+Mouse wheel" -#~ msgstr "⌥+Pelės ratukas" - -#~ msgid "Ctrl+Mouse wheel" -#~ msgstr "Ctrl + pelės ratukas" - -#~ msgid "Alt+Mouse wheel" -#~ msgstr "Alt + pelės ratukas" - -#~ msgid "Shift+Mouse wheel" -#~ msgstr "Shift + pelės ratukas" - -#~ msgid "Set Position" -#~ msgstr "Nustatyti padėtį" - -#, boost-format -#~ msgid "%1%" -#~ msgstr "%1%" - -#~ msgid "Warning: please select two different mesh." -#~ msgstr "Įspėjimas: pasirinkite dvi skirtingas figūras." - -#~ msgid "Right click the icon to fix model object" -#~ msgstr "Paspauskite dešnįjį pelės mygtuką modelio objekto taisymui" - -#~ msgid "The target object contains only one part and cannot be split." -#~ msgstr "Tikslinį objektą sudaro tik viena dalis, todėl jo skaidyti negalima." - -#~ msgid "?" -#~ msgstr "?" - -#~ msgid "/" -#~ 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 filament spools." -#~ msgstr "Paleidimo metu AMS automatiškai nuskaitys įdėtos gijos informaciją. Tai truks apie 1 minutę. Skaitymo proceso metu AMS sukios gijų rites." - -#~ 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 above 45℃." -#~ msgstr "Į ekstruderį įkelta žemai temperatūrai skirta gija (PLA/PETG/TPU). Norint išvengti ekstruderio užsikimšimo, kameros temperatūros negalima nustatyti aukštesnės nei 45 ℃." - -#~ msgid "Color Scheme" -#~ msgstr "Spalvų schema" - -#~ msgid "Percent" -#~ msgstr "Procentai" - -#~ msgid "720p" -#~ msgstr "720p" - -#~ msgid "1080p" -#~ msgstr "1080p" - -#~ msgid "More..." -#~ msgstr "Daugiau..." - -#~ msgid "More calibrations" -#~ msgstr "Daugiau kalibravimų" - -#~ msgid "0" -#~ msgstr "0" - -#~ msgid "SD Card" -#~ msgstr "SD kortelė" - -#~ msgid "100%" -#~ msgstr "100%" - -#~ msgid "No SD Card" -#~ msgstr "Nėra SD kortelės" - -#~ msgid "SD Card Abnormal" -#~ msgstr "SD kortelė netinkama" - -#~ msgid "Cannot read filament info: the filament is loaded to the tool head, please unload the filament and try again." -#~ msgstr "Neįmanoma nuskaityti gijos informacijos: gija įtraukta į galvutę. Prašome išstumti giją ir pabandyti dar kartą." - -#~ msgid "InFo" -#~ msgstr "Informacija" - -#~ msgid "Your model needs support! Please make support material enable." -#~ msgstr "Jūsų modeliui reikia atramų! Prašome įjungti atramų medžiagą." - -#, c-format, boost-format -#~ msgid "Ejecting of device %s(%s) has failed." -#~ msgstr "Nepavyko išstumti įrenginio %s(%s)." - -#~ msgid "This option can be changed later in preferences, under 'Load Behaviour'." -#~ msgstr "Šią parinktį galima pakeisti vėliau nustatymuose, skiltyje „Įkelti elgseną“." - -#~ msgid "Invalid number" -#~ msgstr "Netinkamas skaičius" - -#~ msgid "Switch cloud environment, please login again!" -#~ msgstr "Perjungiama debesies aplinka, prašome prisijungti iš naujo!" - -#, c-format, boost-format -#~ msgid "nozzle memorized: %.2f %s" -#~ msgstr "purkštukas įsimintas: %.2f %s" - -#~ 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 "Pagrindo temperatūra, kai sumontuota šalta plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant šaltos plokštės" - -#~ 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.High Temp Plate" -#~ msgstr "Pagrindo temperatūra, kai sumontuota lygi PEI plokštė / aukštos temperatūros plokštė. Reikšmė 0 reiškia, kad gija nepalaiko spausdinimo ant lygios PEI plokštės / aukštos temperatūros plokštės" - -#~ msgid "Ramming settings" -#~ msgstr "Spausdinimo galvutės stūmimo nustatymai" - -#~ msgid "Profile dependencies" -#~ msgstr "Profilio priklausomybės" - -#~ msgid "the Configuration package is incompatible with the current APP." -#~ msgstr "Konfigūracijos paketas nesuderinamas su dabartine programos versija." - -#~ msgid "Total ramming time" -#~ msgstr "Bendras įspaudimo laikas" - -#~ msgid "Total rammed volume" -#~ msgstr "Bendras įspaudimo tūris" - -#~ msgid "Ramming line width" -#~ msgstr "Įspaudimo linijos plotis" - -#~ msgid "Ramming line spacing" -#~ msgstr "Įspaudimo tarpai tarp linijų" - -#~ msgid "Shift+R" -#~ msgstr "Shift+R" - -#~ msgid "resume" -#~ msgstr "tęsti" - -#~ msgid "Classic mode" -#~ msgstr "Klasikinis režimas" - -#~ msgid "Enable this option to use classic mode." -#~ msgstr "Įjunkite šią parinktį, jei norite naudoti klasikinį režimą" - -#~ msgid "Compatible machine" -#~ msgstr "Suderinamas įrenginys" - -#~ msgid "Compatible machine condition" -#~ msgstr "Suderinamo įrenginio būklė" - -#~ msgid "Compatible process profiles condition" -#~ msgstr "Suderinamų procesų profilių būklė" - -#~ msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object" -#~ msgstr "G-kodas įterpiamas tarp objektų. Šis parametras bus taikomas tik tada, kai spausdinsite modelius objektas po objekto" - -#~ msgid "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in G-code proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow" -#~ msgstr "Medžiagos tūris gali pasikeisti perėjus iš išlydytos į kristalinę būseną. Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą G kode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Jei yra nedidelis perteklius arba nepakankamas srautas, šią reikšmę galite sureguliuoti, kad gautumėte gražų plokščią paviršių" - -#~ msgid "" -#~ "The material may have volumetric change after switching between molten state and crystalline state. This setting changes all extrusion flow of this filament in G-code proportionally. Recommended value range is between 0.95 and 1.05. Maybe you can tune this value to get nice flat surface when there has slight overflow or underflow.\n" -#~ "\n" -#~ "The final object flow ratio is this value multiplied by the filament flow ratio." -#~ msgstr "" -#~ "Perėjus iš išlydytos būsenos į kristalinę, medžiagos tūris gali pasikeisti. Šis nustatymas proporcingai pakeičia visą šios gijos ekstruzijos srautą gkode. Rekomenduojamas verčių intervalas yra nuo 0,95 iki 1,05. Galbūt galite sureguliuoti šią vertę, kad gautumėte gražų plokščią paviršių, kai yra nedidelis perteklius arba nepakankamas perteklius.\n" -#~ "\n" -#~ "Galutinis objekto srauto santykis yra ši vertė padauginta iš gijos srauto santykio." - -#~ msgid "Default filament color" -#~ msgstr "Numatytoji gijos spalva" - -#~ msgid "Filament diameter is used to calculate extrusion in G-code, so it's important and should be accurate" -#~ msgstr "Gijos skersmuo naudojamas ekstruzijos kintamiesiems G-kodo apskaičiuoti, todėl svarbu, kad jis būtų tikslus" - -#~ msgid "Rotate solid infill direction" -#~ msgstr "Pasukti vientiso užpildo kryptį" - -#~ msgid "Rotate the solid infill direction by 90° for each layer." -#~ msgstr "Pasukti vientiso užpildo kryptį 90° kampu kiekvienam sluoksniui." - -#~ msgid "Enable this to add line number(Nx) at the beginning of each G-code line" -#~ msgstr "Įjunkite šią funkciją, kad kiekvienos G-kodo eilutės pradžioje būtų pridėtas eilutės numeris (Nx)" - -#~ msgid "What kind of G-code the printer is compatible with" -#~ msgstr "Su kokiu gkodu suderinamas spausdintuvas" - -#~ msgid "Enable this option to add EXCLUDE OBJECT command in G-code" -#~ msgstr "Įjunkite šią parinktį, jei norite į G-kodą įtraukti komandą EXCLUDE OBJECT" - -#~ msgid "This G-code part is inserted at every layer change after lift z" -#~ msgstr "Šis G-kodas įterpiamas kiekvieną kartą keičiant sluoksnį po z pakėlimo" - -#~ msgid "This G-code will be used as a code for the pause print. User can insert pause G-code in G-code viewer" -#~ msgstr "Šis G-kodas bus naudojamas kaip pauzės spausdinimo kodas. Vartotojai gali įterpti pauzės G-kodą G-kodo peržiūros programoje" - -#~ 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 factors, one per line, in the following format: \"1.234,5.678\"" -#~ msgstr "Srauto kompensavimo modelis, naudojamas srautui sureguliuoti mažuose užpildymo plotuose. Modelis išreiškiamas kaip kableliais atskirta ekstruzijos ilgio ir srauto korekcijos koeficientų verčių pora, po vieną kiekvienoje eilutėje, tokiu formatu: \"1.234,5.678\"" - -#~ msgid "The highest printable layer height for the extruder. Used to limit the maximum layer height when adaptive layer height is enabled." -#~ msgstr "Didžiausias ekstruderio spausdinamo sluoksnio aukštis: jis naudojamas didžiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis sluoksnio aukštis" - -#~ 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 "" -#~ "Esant mažesnei vertei, išspaudimo greičio pokyčiai būna sklandesni. Tačiau dėl to gaunamas gerokai didesnis gkodo failas ir spausdintuvui tenka apdoroti daugiau instrukcijų.\n" -#~ "\n" -#~ "Numatytoji reikšmė 3 tinka daugeliu atvejų. Jei spausdintuvas stringa, padidinkite šią vertę, kad sumažintumėte atliekamų koregavimų skaičių.\n" -#~ "\n" -#~ "Leidžiamos reikšmės: 0.5-5" - -#~ msgid "The lowest printable layer height for the extruder. Used to limit the minimum layer height when adaptive layer height is enabled." -#~ msgstr "Mažiausias ekstruderio spausdinamo sluoksnio aukštis. Jis naudojamas mažiausiam sluoksnio aukščiui apriboti, kai įjungtas prisitaikantis sluoksnio aukštis" - -#~ msgid "G-code path is generated after simplifying the contour of model to avoid too much points and G-code lines in G-code file. Smaller value means higher resolution and more time to slice" -#~ msgstr "G-kodo kelias generuojamas supaprastinus modelio kontūrą, kad gkodo faile nebūtų per daug taškų ir gkodo linijų. Mažesnė reikšmė reiškia didesnę skiriamąją gebą ir ilgesnį sluoksniavimo laiką" - -#~ msgid "Retract on top layer" -#~ msgstr "Įtraukti viršutiniame sluoksnyje" - -#~ msgid "Force a retraction on top layer. Disabling could prevent clog on very slow patterns with small movements, like Hilbert curve." -#~ msgstr "Naudoti priverstinį įtraukimą viršutiname sluoksnyje. Išjungimas gali padėti išvengti užsikimšimo labai lėtuose modeliuose su mažais judesiais, pvz., Hilberto kreivėje." - -#~ msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction" -#~ msgstr "Tai gijos kiekis, kuris yra įtraukiamas į ekstruderį, kad būtų išvengta išsiliejimo per ilgą judėjimo atstumą. Nustatykite 0, kad įtraukimas būtų išjungtas" - -#~ 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 šuolis pradės veikti tik tada, kai Z bus didesnis už šią vertę ir mažesnis už parametrą: \"Z šuolio viršutinė riba\"" - -#~ 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 "Jei ši reikšmė yra teigiama, Z apyvarta pradės veikti tik tada, kai Z bus didesnė už parametrą: \"Z šuolio apatinė riba\" ir yra mažesnė už šią reikšmę" - -#~ msgid "Traveling angle for Slope and Spiral Z-hop type. Setting it to 90° results in Normal Lift" -#~ msgstr "Šlaito ir spiralinio Z šuolio tipo judėjimo kampas. Nustačius 90°, naudojamas normalus pakėlimas" - -#~ msgid "Speed of retractions." -#~ msgstr "Įtraukimo greitis" - -#~ msgid "Speed for reloading filament into extruder. Zero means same speed of retraction." -#~ msgstr "Gijos įkėlimo į ekstruderį greitis po įtraukimo; nustačius 0, greitis bus toks pat kaip ir įtraukimo" - -#~ msgid "Disable generating of the M73: Set remaining print time in the final G-code" -#~ msgstr "Išjungti M73 generavimą: Nustatyti likusį spausdinimo laiką galutiniame gkode" - -#~ msgid "Single loop draft shield" -#~ msgstr "Vieno sluoksnio apsauginis kokonas" - -#~ msgid "Limits the draft shield loops to one wall after the first layer. This is useful, on occasion, to conserve filament but may cause the draft shield to warp / crack." -#~ msgstr "Apriboja apsauginio ekrano kontūrą viena siena po pirmojo sluoksnio. Kartais tai naudinga siekiant taupyti giją, tačiau dėl to apsauginis ekranas gali deformuotis / įtrūkti." - -#~ msgid "The printing speed in exported G-code will be slowed down, when the estimated layer time is shorter than this value, to get better cooling for these layers" -#~ msgstr "Spausdinimo greitis eksportuotame G-kode bus sulėtintas, kai numatomas sluoksnio laikas bus trumpesnis už šią vertę, tam, kad šie sluoksniai būtų geriau aušinami" - -#~ msgid "Spacing of interface lines. Zero means solid interface." -#~ msgstr "Atstumas tarp sąsajos linijų. 0 reiškia vientisą sąsają" - -#~ msgid "This G-code is inserted when change filament, including T command to trigger tool change" -#~ msgstr "Šis gkodas įterpiamas, kai keičiama gija, įskaitant komandą T įrankiui pakeisti" - -#~ msgid "This G-code is inserted when the extrusion role is changed" -#~ msgstr "Šis gkodas įterpiamas, kai pakeičiamas išspaudimo vaidmuo" - -#~ 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 "Šis objektas bus naudojamas purkštukui išvalyti po gijos pakeitimo, kad būtų sutaupyta gija ir sutrumpintas spausdinimo laikas. Dėl to objektų spalvos bus sumaišytos. Jis neveiks, jei nebus įjungtas pirminis bokštas." - -# TODO: Review, changed by lang refactor. PR 14254 -#~ msgid "Minimum thickness of thin features. Model features that are thinner than this value will not be printed, while features thicker than this value will be widened to the minimum wall width. It's expressed as a percentage over nozzle diameter." -#~ msgstr "Mažiausias plonų elementų storis. Modelio elementai, kurie yra plonesni už šią vertę, nebus spausdinami, o elementai, kurie yra storesni už minimalų elemento dydį, bus praplatinti iki minimalaus sienelės pločio. Jis išreiškiamas procentais nuo purkštuko skersmens" - -#~ msgid "Load uptodate process/machine settings when using uptodate." -#~ msgstr "įkelti \"naujausio\" proceso / mašinos nustatymus naudojant \"naujausia\"" - -#~ msgid "Load uptodate filament settings when using uptodate." -#~ msgstr "įkelti naujausius gijų nustatymus, kai naudojate \"naujausius“" - -#~ msgid "Load custom G-code from json" -#~ msgstr "Įkelti pasirinktinį G-kodą iš json" - -#~ msgid "Load filament IDs for each object" -#~ msgstr "Įkelti kiekvieno objekto gijų ID" - -#~ 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 "" -#~ "Dabar pridėjome automatinį kalibravimą skirtingoms gijoms, kuris yra visiškai automatizuotas, o rezultatas bus išsaugotas spausdintuve ir naudojamas ateityje. Kalibravimą reikia atlikti tik šiais ribotais atvejais:\n" -#~ "1. Jei įdedate naują skirtingų gamintojų ir (arba) modelių giją arba gija yra drėgna;\n" -#~ "2. Jei antgalis nusidėvi arba pakeičiamas nauju;\n" -#~ "3. Jei gijos nustatymuose keičiamas didžiausias tūrinis greitis arba spausdinimo temperatūra." - -#~ msgid "step: " -#~ msgstr "žingsnis " - -#~ msgid "mm/mm" -#~ msgstr "mm/mm" - -#~ msgid "Load STL" -#~ msgstr "Įkelti STL" - -#~ msgid "Load svg" -#~ msgstr "Įkelti scg" - -#~ msgid "Back Page 1" -#~ msgstr "Atgal Puslapis 1" - -#~ msgid "Delete Filament" -#~ msgstr "Ištrinti giją" - -#~ msgid "Refresh Printers" -#~ msgstr "Atnaujinti spausdintuvus" - -#~ 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 shorter print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jo sluoksnio aukštis yra mažesnis, todėl beveik nematomos sluoksnio linijos, aukštesnė spausdinimo kokybė ir trumpesnis spausdinimo laikas." - -#~ 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 printing quality, but much longer print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jame yra mažesnės sluoksnio linijos, mažesnis greitis ir pagreitis, o retas užpildymo raštas yra \"Gyroid\". Taigi, dėl to beveik nematomos sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnis spausdinimo laikas." - -#~ 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 shorter print time." -#~ msgstr "Palyginti su numatytuoju 0,2 mm purkštuko profiliu, jis turi mažesnį sluoksnio aukštį, todėl yra minimalios sluoksnio linijos ir aukštesnė spausdinimo kokybė, tačiau trumpesnis spausdinimo laikas." - -#~ msgid "It has a normal layer height. This results in average layer lines and printing quality. It is suitable for most general printing cases." -#~ msgstr "Jis turi įprastą sluoksnio aukštį ir lemia įprastas sluoksnio linijas bei spausdinimo kokybę. Jis tinka daugeliui bendrųjų spausdinimo atvejų." - -#~ 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 printing 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 gaunamos beveik nereikšmingos sluoksnių linijos ir daug geresnė spausdinimo kokybė, tačiau daug ilgesnė spausdinimo trukmė." - -#~ msgid "It has a very big layer height. This results in very apparent layer lines, low printing quality and general printing time." -#~ msgstr "Jis turi labai didelį sluoksnio aukštį, todėl labai matomos sluoksnio linijos, prasta spausdinimo kokybė ir įprasta spausdinimo trukmė." - -#~ 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 "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais sutrumpėja spausdinimo laikas." - -#~ 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 printing quality, but much shorter printing time in some cases." -#~ msgstr "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra daug didesnis, todėl sluoksnio linijos yra labai ryškios, o spausdinimo kokybė daug prastesnė, tačiau kai kuriais spausdinimo atvejais spausdinimas trunka daug trumpiau." - -#~ 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 "Palyginti su numatytuoju 0,8 mm antgalio profiliu, jo sluoksnio aukštis yra mažesnis, todėl gaunama mažiau, bet vis tiek matomų sluoksnio linijų ir šiek tiek geresnė spausdinimo kokybė, tačiau kai kuriais spausdinimo atvejais ilgesnis spausdinimo laikas." - -#~ msgid "Connection to Flashforge is working correctly." -#~ msgstr "Ryšys su \"Flashforge\" veikia tinkamai." - -#~ msgid "Could not connect to Flashforge" -#~ msgstr "Nepavyko prisijungti prie \"Flashforge" - -#~ msgid "Set the brim type to \"painted\"" -#~ msgstr "Nustatykite krašto tipą „pieštas“" - -#~ 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 "" -#~ "Kaip naudoti sparčiuosius klavišus\n" -#~ "Ar žinojote, kad \"Orca Slicer\" siūlo daugybę klaviatūros sparčiųjų klavišų ir 3D scenos operacijų." - -#~ msgid "" -#~ "Auto-Arrange\n" -#~ "Did you know that you can auto-arrange all objects in your project?" -#~ msgstr "" -#~ "Automatinis išdėstymas\n" -#~ "Ar žinojote, kad galite automatiškai išdėstyti visus projekto objektus?" - -#~ msgid "" -#~ "Auto-Orient\n" -#~ "Did you know that you can rotate objects to an optimal orientation for printing by a simple click?" -#~ msgstr "" -#~ "Automatinis orientavimas\n" -#~ "Ar žinojote, kad objektus galima pasukti į optimalią spausdinimo orientaciją vienu spustelėjimu?" - -#~ msgid "" -#~ "Set parameters for multiple objects\n" -#~ "Did you know that you can set slicing parameters for all selected objects at one time?" -#~ msgstr "" -#~ "Kelių objektų parametrų nustatymas\n" -#~ "Ar žinojote, kad sluoksniavimo parametrus vienu metu galite nustatyti visiems pasirinktiems objektams?" +#~ "Šilko (Silk) gijos spausdinimas\n" +#~ "Ar žinojote, kad norint sėkmingai atspausdinti šilko giją, reikalingi specialūs nustatymai? Siekiant geriausių rezultatų, visada rekomenduojama aukštesnė temperatūra ir mažesnis greitis." #~ msgid "" #~ "Flush into support/objects/infill\n" -#~ "Did you know that you can save the wasted filament by flushing them into support/objects/infill during filament change?" +#~ "Did you know that you can reduce wasted filament by flushing it into support/objects/infill during filament change?" #~ msgstr "" -#~ "Išleisti į atramas/objektus/užpildymą\n" -#~ "Ar žinojote, kad keičiant gijas galima sutaupyti išeikvotų gijų, jas nuleidžiant į atramas/objektus/užpildymą?" - -#~ msgid "ShiftLeft mouse button" -#~ msgstr "Shift + kairys pelės mygtukas" - -#~ msgid "Unselect" -#~ msgstr "Išjungti pasirinkimą" - -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Mastelis" - -#, c-format, boost-format -#~ msgid "Connect failed [%d]!" -#~ msgstr "Prisijungti nepavyko [%d]!" - -#~ msgid "Initialize failed (Device connection not ready)!" -#~ msgstr "Inicijavimas nepavyko (Įrenginio ryšys neparuoštas)!" - -#~ msgid "Initialize failed (Storage unavailable, insert SD card.)!" -#~ msgstr "Inicijavimas nepavyko (Saugykla neprieinama, įdėkite SD kortelę!)" - -#, c-format, boost-format -#~ msgid "Initialize failed (%s)!" -#~ msgstr "Inicijavimas nepavyko (%s)!" +#~ "Pravalymas į atramą / objektus / užpildą\n" +#~ "Ar žinojote, kad keisdami giją galite sumažinti jos švaistymą, nukreipdami pravalymą (purging) į atramas, objektus arba užpildą?" #~ msgid "" -#~ "We have added an experimental style \"Tree Slim\" that features smaller support volume but weaker strength.\n" -#~ "We recommend using it with: 0 interface layers, 0 top distance, 2 walls." +#~ "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 "" -#~ "Pridėjome eksperimentinį atraminės struktūros stilių pavadinimu \"Tree Slim\". Šis stilius pasižymi mažesniu atraminio taškelio tūriu, tačiau turi mažesnį tvirtumą.\n" -#~ "Rekomenduojame jį naudoti su šiais parametrais: 0 sąsajos sluoksnių, 0 viršutinio atstumo, 2 sienelės." - -#~ msgid "For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following settings: at least 2 interface layers, at least 0.1mm top z distance or using support materials on interface." -#~ msgstr "Rekomenduojami nustatymai \"Tree Strong\" ir \"Tree Hybrid\" atraminėms struktūroms: Mažiausiai 2 sąsajos sluoksniai, mažiausiai 0,1 mm viršutinis z atstumas arba naudojamos atraminės medžiagos sąsajoje." - -#~ msgid "Lift Z Enforcement" -#~ msgstr "Priverstinis Z pakėlimas" - -#~ msgid "LAN Connection Failed (Sending print file)" -#~ msgstr "LAN ryšys nepavyko (spausdinimo failo siuntimas)" - -#~ msgid "Step 3: Ping the IP address to check for packet loss and latency." -#~ msgstr "3 veiksmas: Ping IP adresą, kad patikrintumėte paketų praradimą ir vėlavimą." - -#~ msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling" -#~ msgstr "Įjunkite šią parinktį, kad optimizuotumėte dalies aušinimo ventiliatoriaus greitį iškyšai ir tilteliui ir užtikrintumėte geresnį aušinimą" - -#~ msgid "Fan speed for overhang" -#~ msgstr "Ventiliatoriaus greitis dėl iškyšos" - -#~ msgid "Force part cooling fan to be this speed when printing bridge or overhang wall which has large overhang degree. Forcing cooling for overhang and bridge can get better quality for these part" -#~ msgstr "Spausdindami tiltus arba iškyšas, kurių iškyšos laipsnis didelis, priverstinai nustatykite tokį aušinimo ventiliatoriaus greitį. Priverstinai aušinant iškyšas ir tiltus galima užtikrinti geresnę šių dalių kokybę" - -#~ msgid "Cooling overhang threshold" -#~ msgstr "Iškyšos aušinimo riba" - -#, c-format -#~ msgid "Force cooling fan to be specific speed when overhang degree of printed part exceeds this value. Expressed as percentage which indicates how much width of the line without support from lower layer. 0% means forcing cooling for all outer wall no matter how much overhang degree" -#~ msgstr "Priversti aušinimo ventiliatorių veikti tam tikru greičiu, kai atspausdintos dalies iškyšos laipsnis viršija šią vertę. Išreiškiama procentais, kurie rodo, kokio pločio linija be apatinio sluoksnio atramos. 0% reiškia, kad aušinti priverčiama visą išorinę sienelę, nesvarbu, koks yra iškyšos laipsnis." - -#~ msgid "Density of external bridges. 100% means solid bridge. Default is 100%." -#~ msgstr "Išorinių tiltų tankis. 100 % reiškia vientisą tiltą. Numatytoji reikšmė yra 100 %." - -#~ msgid "Thick bridges" -#~ msgstr "Stori tiltai" - -#~ msgid "Z-hop when retract" -#~ msgstr "Z šuolis, kai įtraukiama" - -#~ msgid "Branch Diameter with double walls" -#~ msgstr "Šakos skersmuo su dvigubomis sienelėmis" - -#~ msgid "Branches with area larger than the area of a circle of this diameter will be printed with double walls for stability. Set this value to zero for no double walls." -#~ msgstr "Šakos, kurių plotas didesnis nei šio skersmens apskritimo plotas, bus atspausdintos su dvigubomis sienelėmis dėl stabilumo. Nustatykite šią vertę lygią nuliui, kad nebūtų dvigubų sienelių." - -#, c-format, boost-format -#~ msgid "Support: generate toolpath at layer %d" -#~ msgstr "Atramos: generuoti įrankių trajektoriją sluoksnyje %d" - -#~ msgid "Support: detect overhangs" -#~ msgstr "Atramos: aptikti iškyšas" - -#~ msgid "Support: propagate branches" -#~ msgstr "Atramos: skleisti šakas" - -#~ msgid "Support: draw polygons" -#~ msgstr "Atramos: piešti daugiakampius" - -#~ msgid "Support: generate toolpath" -#~ msgstr "Atramos: generuoti įrankių trajektoriją" - -#, c-format, boost-format -#~ msgid "Support: generate polygons at layer %d" -#~ msgstr "Atramos: generuoti daugiakampius sluoksnyje %d" - -#, c-format, boost-format -#~ msgid "Support: fix holes at layer %d" -#~ msgstr "Atramos: ištaisyti skyles sluoksnyje %d" - -#, c-format, boost-format -#~ msgid "Support: propagate branches at layer %d" -#~ msgstr "Atramos: skleisti šakas sluoksnyje %d" +#~ "Kada reikia spausdinti atidarius spausdintuvo dureles?\n" +#~ "Ar žinojote, kad atidarius spausdintuvo dureles gali sumažėti ekstruderio / karštosios galvutės (hotend) užsikimšimo tikimybė, kai žemos lydymosi temperatūros gija spausdinama esant aukštai kameros temperatūrai? Daugiau informacijos apie tai rasite „Wiki“ puslapyje." diff --git a/localization/i18n/nl/OrcaSlicer_nl.po b/localization/i18n/nl/OrcaSlicer_nl.po index ca4fcd689b..03f731c243 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: \n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "Roteren" msgid "Optimize orientation" msgstr "Oriëntatie optimaliseren" +msgctxt "Verb" msgid "Scale" msgstr "Schalen" @@ -336,8 +337,9 @@ msgstr "Verschalen" msgid "Error: Please close all toolbar menus first" msgstr "Fout: sluit eerst alle openstaande hulpmiddelmenu's" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "Schaalverhoudingen" msgid "Object operations" msgstr "Objectbewerkingen" +msgid "Scale" +msgstr "Schalen" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Volumebewerkingen" @@ -397,26 +402,33 @@ msgstr "Positie herstellen" msgid "Reset rotation" msgstr "Reset rotatie" -msgid "Object coordinates" -msgstr "Objectcoördinaten" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Wereldcoördinaten" +msgid "Object" +msgstr "Voorwerp" -msgid "Translate(Relative)" +msgid "Part" +msgstr "Onderdeel" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" 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 "" +msgctxt "Noun" +msgid "Scale" +msgstr "Schalen" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "Kloof" msgid "Spacing" msgstr "Uitlijning" -msgid "Part" -msgstr "Onderdeel" - -msgid "Object" -msgstr "Voorwerp" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1696,6 +1702,25 @@ msgstr "OrcaSlicer kreeg een onbehandelde uitzondering: %1%" msgid "Untitled" msgstr "Naamloos" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Sinds versie 2.4.0 synchroniseert OrcaSlicer gebruikersprofielen via Orca Cloud in plaats van Bambu Cloud.\n" +"\n" +"Om je bestaande profielen te migreren, log je in bij Orca Cloud en worden ze automatisch overgezet. Raadpleeg onze wiki voor meer informatie over hoe OrcaSlicer je profielen opslaat en synchroniseert, of om je voorinstellingen handmatig te migreren.\n" +"\n" +"Als je Bambu Cloud niet gebruikte om profielen te synchroniseren, heeft deze wijziging geen invloed op jou en kun je dit bericht veilig negeren." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1725,6 +1750,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1827,23 +1858,30 @@ msgstr "Project openen" 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 "De versie van Orca Slicer is te oud en dient te worden bijgewerkt naar de nieuwste versie voordat deze normaal kan worden gebruikt" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1852,6 +1890,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1919,7 +1963,8 @@ msgstr "Het aantal gebruikersvoorinstellingen dat in de cloud is opgeslagen, hee msgid "Sync user presets" msgstr "Synchroniseer gebruikersvoorinstellingen" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2141,6 +2186,9 @@ msgstr "Orca-kubus" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3571,7 +3619,7 @@ msgstr "Kalibratie voltooid. Zoek de meest uniforme extrusielijn op uw hotbed, z msgid "Save" msgstr "Bewaar" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Achterzijde" @@ -4033,6 +4081,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "De huidige kamertemperatuur is hoger dan de veilige temperatuur van het materiaal; dit kan leiden tot verzachting van het materiaal en verstoppingen van het mondstuk. De maximale veilige temperatuur voor het materiaal is %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4927,6 +4979,7 @@ msgstr "Toolwisselingen" msgid "Color change" msgstr "Kleur veranderen" +msgctxt "Noun" msgid "Print" msgstr "" @@ -5085,11 +5138,15 @@ msgstr "Vermijd het extrusie kalibratie gebied" msgid "Align to Y axis" msgstr "Uitlijnen op Y-as" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Achterzijde" + +msgctxt "Camera View" msgid "Left" msgstr "Links" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Rechts" @@ -5138,6 +5195,12 @@ msgstr "Alle platen" msgid "Stats" msgstr "Statistieken" +msgid "Slice" +msgstr "" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Montage terug" @@ -5162,6 +5225,9 @@ msgstr "Overhangen" msgid "Outline" msgstr "Omtrek" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5404,6 +5470,10 @@ msgstr "Printplaat" msgid "Export G-code file" msgstr "G-codebestand exporteren" +msgctxt "Verb" +msgid "Print" +msgstr "" + msgid "Export plate sliced file" msgstr "Exporteer plate sliced bestand" @@ -7765,6 +7835,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Kies Downloadmap" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "Gelukt" + +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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "Herladen" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Associeer" @@ -7820,12 +7929,6 @@ msgstr "Toon startscherm" msgid "Show the splash screen during startup." msgstr "Toon het opstartscherm tijdens het opstarten." -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 "" @@ -7856,6 +7959,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "Automatisch een back-up maken" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash." + msgid "Maximum recent files" msgstr "" @@ -7874,12 +7984,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Automatisch een back-up maken" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na een incidentele crash." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Voorinstelling" @@ -7911,6 +8061,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "Functies" @@ -7923,18 +8079,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "Gedrag" @@ -8162,19 +8306,6 @@ msgstr "Alleen op stabiele updates controleren" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Ingebouwde voorinstellingen automatisch bijwerken." - -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 "" @@ -8187,6 +8318,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Ingebouwde voorinstellingen automatisch bijwerken." + +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 "Bambu network plug-in" msgstr "" @@ -8199,30 +8340,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "Gelukt" - -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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Koppel bestanden aan OrcaSlicer" @@ -8271,7 +8388,16 @@ msgstr "Ontwikkelaar" msgid "Skip AMS blacklist check" msgstr "AMS-zwartelijstcontrole overslaan" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8279,12 +8405,6 @@ 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 "" @@ -8311,24 +8431,6 @@ msgstr "" msgid "trace" msgstr "" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "Herladen" - -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 "Foutopsporing" @@ -8344,25 +8446,6 @@ msgstr "Voorinstellingen synchronizeren" msgid "Preferences sync" msgstr "Synchroniseer voorkeuren" -msgid "View control settings" -msgstr "Besturing instellingen weergeven" - -msgid "Rotate view" -msgstr "" - -msgid "Pan view" -msgstr "" - -msgid "Zoom view" -msgstr "" - -msgid "Other" -msgstr "Anders" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Omgekeerde scrollrichting tijdens het zoomen" - msgid "Enable SSL(MQTT)" msgstr "" @@ -9064,6 +9147,12 @@ msgstr "Verwijder deze voorinstelling" msgid "Search in preset" msgstr "Zoeken in voorinstelling" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Klik om alle instellingen terug te zetten naar de laatst opgeslagen voorinstelling." @@ -9349,6 +9438,18 @@ msgstr "" msgid "Print chamber temperature" msgstr "" +msgid "Chamber temperature" +msgstr "Kamertemperatuur" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Print temperatuur" @@ -9671,12 +9772,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "Links: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Rechts: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Klik om de huidige waarde terug te zetten en de globale waarde toe te passen." @@ -9696,7 +9807,7 @@ msgid "Transfer or discard changes" msgstr "Verwerp of bewaar aanpassingen" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Oude waarde" msgid "New Value" @@ -9812,6 +9923,12 @@ msgstr "Aantal extruders" msgid "Capabilities" msgstr "Mogelijkheden" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Toon alle presets (inclusief incompatibele)" @@ -11037,6 +11154,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "Skirt en brim worden gegenereerd" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "G-code exporteren" @@ -11835,6 +11958,23 @@ msgstr "Normaal printen" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Dit is de standaard versnelling voor zowel normaal printen en verplaatsen behalve voor de eerste laag" +msgid "Acceleration of travel moves." +msgstr "" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² of %" + +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 "" + msgid "Default filament profile" msgstr "Standaard filament profiel" @@ -12017,6 +12157,12 @@ msgstr "" msgid "Octagram Spiral" msgstr "Octagram Spiraal" +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 "" + msgid "Bottom surface pattern" msgstr "Bodem oppvlakte patroon" @@ -12024,6 +12170,14 @@ msgstr "Bodem oppvlakte patroon" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Dit is het lijnenpatroon van de vulling (infill) van het bodemoppervlak, maar niet van de vulling van de brug." +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 "" + msgid "Internal solid infill pattern" msgstr "Intern massief invulpatroon" @@ -12049,6 +12203,18 @@ msgstr "" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Dit stelt de drempel voor kleine omtreklengte in. De standaarddrempel is 0 mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "" @@ -12204,21 +12370,25 @@ msgid "" "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." msgstr "" -msgid "Enable adaptive pressure advance for overhangs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." -msgstr "" - -msgid "Pressure advance for bridges" -msgstr "" - -msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\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." +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" + +msgid "" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "" msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." @@ -12284,18 +12454,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12598,6 +12756,22 @@ msgstr "" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Vulling percentage" @@ -12628,7 +12802,7 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12696,75 +12870,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Gyroide" -msgid "Lateral lattice angle 1" -msgstr "" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Lateral lattice angle 2" -msgstr "" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Infill overhang angle" -msgstr "" - -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 "" - -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 "" - -msgid "0 (no open anchors)" -msgstr "" - -msgid "1000 (unlimited)" -msgstr "" - -msgid "Maximum length of the infill anchor" -msgstr "Maximale lengte van de vullingsbevestiging" - -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 "" - -msgid "0 (Simple connect)" -msgstr "" - -msgid "Acceleration of inner walls." -msgstr "" - -msgid "Acceleration of travel moves." -msgstr "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Versnelling van de topoppervlakte-invulling. Gebruik van een lagere waarde kan de kwaliteit van de bovenlaag verbeteren." @@ -12773,12 +12878,9 @@ msgstr "Versnelling van de topoppervlakte-invulling. Gebruik van een lagere waar msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Versnelling van de buitenwand: een lagere waarde kan de kwaliteit verbeteren." -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." +msgid "Acceleration of inner walls." msgstr "" -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." msgstr "Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de standaardversnelling." @@ -12789,14 +12891,6 @@ msgstr "" msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Dit is de afdrukversnelling voor de eerste laag. Een beperkte versnelling kan de hechting van de bouwplaat verbeteren." -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Accel_to_decel inschakelen" @@ -12891,6 +12985,17 @@ msgstr "" msgid "layer" msgstr "laag" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -13375,6 +13480,69 @@ msgstr "" msgid "Probing exclude area of clumping." msgstr "" +msgid "Lateral lattice angle 1" +msgstr "" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Lateral lattice angle 2" +msgstr "" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Infill overhang angle" +msgstr "" + +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 "" + +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 "" + +msgid "0 (no open anchors)" +msgstr "" + +msgid "1000 (unlimited)" +msgstr "" + +msgid "Maximum length of the infill anchor" +msgstr "Maximale lengte van de vullingsbevestiging" + +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 "" + +msgid "0 (Simple connect)" +msgstr "" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14210,6 +14378,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Extra lengte bij herstart" @@ -14264,6 +14444,10 @@ msgstr "Uitgelijnd" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Achterzijde" + msgid "Random" msgstr "Willekeurig" @@ -14616,6 +14800,9 @@ msgstr "Scheuren kleiner dan 2x de sluitradius van de spleet worden opgevuld tij msgid "Slicing Mode" msgstr "Slicing-modus" +msgid "Other" +msgstr "Anders" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Gebruik „Even-Oneven” voor 3DLabPrint-vliegtuigmodellen. Gebruik „Gaten sluiten” om alle gaten in het model te sluiten." @@ -14969,9 +15156,6 @@ msgid "" "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 "" -msgid "Chamber temperature" -msgstr "Kamertemperatuur" - 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" @@ -14980,6 +15164,17 @@ msgid "" "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 "" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Mondstuk temperatuur voor de lagen na de eerste laag" @@ -15025,20 +15220,6 @@ msgstr "Dikte bovenkant" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Het aantal bovenste solide lagen wordt verhoogd tijdens het slicen als de totale dikte van de bovenste lagen lager is dan deze waarde. Dit zorgt ervoor dat de schaal niet te dun is bij een lage laaghoogte. 0 betekend dat deze instelling niet actief is en dat de dikte van de bovenkant bepaald wordt door het aantal bodem lagen." -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 "" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Dit is de snelheid waarmee verplaatsingen zullen worden gedaan." @@ -15263,6 +15444,14 @@ msgstr "" msgid "Rotate the polyhole every layer." msgstr "" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-code miniaturen" @@ -15406,9 +15595,6 @@ msgstr "" msgid "Export the objects as multiple STLs to directory." msgstr "" -msgid "Slice" -msgstr "" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Slice de printbedden: 0-alle printbedden, i-printbed i, andere-onjuist" @@ -17567,6 +17753,132 @@ msgstr "Inloggen/Test" msgid "Connection to printers connected via the print host failed." msgstr "Verbinding met printers aangesloten via de printhost mislukt." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17649,6 +17961,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "Kan geen verbinding maken met MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -18400,6 +18725,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -18805,6 +19136,30 @@ msgstr "" "Kromtrekken voorkomen\n" "Wist je dat bij het printen van materialen die gevoelig zijn voor kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het warmtebed de kans op kromtrekken kan verkleinen?" +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Objectcoördinaten" + +#~ msgid "World coordinates" +#~ msgstr "Wereldcoördinaten" + +#~ msgid "View control settings" +#~ msgstr "Besturing instellingen weergeven" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Omgekeerde scrollrichting tijdens het zoomen" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Links: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Rechts: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Netwerkplug-in inschakelen" @@ -19987,10 +20342,6 @@ msgstr "" #~ msgid "Thick bridges" #~ msgstr "Dikke bruggen" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Schalen" - #~ msgid "Z-hop when retract" #~ msgstr "Z-hop tijdens terugtrekken (retraction)" diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po index bdcec97fd6..1810dc6092 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: \n" "Last-Translator: Krzysztof Morga <>\n" "Language-Team: \n" @@ -329,6 +329,7 @@ msgstr "Uchwyt-Obróć" msgid "Optimize orientation" msgstr "Optymalizuj orientację" +msgctxt "Verb" msgid "Scale" msgstr "Skaluj" @@ -338,8 +339,9 @@ msgstr "Uchwyt-Skaluj" msgid "Error: Please close all toolbar menus first" msgstr "Błąd: Proszę najpierw zamknąć wszystkie paski narzędziowe" +msgctxt "inches" msgid "in" -msgstr "cal" +msgstr "" msgid "mm" msgstr "mm" @@ -372,6 +374,9 @@ msgstr "Współczynniki skali" msgid "Object operations" msgstr "Operacje na obiekcie" +msgid "Scale" +msgstr "Skaluj" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Operacje na objętości" @@ -399,26 +404,33 @@ msgstr "Zresetuj pozycję" msgid "Reset rotation" msgstr "Zresetuj obrót" -msgid "Object coordinates" -msgstr "Koordynaty obiektu" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Współrzędne" +msgid "Object" +msgstr "Obiekt" -msgid "Translate(Relative)" -msgstr "Przesunięcie równoległe (Względne)" +msgid "Part" +msgstr "Część" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" 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 "Obrót (bezwzględny)" - msgid "Reset current rotation to real zeros." msgstr "Zresetuj bieżący obrót do wartości zerowej." -msgid "Part coordinates" -msgstr "Koordynaty części" +msgctxt "Noun" +msgid "Scale" +msgstr "Skaluj" #. TRN - Input label. Be short as possible msgid "Size" @@ -523,12 +535,6 @@ msgstr "Szczelina" msgid "Spacing" msgstr "Rozstaw" -msgid "Part" -msgstr "Część" - -msgid "Object" -msgstr "Obiekt" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1716,6 +1722,25 @@ msgstr "OrcaSlicer napotkał nieobsługiwany wyjątek: %1%" msgid "Untitled" msgstr "Bez tytułu" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Od wersji 2.4.0 OrcaSlicer synchronizuje profile użytkownika za pośrednictwem Orca Cloud zamiast Bambu Cloud.\n" +"\n" +"Aby przenieść istniejące profile, zaloguj się do Orca Cloud, a zostaną one przeniesione automatycznie. Aby dowiedzieć się więcej o tym, jak OrcaSlicer przechowuje i synchronizuje Twoje profile, lub aby ręcznie przenieść swoje profile, zajrzyj do naszej wiki.\n" +"\n" +"Jeśli nie korzystano z Bambu Cloud do synchronizacji profili, ta zmiana Cię nie dotyczy i możesz zignorować tę wiadomość." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1745,6 +1770,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1850,23 +1881,30 @@ msgstr "Otwórz projekt" 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 "Wersja Orca Slicer jest przestarzała i musi zostać uaktualniona do najnowszej wersji, aby działać normalnie" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1875,6 +1913,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1942,7 +1986,8 @@ msgstr "Liczba zapisanych w chmurze ustawień użytkownika przekroczyła maksyma msgid "Sync user presets" msgstr "Synchronizuj ustawienia użytkownika" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2164,6 +2209,9 @@ msgstr "Sześcian Orca" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Test tolerancji Orca" @@ -3609,7 +3657,7 @@ msgstr "Kalibracja zakończona. Proszę znaleźć na płycie roboczej, linie eks msgid "Save" msgstr "Zapisz" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Tył" @@ -4081,6 +4129,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna bezpieczna temperatura dla tego filamentu wynosi %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4979,6 +5031,7 @@ msgstr "Zmiany narzędzi" msgid "Color change" msgstr "Zmiana koloru" +msgctxt "Noun" msgid "Print" msgstr "Drukuj" @@ -5142,11 +5195,15 @@ msgstr "Unikaj obszaru kalibracji ekstruzji" msgid "Align to Y axis" msgstr "Wyrównaj do osi Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Tył" + +msgctxt "Camera View" msgid "Left" msgstr "Lewy" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Prawy" @@ -5195,6 +5252,12 @@ msgstr "" msgid "Stats" msgstr "" +msgid "Slice" +msgstr "" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Powrót do montażu" @@ -5219,6 +5282,9 @@ msgstr "Nawisy" msgid "Outline" msgstr "kontur" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5465,6 +5531,10 @@ msgstr "Drukuj aktualną płytę" msgid "Export G-code file" msgstr "Eksportuj plik G-code" +msgctxt "Verb" +msgid "Print" +msgstr "Drukuj" + msgid "Export plate sliced file" msgstr "Eksportuj plik pociętej płyty" @@ -7858,6 +7928,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Wybierz katalog pobierania" +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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Powiązanie" @@ -7913,12 +8022,6 @@ msgstr "Wyświetlanie ekranu powitalnego" msgid "Show the splash screen during startup." msgstr "Wyświetla ekran powitalny podczas uruchamiania." -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 "" @@ -7949,6 +8052,13 @@ msgstr "Zachowanie przy wczytywaniu" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Określa czy ustawienia drukarki/filamentu/procesu mają być wczytywane podczas otwierania pliku .3mf" +msgid "Auto backup" +msgstr "Automatyczne tworzenie kopii zapasowej" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." + msgid "Maximum recent files" msgstr "" @@ -7967,12 +8077,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Automatyczne tworzenie kopii zapasowej" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Wykonuje okresowe kopie zapasowe projektu w celu przywracania po sporadycznych awariach." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Profil" @@ -8004,6 +8154,12 @@ msgstr "filamenty" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -8016,18 +8172,6 @@ msgstr "Umożliwia wysyłanie zadania do wielu urządzeń jednocześnie i zarzą msgid "Pop up to select filament grouping mode" msgstr "Okno dialogowe do wyboru trybu grupowania filamentów" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "" @@ -8255,19 +8399,6 @@ msgstr "Sprawdzanie aktualizacji do stabilnych wersji" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatyczne synchronizowanie profili użytkownika (drukarka/filament/proces)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Automatyczne uaktualnianie wbudowanych profili" - -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 "" @@ -8280,6 +8411,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Automatyczne uaktualnianie wbudowanych profili" + +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 "Bambu network plug-in" msgstr "" @@ -8292,30 +8433,6 @@ 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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Skojarzenia plików z OrcaSlicer" @@ -8361,7 +8478,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Pomijanie sprawdzania czarnej listy AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8369,12 +8495,6 @@ 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 "" @@ -8401,24 +8521,6 @@ msgstr "debugowanie" msgid "trace" msgstr "śledzenie" -msgid "Network plug-in" -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 "Debugowanie" @@ -8434,25 +8536,6 @@ msgstr "Synchronizacja profili" msgid "Preferences sync" msgstr "Synchronizacja preferencji" -msgid "View control settings" -msgstr "Ustawienia kontrolowania widoku" - -msgid "Rotate view" -msgstr "Obróć widok" - -msgid "Pan view" -msgstr "Przesuń widok" - -msgid "Zoom view" -msgstr "Przybliż widok" - -msgid "Other" -msgstr "Inne" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania" - msgid "Enable SSL(MQTT)" msgstr "Włącz SSL(MQTT)" @@ -9163,6 +9246,12 @@ msgstr "Usuń ten profil" msgid "Search in preset" msgstr "Szukaj w profilu" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Proszę kliknąć, aby przywrócić wszystkie ustawienia do ostatnio zapisanego profilu." @@ -9454,6 +9543,18 @@ msgstr "Współczynnik przepływu i Wzrost ciśnienia (PA)" msgid "Print chamber temperature" msgstr "Temperatura komory druku" +msgid "Chamber temperature" +msgstr "Temperatura komory" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Temperatura druku" @@ -9778,12 +9879,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "Lewy: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Prawy: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Kliknij, aby przywrócić bieżącą wartość do wartości globalnej." @@ -9803,7 +9914,7 @@ msgid "Transfer or discard changes" msgstr "Przenieść lub odrzucić zmiany" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Stara wartość" msgid "New Value" @@ -9925,6 +10036,12 @@ msgstr "" msgid "Capabilities" msgstr "Możliwości" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Pokaż wszystkie profile (łącznie z niekompatybilnymi)" @@ -11167,6 +11284,12 @@ msgstr "Kompensacja skurczu filamentu nie będzie zastosowana, ponieważ skurcz msgid "Generating skirt & brim" msgstr "Generowanie skirtu i brimu" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Eksportowanie G-code" @@ -12013,6 +12136,23 @@ msgstr "Normalne drukowanie" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Domyślne przyspieszenie zarówno normalnego druku, jak i przemieszczenia, z wyjątkiem pierwszej warstwy" +msgid "Acceleration of travel moves." +msgstr "Przyspieszenie ruchów podróżnych" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² lub %" + +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 "Przyspieszenie na mostkach. Jeśli wartość jest wyrażona w procentach (np. 50%), będzie obliczana na podstawie przyspieszenia zewnętrznej ściany." + msgid "Default filament profile" msgstr "Domyślny profil filamentu" @@ -12227,6 +12367,12 @@ msgstr "Struny Archimedesa" msgid "Octagram Spiral" msgstr "Spirala oktagramu" +msgid "Top surface density" +msgstr "Gęstość górnej powierzchni" + +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 "" + msgid "Bottom surface pattern" msgstr "Wzór dolnej powierzchni" @@ -12234,6 +12380,14 @@ msgstr "Wzór dolnej powierzchni" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Wzór linii wypełnienia dolnej powierzchni, nie dotyczy wypełnienia mostu" +msgid "Bottom surface density" +msgstr "Gęstość dolnej powierzchni" + +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 "" + msgid "Internal solid infill pattern" msgstr "Wzór wewnętrznego pełnego wypełnienia" @@ -12259,6 +12413,18 @@ msgstr "Próg małego obrysu" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "To ustawia próg długości małych obrysów. Domyślny próg to 0 mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Kolejność drukowania ścian" @@ -12439,25 +12605,26 @@ msgstr "" "2. Zwróć uwagę na optymalną wartość PA dla każdej wolumetrycznej prędkości przepływu i przyspieszenia. Możesz znaleźć numer przepływu, wybierając przepływ z rozwijanego schematu kolorów i przesuwając poziomy suwak nad liniami wzoru PA. Numer powinien być widoczny na dole strony. Idealna wartość PA powinna maleć, im większy jest przepływ objętościowy. Jeśli tak nie jest, potwierdź, że ekstruder działa poprawnie. Im wolniej i z mniejszym przyspieszeniu drukujesz, tym jest większy zakres dopuszczalnych wartości PA. Jeśli różnica nie jest widoczna, należy użyć wartości PA z szybszego testu.\n" "3. Wprowadź trójki wartości PA, przepływu i przyspieszenia w polu tekstowym tutaj i zapisz swój profil filamentu." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Wzrost ciśnienia (PA) dla mostów" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n" -"\n" -"Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać." 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 "Domyślna szerokość linii, jeśli inne szerokości linii są ustawione na 0. Jeśli wyrażona w %, zostanie obliczona na podstawie średnicy dyszy." @@ -12526,18 +12693,6 @@ msgstr "Automatyczne płukanie" msgid "Auto For Match" msgstr "Automatyczne dopasowanie" -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 "" - msgid "Flush temperature" msgstr "Temperatura spłukiwania" @@ -12845,6 +13000,22 @@ msgstr "Kierunek wzoru pełnego wypełnienia" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Kąt wyznaczający główny kierunek linii dla wzoru pełnego wypełnienia" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Gęstość wypełnienia" @@ -12875,7 +13046,7 @@ msgstr "Wypełnienie przy użyciu wielu linii, jeśli jest to obsługiwane przez msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12943,79 +13114,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Gyroidalny" -msgid "Lateral lattice angle 1" -msgstr "Kąt siatki 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Kąt nachylenia pierwszej linii dla wzorca wypełnienia „siatka 2D” względem osi Z. Zero oznacza pionową." - -msgid "Lateral lattice angle 2" -msgstr "Kąt siatki 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Kąt nachylenia drugiej linii dla wzorca wypełnienia \"2D siatka\" względem osi Z." - -msgid "Infill overhang angle" -msgstr "" - -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" - -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 "" -"Połączenie wypełnienia z wewnętrznym obrysem poprzez dodawanie krótkich segmentów obrysu. Gdy wartość jest podana w procentach (przykład: 15%), zostanie ona obliczona na podstawie szerokości ścieżki wypełnienia. Slicer stara się łączyć dwie sąsiednie linie wypełnienia za pomocą krótkiego segmentu obrysu. W sytuacji, gdy nie znajdzie segmentu krótszego niż określony parametr, linia wypełnienia zostanie połączona z segmentem obrysu tylko z jednej strony. Długość tego segmentu zostanie ograniczona do wartości określonej w parametrze infill_anchor, ale nie przekroczy tej wartości.\n" -"Aby wyłączyć funkcję kotwiczenia, należy ustawić wartość na zero. Ustaw zero, aby wyłączyć kotwiczenie obrysów do pojedynczej linii wypełnienia." - -msgid "0 (no open anchors)" -msgstr "0 (brak otwartych kotwic)" - -msgid "1000 (unlimited)" -msgstr "1000 (nieograniczone)" - -msgid "Maximum length of the infill anchor" -msgstr "Maksymalna długość kotwiczenia wypełnienia" - -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 "" -"Łączenie wypełnienia z wewnętrznym obrysem przez dodanie krótkiego segmentu obrysu. Jeśli wyrażone w procentach (np. 15%), zostanie obliczone z szerokości ścieżki wypełnienia. Orca Slicer spróbuje połączyć dwie najbliższe linie wypełnienia krótkim segmentem obrysu. Jeśli nie zostanie znaleziony segment krótszy, niż ten parametr, linia wypełnienia zostanie dołączona do segmentu obrysu tylko z jednej strony, a długość segmentu będzie ograniczona do wartości parametru infill_anchor, ale nie dłuższa niż ten parametr.\n" -"Jeśli ustawione na 0, zostanie użyty stary algorytm łączenia wypełnienia, powinien dać ten sam wynik co przy ustawieniu 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (bez przymocowania)" - -msgid "Acceleration of inner walls." -msgstr "Przyspieszenie na wewnętrznych ścianach" - -msgid "Acceleration of travel moves." -msgstr "Przyspieszenie ruchów podróżnych" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wartości może poprawić jakość górnej powierzchni" @@ -13024,11 +13122,8 @@ msgstr "Przyspieszenie dla wypełnienia górnej powierzchni. Użycie niższej wa msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Przyspieszenie na zewnętrznej ścianie. Użycie niższej wartości może poprawić jakość" -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 "Przyspieszenie na mostkach. Jeśli wartość jest wyrażona w procentach (np. 50%), będzie obliczana na podstawie przyspieszenia zewnętrznej ściany." - -msgid "mm/s² or %" -msgstr "mm/s² lub %" +msgid "Acceleration of inner walls." +msgstr "Przyspieszenie na wewnętrznych ścianach" 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 "Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w procentach (np. 100%), będzie obliczana na podstawie domyślnego przyspieszenia." @@ -13040,14 +13135,6 @@ msgstr "Przyspieszenie wewnętrznego, pełnego wypełnienia. Jeśli wartość je msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Przyspieszenie dla pierwszej warstwy. Użycie niższej wartości może poprawić przyczepność do stołu" -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Włącz accel_to_decel" @@ -13142,6 +13229,17 @@ msgstr "Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na msgid "layer" msgstr "warstwa" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Prędkość wentylatora dla warstwy łączącej podpory" @@ -13654,6 +13752,73 @@ msgstr "Obszar wykluczony z sondowania pod kątem zalepienia dyszy" msgid "Probing exclude area of clumping." msgstr "Obszar wykluczony z sondowania pod kątem zalepienia dyszy." +msgid "Lateral lattice angle 1" +msgstr "Kąt siatki 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Kąt nachylenia pierwszej linii dla wzorca wypełnienia „siatka 2D” względem osi Z. Zero oznacza pionową." + +msgid "Lateral lattice angle 2" +msgstr "Kąt siatki 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Kąt nachylenia drugiej linii dla wzorca wypełnienia \"2D siatka\" względem osi Z." + +msgid "Infill overhang angle" +msgstr "" + +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" + +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 "" +"Połączenie wypełnienia z wewnętrznym obrysem poprzez dodawanie krótkich segmentów obrysu. Gdy wartość jest podana w procentach (przykład: 15%), zostanie ona obliczona na podstawie szerokości ścieżki wypełnienia. Slicer stara się łączyć dwie sąsiednie linie wypełnienia za pomocą krótkiego segmentu obrysu. W sytuacji, gdy nie znajdzie segmentu krótszego niż określony parametr, linia wypełnienia zostanie połączona z segmentem obrysu tylko z jednej strony. Długość tego segmentu zostanie ograniczona do wartości określonej w parametrze infill_anchor, ale nie przekroczy tej wartości.\n" +"Aby wyłączyć funkcję kotwiczenia, należy ustawić wartość na zero. Ustaw zero, aby wyłączyć kotwiczenie obrysów do pojedynczej linii wypełnienia." + +msgid "0 (no open anchors)" +msgstr "0 (brak otwartych kotwic)" + +msgid "1000 (unlimited)" +msgstr "1000 (nieograniczone)" + +msgid "Maximum length of the infill anchor" +msgstr "Maksymalna długość kotwiczenia wypełnienia" + +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 "" +"Łączenie wypełnienia z wewnętrznym obrysem przez dodanie krótkiego segmentu obrysu. Jeśli wyrażone w procentach (np. 15%), zostanie obliczone z szerokości ścieżki wypełnienia. Orca Slicer spróbuje połączyć dwie najbliższe linie wypełnienia krótkim segmentem obrysu. Jeśli nie zostanie znaleziony segment krótszy, niż ten parametr, linia wypełnienia zostanie dołączona do segmentu obrysu tylko z jednej strony, a długość segmentu będzie ograniczona do wartości parametru infill_anchor, ale nie dłuższa niż ten parametr.\n" +"Jeśli ustawione na 0, zostanie użyty stary algorytm łączenia wypełnienia, powinien dać ten sam wynik co przy ustawieniu 1000 & 0." + +msgid "0 (Simple connect)" +msgstr "0 (bez przymocowania)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14524,6 +14689,18 @@ msgstr "Napęd bezpośredni" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Dodatkowa ilość dla powrotu" @@ -14578,6 +14755,10 @@ msgstr "Wyrównany" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Tył" + msgid "Random" msgstr "Losowo" @@ -14949,6 +15130,9 @@ msgstr "Szpary mniejsze niż dwukrotność wartości parametru „promień zamyk msgid "Slicing Mode" msgstr "Tryb cięcia" +msgid "Other" +msgstr "Inne" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Użyj „Parzysto-nieparzysty” dla modeli samolotów 3DLabPrint. Użyj „Zamknij otwory” do zamknięcia wszystkich otworów w modelu." @@ -15306,9 +15490,6 @@ msgstr "" "\n" "Ta opcja opiera się na poleceniach M191 i M141 wspieranych przez oprogramowanie układowe, czy to za pomocą makr, czy natywnie i jest używana, gdy zainstalowany jest aktywna podgrzewacz." -msgid "Chamber temperature" -msgstr "Temperatura komory" - 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" @@ -15322,6 +15503,17 @@ msgstr "" "\n" "Jeśli włączona, ten parametr ustawia także zmienną gcode o nazwie chamber_temperature, która może być użyta do przekazania żądanej temperatury komory do makra rozpoczynającego drukowanie, lub makra utrzymywania ciepła, na przykład: PRINT_START (inne zmienne) CHAMBER_TEMP=[chamber_temperature]. Może to być przydatne, jeśli twoja drukarka nie obsługuje poleceń M141/M191 lub jeśli chcesz zarządzać utrzymywaniem ciepła w makrze rozpoczynającym drukowanie, jeśli nie jest zainstalowany aktywna podgrzewacz komory." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Temperatura dyszy dla warstw po początkowej" @@ -15367,20 +15559,6 @@ msgstr "Grubość górnej powłoki" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Liczba górnych zwartych warstw jest zwiększana podczas cięcia, jeśli grubość obliczona przez górną warstwe powłoki jest cieńsza niż ta wartość. Można w ten sposób uniknąć zbyt cienkiej powłoki, gdy wysokość warstwy jest mała. 0 oznacza, że to ustawienie jest wyłączone, a grubość górnej powłoki jest absolutnie określona przez górne warstwy powłoki" -msgid "Top surface density" -msgstr "Gęstość górnej powierzchni" - -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 "" - -msgid "Bottom surface density" -msgstr "Gęstość dolnej powierzchni" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Prędkość przemieszczania, która jest szybsza i bez ekstruzji" @@ -15623,6 +15801,14 @@ msgstr "Skręt poliotworu" msgid "Rotate the polyhole every layer." msgstr "Obracaj poliotwor co warstwę." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Miniatury G-code" @@ -15771,9 +15957,6 @@ msgstr "Eksportuj jako wiele plików STL" msgid "Export the objects as multiple STLs to directory." msgstr "Eksportuj obiekty jako wiele plików STL do katalogu." -msgid "Slice" -msgstr "" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Slice podłoża: 0-wszystkie podłoża, i-podłoże i, inne-nieważne" @@ -17994,6 +18177,132 @@ msgstr "Logowanie/test" 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 "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18076,6 +18385,19 @@ msgstr "Połączenie z MKS działa poprawnie." msgid "Could not connect to MKS" msgstr "Nie udało się połączyć z MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Połączenie z OctoPrint działa poprawnie." @@ -18827,6 +19149,12 @@ msgstr "Liczba trójkątnych faset" msgid "Calculating, please wait..." msgstr "Obliczanie, proszę czekać..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19235,6 +19563,66 @@ msgstr "" "Unikaj odkształceń\n" "Czy wiesz, że podczas drukowania filamentami podatnymi na odkształcenia, takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może zmniejszyć prawdopodobieństwo odkształceń?" +#~ msgid "Print" +#~ msgstr "Drukuj" + +#~ msgid "in" +#~ msgstr "cal" + +#~ msgid "Object coordinates" +#~ msgstr "Koordynaty obiektu" + +#~ msgid "World coordinates" +#~ msgstr "Współrzędne" + +#~ msgid "Translate(Relative)" +#~ msgstr "Przesunięcie równoległe (Względne)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Obrót (bezwzględny)" + +#~ msgid "Part coordinates" +#~ msgstr "Koordynaty części" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Włącz adaptacyjny wzrost ciśnienia dla nawisów (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Wzrost ciśnienia (PA) dla mostów" + +#~ 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 "" +#~ "Wartość wzrostu ciśnienia dla mostów. Ustaw na 0, aby wyłączyć.\n" +#~ "\n" +#~ "Niższa wartość PA podczas drukowania mostów pomaga zredukować widoczność lekkiego niedoboru materiału, który może wystąpić bezpośrednio po ich wydruku. Jest to spowodowane spadkiem ciśnienia w dyszy podczas drukowania w powietrzu, a niższy PA pomaga temu przeciwdziałać." + +#~ msgid "View control settings" +#~ msgstr "Ustawienia kontrolowania widoku" + +#~ msgid "Rotate view" +#~ msgstr "Obróć widok" + +#~ msgid "Pan view" +#~ msgstr "Przesuń widok" + +#~ msgid "Zoom view" +#~ msgstr "Przybliż widok" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Kierunek obracania koła myszy odwraca się podczas powiększania" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Lewy: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Prawy: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Włączenie wtyczki sieciowej" @@ -20636,10 +21024,6 @@ msgstr "" #~ msgid "Unselect" #~ msgstr "Odznacz" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Skala" - #~ msgid "Lift Z Enforcement" #~ msgstr "Wymuszenie podniesienia osi Z" diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po index c31f1a3e95..a1e9a39ce2 100644 --- a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po +++ b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-22 20:13-0300\n" -"PO-Revision-Date: 2026-06-19 20:49-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" +"PO-Revision-Date: 2026-07-04 11:51-0300\n" "Last-Translator: Alexandre Folle de Menezes\n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -181,13 +181,13 @@ msgid "Support generated" msgstr "Suporte gerado" msgid "Entering Paint-on supports" -msgstr "" +msgstr "Entrando em pintura de suportes" msgid "Leaving Paint-on supports" -msgstr "" +msgstr "Saindo de pintura de suportes" msgid "Paint-on supports editing" -msgstr "" +msgstr "Edição de pintura de suportes" msgid "Gizmo-Place on Face" msgstr "Gizmo-Posicionar na face" @@ -273,16 +273,16 @@ msgid "To:" msgstr "Para:" msgid "Entering color painting" -msgstr "" +msgstr "Entrando em pintura de cores" msgid "Leaving color painting" -msgstr "" +msgstr "Saindo da pintura de cores" msgid "Color painting editing" -msgstr "" +msgstr "Editando pintura de cores" msgid "Paint-on fuzzy skin" -msgstr "Textura difusa pintada" +msgstr "Pintura de textura difusa" msgid "Add fuzzy skin" msgstr "Adicionar textura difusa" @@ -300,13 +300,13 @@ msgid "Enable painted fuzzy skin for this object" msgstr "Ativar textura difusa pintada para este objeto" msgid "Entering Paint-on fuzzy skin" -msgstr "" +msgstr "Entrando em pintura de textura difusa" msgid "Leaving Paint-on fuzzy skin" -msgstr "" +msgstr "Saindo de pintura de textura difusa" msgid "Paint-on fuzzy skin editing" -msgstr "" +msgstr "Edição de pintura de textura difusa" msgid "Move" msgstr "Mover" @@ -326,6 +326,7 @@ msgstr "Gizmo-Rotacionar" msgid "Optimize orientation" msgstr "Otimizar orientação" +msgctxt "Verb" msgid "Scale" msgstr "Escala" @@ -335,8 +336,9 @@ msgstr "Gizmo-Dimensionar" msgid "Error: Please close all toolbar menus first" msgstr "Erro: Por favor, feche todos os menus da barra de ferramentas primeiro" +msgctxt "inches" msgid "in" -msgstr "pol" +msgstr "" msgid "mm" msgstr "mm" @@ -368,6 +370,9 @@ msgstr "Proporções de escala" msgid "Object operations" msgstr "Operações de objeto" +msgid "Scale" +msgstr "Escala" + msgid "Volume operations" msgstr "Operações de volume" @@ -389,26 +394,33 @@ msgstr "Redefinir posição" msgid "Reset rotation" msgstr "Redefinir rotação" -msgid "Object coordinates" -msgstr "Coordenadas do objeto" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Coordenadas globais" +msgid "Object" +msgstr "Objeto" -msgid "Translate(Relative)" -msgstr "Translacionar(Relativo)" +msgid "Part" +msgstr "Peça" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Redefinir rotação para o valor de abertura da ferramenta de rotação." -msgid "Rotate (absolute)" -msgstr "Rotacionar (absoluto)" - msgid "Reset current rotation to real zeros." msgstr "Redefinir rotação atual para zeros reais." -msgid "Part coordinates" -msgstr "Coordenadas de peça" +msgctxt "Noun" +msgid "Scale" +msgstr "Escala" #. TRN - Input label. Be short as possible msgid "Size" @@ -513,12 +525,6 @@ msgstr "Vão" msgid "Spacing" msgstr "Espaçamento" -msgid "Part" -msgstr "Peça" - -msgid "Object" -msgstr "Objeto" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -680,9 +686,8 @@ msgstr "Conector" msgid "Cut by Plane" msgstr "Cortar por Plano" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" -msgstr "As arestas abertas podem ser causadas pela ferramenta de corte, você quer corrigir agora?" +msgstr "Arestas abertas podem ser causadas pela ferramenta de corte: você quer corrigir agora?" msgid "Repairing model object" msgstr "Reparando objeto modelo" @@ -694,13 +699,13 @@ msgid "Delete connector" msgstr "Apagar conector" msgid "Entering Cut gizmo" -msgstr "" +msgstr "Entrando no gizmo de Corte" msgid "Leaving Cut gizmo" -msgstr "" +msgstr "Saindo do gizmo de Corte" msgid "Cut gizmo editing" -msgstr "" +msgstr "Editando gizmo de Corte" msgid "Mesh name" msgstr "Nome da malha" @@ -1543,10 +1548,10 @@ msgid "Flip by Face 2" msgstr "Virar pela Face 2" msgid "Entering Measure gizmo" -msgstr "" +msgstr "Entrando no gizmo de Medida" msgid "Leaving Measure gizmo" -msgstr "" +msgstr "Saindo do gizmo de Medida" msgid "Assemble" msgstr "Montar" @@ -1577,15 +1582,18 @@ msgid "" "because they are restricted to the bed \n" "and only parts can be lifted." msgstr "" +"Recomenda-se montar objetos primeiro,\n" +"porque eles ficam restritos à mesa \n" +"e apenas partes podem ser levantadas." msgid "Face and face assembly" msgstr "Montagem face a face" msgid "Entering Assembly gizmo" -msgstr "" +msgstr "Entrando no gizmo de Montagem" msgid "Leaving Assembly gizmo" -msgstr "" +msgstr "Saindo do gizmo de Montagem" msgid "Ctrl+" msgstr "Ctrl+" @@ -1695,6 +1703,25 @@ msgstr "OrcaSlicer encontrou uma exceção não tratada: %1%" msgid "Untitled" msgstr "Sem título" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Desde a versão 2.4.0, o OrcaSlicer sincroniza os perfis de usuário através do Orca Cloud em vez do Bambu Cloud.\n" +"\n" +"Para migrar seus perfis existentes, faça login no Orca Cloud e eles serão transferidos automaticamente. Para saber mais sobre como o OrcaSlicer armazena e sincroniza seus perfis, ou para migrar suas predefinições manualmente, consulte nossa wiki.\n" +"\n" +"Se você não usava o Bambu Cloud para sincronizar perfis, esta mudança não afeta você e você pode ignorar esta mensagem com segurança." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "Saber mais" + msgid "Reloading network plug-in..." msgstr "Recarregando o plug-in de rede…" @@ -1724,6 +1751,15 @@ msgstr "" msgid "WebView2 Runtime" msgstr "Tempo de execução WebView2" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"Não foi possível instalar o Microsoft WebView2 Runtime.\n" +"Alguns recursos, incluindo o assistente de instalação, podem aparecer em branco até que ele seja instalado.\n" +"Por favor, instale-o manualmente de https://developer.microsoft.com/microsoft-edge/webview2/ e reinicie o OrcaSlicer." + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "O caminho dos recursos não existe ou não é um diretório: %s" @@ -1827,23 +1863,30 @@ msgstr "Abrir Projeto" 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 "Esta versão do OrcaSlicer é muito antiga e precisa ser atualizada para a versão mais recente antes de poder ser usada normalmente." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1851,9 +1894,17 @@ msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" "Do you want to continue?" msgstr "" +"'Forçar subida' substituirá a cópia na nuvem pelas alterações locais nas suas predefinições.\n" +"Deseja continuar?" + +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" msgid "Resolve cloud sync conflict" -msgstr "" +msgstr "Resolver o conflito de sincronização de nuvem" msgid "Retrieving printer information, please try again later." msgstr "Obtendo informações da impressora, tente novamente mais tarde." @@ -1930,8 +1981,9 @@ msgstr "O número de predefinições de usuário em cache na nuvem excedeu o lim msgid "Sync user presets" msgstr "Sincronizar predefinições de usuário" -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 "O conteúdo da predefinição é muito grande para ser sincronizado com a nuvem (excede 1 MB). Reduza o tamanho da predefinição removendo configurações personalizadas ou use-o apenas localmente." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2140,6 +2192,9 @@ msgstr "Cubo Orca" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Teste de Tolerância Orca" @@ -2537,25 +2592,21 @@ msgstr[1] "%1$d arestas não-manifold" msgid "Click the icon to repair model object" msgstr "Clique no ícone para consertar o objeto modelo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object settings" msgstr "Clique com o botão direito no ícone para descartar as configurações do objeto" msgid "Click the icon to reset all settings of the object" msgstr "Clique no ícone para redefinir todas as configurações do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object printable property" -msgstr "Clique com o botão direito no ícone para descartar a propriedade imprimível do objeto" +msgstr "Clique com o botão direito no ícone para descartar a propriedade de impressão do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to toggle printable properties of the object" -msgstr "Clique no ícone para alternar a propriedade imprimível do objeto" +msgstr "Clique no ícone para alternar as propriedades de impressão do objeto" msgid "Click the icon to edit support painting of the object" msgstr "Clique no ícone para editar a pintura de suporte do objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to edit color painting for the object" msgstr "Clique no ícone para editar a pintura de cor do objeto" @@ -2595,17 +2646,16 @@ msgstr "Excluir volume negativo do objeto que é parte do corte" msgid "To save cut correspondence you can delete all connectors from all related objects." msgstr "Para salvar a correspondência de corte, você pode excluir todos os conectores de todos os objetos relacionados." -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"Esta ação irá quebrar a correspondência de corte.\n" +"Esta ação irá quebrar uma correspondência de corte.\n" "Depois disso, a consistência do modelo não pode ser garantida.\n" "\n" -"Para manipular peças sólidas ou volumes negativos, você deve invalidar as informações de corte primeiro." +"Para manipular peças sólidas ou volumes negativos você deve primeiro invalidar as informações de corte." msgid "Delete all connectors" msgstr "Excluir todos os conectores" @@ -2628,17 +2678,14 @@ msgstr "Manipulação de objeto" msgid "Group manipulation" msgstr "Manipulação de grupo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object Settings to Modify" -msgstr "Configurações de objeto para modificar" +msgstr "Configurações de Objeto para Modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Part Settings to Modify" -msgstr "Configurações de peça para modificar" +msgstr "Configurações de Peça para Modificar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer Range Settings to Modify" -msgstr "Configurações de Intervalo de Camada para modificar" +msgstr "Configurações de Intervalo de Camada para Modificar" msgid "Part manipulation" msgstr "Manipulação de peça" @@ -2664,9 +2711,8 @@ msgstr "Se o primeiro item selecionado for um objeto, o segundo também deve ser msgid "If the first selected item is a part, the second should be a part in the same object." msgstr "Se o primeiro item selecionado for uma peça, o segundo deve ser uma peça no mesmo objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The type of the last solid object part cannot be changed." -msgstr "O tipo da última peça do objeto sólido não deve ser alterado." +msgstr "O tipo da última peça do objeto sólido não pode ser alterado." msgid "Type:" msgstr "Tipo:" @@ -2909,7 +2955,6 @@ msgstr "Carregar" msgid "Unload" msgstr "Descarregar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." msgstr "Escolha um espaço do AMS e pressione o botão \"Carregar\" ou \"Descarregar\" para carregar ou descarregar automaticamente o filamento." @@ -3045,7 +3090,7 @@ msgid "The minmum temperature should not be less than " msgstr "A temperatura mínima não pode ser menor do que " msgid "Type to filter..." -msgstr "" +msgstr "Digite para filtrar…" msgid "All" msgstr "Todos" @@ -3057,7 +3102,7 @@ msgid "All items selected..." msgstr "Todos os itens selecionados…" msgid "No matching items..." -msgstr "" +msgstr "Nenhum item correspondente…" msgid "Deselect All" msgstr "Desselecionar Tudo" @@ -3087,7 +3132,7 @@ msgid "Developer mode" msgstr "Modo de desenvolvedor" msgid "Launch troubleshoot center" -msgstr "" +msgstr "Abrir a central de solução de problemas" msgid "" "All the selected objects are on a locked plate.\n" @@ -3543,6 +3588,7 @@ msgstr "Calibração concluída. Por favor, encontre a linha de extrusão mais u msgid "Save" msgstr "Salvar" +msgctxt "Navigation" msgid "Back" msgstr "Atrás" @@ -3981,14 +4027,13 @@ msgstr "A temperatura mínima recomendada não pode ser superior à temperatura msgid "Please check.\n" msgstr "Por favor, verifique.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The nozzle may become clogged when the temperature is out of the recommended range.\n" "Please make sure whether to use this temperature to print.\n" "\n" msgstr "" "O bico pode ficar bloqueado quando a temperatura estiver fora da faixa recomendada.\n" -"Por favor, certifique-se de usar a temperatura para imprimir.\n" +"Certifique-se se deve usar essa temperatura para imprimir.\n" "\n" #, c-format, boost-format @@ -4005,10 +4050,13 @@ msgstr "" "Velocidade volumétrica máxima muito baixa.\n" "Valor redefinido para 0,5" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" -msgstr "A temperatura da câmara atual está mais alta do que a temperatura segura do material, pode resultar em amolecimento e entupimento do material. A temperatura máxima segura para o material é %d" +msgstr "A temperatura da câmara atual está mais alta do que a temperatura segura do material, podendo resultar em amolecimento e bloqueio do bico. A temperatura máxima segura para o material é %d" + +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" msgid "" "Layer height too small\n" @@ -4033,20 +4081,17 @@ msgstr "" "\n" "A altura da primeira camada será redefinida para 0.2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This setting is only used for tuning model size by small amounts.\n" "For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"Esta configuração é usada apenas para ajustar o tamanho do modelo com um valor pequeno em alguns casos.\n" -"Por exemplo, quando o tamanho do modelo tem um pequeno erro e é difícil de ser montado.\n" -"Para ajustes de tamanho grandes, por favor use a função de escala do modelo.\n" +"Esta configuração é usada apenas para ajustar o tamanho do modelo com valores pequenos.\n" +"Por exemplo, quando o tamanho do modelo tem erros pequenos ou as tolerâncias incorretas. Para ajustes de tamanho grandes, use a função de escala do modelo.\n" "\n" "O valor será redefinido para 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The elephant foot compensation value is too large.\n" "If there are significant elephant foot issues, please check other settings.\n" @@ -4054,9 +4099,9 @@ msgid "" "\n" "The value will be reset to 0." msgstr "" -"Uma compensação de pé de elefante muito grande é irrazoável.\n" -"Se realmente tiver um efeito sério de pé de elefante, por favor verifique outras configurações.\n" -"Por exemplo, se a temperatura da mesa estiver muito alta.\n" +"Uma compensação de pé de elefante é muito grande.\n" +"Se realmente tiver um efeito significativo de pé de elefante, por favor verifique outras configurações.\n" +"Por exemplo, se a temperatura da mesa pode estar muito alta.\n" "\n" "O valor será redefinido para 0." @@ -4138,15 +4183,14 @@ msgstr "O modo espiral só funciona quando as voltas da parede são 1, o suporte msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Mas máquinas com estrutura I3 não gerarão vídeos de timelapse." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" "No - Cancel enabling spiral mode" msgstr "" "Alterar essas configurações automaticamente?\n" -"Sim - Alterar essas configurações e ativar o modo espiral automaticamente\n" -"Não - Desistir de usar o modo espiral desta vez" +"Sim - Alterar essas configurações e ativar o modo espiral/vaso automaticamente\n" +"Não - Cancelar ativação do modo espiral" msgid "Printing" msgstr "Imprimindo" @@ -4509,9 +4553,8 @@ msgstr "Predefinições" msgid "Print settings" msgstr "Configurações de Impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" -msgstr "Configurações do Filamento" +msgstr "Configurações de Filamento" msgid "SLA Materials settings" msgstr "Configurações de Materiais SLA" @@ -4534,7 +4577,6 @@ msgstr "String vazia" msgid "Value is out of range." msgstr "O valor está fora do intervalo." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "%s can’t be a percentage" msgstr "%s não pode ser uma percentagem" @@ -4749,7 +4791,7 @@ msgid "Fan speed" msgstr "Velocidade do ventilador" msgid "°C" -msgstr "°C" +msgstr "℃" msgid "Time" msgstr "Tempo" @@ -4775,9 +4817,8 @@ msgstr "Torre" msgid "Total" msgstr "Total" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Total estimation" -msgstr "Estimativa Total" +msgstr "Estimativa total" msgid "Total time" msgstr "Tempo total" @@ -4854,13 +4895,11 @@ msgstr "de" msgid "Usage" msgstr "Uso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height (mm)" -msgstr "Altura da Camada (mm)" +msgstr "Altura da camada (mm)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width (mm)" -msgstr "Largura da Linha (mm)" +msgstr "Largura da linha (mm)" msgid "Speed (mm/s)" msgstr "Velocidade (mm/s)" @@ -4874,12 +4913,11 @@ msgstr "Aceleração (mm/s²)" msgid "Jerk (mm/s)" msgstr "Jerk (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fan speed (%)" -msgstr "Velocidade do Ventilador (%)" +msgstr "Velocidade do ventilador (%)" msgid "Temperature (°C)" -msgstr "Temperatura (°C)" +msgstr "Temperatura (℃)" msgid "Volumetric flow rate (mm³/s)" msgstr "Taxa de fluxo volumétrico (mm³/s)" @@ -4890,7 +4928,6 @@ msgstr "Taxa de fluxo volumétrico real (mm³/s)" msgid "Seams" msgstr "Costuras" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament changes" msgstr "Mudanças de filamento" @@ -4912,10 +4949,10 @@ msgstr "Trocas de ferramenta" msgid "Color change" msgstr "Mudança de cor" +msgctxt "Noun" msgid "Print" msgstr "Imprimir" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Impressora" @@ -5075,11 +5112,15 @@ msgstr "Evitar a região de calibração da extrusão" msgid "Align to Y axis" msgstr "Alinhar com o eixo Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Atrás" + +msgctxt "Camera View" msgid "Left" msgstr "Esquerda" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Direita" @@ -5128,6 +5169,12 @@ msgstr "Todas as Placas" msgid "Stats" msgstr "Estatísticas" +msgid "Slice" +msgstr "Fatiar" + +msgid "Review" +msgstr "Revisar" + msgid "Assembly Return" msgstr "Retornar à Montagem" @@ -5152,6 +5199,9 @@ msgstr "Saliências" msgid "Outline" msgstr "Contorno" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "Visualização Realista" @@ -5397,6 +5447,10 @@ msgstr "Imprimir placa" msgid "Export G-code file" msgstr "Exportar arquivo G-code" +msgctxt "Verb" +msgid "Print" +msgstr "Imprimir" + msgid "Export plate sliced file" msgstr "Exportar arquivo de placa fatiada" @@ -5428,7 +5482,7 @@ msgid "Show Configuration Folder" msgstr "Mostrar Pasta de Configuração" msgid "Troubleshoot Center" -msgstr "" +msgstr "Central de Solução de Problemas" msgid "Open Network Test" msgstr "Abrir Teste de Rede" @@ -6182,9 +6236,8 @@ msgstr "Disponível" msgid "Input access code" msgstr "Digite o código de acesso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Can't find devices?" -msgstr "Não consegue encontrar meus dispositivos?" +msgstr "Não consegue encontrar dispositivos?" msgid "Log out successful." msgstr "Sessão encerrada com sucesso." @@ -6207,15 +6260,12 @@ msgstr "caracteres ilegais:" msgid "illegal suffix:" msgstr "sufixo ilegal:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name field is not allowed to be empty." -msgstr "O nome não pode ficar vazio." +msgstr "O nome não pode ser vazio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to start with a space." msgstr "O nome não pode começar com um espaço." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to end with a space." msgstr "O nome não pode terminar com um espaço." @@ -6238,9 +6288,8 @@ msgstr "Alternando…" msgid "Switching failed" msgstr "Falha na troca" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printing progress" -msgstr "Progresso da Impressão" +msgstr "Progresso da impressão" msgid "Parts Skip" msgstr "Pular Peças" @@ -6257,7 +6306,6 @@ msgstr "Clique para ver explicação do precondicionamento térmico" msgid "Clear" msgstr "Limpar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" "but synchronizing rating information has failed." @@ -6346,10 +6394,9 @@ msgstr "Baixando…" msgid "Cloud Slicing..." msgstr "Fatiando na Nuvem…" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." -msgstr "Na Fila de Fatiamento na Nuvem, existem %s tarefas na frente." +msgstr "Na Fila de Fatiamento na Nuvem, existem %s tarefas na sua frente." #, c-format, boost-format msgid "Layer: %s" @@ -6371,7 +6418,6 @@ msgstr "Se a temperatura da câmara exceder os 40℃, o sistema mudará automati msgid "Please select an AMS slot before calibration" msgstr "Selecione um espaço AMS antes da calibração" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." msgstr "Não é possível ler as informações do filamento: o filamento está carregado na cabeça da ferramenta, por favor descarregue o filamento e tente novamente." @@ -6694,10 +6740,10 @@ msgid "Model file downloaded." msgstr "Arquivo do modelo baixado." msgid "Pull" -msgstr "" +msgstr "Baixar" msgid "Force push" -msgstr "" +msgstr "Forçar subida" msgid "Shared profiles may be available for this printer." msgstr "Perfis compartilhadas podem estar disponíveis para essa impressora." @@ -6760,9 +6806,8 @@ msgstr "Inferior" msgid "Enable detection of build plate position" msgstr "Ativar detecção da posição da placa de impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." -msgstr "A etiqueta de localização da placa de impressão é detectada e a impressão é pausada se a etiqueta não estiver na faixa predefinida." +msgstr "A etiqueta de localização da placa de impressão será detectada, e a impressão será pausada se a etiqueta não estiver na faixa predefinida." msgid "Build Plate Detection" msgstr "Detecção de Placa" @@ -6806,7 +6851,6 @@ msgstr "Detecta falhas na impressão causadas por entupimento do bico ou erosão msgid "First Layer Inspection" msgstr "Inspeção da Primeira Camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto-recover from step loss" msgstr "Recuperação automática de perda de passo" @@ -6819,9 +6863,8 @@ msgstr "Salve os arquivos de impressão iniciados no Bambu Studio, Bambu Handy e msgid "Allow Prompt Sound" msgstr "Permitir som de alerta" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament Tangle Detection" -msgstr "Detecção de emaranhado de filamento" +msgstr "Detecção de Emaranhado de Filamento" msgid "Check if the nozzle is clumping by filament or other foreign objects." msgstr "Verifica se o bico está com filamento acumulado ou outros objetos estranhos." @@ -7581,10 +7624,10 @@ msgid "Unable to perform boolean operation on model meshes. Only positive parts 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 "" +msgstr "O host Flashforge não está disponível." msgid "Unable to log in to the Flashforge printer." -msgstr "" +msgstr "Não é possível fazer login na impressora Flashforge." 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?" @@ -7778,6 +7821,50 @@ msgstr "Escolha a pasta para itens baixados" msgid "Choose Download Directory" msgstr "Escolha o Diretório de Download" +msgid "(Latest)" +msgstr "(Mais recente)" + +msgid "Network plug-in switched successfully." +msgstr "Plug-in de rede alterado com sucesso." + +msgid "Success" +msgstr "Sucesso" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Falha ao carregar o plug-in de rede. Reinicie o aplicativo." + +#, 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 "" +"Você selecionou a versão %s do plug-in de rede.\n" +"\n" +"Deseja baixar e instalar esta versão agora?\n" +"\n" +"Observação: o aplicativo pode precisar ser reiniciado após a instalação." + +msgid "Download Network Plug-in" +msgstr "Baixar Plug-in de Rede" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Recarregar o plug-in de rede sem reiniciar a aplicação" + +msgid "Network plug-in reloaded successfully." +msgstr "Plug-in de rede recarregado com sucesso." + +msgid "Reload" +msgstr "Recarregar" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Falha ao recarregar plug-in de rede. Por favor, reinicie a aplicação." + +msgid "Reload Failed" +msgstr "Falha ao Recarregar" + msgid "Associate" msgstr "Associar" @@ -7833,12 +7920,6 @@ msgstr "Mostrar tela de abertura" msgid "Show the splash screen during startup." msgstr "Mostrar a tela de abertura durante a inicialização." -msgid "Show shared profiles notification" -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 "Usar os botões de janela no lado esquerdo" @@ -7869,6 +7950,13 @@ msgstr "Comportamento de carregamento" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "As configurações de impressora/filamento/processo devem ser carregadas ao abrir um arquivo 3MF?" +msgid "Auto backup" +msgstr "Backup automático" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Faça backup do seu projeto periodicamente para restaurar de falhas ocasionais." + msgid "Maximum recent files" msgstr "Máximo de arquivos recentes" @@ -7887,12 +7975,55 @@ msgstr "Mostrar opções ao importar arquivo STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Se ativo, uma caixa de diálogo de configurações de parâmetros será exibida durante a importação do arquivo STEP." -msgid "Auto backup" -msgstr "Backup automático" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Faça backup do seu projeto periodicamente para restaurar de falhas ocasionais." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Nível de qualidade para exportação Draco" + +msgid "bits" +msgstr "bits" + +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 "" +"Controla a profundidade de bits de quantização usada ao comprimir a malha para o formato Draco.\n" +"0 = compressão sem perdas (a geometria é preservada com precisão total). Os valores válidos para compressão com perdas variam de 8 a 30.\n" +"Valores mais baixos produzem arquivos menores, mas perdem mais detalhes geométricos; valores mais altos preservam mais detalhes, ao custo de arquivos maiores." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Predefinição" @@ -7924,6 +8055,12 @@ msgstr "filamentos" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Otimiza a altura máxima da area de filamentos para a contagem de filamentos escolhidos." +msgid "Show shared profiles notification" +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 "Features" msgstr "Recursos" @@ -7936,21 +8073,6 @@ msgstr "Com esta opção habilitada, você pode enviar uma tarefa para vários d msgid "Pop up to select filament grouping mode" msgstr "Abrir seleção do modo de agrupamento de filamento" -msgid "Quality level for Draco export" -msgstr "Nível de qualidade para exportação Draco" - -msgid "bits" -msgstr "bits" - -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 "" -"Controla a profundidade de bits de quantização usada ao comprimir a malha para o formato Draco.\n" -"0 = compressão sem perdas (a geometria é preservada com precisão total). Os valores válidos para compressão com perdas variam de 8 a 30.\n" -"Valores mais baixos produzem arquivos menores, mas perdem mais detalhes geométricos; valores mais altos preservam mais detalhes, ao custo de arquivos maiores." - msgid "Behaviour" msgstr "Comportamento" @@ -8081,13 +8203,16 @@ msgid "Renders cast shadows on the plate in realistic view." msgstr "Renderiza sombras na placa em uma visualização realista." msgid "Smooth normals" -msgstr "" +msgstr "Normais suaves" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"Aplica normais suaves à visualização realista.\n" +"\n" +"Requer a recarga manual da cena para fazer efeito (clique com o botão direito na visualização 3D → \"Recarregar Tudo\")." msgid "Anti-aliasing" msgstr "Antisserrilhamento" @@ -8163,10 +8288,10 @@ msgstr "" "Observação: quando o Modo Furtivo está ativado, seus perfis de usuário não serão copiados para o Orca Cloud." msgid "Hide login side panel" -msgstr "" +msgstr "Ocultar painel lateral de autenticação" msgid "Hide the login side panel on the home page." -msgstr "" +msgstr "Ocultar painel lateral de autenticação na página inicial." msgid "Network test" msgstr "Teste de Rede" @@ -8192,19 +8317,6 @@ msgstr "Verificar apenas atualizações estáveis" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Sincronização automática de predefinições do usuário (Impressora/Filamento/Processo)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Atualizar automaticamente Predefinições integradas." - -msgid "Use encrypted file for token storage" -msgstr "Usar um arquivo criptografado para armazenar os tokens" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Armazene os tokens de autenticação em um arquivo criptografado em vez do chaveiro do sistema. (Requer reinicialização)" - -msgid "Filament Sync Options" -msgstr "Opções de Sincronização de Filamento" - msgid "Filament sync mode" msgstr "Modo de sincronização de filamento" @@ -8217,11 +8329,21 @@ msgstr "Filamento e Cor" msgid "Color only" msgstr "Apenas Cor" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Atualizar automaticamente Predefinições integradas." + +msgid "Use encrypted file for token storage" +msgstr "Usar um arquivo criptografado para armazenar os tokens" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Armazene os tokens de autenticação em um arquivo criptografado em vez do chaveiro do sistema. (Requer reinicialização)" + msgid "Bambu network plug-in" -msgstr "" +msgstr "Plug-in de rede Bambu" msgid "Enable Bambu network plug-in" -msgstr "" +msgstr "Ativar Plug-in de rede Bambu" msgid "Network plug-in version" msgstr "Versão do plug-in de rede" @@ -8229,70 +8351,38 @@ msgstr "Versão do plug-in de rede" msgid "Select the network plug-in version to use" msgstr "Selecione a versão do plug-in de rede a ser usado" -msgid "(Latest)" -msgstr "(Mais recente)" - -msgid "Network plug-in switched successfully." -msgstr "Plug-in de rede alterado com sucesso." - -msgid "Success" -msgstr "Sucesso" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Falha ao carregar o plug-in de rede. Reinicie o aplicativo." - -#, 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 "" -"Você selecionou a versão %s do plug-in de rede.\n" -"\n" -"Deseja baixar e instalar esta versão agora?\n" -"\n" -"Observação: o aplicativo pode precisar ser reiniciado após a instalação." - -msgid "Download Network Plug-in" -msgstr "Baixar Plug-in de Rede" - msgid "Associate files to OrcaSlicer" msgstr "Associar arquivos ao OrcaSlicer" msgid "File associations for the Microsoft Store version are managed by Windows Settings." -msgstr "" +msgstr "As associações de arquivos para a versão da Microsoft Store são gerenciadas pelas Configurações do Windows." msgid "Open Windows Default Apps Settings" -msgstr "" +msgstr "Abrir as Configurações de Aplicativos Padrão do Windows" msgid "Associate 3MF files to OrcaSlicer" msgstr "Associar arquivos 3MF ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos 3MF." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos 3MF." msgid "Associate DRC files to OrcaSlicer" msgstr "Associar arquivos DRC ao OrcaSlicer" msgid "If enabled, sets OrcaSlicer as default application to open DRC files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos DRC." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos DRC." msgid "Associate STL files to OrcaSlicer" msgstr "Associar arquivos STL ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos STL." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos STL." msgid "Associate STEP files to OrcaSlicer" msgstr "Associar arquivos STEP ao OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." -msgstr "Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos STEP." +msgstr "Se ativado, isso define o OrcaSlicer como aplicativo padrão para abrir arquivos STEP." msgid "Associate web links to OrcaSlicer" msgstr "Associar links da web ao OrcaSlicer" @@ -8303,20 +8393,23 @@ msgstr "Desenvolvedor" msgid "Skip AMS blacklist check" msgstr "Pular verificação de lista negra AMS" -msgid "(Experimental) Keep painted feature after mesh change" -msgstr "" +msgid "Show unsupported presets" +msgstr "Mostrar predefinições não suportadas" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "Exibir predefinições incompatíveis e não suportadas nas listas de impressora e filamento. Essas predefinições não podem ser selecionadas." + +msgid "Experimental Features" +msgstr "Recursos Experimentais" + +msgid "Keep painted feature after mesh change" +msgstr "Manter o elemento pintado após a alteração da malha" 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 "" -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" @@ -8345,24 +8438,6 @@ msgstr "depurar" msgid "trace" msgstr "traço" -msgid "Network plug-in" -msgstr "Plug-in de rede" - -msgid "Reload" -msgstr "Recarregar" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Recarregar o plug-in de rede sem reiniciar a aplicação" - -msgid "Network plug-in reloaded successfully." -msgstr "Plug-in de rede recarregado com sucesso." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Falha ao recarregar plug-in de rede. Por favor, reinicie a aplicação." - -msgid "Reload Failed" -msgstr "Falha ao Recarregar" - msgid "Debug" msgstr "Depuração" @@ -8378,25 +8453,6 @@ msgstr "Sincronização de predefinição" msgid "Preferences sync" msgstr "Sincronização de preferências" -msgid "View control settings" -msgstr "Configurações de controle de vista" - -msgid "Rotate view" -msgstr "Rotacionar vista" - -msgid "Pan view" -msgstr "Mover vista" - -msgid "Zoom view" -msgstr "Aproximar vista" - -msgid "Other" -msgstr "Outro" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "O botão de roda do mouse inverte ao fazer zoom" - msgid "Enable SSL(MQTT)" msgstr "Ativar SSL(MQTT)" @@ -8868,7 +8924,7 @@ msgid "Synchronizing device information..." msgstr "Sincronizando informações do dispositivo…" msgid "Synchronizing device information timed out." -msgstr "Expirado tempo limite de sincronização das informações do dispositivo." +msgstr "Expirado limite de tempo de sincronização das informações do dispositivo." msgid "Cannot send a print job when the printer is not at FDM mode." msgstr "Não é possível enviar um trabalho de impressão quando a impressora não está em modo FDM." @@ -8950,14 +9006,13 @@ msgid "Upload file timeout, please check if the firmware version supports it." msgstr "Limite de tempo de envio de arquivo excedido, verifique se a versão do firmware tem suporte." msgid "Connection timed out, please check your network." -msgstr "Tempo limite de conexão excedido. Verifique sua rede." +msgstr "Limite de tempo de conexão excedido, verifique sua rede." msgid "Connection failed. Click the icon to retry" msgstr "Falha na coexão. Clique no icon para tentar novamente" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send print tasks when an update is in progress" -msgstr "Não é possível enviar a tarefa de impressão quando a atualização está em progresso" +msgstr "Não é possível enviar tarefas de impressão quando uma atualização está em progresso" msgid "The selected printer is incompatible with the chosen printer presets." msgstr "A impressora selecionada é incompatível com as predefinições de impressora escolhidas." @@ -8965,7 +9020,6 @@ msgstr "A impressora selecionada é incompatível com as predefinições de impr msgid "Storage needs to be inserted before send to printer." msgstr "O armazenamento precisa estar inserido antes de enviar para a impressora." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer is required to be on the same LAN as Orca Slicer." msgstr "A impressora deve estar na mesma LAN do OrcaSlicer." @@ -8996,11 +9050,9 @@ msgstr "Falha ao conectar o socket" msgid "Failed to publish login request" msgstr "Falha ao publicar a solicitação de login" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from device" msgstr "Limite de tempo excedido ao obter o ticket do dispositivo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from server" msgstr "Limite de tempo excedido ao obter o ticket do servidor" @@ -9104,6 +9156,12 @@ msgstr "Excluir esta predefinição" msgid "Search in preset" msgstr "Pesquisar nas predefinições" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Clique para redefinir todas as configurações para a última predefinição salva." @@ -9395,6 +9453,18 @@ msgstr "Taxa de fluxo e Avanço de Pressão" msgid "Print chamber temperature" msgstr "Temperatura da câmara de impressão" +msgid "Chamber temperature" +msgstr "Temperatura da câmara" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "Alvo" + +msgid "Minimal" +msgstr "Mínimo" + msgid "Print temperature" msgstr "Temperatura de impressão" @@ -9718,18 +9788,28 @@ msgid "Temperature Safety Check" msgstr "Verificação de Segurança de Temperatura" msgid "Continue" -msgstr "Continue" +msgstr "Continuar" msgid "Don't warn again for this preset" msgstr "Não avisar novamente para essa predifinição" #, c-format, boost-format -msgid "Left: %s" -msgstr "Esquerda: %s" +msgid "%s: %s" +msgstr "%s: %s" + +msgid "No modifications need to be copied." +msgstr "Nenhuma modificação precisa ser copiada." + +msgid "Copy paramters" +msgstr "Copiar parâmetros" #, c-format, boost-format -msgid "Right: %s" -msgstr "Direita: %s" +msgid "Modify paramters of %s" +msgstr "Modificar parâmetros de %s" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "Você quer modificar os seguintes parâmetros de %s para os de %s?" msgid "Click to reset current value and attach to the global value." msgstr "Clique para redefinir o valor atual e anexá-lo ao valor global." @@ -9746,7 +9826,7 @@ msgstr "alterações não salvas" msgid "Transfer or discard changes" msgstr "Transferir ou descartar alterações" -msgid "Old value" +msgid "Old Value" msgstr "Valor antigo" msgid "New Value" @@ -9878,6 +9958,12 @@ msgstr "Número de extrusoras" msgid "Capabilities" msgstr "Capacidades" +msgid "Left: " +msgstr "Esquerda: " + +msgid "Right: " +msgstr "Direita: " + msgid "Show all presets (including incompatible)" msgstr "Mostrar todas as predefinições (incluindo as incompatíveis)" @@ -10370,9 +10456,8 @@ msgstr "Seta para direita" msgid "Move selection 10mm in positive X direction" msgstr "Mover seleção 10mm na direção X positiva" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Movement step set to 1mm" -msgstr "Passo de movimento definido para 1 mm" +msgstr "Passo de movimento definido para 1mm" msgid "Keyboard 1-9: set filament for object/part" msgstr "Teclado 1-9: ajustar filamento para objeto/peça" @@ -10420,13 +10505,13 @@ msgid "Gizmo mesh boolean" msgstr "Gizmo malha booleana" msgid "Gizmo FDM paint-on fuzzy skin" -msgstr "Gizmo FDM pintura em textura difusa" +msgstr "Gizmo de pintura de textura difusa FDM" msgid "Gizmo SLA support points" msgstr "Gizmo de pontos de suporte SLA" msgid "Gizmo FDM paint-on seam" -msgstr "Gizmo de costura de pintura FDM" +msgstr "Gizmo de pintura de costura FDM" msgid "Gizmo text emboss/engrave" msgstr "Gizmo Texturizar/gravar texto" @@ -10522,7 +10607,6 @@ msgstr "informações de atualização da versão %s:" msgid "Network plug-in update" msgstr "Atualização do plug-in de rede" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." msgstr "Clique em OK para atualizar o plug-in de rede quando o OrcaSlicer for iniciado novamente." @@ -10667,13 +10751,11 @@ msgstr "Atualização bem-sucedida" 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 "Tem certeza de que deseja atualizar? Isso levará cerca de 10 minutos. Não desligue a energia enquanto a impressora estiver atualizando." -# TODO: Review, changed by lang refactor. PR 14254 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 'Update firmware'." msgstr "Uma atualização importante foi detectada e precisa ser executada antes que a impressão possa continuar. Deseja atualizar agora? Você também pode atualizar posteriormente em 'Atualizar firmware'." -# TODO: Review, changed by lang refactor. PR 14254 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 the printer or update next time you start Orca Slicer." -msgstr "A versão do firmware está anormal. Reparar e atualizar é necessário antes de imprimir. Você deseja atualizar agora? Você também pode atualizar mais tarde na impressora ou atualizar da próxima vez que iniciar o Orca." +msgstr "A versão do firmware está anormal. Reparar e atualizar é necessário antes de imprimir. Você deseja atualizar agora? Você também pode atualizar mais tarde na impressora ou atualizar da próxima vez que iniciar o OrcaSlicer." msgid "Extension Board" msgstr "Mesa de Extensão" @@ -10695,9 +10777,8 @@ msgstr "Reparo cancelado" msgid "Copying of file %1% to %2% failed: %3%" msgstr "Falha ao copiar o arquivo %1% para %2%: %3%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please check any unsaved changes before updating the configuration." -msgstr "É necessário verificar as alterações não salvas antes das atualizações de configuração." +msgstr "Verifique as alterações não salvas antes de atualizar a configuração." msgid "Configuration package: " msgstr "Pacote de configuração: " @@ -10711,10 +10792,9 @@ msgstr "Abrir arquivo G-code:" msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." msgstr "Um objeto tem uma primeira camada vazia e não pode ser impresso. Por favor, corte a base ou habilite os suportes." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The object has empty layers between %1% and %2% and can’t be printed." -msgstr "O objeto não pode ser impresso devido a uma camada vazia entre %1% e %2%." +msgstr "O objeto tem camadas vazias entre %1% e %2% e não pode ser impresso." #, boost-format msgid "Object: %1%" @@ -10774,10 +10854,9 @@ msgstr " não pode ser colocado na " msgid "Internal Bridge" msgstr "Ponte interna" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " -msgstr "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de \"%2%\". " +msgstr "Falha ao calcular a largura da linha de %1%. Não é possível obter o valor de “%2%”. " msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" msgstr "Espaçamento inválido fornecido para Flow::with_spacing(), verifique a altura da camada e a largura da extrusão." @@ -10875,10 +10954,9 @@ msgstr "validação falhou" msgid "write callback failed" msgstr "falha na chamada de escrita" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "%1% is too close to exclusion area. There may be collisions when printing." -msgstr "%1% está muito perto da área de exclusão, pode haver colisões durante a impressão." +msgstr "%1% está muito perto de área de exclusão. Pode haver colisões durante a impressão." #, boost-format msgid "%1% is too close to others, and collisions may be caused." @@ -10900,9 +10978,8 @@ msgstr "Torre de Preparo" msgid " is too close to others, and collisions may be caused.\n" msgstr " está muito perto de outros, e colisões podem ocorrer.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid " is too close to an exclusion area, and collisions will be caused.\n" -msgstr " está muito perto da área de exclusão, e ocorrerão colisões.\n" +msgstr " está muito perto de uma área de exclusão, e colisões vão ocorrer.\n" msgid " is too close to clumping detection area, and collisions will be caused.\n" msgstr " está muito perto da área de detecção de aglomeração, e ocorrerão colisões.\n" @@ -10934,9 +11011,8 @@ msgstr "Uma torre de preparo é necessária para a detecção de aglomeração, msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." msgstr "Por favor, selecione a sequência de impressão \"Por objeto\" para imprimir vários objetos no modo vaso espiral." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Spiral (vase) mode does not work when an object contains more than one material." -msgstr "O modo de vaso espiral não funciona quando um objeto contém mais de um material." +msgstr "O modo espiral (vaso) não funciona quando um objeto contém mais de um material." #, boost-format msgid "While the object %1% itself fits the build volume, it exceeds the maximum build volume height because of material shrinkage compensation." @@ -11045,19 +11121,19 @@ msgid "Bridge line width must not exceed nozzle diameter" msgstr "A largura da linha de ponte não deve exceder o diâmetro do bico" 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 "" +msgstr "\"G92 E0\" foi encontrado em before_layer_gcode, mas o G ou o E não estão em maiúsculas. Por favor, altere-os para exatamente \"G92 E0\" (em maiúsculas)." 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 "" +msgstr "\"G92 E0\" foi encontrado em layer_change_gcode, mas o G ou o E não estão em maiúsculas. Por favor, altere-os para exatamente \"G92 E0\" (em maiúsculas)." 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 "O endereçamento relativo da extrusora requer a reinicialização da posição da extrusora em cada camada para evitar perda de precisão de ponto flutuante. Adicione \"G92 E0\" ao layer_gcode." msgid "\"G92 E0\" was found in before_layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em before_layer_change_gcode, o que é incompatível com o endereçamento absoluto da extrusora." msgid "\"G92 E0\" was found in layer_change_gcode, which is incompatible with absolute extruder addressing." -msgstr "" +msgstr "\"G92 E0\" foi encontrado em layer_change_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" @@ -11114,6 +11190,12 @@ msgstr "A contração de filamento não será usada porque a contração dos fil msgid "Generating skirt & brim" msgstr "Gerando saia e borda" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Exportando G-code" @@ -11134,22 +11216,22 @@ msgid "Extruder printable area" msgstr "Área de impressão da extrusora" msgid "Support parallel printheads" -msgstr "" +msgstr "Suportar cabeçotes paralelos" msgid "Enable printer settings for machines that can use multiple printheads in parallel." -msgstr "" +msgstr "Habilita as configurações de impressão para máquinas que podem utilizar múltiplas cabeças de impressão em paralelo." msgid "Parallel printheads count" -msgstr "" +msgstr "Contagem de cabeçotes paralelos" msgid "Set the number of parallel printheads for machines like OrangeStorm Giga printer." -msgstr "" +msgstr "Define o número de cabeçotes de impressão em paralelo para máquinas como a impressora OrangeStorm Giga." msgid "Parallel printheads bed exclude areas" -msgstr "" +msgstr "Áreas de exclusão da mesa para cabeçotes de impressão paralelos" 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 "" +msgstr "Lista ordenada de áreas de exclusão da mesa, com base na quantidade de cabeçotes de impressão operando em paralelo. O item 1 aplica-se a um cabeçote de impressão, o item 2 a dois cabeçotes, e assim por diante. Deixe um item em branco se não houver área de exclusão." # TODO: Review, changed by lang refactor. PR 14254 msgid "Excluded bed area" @@ -11222,10 +11304,10 @@ msgid "Allow controlling BambuLab's printer through 3rd party print hosts." msgstr "Permitir o controle da impressora BambuLab por meio de hosts de impressão de terceiros." msgid "Use 3MF instead of G-code" -msgstr "" +msgstr "Usar 3MF em vez de G-code" msgid "Enable this if the printer accepts a 3MF file as the print job. When enabled, Orca Slicer sends the sliced file as a .gcode.3mf, instead of a plain .gcode file." -msgstr "" +msgstr "Ative esta opção se a impressora aceitar um arquivo 3MF como trabalho de impressão. Quando ativada, o OrcaSlicer envia o arquivo fatiado como .gcode.3mf, em vez de um arquivo .gcode comum." msgid "Printer Agent" msgstr "Agente de Impressora" @@ -11497,10 +11579,10 @@ msgid "" msgstr "" msgid "Relative bridge angle" -msgstr "" +msgstr "Ângulo relativo de ponte" msgid "When enabled, the bridge angle values are added to the automatically calculated bridge direction instead of overriding it." -msgstr "" +msgstr "Quando habilitados, os valores de ângulo da ponte são somados à direção da ponte calculada automaticamente em vez de substituí-la." msgid "External bridge density" msgstr "Densidade de ponte externa" @@ -11981,16 +12063,33 @@ msgstr "Como lista de objetos" msgid "Slow printing down for better layer cooling" msgstr "Diminuir a velocidade de impressão para melhor resfriamento de camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada por mais tempo. Isso pode melhorar a qualidade de resfriamento para detalhes pequenos." +msgstr "Ative esta opção para diminuir a velocidade de impressão para que o tempo da camada final não seja menor do que o limiar de tempo da camada em \"Limiar de velocidade máxima do ventilador\", para que a camada possa ser resfriada um tempo mais longo. Isso pode melhorar a qualidade para detalhes pequenos." msgid "Normal printing" msgstr "Impressão normal" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the default acceleration for both normal printing and travel after the first layer." -msgstr "A aceleração padrão tanto para a impressão normal quanto para o movimento, exceto na primeira camada." +msgstr "Essa é a aceleração padrão tanto para a impressão normal quanto para o movimento depois da primeira camada." + +msgid "Acceleration of travel moves." +msgstr "Aceleração dos movimentos de deslocamento." + +msgid "First layer travel" +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 "mm/s² or %" +msgstr "mm/s² ou %" + +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 "Aceleração das pontes. Se o valor for expresso como uma porcentagem (por exemplo, 50%), será calculado com base na aceleração da parede externa." msgid "Default filament profile" msgstr "Perfil de filamento padrão" @@ -12034,9 +12133,8 @@ msgstr "Desligar todos os ventiladores de resfriamento para as primeiras camadas msgid "Don't support bridges" msgstr "Não suportar pontes" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." -msgstr "Não suportar toda a área da ponte que faz com que o suporte seja muito grande. Pontes geralmente podem ser impressas diretamente sem suporte se não forem muito longas." +msgstr "Isto desabilita pontes de suporte, que diminui a quantidade de suporte necessário. Pontes geralmente podem ser impressas diretamente sem suporte sobre uma distância razoável." msgid "Thick external bridges" msgstr "Pontes externas grossas" @@ -12046,6 +12144,9 @@ msgid "" "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, a extrusão de pontes utiliza uma altura de linha igual ao diâmetro do bico.\n" +"Isso aumenta a resistência e a confiabilidade da ponte, permitindo vãos maiores, mas pode prejudicar a aparência.\n" +"Se desativado, as pontes podem apresentar melhor aparência, mas geralmente são confiáveis ​​apenas para vãos menores." msgid "Thick internal bridges" msgstr "Pontes internas grossas" @@ -12055,6 +12156,9 @@ msgid "" "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, a extrusão de pontes internas usa uma altura de linha igual ao diâmetro do bico.\n" +"Isso aumenta a resistência e a confiabilidade das pontes internas quando impressas sobre preenchimento esparso, mas pode prejudicar a aparência.\n" +"Se desativado, as pontes internas podem apresentar melhor aparência, mas podem ser menos confiáveis sobre preenchimento esparso." msgid "Extra bridge layers (beta)" msgstr "Camadas extras de ponte (beta)" @@ -12122,16 +12226,14 @@ msgstr "Sem filtragem" msgid "Max bridge length" msgstr "Comprimento máximo de ponte" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum 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 "Comprimento máximo de pontes que não precisam de suporte. Defina como 0 se desejar que todas as pontes tenham suporte, e defina como um valor muito grande se não desejar que nenhuma ponte tenha suporte." +msgstr "Este é o comprimento máximo de pontes que não precisam de suporte. Defina como 0 se desejar que todas as pontes tenham suporte, e defina como um valor muito grande se não desejar que nenhuma ponte tenha suporte." msgid "End G-code" msgstr "G-code de finalização" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-Code when finishing the entire print." -msgstr "G-code de finalização ao terminar a impressão completa." +msgstr "Adicionar G-code de finalização ao terminar a impressão completa." msgid "Between Object G-code" msgstr "G-code entre objetos" @@ -12139,9 +12241,8 @@ msgstr "G-code entre objetos" msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." msgstr "Insira o G-code entre objetos. Este parâmetro só terá efeito quando você imprimir seus modelos objeto por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-code when finishing the printing of this filament." -msgstr "G-code de finalização ao terminar a impressão deste filamento." +msgstr "Adicionar G-code de finalização ao terminar a impressão deste filamento." msgid "Ensure vertical shell thickness" msgstr "Garantir a espessura vertical da casca" @@ -12170,9 +12271,8 @@ msgstr "Moderado" msgid "Top surface pattern" msgstr "Padrão de superfície superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for top surface infill." -msgstr "Padrão de linha do preenchimento da superfície superior." +msgstr "Este é o padrão de linha do preenchimento da superfície superior." msgid "Monotonic" msgstr "Monótono" @@ -12198,12 +12298,25 @@ msgstr "Cordas Arquimedeanas" msgid "Octagram Spiral" msgstr "Espiral de Octagrama" +msgid "Top surface density" +msgstr "Densidade da superfície superior" + +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 "Densidade da camada superior. Um valor de 100% cria uma camada superior totalmente sólida e lisa. Reduzir esse valor resulta em uma superfície superior texturizada, de acordo com o padrão de superfície superior escolhido. Um valor de 0% resultará na criação apenas das paredes da camada superior. Destinado a fins estéticos ou funcionais, não para corrigir problemas como extrusão excessiva." + msgid "Bottom surface pattern" msgstr "Padrão de superfície inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern of bottom surface infill, not including bridge infill." -msgstr "Padrão de linha do preenchimento da superfície inferior, não do preenchimento da ponte." +msgstr "Este é o padrão de linha do preenchimento da superfície inferior, não incluindo o preenchimento de ponte." + +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 "" msgid "Internal solid infill pattern" msgstr "Padrão de preenchimento sólido interno" @@ -12214,9 +12327,8 @@ msgstr "Padrão de linha do preenchimento sólido interno. Se a detecção de pr msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha da parede externa. Se expresso como porcentagem, será calculado sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Velocidade da parede externa que é a mais externo e visível. Geralmente é mais lenta que a velocidade da parede interna para obter melhor qualidade." +msgstr "Esta é a velocidade de impressão da parede externa das peças. Geralmente mais lenta que a velocidade das paredes internas para melhor qualidade." msgid "Small perimeters" msgstr "Pequenos perímetros" @@ -12230,6 +12342,18 @@ msgstr "Limiar de pequenos perímetros" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Isso define o limiar para o comprimento do perímetro pequeno. O limiar padrão é 0 mm." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Ordem de impressão das paredes" @@ -12294,20 +12418,17 @@ msgstr "Horário" msgid "Height to rod" msgstr "Altura até a haste" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." msgstr "Distância da ponta do bico até a haste inferior. Usado para evitar colisões na impressão por objeto." msgid "Height to lid" msgstr "Altura até a tampa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." msgstr "Distância da ponta do bico à tampa. Usado para evitar colisões na impressão por objeto." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." -msgstr "Raio de folga ao redor da extrusora. Usado para evitar colisões na impressão por objeto." +msgstr "Raio de folga ao redor da extrusora: usado para evitar colisões na impressão por objeto." msgid "Nozzle height" msgstr "Altura do bico" @@ -12418,25 +12539,26 @@ msgstr "" "2. Anote o valor de PA ideal para cada velocidade e aceleração de fluxo volumétrico. Você pode encontrar o número do fluxo selecionando fluxo no menu suspenso do esquema de cores e movendo o controle deslizante horizontal sobre as linhas do padrão de PA. O número deve estar visível na parte inferior da página. O valor de PA ideal deve diminuir quanto maior for o fluxo volumétrico. Se não estiver, confirme se sua extrusora está funcionando corretamente. Quanto mais lento e com menos aceleração você imprimir, maior será o intervalo de valores de PA aceitáveis. Se nenhuma diferença for visível, use o valor de PA do teste mais rápido\n" "3. Insira os tripletos de valores de PA, Fluxo e Acelerações na caixa de texto aqui e salve seu perfil de filamento." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Habilitar avanço de pressão adaptável para saliências (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Avanço de pressão para pontes" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Valor de avanço de pressão para pontes. Defina como 0 para desabilitar.\n" -"\n" -"Um valor de PA mais baixo ao imprimir pontes ajuda a reduzir a aparência de leve subextrusão imediatamente após as pontes. Isso é causado pela queda de pressão no bico ao imprimir no ar e um PA mais baixo ajuda a neutralizar isso." 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 "Largura de linha padrão se outras larguras de linha estiverem definidas como 0. Se expresso como %, será calculado sobre o diâmetro do bico." @@ -12444,7 +12566,6 @@ msgstr "Largura de linha padrão se outras larguras de linha estiverem definidas msgid "Keep fan always on" msgstr "Manter o ventilador sempre ligado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." msgstr "Habilitar esta configuração significa que o ventilador de resfriamento da peça nunca será desligado completamente e funcionará pelo menos na velocidade mínima para reduzir a frequência de inícios e paradas." @@ -12465,9 +12586,8 @@ msgstr "" msgid "Layer time" msgstr "Tempo da camada" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "O ventilador de resfriamento de peças será ativado para camadas cujo tempo estimado seja menor que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada." +msgstr "O ventilador de resfriamento de peças será ativado para camadas cujo tempo estimado seja mais curto que esse valor. A velocidade do ventilador é interpolada entre as velocidades mínima e máxima do ventilador de acordo com o tempo de impressão da camada." msgid "s" msgstr "s" @@ -12491,9 +12611,8 @@ msgstr "Você pode colocar suas observações sobre o filamento aqui." msgid "Required nozzle HRC" msgstr "HRC do bico requerido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." -msgstr "HRC mínimo do bico necessário para imprimir o filamento. Zero significa que não há verificação do HRC do bico." +msgstr "HRC mínimo do bico necessário para imprimir o filamento. O valor 0 significa que não há verificação do HRC do bico." msgid "Filament map to extruder" msgstr "Mapeamento de filamento para extrusora" @@ -12507,18 +12626,6 @@ msgstr "Automático para purga" msgid "Auto For Match" msgstr "Automático para correspondência" -msgid "Enable filament dynamic map" -msgstr "Habilitar mapa dinâmico de filamento" - -msgid "Enable dynamic filament mapping during print." -msgstr "Habilitar mapeamento dinâmico de filamentos durante a impressão." - -msgid "Has filament switcher" -msgstr "Tem trocador de filamentos" - -msgid "Printer has a filament switcher hardware (e.g., AMS)." -msgstr "A impressora tem um sistema de troca de filamentos (Ex.: AMS)." - msgid "Flush temperature" msgstr "Temperatura de purga" @@ -12531,9 +12638,8 @@ msgstr "Velocidade volumétrica de purga" msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." msgstr "Velocidade volumétrica ao purgar filamento. 0 indica a velocidade volumétrica máxima." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." -msgstr "Essa configuração representa quanto volume de filamento pode ser derretido e extrudado por segundo. A velocidade de impressão é limitada pela velocidade volumétrica máxima, no caso de configurações de velocidade muito altas e irrazoáveis. Não pode ser zero." +msgstr "Essa configuração representa o volume de filamento que pode ser derretido e extrudado por segundo. A velocidade de impressão é limitada pela velocidade volumétrica máxima, no caso de configurações de velocidade muito altas e irrazoáveis. Este valor não pode ser zero." msgid "Filament load time" msgstr "Tempo de carga do filamento" @@ -12565,9 +12671,8 @@ msgstr "Por Primeiro Filamento" msgid "By Highest Temp" msgstr "Por Maior Temperatura" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." -msgstr "O diâmetro do filamento é usado para calcular a extrusão no G-code, portanto, é importante e deve ser preciso." +msgstr "O diâmetro do filamento é usado para calcular as variáveis de extrusão no G-code, portanto é importante que isso seja exato e preciso." msgid "Pellet flow coefficient" msgstr "Coeficiente de fluxo de pellets" @@ -12639,7 +12744,6 @@ msgstr "Velocidade usada no início da fase de carregamento." msgid "Unloading speed" msgstr "Velocidade de descarregamento" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." msgstr "Velocidade usada para descarregar o filamento na torre de limpeza (não afeta a parte inicial do descarregamento logo após o moldeamento)." @@ -12757,9 +12861,8 @@ msgstr "Fluxo usado para moldar o filamento antes da troca de extrusora." msgid "Density" msgstr "Densidade" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament density, for statistical purposes only." -msgstr "Densidade do filamento. Apenas para estatística." +msgstr "Densidade do filamentom, para propósito estatístico apenas." msgid "g/cm³" msgstr "g/cm³" @@ -12794,16 +12897,14 @@ msgstr "O filamento é imprimível na extrusora." msgid "Softening temperature" msgstr "Temperatura de amolecimento" -# TODO: Review, changed by lang refactor. PR 14254 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 clogs." -msgstr "O material amolece a esta temperatura, portanto, quando a temperatura da mesa for igual ou maior que ela, é altamente recomendável abrir a porta da frente e/ou remover o vidro superior para evitar entupimentos." +msgstr "O material amolece a esta temperatura, portanto quando a temperatura da mesa for igual ou maior que ela é altamente recomendável abrir a porta da frente e/ou remover o vidro superior para evitar entupimentos." msgid "Price" msgstr "Preço" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament price, for statistical purposes only." -msgstr "Preço do filamento. Apenas para estatística." +msgstr "Preço do filamento, para propósito estatístico apenas." msgid "money/kg" msgstr "dinheiro/kg" @@ -12820,9 +12921,8 @@ msgstr "(Indefinido)" msgid "Sparse infill direction" msgstr "Direção do preenchimento esparso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." -msgstr "Ângulo para o padrão de preenchimento esparso, que controla a direção inicial ou principal da linha." +msgstr "Este é o ângulo para o padrão de preenchimento esparso, que controla a direção inicial ou principal da linha." msgid "Solid infill direction" msgstr "Direção do preenchimento sólido" @@ -12830,6 +12930,22 @@ msgstr "Direção do preenchimento sólido" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Ângulo para padrão de preenchimento sólido, que controla a direção inicial ou principal da linha." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Densidade do preenchimento esparso" @@ -12844,6 +12960,8 @@ 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 "" +"Alinha as direções do preenchimento, das pontes, do alisamento e do preenchimento de superfícies à orientação do modelo na mesa de impressão.\n" +"Quando ativado, as direções giram com o modelo para manter características ideais de resistência." msgid "Insert solid layers" msgstr "Inserir camadas sólidas" @@ -12860,16 +12978,15 @@ msgstr "Usar múltiplas linhas para o padrão de preenchimento, se suportado pel msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" msgid "Sparse infill pattern" msgstr "Padrão de preenchimento esparso" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for internal sparse infill." -msgstr "Padrão de linha para preenchimento esparso interno." +msgstr "Este é o padrão de linha para preenchimento esparso interno." msgid "Zig Zag" msgstr "Zigue-Zague" @@ -12928,93 +13045,16 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "Giroide" -msgid "Lateral lattice angle 1" -msgstr "Ângulo 1 de treliça lateral" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." +msgstr "Esta é a aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior." -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "O ângulo do primeiro conjunto de elementos de treliça lateral na direção Z. Zero é vertical." - -msgid "Lateral lattice angle 2" -msgstr "Ângulo 2 de treliça lateral" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "O ângulo do segundo conjunto de elementos de treliça lateral na direção Z. Zero é vertical." - -msgid "Infill overhang angle" -msgstr "Ângulo de saliência do preenchimento" - -msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." -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" - -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 "" -"Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O OrcaSlicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que infill_anchor_max for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a este parâmetro, mas não mais do que anchor_length_max.\n" -"Defina este parâmetro como zero para desabilitar os perímetros de ancoragem conectados a uma única linha de preenchimento." - -msgid "0 (no open anchors)" -msgstr "0 (sem ancoras abertas)" - -msgid "1000 (unlimited)" -msgstr "1000 (ilimitado)" - -msgid "Maximum length of the infill anchor" -msgstr "Comprimento máximo da âncora de preenchimento" - -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 "" -"Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O OrcaSlicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que este parâmetro for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a infill_anchor, mas não mais do que este parâmetro.\n" -"Se definido como 0, o antigo algoritmo de conexão de preenchimento será usado, ele deve criar o mesmo resultado que com 1000 e 0." - -msgid "0 (Simple connect)" -msgstr "0 (Conexão simples)" +msgid "Acceleration of outer wall: using a lower value can improve quality." +msgstr "Aceleração da parede externa: usar um valor menor pode melhorar a qualidade." msgid "Acceleration of inner walls." msgstr "Aceleração das paredes internas." -msgid "Acceleration of travel moves." -msgstr "Aceleração dos movimentos de deslocamento." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." -msgstr "Aceleração do preenchimento da superfície superior. Usar um valor menor pode melhorar a qualidade da superfície superior." - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Acceleration of outer wall: using a lower value can improve quality." -msgstr "Aceleração da parede externa. Usar um valor menor pode melhorar a qualidade." - -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 "Aceleração das pontes. Se o valor for expresso como uma porcentagem (por exemplo, 50%), será calculado com base na aceleração da parede externa." - -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." msgstr "Aceleração do preenchimento esparso. Se o valor for expresso como uma porcentagem (por exemplo, 100%), será calculado com base na aceleração padrão." @@ -13025,16 +13065,6 @@ msgstr "Aceleração do preenchimento sólido interno. Se o valor for expresso c msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Aceleração da primeira camada. Usar um valor menor pode melhorar a adesão à placa de impressão." -msgid "First layer travel" -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" @@ -13107,7 +13137,7 @@ msgid "Travel speed of the first layer." msgstr "Velocidade de deslocamento da primeira camada." msgid "Number of slow layers" -msgstr "" +msgstr "Número de camadas lentas" 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 "As primeiras camadas são impressas mais lentamente do que o normal. A velocidade é aumentada gradualmente de forma linear sobre o número especificado de camadas." @@ -13128,6 +13158,17 @@ msgstr "A velocidade do ventilador aumentará linearmente de zero na camada \"cl msgid "layer" msgstr "camada" +msgid "First layer fan speed" +msgstr "Velocidade da ventoinha na primeira camada" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Velocidade do ventilador para interface de suporte" @@ -13667,6 +13708,73 @@ msgstr "Sondagem exclui área de aglomeração" msgid "Probing exclude area of clumping." msgstr "Sondagem exclui área de aglomeração." +msgid "Lateral lattice angle 1" +msgstr "Ângulo 1 de treliça lateral" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "O ângulo do primeiro conjunto de elementos de treliça lateral na direção Z. Zero é vertical." + +msgid "Lateral lattice angle 2" +msgstr "Ângulo 2 de treliça lateral" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "O ângulo do segundo conjunto de elementos de treliça lateral na direção Z. Zero é vertical." + +msgid "Infill overhang angle" +msgstr "Ângulo de saliência do preenchimento" + +msgid "The angle of the infill angled lines. 60° will result in a pure honeycomb." +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" + +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 "" +"Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O OrcaSlicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que infill_anchor_max for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a este parâmetro, mas não mais do que anchor_length_max.\n" +"Defina este parâmetro como zero para desabilitar os perímetros de ancoragem conectados a uma única linha de preenchimento." + +msgid "0 (no open anchors)" +msgstr "0 (sem âncoras abertas)" + +msgid "1000 (unlimited)" +msgstr "1000 (ilimitado)" + +msgid "Maximum length of the infill anchor" +msgstr "Comprimento máximo da âncora de preenchimento" + +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 "" +"Conecte uma linha de preenchimento a um perímetro interno com um segmento curto de um perímetro adicional. Se expresso como porcentagem (exemplo: 15%), é calculado sobre a largura de extrusão do preenchimento. O OrcaSlicer tenta conectar duas linhas de preenchimento próximas a um segmento curto de perímetro. Se nenhum segmento de perímetro mais curto que este parâmetro for encontrado, a linha de preenchimento é conectada a um segmento de perímetro em apenas um lado e o comprimento do segmento de perímetro tomado é limitado a infill_anchor, mas não mais do que este parâmetro.\n" +"Se definido como 0, o antigo algoritmo de conexão de preenchimento será usado, ele deve criar o mesmo resultado que com 1000 e 0." + +msgid "0 (Simple connect)" +msgstr "0 (Conexão simples)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14564,6 +14672,18 @@ msgstr "Acionamento Direto" msgid "Bowden" msgstr "Tubo" +msgid "Enable filament dynamic map" +msgstr "Habilitar mapa dinâmico de filamento" + +msgid "Enable dynamic filament mapping during print." +msgstr "Habilitar mapeamento dinâmico de filamentos durante a impressão." + +msgid "Has filament switcher" +msgstr "Tem trocador de filamentos" + +msgid "Printer has a filament switcher hardware (e.g., AMS)." +msgstr "A impressora tem um sistema de troca de filamentos (Ex.: AMS)." + msgid "Extra length on restart" msgstr "Comprimento extra na retração" @@ -14618,6 +14738,9 @@ msgstr "Alinhada" msgid "Aligned back" msgstr "Alinhada atrás" +msgid "Back" +msgstr "Atrás" + msgid "Random" msgstr "Aleatória" @@ -14993,6 +15116,9 @@ msgstr "Frestas menores que 2x o vão de fatiamento serão preenchidas durante o msgid "Slicing Mode" msgstr "Modo de Fatiamento" +msgid "Other" +msgstr "Outro" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Use \"Par-impar\" para modelos de avião 3DLabPrint. Use \"Fechar buracos\" para fechar todos os buracos no modelo." @@ -15014,9 +15140,8 @@ msgstr "Este valor será adicionado (ou subtraído) de todas as coordenadas Z no msgid "Enable support" msgstr "Ativar suporte" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables support generation." -msgstr "Ativar a geração de suporte." +msgstr "Isso ativaa a geração de suporte." 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 "Normal (automático) e Árvore (automático) são usados para gerar suporte automaticamente. Se Normal (manual) ou Árvore (manual) for selecionado, apenas os reforçadores de suporte serão gerados." @@ -15036,9 +15161,8 @@ msgstr "Árvore (manual)" msgid "Support/object XY distance" msgstr "Distância XY entre suporte e objeto" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This controls the XY separation between an object and its support." -msgstr "Separação XY entre um objeto e seu suporte." +msgstr "Isso controla a separação XY entre um objeto e seu suporte." msgid "Support/object first layer gap" msgstr "Vão na primeira camada entre suporte e objeto" @@ -15055,9 +15179,8 @@ msgstr "Use esta configuração para rotacionar o padrão de suporte no plano ho msgid "On build plate only" msgstr "Apenas na placa de impressão" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting only generates supports that begin on the build plate." -msgstr "Não criar suporte na superfície do modelo, apenas na placa de impressão." +msgstr "Isso gera apenas suportes apoiados na placa de impressão." msgid "Support critical regions only" msgstr "Suportar apenas regiões críticas" @@ -15074,14 +15197,12 @@ msgstr "Ignorar pequenas saliências que possivelmente não requerem suporte." msgid "Top Z distance" msgstr "Distância Z superior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." msgstr "Espaço Z entre o topo do suporte e o objeto." msgid "Bottom Z distance" msgstr "Distância Z inferior" -# TODO: Review, changed by lang refactor. PR 14254 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 "Espaço Z entre o objeto e a base do suporte. Se a Distância Z Superior do Suporte for 0 e a base tiver camadas de interface, este valor é ignorado e o suporte é impresso em contato direto com o objeto (sem espaço)." @@ -15104,13 +15225,11 @@ msgstr "Evite usar o filamento da interface de suporte para imprimir a base, se msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha de suporte. Se expresso como %, será calculado sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Loop pattern interface" -msgstr "Interface usa padrão de volta" +msgstr "Interface do padrão de volta" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This covers the top contact layer of the supports with loops. It is disabled by default." -msgstr "Cobrir a camada de contato superior dos suportes com voltas. Desativado por padrão." +msgstr "Isso cobre a camada de contato superior dos suportes com voltas. É desativado por padrão." msgid "Support/raft interface" msgstr "Interface de suporte/jangada" @@ -15150,13 +15269,11 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Espaçamento da interface inferior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the spacing of bottom interface lines. 0 means solid interface." -msgstr "Espaçamento das linhas de interface inferior. Zero significa interface sólida." +msgstr "Espaçamento das linhas de interface inferior. 0 significa interface sólida." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support interfaces." -msgstr "Velocidade da interface de suporte." +msgstr "Essa é a velocidade das interfaces de suporte." msgid "Base pattern" msgstr "Padrão da base" @@ -15183,9 +15300,8 @@ msgstr "Oco" msgid "Interface pattern" msgstr "Padrão de interface" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." -msgstr "Padrão de linha de interface de suporte. O padrão padrão para interface de suporte não solúvel é Reticulado, enquanto o padrão padrão para interface de suporte solúvel é Concêntrico." +msgstr "Este é o padrão de linha para interface de suporte. O padrão padrão para interfaces de suporte não soluveis é Reticulado, enquanto o padrão padrão para interfaces de suporte soluveis é Concêntrico." msgid "Rectilinear Interlaced" msgstr "Reticulado Interligado" @@ -15193,20 +15309,17 @@ msgstr "Reticulado Interligado" msgid "Base pattern spacing" msgstr "Espaçamento do padrão de base" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the spacing between support lines." -msgstr "Espaçamento entre as linhas de suporte." +msgstr "Isso determina o espaçamento entre as linhas de suporte." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Normal support expansion" msgstr "Expansão normal de suporte" msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Expanda (+) ou contraia (-) a extensão horizontal do suporte normal." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support." -msgstr "Velocidade do suporte." +msgstr "Essa é a velocidade para o suporte." 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" @@ -15242,13 +15355,12 @@ msgstr "A camada de suporte usa uma altura de camada independente da camada do o msgid "Threshold angle" msgstr "Ângulo limiar" -# TODO: Review, changed by lang refactor. PR 14254 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 "" -"O suporte será gerado para saliências cujo ângulo de inclinação esteja abaixo do limiar.Quanto menor esse valor, mais íngreme será a saliência que pode ser impressa sem suporte.\n" -"Observação: se definido como 0, os suportes normais usarão Sobreposição de limiar, enquanto os suportes em árvore voltarão ao valor padrão de 30." +"O suporte será gerado para saliências cujo ângulo de inclinação esteja abaixo do limiar. Quanto menor for esse valor, mais íngreme será a saliência que pode ser impressa sem suporte.\n" +"Nota: se definido como 0, os suportes normais usarão Sobreposição de Limiar, enquanto os suportes em árvore voltarão ao valor padrão de 30." msgid "Threshold overlap" msgstr "Sobreposição de limiar" @@ -15359,9 +15471,6 @@ msgstr "" "\n" "Esta opção depende do firmware que suporta os comandos M191 e M141 por meio de macros ou nativamente e geralmente é usada quando um aquecedor de câmara ativo está instalado." -msgid "Chamber temperature" -msgstr "Temperatura da câmara" - 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" @@ -15375,15 +15484,25 @@ msgstr "" "\n" "Se habilitado, este parâmetro também define uma variável G-code chamada chamber_temperature, que pode ser usada para passar a temperatura desejada da câmara para sua macro de início de impressão ou uma macro de absorção de calor como esta: PRINT_START (outras variáveis) CHAMBER_TEMP=[chamber_temperature]. Isso pode ser útil se sua impressora não suportar comandos M141/M191 ou se você desejar lidar com a absorção de calor na macro de início de impressão se nenhum aquecedor de câmara ativo estiver instalado." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "Temperatura mínima da câmara" + msgid "Nozzle temperature after the first layer" msgstr "Temperatura do bico depois da primeira camada" msgid "Detect thin walls" msgstr "Detectar paredes finas" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." -msgstr "Detecta paredes finas que não podem conter duas larguras de linha, e usa uma linha única para imprimir. Talvez não seja impresso muito bem, porque não é uma volta fechada." +msgstr "Isso detecta paredes finas que não podem conter duas linhas e usa uma linha única para imprimir. Talvez não seja impresso tão bem porque não é uma volta fechada." msgid "This G-code is inserted when filament is changed, including T commands to trigger tool change." msgstr "Este G-code é inserido ao trocar o filamento, incluindo o comando T para acionar a troca de ferramenta." @@ -15400,9 +15519,8 @@ msgstr "Este G-code é inserido quando o tipo de extrusão do filamento ativo é msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Largura da linha para superfícies superiores. Se expressa em %, será calculada sobre o diâmetro do bico." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid top surface infill." -msgstr "Velocidade de preenchimento da superfície superior, que é sólida." +msgstr "Essa é a velocidade de preenchimento da superfície superior." msgid "Top shell layers" msgstr "Camadas de topo da casca" @@ -15413,40 +15531,21 @@ msgstr "Este é o número de camadas sólidas da casca do topo, incluindo a cama msgid "Top shell thickness" msgstr "Espessura da casca do topo" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." -msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da casca do topo for menor do que este valor. Isso pode evitar que a casca seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da casca do topo é determinada exclusivamente pelas camadas da casca do topo." - -msgid "Top surface density" -msgstr "Densidade da superfície superior" - -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 "Densidade da camada superior. Um valor de 100% cria uma camada superior totalmente sólida e lisa. Reduzir esse valor resulta em uma superfície superior texturizada, de acordo com o padrão de superfície superior escolhido. Um valor de 0% resultará na criação apenas das paredes da camada superior. Destinado a fins estéticos ou funcionais, não para corrigir problemas como extrusão excessiva." - -msgid "Bottom surface density" -msgstr "Densidade da superfície inferior" - -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 "" -"Densidade da camada inferior. Destina-se a fins estéticos ou funcionais, não para corrigir problemas como extrusão excessiva.\n" -"AVISO: Reduzir este valor pode afetar negativamente a aderência à mesa." +msgstr "O número de camadas sólidas superiores é aumentado ao fatiar se a espessura calculada pelas camadas da casca do topo for menor do que este valor. Isso pode evitar que a casca seja muito fina quando a altura da camada é pequena. 0 significa que esta configuração está desativada e a espessura da casca do topo é determinada apenas pelo número de camadas da casca do topo." # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." -msgstr "Velocidade de deslocamento mais rápida e sem extrusão." +msgstr "Essa é a velocidade em que o deslocamento é feito." msgid "Wipe while retracting" msgstr "Limpar enquanto retrai" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This moves the 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 "Movimentar o bico ao longo do último caminho de extrusão ao retrair para limpar o material vazado no bico. Isso pode minimizar a formação de blobs quando imprimir uma nova peça após o deslocamento." +msgstr "Isso movimenta o bico ao longo do último caminho de extrusão ao retrair para limpar o material vazado no bico. Isso pode minimizar a formação de blobs quando imprimir uma nova peça após o deslocamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Wipe distance" -msgstr "Distância de Limpeza" +msgstr "Distância de limpeza" msgid "" "Describe how long the nozzle will move along the last path when retracting.\n" @@ -15461,7 +15560,6 @@ msgstr "" "\n" "Definir um valor na configuração de quantidade de retração antes da limpeza abaixo executará qualquer retração em excesso antes da limpeza, caso contrário, será realizada após." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." msgstr "A torre de limpeza pode ser usada para limpar o resíduo no bico e estabilizar a pressão na câmara dentro do bico, a fim de evitar defeitos de aparência ao imprimir objetos." @@ -15477,20 +15575,17 @@ msgstr "Volumes de purga" msgid "Flush multiplier" msgstr "Multiplicador de purga" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." msgstr "Os volumes de purga reais são iguais ao multiplicador de purga multiplicado pelos volumes de purga na tabela." msgid "Prime volume" msgstr "Volume de preparo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the volume of material to prime the extruder with on the tower." -msgstr "O volume de material para preparar a extrusora na torre." +msgstr "Este é o volume de material para preparar a extrusora na torre." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the width of prime towers." -msgstr "Largura da torre de preparo." +msgstr "Esta é a largura das torres de preparo." msgid "Wipe tower rotation angle" msgstr "Ângulo de rotação da torre de limpeza" @@ -15602,13 +15697,11 @@ msgstr "Vão entre preenchimentos" msgid "Infill gap." msgstr "Vão entre preenchimentos." -# TODO: Review, changed by lang refactor. PR 14254 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 visible. It will not take effect unless the prime tower is enabled." -msgstr "A purga após a troca de filamento será feita dentro do preenchimento dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Se as paredes forem impressas com filamento transparente, o preenchimento de cor mista será visível do lado de fora. Isso não terá efeito, a menos que a torre de preparo esteja ativa." +msgstr "A purga após a troca de filamento será feita dentro do preenchimento dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Se as paredes forem impressas com filamento transparente, o preenchimento de cor mista será visível. Isso não terá efeito a menos que a torre de preparo esteja ativa." -# TODO: Review, changed by lang refactor. PR 14254 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 a prime tower is enabled." -msgstr "A purga após a troca de filamento será feita dentro do suporte dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Isso não terá efeito, a menos que a torre de preparo esteja ativa." +msgstr "A purga após a troca de filamento será feita dentro do suporte dos objetos. Isso pode reduzir a quantidade de resíduos e diminuir o tempo de impressão. Isso não terá efeito a menos que a torre de preparo esteja ativa." 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 "Este objeto será usado para purgar o bico após uma troca de filamento para economizar filamento e diminuir o tempo de impressão. As cores dos objetos serão misturadas como resultado. Isso não terá efeito a menos que a torre de preparo esteja ativa." @@ -15640,16 +15733,14 @@ msgstr "Temperatura do bico quando a ferramenta não está sendo usada em config msgid "X-Y hole compensation" msgstr "Compensação de furos XY" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Os furos nos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os furos, valores negativos reduzem os furos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." +msgstr "Os furos nos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os furos e valores negativos reduzem os furos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." msgid "X-Y contour compensation" msgstr "Compensação de contornos XY" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." -msgstr "Os contornos dos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os contornos, valores negativos reduzem os contornos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." +msgstr "Os contornos dos objetos irão expandir ou contrair no plano XY pelo valor definido. Valores positivos aumentam os contornos e valores negativos reduzem os contornos. Essa função é usada para ajustar ligeiramente os tamanhos quando os objetos têm problemas de montagem." msgid "Convert holes to polyholes" msgstr "Converter furos em polifuros" @@ -15680,6 +15771,14 @@ msgstr "Torção de polifuros" msgid "Rotate the polyhole every layer." msgstr "Rotacionar o polifuro a cada camada." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Miniaturas de G-code" @@ -15698,7 +15797,6 @@ msgstr "Usar distâncias E relativas" 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 "A extrusão relativa é recomendada ao usar a opção \"label_objects\". Algumas extrusoras funcionam melhor com esta opção desmarcada (modo de extrusão absoluta). A torre de limpeza é compatível apenas com o modo relativo. É recomendado na maioria das impressoras. O padrão é ativado." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." msgstr "O gerador de parede clássico produz paredes com largura de extrusão constante e para áreas muito finas é usado preenchimento de vão. O motor Arachne produz paredes com largura de extrusão variável." @@ -15708,9 +15806,8 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Comprimento da transição de parede" -# TODO: Review, changed by lang refactor. PR 14254 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 "Ao fazer a transição entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é designada para dividir ou unir os segmentos da parede. É expresso como uma porcentagem sobre o diâmetro do bico." +msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para dividir ou unir os segmentos da parede. É expresso como uma porcentagem sobre o diâmetro do bico." msgid "Wall transitioning filter margin" msgstr "Margem de filtro de transição de parede" @@ -15823,15 +15920,11 @@ msgstr "Exportar vários STLs" msgid "Export the objects as multiple STLs to directory." msgstr "Exportar os objetos como vários STLs para o diretório." -msgid "Slice" -msgstr "Fatiar" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Fatiar as placas: 0-todas as placas, i-placa i, outros-inválido" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shows command help." -msgstr "Mostra ajuda do comando." +msgstr "Isso mostra a ajuda do comando." msgid "UpToDate" msgstr "Atualizar" @@ -15878,16 +15971,14 @@ msgstr "Verificar os itens normativos." msgid "Output Model Info" msgstr "Emitir Informações do Modelo" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This outputs the model’s information." -msgstr "Emitir as informações do modelo." +msgstr "Isso emite as informações do modelo." msgid "Export Settings" msgstr "Exportar Configurações" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports settings to a file." -msgstr "Exportar configurações para um arquivo." +msgstr "Isso exporta configurações para um arquivo." msgid "Send progress to pipe" msgstr "Enviar o progresso para a fila" @@ -16009,9 +16100,8 @@ msgstr "Carregar e armazenar configurações no diretório fornecido. Isso é ú msgid "Output directory" msgstr "Diretório de saída" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the output directory for exported files." -msgstr "Diretório de saída para os arquivos exportados." +msgstr "Este é o diretório de saída para arquivos exportados." msgid "Debug level" msgstr "Nível de depuração" @@ -16449,13 +16539,11 @@ msgstr "A geração da malha do arquivo do modelo falhou ou não há forma váli msgid "The supplied file couldn't be read because it's empty." msgstr "O arquivo fornecido não pôde ser lido porque está vazio." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." -msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .stl, .obj, .amf(.xml)." +msgstr "Formato de arquivo desconhecido: o arquivo de entrada deve ter extensão .stl, .obj, .amf(.xml)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .3mf or .zip.amf extension." -msgstr "Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão .3mf ou .zip.amf." +msgstr "Formato de arquivo desconhecido: o arquivo de entrada deve ter extensão .3mf ou .zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: falha ao analisar" @@ -16505,9 +16593,8 @@ msgstr "Calibrar" msgid "Finish" msgstr "Terminar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "How can I use calibration results?" -msgstr "Como usar o resultado da calibração?" +msgstr "Como posso usar o resultado da calibração?" msgid "You could change the Flow Dynamics Calibration Factor in material editing" msgstr "Você pode alterar o Fator de Calibração de Dinâmica de Fluxo na edição de materiais" @@ -16583,22 +16670,20 @@ msgstr "Por favor, selecione o filamento para calibrar." msgid "The input value size must be 3." msgstr "O tamanho do valor de entrada deve ser 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This machine type can only hold 16 historical 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 "" -"Esse tipo de máquina só pode manter 16 resultados por bico no histórico. Você pode deletar resultados existentes e então começar a calibração. Ou você pode continuar, mas não poderá criar novos resultados.\n" -"Você ainda quer continuar com a calibração?" +"Esse tipo de máquina só pode manter 16 resultados históricos por bico. Você pode deletar resultados anteriores existentes e então começar a calibração. Ou você pode continuar a calibração, mas não poderá criar novos resultados históricos.\n" +"Você ainda quer continuar a calibração?" #, 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 "Apenas um dos resultados com o mesmo nome: %s será salvo. Tem certeza que deseja sobrescrever os outros resultados?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Já existe um resultado de calibração histórico com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Tem certeza que deseja sobrescrever o resultado histórico?" +msgstr "Já existe um resultado de calibração anterior com o mesmo nome: %s. Apenas um dos resultados com o mesmo nome é salvo. Tem certeza que deseja sobrescrever o resultado anterior?" #, c-format, boost-format msgid "" @@ -16608,10 +16693,9 @@ msgstr "" "Dentro da mesma extrusora, o nome (%s) deve ser único quando o tipo de filamento, o diâmetro do bico e o fluxo do bico forem os mesmos.\n" "Tem certeza de que deseja sobrescrever o resultado histórico?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." -msgstr "Este tipo de máquina só pode salvar %d resultados por bico. Este resultado não será salvo." +msgstr "Este tipo de máquina só pode salvar %d resultados históricos por bico. Este resultado não será salvo." msgid "Connecting to printer..." msgstr "Conectando à impressora…" @@ -16690,7 +16774,6 @@ msgstr "Além disso, a Calibração da Taxa de Fluxo é crucial para materiais e 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 "A Calibração da Taxa de Fluxo mede a relação entre os volumes de extrusão esperados e reais. A configuração padrão funciona bem em impressoras Bambu Lab e filamentos oficiais, pois foram pré-calibrados e ajustados. Para um filamento regular, geralmente você não precisará realizar uma Calibração da Taxa de Fluxo a menos que ainda veja os defeitos listados após ter feito outras calibrações. Para mais detalhes, consulte o artigo na wiki." -# TODO: Review, changed by lang refactor. PR 14254 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, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" "\n" @@ -16698,11 +16781,11 @@ msgid "" "\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 "" -"A Calibração Automática da Taxa de Fluxo utiliza a tecnologia Micro-Lidar da Bambu Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente de que a eficácia e precisão deste método podem ser comprometidas com tipos específicos de materiais. Especialmente, filamentos que são transparentes ou semi-transparentes, com partículas brilhantes ou com acabamento altamente reflexivo podem não ser adequados para esta calibração e podem produzir resultados abaixo do desejado.\n" +"A Calibração Automática da Taxa de Fluxo utiliza a tecnologia Micro-Lidar da Bambu Lab, medindo diretamente os padrões de calibração. No entanto, esteja ciente de que a eficácia e precisão deste método podem ser comprometidas com tipos específicos de materiais. Especialmente, filamentos transparentes ou semi-transparentes, com partículas brilhantes ou com acabamento altamente reflexivo podem não ser adequados para esta calibração e podem produzir resultados abaixo do desejado.\n" "\n" "Os resultados da calibração podem variar entre cada calibração ou filamento. Ainda estamos melhorando a precisão e compatibilidade desta calibração por meio de atualizações de firmware ao longo do tempo.\n" "\n" -"Atenção: A Calibração da Taxa de Fluxo é um processo avançado, para ser tentado apenas por aqueles que entendem completamente seu propósito e implicações. O uso incorreto pode resultar em impressões de baixa qualidade ou danos à impressora. Certifique-se de ler e entender cuidadosamente o processo antes de fazê-lo." +"Cuidado: A Calibração da Taxa de Fluxo é um processo avançado, para ser tentado apenas por aqueles que entendem completamente seu propósito e implicações. O uso incorreto pode resultar em impressões de baixa qualidade ou danos à impressora. Certifique-se de ler e entender cuidadosamente o processo antes de fazê-lo." msgid "When you need Max Volumetric Speed Calibration" msgstr "Quando você precisa da Calibração de Velocidade Volumétrica Máxima" @@ -16737,9 +16820,8 @@ msgstr "O nome não pode ter mais de 40 caracteres." msgid "Please find the best line on your plate" msgstr "Por favor, encontre a melhor linha em sua placa" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" -msgstr "Por favor, encontre o canto com o grau perfeito de extrusão" +msgstr "Encontre o canto com o grau perfeito de extrusão" msgid "Input Value" msgstr "Valor de entrada" @@ -16897,17 +16979,15 @@ msgstr "Nenhum Resultado Anterior" msgid "Success to get history result" msgstr "Sucesso ao obter o resultado anterior" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Refreshing the previous Flow Dynamics Calibration records" -msgstr "Atualizando os registros históricos de Calibração de Dinâmica de Fluxo" +msgstr "Atualizando os registros anteriores de Calibração de Dinâmica de Fluxo" msgid "Action" msgstr "Ação" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle." -msgstr "Este tipo de máquina só pode salvar %d resultados por bico." +msgstr "Este tipo de máquina só pode manter %d resultados históricos por bico." msgid "Edit Flow Dynamics Calibration" msgstr "Editar Calibração de Dinâmica de Fluxo" @@ -17281,13 +17361,13 @@ msgid "Top Surface Pattern" msgstr "Padrão de Superfície Superior" msgid "Choose a slot for the selected color" -msgstr "" +msgstr "Escolha um espaço para a cor selecionada" msgid "Material in the material station" -msgstr "" +msgstr "Esta impressora não relata uma estação de material" msgid "Only materials of the same type can be selected." -msgstr "" +msgstr "Apenas materiais do mesmo tipo podem ser selecionados." msgid "Send G-code to printer host" msgstr "Enviar G-code para o host da impressora" @@ -17318,35 +17398,35 @@ msgid "Time-lapse" msgstr "Timelapse" msgid "Enable IFS" -msgstr "" +msgstr "Habilitar IFS" #, c-format, boost-format msgid "Detected %d IFS slots on printer." -msgstr "" +msgstr "Detectados %d espaços IFS na impressora." msgid "This printer does not report a material station." -msgstr "" +msgstr "Esta impressora não relata uma estação de material." msgid "Unable to read IFS slots from printer." -msgstr "" +msgstr "Não foi possível ler os espaços IFS da impressora." msgid "Loading IFS slots from printer..." -msgstr "" +msgstr "Carregando espaços IFS da impressora..." msgid "Slice the plate first to get project material information." -msgstr "" +msgstr "Fatie a placa primeiro para obter informações sobre os materiais do projeto." msgid "This plate uses multiple materials. Enable IFS and assign each tool to a printer slot." -msgstr "" +msgstr "Esta placa usa múltiplos materiais. Habilite o IFS e atribua cada ferramenta a um espaço da impressora." msgid "Each project material must be assigned to an IFS slot before printing." -msgstr "" +msgstr "Cada material do projeto deve ser atribuído a um espaço IFS antes da impressão." msgid "Each project material must be assigned to a loaded IFS slot before printing." -msgstr "" +msgstr "Cada material do projeto deve ser atribuído a um espaço carregado do IFS antes da impressão." msgid "Each project material must match the material loaded in the selected IFS slot." -msgstr "" +msgstr "Cada material do projeto deve corresponder ao material carregado no espaço do IFS selecionado." msgid "Print host upload queue" msgstr "Fila de envio do host de impressão" @@ -17530,11 +17610,9 @@ msgstr "Predefinição de Filamento" msgid "Create" msgstr "Criar" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor is not selected; please reselect vendor." msgstr "O fornecedor não está selecionado, por favor reselecione o fornecedor." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Custom vendor missing; please input custom vendor." msgstr "O fornecedor personalizado está faltando, por favor insira o fornecedor personalizado." @@ -17544,25 +17622,21 @@ msgstr "\"Bambu\" ou \"Genérico\" não podem ser usados como fornecedor para fi msgid "Filament type is not selected, please reselect type." msgstr "O tipo de filamento não está selecionado, por favor reselecione o tipo." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament serial missing; please input serial." -msgstr "O serial do filamento não foi inserido, por favor insira o serial." +msgstr "O serial do filamento faltando, por favor insira o serial." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "Pode haver caracteres de escape na entrada de fornecedor ou serial do filamento. Por favor, exclua e insira novamente." +msgstr "Pode haver caracteres não permitidos na entrada de fornecedor ou serial do filamento. Por favor, exclua e insira novamente." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "Todas as entradas no fornecedor personalizado ou serial são espaços. Por favor, insira novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vendor cannot be a number; please re-enter." msgstr "O fornecedor não pode ser um número. Por favor, insira novamente." msgid "You have not selected a printer or preset yet. Please select at least one." msgstr "Você ainda não selecionou uma impressora ou predefinição. Por favor, selecione pelo menos uma." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The Filament name %s you created already exists.\n" @@ -17609,7 +17683,6 @@ msgstr "Importar Predefinição" msgid "Create Type" msgstr "Tipo de Criação" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The model was not found; please reselect vendor." msgstr "O modelo não foi encontrado, por favor reselecione o fornecedor." @@ -17650,18 +17723,15 @@ msgstr "O arquivo excede %d MB, por favor importe novamente." msgid "Exception in obtaining file size, please import again." msgstr "Exceção ao obter o tamanho do arquivo, por favor importe novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preset path was not found; please reselect vendor." msgstr "Caminho da predefinição não encontrado, por favor reselecione o fornecedor." msgid "The printer model was not found, please reselect." msgstr "O modelo da impressora não foi encontrado, por favor reselecione." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle diameter was not found; please reselect." msgstr "O diâmetro do bico não foi encontrado, por favor reselecione." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer preset was not found; please reselect." msgstr "A predefinição de impressora não foi encontrada, por favor reselecione." @@ -17677,11 +17747,9 @@ msgstr "Processar Gabarito de Predefinição" msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" msgstr "Você ainda não escolheu em qual predefinição de impressora basear-se. Por favor escolha o fornecedor e modelo da impressora" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." -msgstr "Você inseriu uma entrada ilegal na seção de área imprimível na primeira página. Por favor, verifique antes de criar." +msgstr "Você inseriu um caractere não permitido na seção de área imprimível na primeira página. Use apenas números." -# TODO: Review, changed by lang refactor. PR 14254 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" @@ -17689,8 +17757,8 @@ msgid "" "\tCancel: Do not create a preset; return to the creation interface." msgstr "" "A predefinição de impressora que você criou já possui uma predefinição com o mesmo nome. Deseja substituí-la?\n" -"\tSim: Substituir a predefinição de impressora com o mesmo nome, e as predefinições de filamento e processo com o mesmo nome da predefinição serão recriados, \n" -"e as predefinições de filamento e processo sem o mesmo nome da predefinição serão reserva.\n" +"\tSim: Subrescrever a predefinição de impressora com o mesmo nome, e as predefinições de filamento e processo com o mesmo nome de predefinição serão recriados, \n" +"e as predefinições de filamento e processo sem o mesmo nome da predefinição serão reservados.\n" "\tCancelar: Não criar uma predefinição, retornar para a interface de criação." msgid "You need to select at least one filament preset." @@ -17705,14 +17773,12 @@ msgstr "Falha ao criar predefinições de filamento. Como segue:\n" msgid "Create process presets failed. As follows:\n" msgstr "Falha ao criar predefinições de processo. Como segue:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor was not found; please reselect." -msgstr "Fornecedor não encontrado, por favor selecione novamente." +msgstr "Fornecedor não encontrado, selecione novamente." msgid "Current vendor has no models, please reselect." msgstr "O fornecedor atual não possui modelos, por favor selecione novamente." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not selected the vendor and model or input the custom vendor and model." msgstr "Você não selecionou um fornecedor e modelo nem colocou fornecedor e modelo personalizados." @@ -17725,9 +17791,8 @@ msgstr "Todas as entradas no fornecedor ou modelo personalizado da impressora s msgid "Please check bed printable shape and origin input." msgstr "Por favor, verifique o formato imprimível da mesa e a entrada de origem." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." -msgstr "Você ainda não selecionou a impressora para substituir o bico, por favor escolha." +msgstr "Você ainda não selecionou a impressora para substituir o bico, escolha uma impressora." msgid "The entered nozzle diameter is invalid, please re-enter:\n" msgstr "O diâmetro do bico inserido é inválido. Insira novamente:\n" @@ -17767,18 +17832,17 @@ msgid "Printer Created" msgstr "Impressora criada" msgid "Please go to printer settings to edit your presets" -msgstr "Por favor vá para configurações de impressora para editar as suas predefinições" +msgstr "Vá para configurações de impressora para editar as suas predefinições" msgid "Filament Created" msgstr "Filamento criado" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Please go to filament settings to edit your presets if you need to.\n" "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." msgstr "" -"Por favor, vá para as configurações do filamento para editar suas predefinições, se necessário.\n" -"Por favor, note que a temperatura do bico, temperatura da mesa aquecida e velocidade volumétrica máxima têm um impacto significativo na qualidade de impressão. Por favor, ajuste-os com cuidado." +"Vá para as configurações do filamento para editar suas predefinições, se necessário.\n" +"Note que a temperatura do bico, temperatura da mesa aquecida e velocidade volumétrica máxima têm um impacto significativo na qualidade de impressão. Ajuste-os com cuidado." msgid "" "\n" @@ -17827,14 +17891,13 @@ msgstr "falha ao abrir o arquivo zip para escrita" msgid "Export successful" msgstr "Exportação bem-sucedida" -# TODO: Review, changed by lang refactor. PR 14254 #, 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 "" "A pasta '%s' já existe no diretório atual. Deseja limpá-la e reconstruí-la?\n" -"Se não, um sufixo de tempo será adicionado, e você poderá modificar o nome após a criação." +"Se não, um sufixo de tempo será adicionado, e você pode modificar o nome após a criação." #, c-format, boost-format msgid "" @@ -17860,9 +17923,8 @@ msgstr "" "Conjunto de predefinições de filamento do usuário.\n" "Pode ser compartilhado com outros." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only display printers with changes to printer, filament, and process presets are displayed." -msgstr "Exibir apenas nomes de impressoras com alterações nas predefinições de impressora, filamento e processo." +msgstr "Apenas impressoras com alterações nas predefinições de impressora, filamento e processo são mostradas." msgid "Only display the filament names with changes to filament presets." msgstr "Exibir apenas os nomes dos filamentos com alterações nas predefinições de filamento." @@ -17887,9 +17949,8 @@ msgstr "" msgid "Please select at least one printer or filament." msgstr "Por favor, selecione pelo menos uma impressora ou filamento." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please select a preset type you want to export" -msgstr "Por favor, selecione um tipo que deseja exportar" +msgstr "Selecione um tipo de predefinição que deseja exportar" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "Falha ao criar uma pasta temporária, por favor tente exportar as configurações novamente." @@ -18030,16 +18091,16 @@ msgid "Select the network agent implementation for printer communication. Availa 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 "" +msgstr "Selecione uma impressora Flashforge" msgid "Discovered Printers" -msgstr "" +msgstr "Impressoras Descobertas" 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 "" +msgstr "Sessão válida não detectada. Prosseguir com o login no 3DPrinterOS?" msgid "Success!" msgstr "Sucesso!" @@ -18075,14 +18136,140 @@ msgstr "Login/Teste" 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" +msgid "Detect Creality K-series printer" +msgstr "Detectar impressora Creality da série K" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "Clique para buscar impressora Creality da série K na sua rede." + +msgid "Use Selected" +msgstr "Usar Selecionada" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "Buscando impressoras série K na rede... isso leva alguns segundos." + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "Nenhuma impressora série K encontrada. Certifique-se de que a impressora está na mesma rede e não está bloqueada por isolamento de clientes Wi-Fi, então clique novamente em Buscar." + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "%zu impressora(s) Creality encontrada(s). Selecione um e clique em Usar Selecionada." + +msgid "Active" +msgstr "Ativa" + +msgid "Printers" +msgstr "Impressoras" + +msgid "Processes" +msgstr "Processos" + +msgid "Show/Hide system information" +msgstr "Mostrar/Esconder informações do sistema" + +msgid "Copy system information to clipboard" +msgstr "Copiar informações do sistema para a área de transferência" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." msgstr "" +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "Limpar" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + +msgid "3DPrinterOS Cloud upload options" +msgstr "Opções de upload para a nuvem do 3DPrinterOS" + msgid "Single file" -msgstr "" +msgstr "Arquivo individual" msgid "Project File" -msgstr "" +msgstr "Arquivo de Projeto" msgid "Project:" msgstr "Projeto:" @@ -18091,25 +18278,25 @@ msgid "Printer type:" msgstr "Tipo de impressora:" msgid "Printer type not found, please select manually." -msgstr "" +msgstr "Tipo de impressora não encontrado, selecione manualmente." msgid "Authorizing..." msgstr "Autorizando…" msgid "Error. Can't get api token for authorization" -msgstr "" +msgstr "Erro. ​​Não foi possível obter o token de API para autorização" msgid "Could not parse server response." msgstr "Não foi possível decifrar a resposta do servidor." msgid "Error saving session to file" -msgstr "" +msgstr "Erro salvando sessão para arquivo" msgid "Error session check" msgstr "" msgid "Error during file upload" -msgstr "" +msgstr "Erro durante a subida do arquivo" #, c-format, boost-format msgid "Mismatched type of print host: %s" @@ -18157,6 +18344,19 @@ msgstr "A conexão com o MKS funciona corretamente." msgid "Could not connect to MKS" msgstr "Não foi possível conectar ao MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "A conexão com o OctoPrint funciona corretamente." @@ -18620,19 +18820,19 @@ msgid "Missing printer serial number in response" msgstr "Falta o número de série da impressora na resposta" msgid "Error parsing response" -msgstr "" +msgstr "Erro ao analisar a resposta" msgid "ElegooLink not detected" -msgstr "" +msgstr "ElegooLink não detectado" msgid "Invalid access code" -msgstr "" +msgstr "Código de acesso inválido" msgid "CC2 device not detected" -msgstr "" +msgstr "Dispositivo CC2 não detectado" msgid "Connection to ElegooLink is working correctly." -msgstr "" +msgstr "A conexão com o ElegooLink está funcionando corretamente." msgid "Could not connect to ElegooLink" msgstr "Não foi possível conectar ao ElegooLink" @@ -18645,46 +18845,46 @@ msgid "Upload failed" msgstr "Falha no envio" msgid "The file has been transferred, but some unknown errors occurred. Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "O arquivo foi transferido, mas ocorreram erros desconhecidos. Verifique a página do dispositivo referente ao arquivo e tente iniciar a impressão novamente." msgid "Failed to open file for upload." -msgstr "" +msgstr "Falha ao abrir arquivo para envio." msgid "Failed to read file chunk for upload." -msgstr "" +msgstr "Falha ao ler porção do arquivo para envio." msgid "CC2 upload failed" -msgstr "" +msgstr "Falha no envio CC2" msgid "The file is empty or could not be read." -msgstr "" +msgstr "O arquivo está vazio ou não pode ser encontrado." msgid "Failed to calculate file checksum." -msgstr "" +msgstr "Falha ao calcular o checksum." msgid "Error code not found" -msgstr "" +msgstr "Código de erro não encontrado" msgid "The printer is busy, Please check the device page for the file and try to start printing again." -msgstr "" +msgstr "A impressora está ocupada, verifique a página do dispositivo referente ao arquivo e tente iniciar a impressão novamente." msgid "The file is lost, please check and try again." -msgstr "" +msgstr "O arquivo está perdido, verifique e tente novamente." msgid "The file is corrupted, please check and try again." -msgstr "" +msgstr "O arquivo está corrompido, verifique e tente novamente." msgid "Transmission abnormality, please check and try again." -msgstr "" +msgstr "Anomalia na transmissão, verifique e tente novamente." msgid "The file does not match the printer, please check and try again." -msgstr "" +msgstr "O arquivo não é compatível com a impressora, verifique e tente novamente." msgid "Start print timeout" -msgstr "" +msgstr "Limite de tempo esgotado ao iniciar impressão" msgid "Start print failed" -msgstr "" +msgstr "Falha ao iniciar impressão" msgid "Connected to CrealityPrint successfully!" msgstr "Conectado ao CrealityPrint com sucesso!" @@ -18693,13 +18893,13 @@ msgid "Could not connect to CrealityPrint" msgstr "Não foi possível conectar ao CrealityPrint" msgid "Connection timed out. Please check if the printer and computer network are functioning properly, and confirm that they are on the same network." -msgstr "" +msgstr "Limite de tempo de conexão esgotado. Verifique se a impressora e a rede do computador estão funcionando corretamente e confirme se estão na mesma rede." msgid "The Hostname/IP/URL could not be parsed, please check it and try again." -msgstr "" +msgstr "Não foi possível decifrar o Hostname/IP/URL; verifique-o e tente novamente." msgid "File/data transfer interrupted. Please check the printer and network, then try it again." -msgstr "" +msgstr "Transferência de arquivo/dados interrompida. Verifique a impressora e a rede e tente novamente." msgid "The provided state is not correct." msgstr "O estado fornecido não está correto." @@ -18750,10 +18950,10 @@ msgid "Please select single object." msgstr "Por favor selecione um único objeto." msgid "Entering Brim Ears" -msgstr "" +msgstr "Entrando em Orelhas da Borda" msgid "Leaving Brim Ears" -msgstr "" +msgstr "Saindo de Orelhas da Borda" msgid "Zoom Out" msgstr "Afastar Zoom" @@ -18765,7 +18965,7 @@ msgid "Load skipping objects information failed. Please try again." msgstr "Falha ao carregar ignorando as informações dos objetos. Tente novamente." msgid "Failed to create the temporary folder." -msgstr "" +msgstr "Falha ao criar pasta temporária." #, c-format, boost-format msgid "/%d Selected" @@ -18906,6 +19106,12 @@ msgstr "Numero de facetas triangulares" msgid "Calculating, please wait..." msgstr "Calculando, por favor aguarde…" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -18976,7 +19182,7 @@ msgid "" msgstr "" msgid "The download has failed" -msgstr "" +msgstr "Falha ao baixar" #. TRN %1% = file path #, boost-format @@ -19304,6 +19510,103 @@ msgstr "" "Evitar empenamento\n" "Você sabia que ao imprimir materiais propensos ao empenamento como ABS, aumentar adequadamente a temperatura da mesa aquecida pode reduzir a probabilidade de empenamento?" +#~ msgid "Print" +#~ msgstr "Imprimir" + +#~ msgid "in" +#~ msgstr "pol" + +#~ msgid "Object coordinates" +#~ msgstr "Coordenadas do objeto" + +#~ msgid "World coordinates" +#~ msgstr "Coordenadas globais" + +#~ msgid "Translate(Relative)" +#~ msgstr "Translacionar(Relativo)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Rotacionar (absoluto)" + +#~ msgid "Part coordinates" +#~ msgstr "Coordenadas de peça" + +#~ 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 "" +#~ "Conflito de sincronização na nuvem: esta predefinição possui uma versão mais recente no OrcaCloud.\n" +#~ "'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." + +#~ 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 "" +#~ "Conflito de sincronização na nuvem: uma predefinição com este nome já existe no OrcaCloud.\n" +#~ "'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflito de sincronização na nuvem: uma predefinição com o mesmo nome foi excluída previamente da nuvem.\n" +#~ "'Excluir' remove sua predefinição local. 'Forçar subida' a sobrescreve com sua predefinição local." + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "Conflito de sincronização na nuvem: houve um conflito de predefinição não identificado ou inesperado.\n" +#~ "'Baixar' baixa a cópia da nuvem. 'Forçar subida' a sobrescreve com sua predefinição local." + +#~ 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 "O conteúdo da predefinição é muito grande para ser sincronizado com a nuvem (excede 1 MB). Reduza o tamanho da predefinição removendo configurações personalizadas ou use-o apenas localmente." + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Habilitar avanço de pressão adaptável para saliências (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Avanço de pressão para pontes" + +#~ 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 "" +#~ "Valor de avanço de pressão para pontes. Defina como 0 para desabilitar.\n" +#~ "\n" +#~ "Um valor de PA mais baixo ao imprimir pontes ajuda a reduzir a aparência de leve subextrusão imediatamente após as pontes. Isso é causado pela queda de pressão no bico ao imprimir no ar e um PA mais baixo ajuda a neutralizar isso." + +#~ msgid "Filament Sync Options" +#~ msgstr "Opções de Sincronização de Filamento" + +#~ msgid "Network plug-in" +#~ msgstr "Plug-in de rede" + +#~ msgid "View control settings" +#~ msgstr "Configurações de controle de vista" + +#~ msgid "Rotate view" +#~ msgstr "Rotacionar vista" + +#~ msgid "Pan view" +#~ msgstr "Mover vista" + +#~ msgid "Zoom view" +#~ msgstr "Aproximar vista" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "O botão de roda do mouse inverte ao fazer zoom" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Esquerda: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Direita: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Ativar plug-in de rede" @@ -19423,12 +19726,6 @@ msgstr "" #~ "\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." @@ -19976,9 +20273,6 @@ msgstr "" #~ msgid "Wiki Guide: Input Shaping Calibration" #~ msgstr "Wiki Guide: Calibração da Modelagem de Entrada" -#~ msgid "Learn more" -#~ msgstr "Saber mais" - #~ msgid "Tips: You can drag the filaments to reassign them to different nozzles." #~ msgstr "Dica: Você pode arrastar os filamentos para reatribuí-los a diferentes bicos." diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po index 832f2332da..712f9bcbec 100644 --- a/localization/i18n/ru/OrcaSlicer_ru.po +++ b/localization/i18n/ru/OrcaSlicer_ru.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: OrcaSlicer V2.3.2 beta2\n" +"Project-Id-Version: OrcaSlicer V2.5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\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), Andylg \n" @@ -97,11 +97,9 @@ msgstr "Версия:" msgid "Latest version" msgstr "Последняя версия" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support Painting" msgstr "Рисование поддержек" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Apply" msgstr "Применить" @@ -111,7 +109,6 @@ msgstr "Только на подсвеченных нависаниях" msgid "Erase all" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Highlight overhangs" msgstr "Выделить зоны нависания" @@ -121,7 +118,7 @@ msgstr "Инструмент" # Эта строка выводится только в таблице анализа линии (расширенный просмотр # печати слоя) в значении "тип: заполнение щели" (Feature type: Gap fill). # Аналогичная строка "Gap Fill" используется в меню поддержек и раскраски в -# значении "Заливка вкраплений/Устранение вкраплений". Не путать! +# значении "Заливка вкраплений/Устранение вкраплений". НЕ ПУТАТЬ! msgid "Gap fill" msgstr "Заполнение щели" @@ -190,7 +187,6 @@ msgstr "Автоподдержка отключена" msgid "Done" msgstr "Готово" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support generated" msgstr "Поддержка сгенерирована" @@ -206,7 +202,6 @@ msgstr "" msgid "Gizmo-Place on Face" msgstr "Гизмо: Поверхностью на стол" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Lay on Face" msgstr "Поверхностью на стол" @@ -214,7 +209,6 @@ msgstr "Поверхностью на стол" msgid "Filament count exceeds the maximum number that painting tool supports. Only the first %1% filaments will be available in painting tool." msgstr "Количество катушек превышает возможности инструмента. Для покраски будут доступны только первые %1%." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Color Painting" msgstr "Покраска" @@ -343,6 +337,7 @@ msgstr "Инструмент вращения" msgid "Optimize orientation" msgstr "Оптимизация положения модели" +msgctxt "Verb" msgid "Scale" msgstr "Масштаб" @@ -350,10 +345,11 @@ msgid "Gizmo-Scale" msgstr "Инструмент изменения размера" msgid "Error: Please close all toolbar menus first" -msgstr "Ошибка: пожалуйста, сначала закройте все меню панели инструментов." +msgstr "Ошибка: сначала закройте текущий инструмент." +msgctxt "inches" msgid "in" -msgstr "дюйм" +msgstr "" msgid "mm" msgstr "мм" @@ -382,57 +378,60 @@ msgstr "Прибавить угол" msgid "Scale ratios" msgstr "Коэф. масштаба" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object operations" msgstr "Операции с моделями" -# TODO: Review, changed by lang refactor. PR 14254 +msgid "Scale" +msgstr "Масштаб" + msgid "Volume operations" -msgstr "Булевы операции с объёмами" +msgstr "Булевы операции с телами" msgid "Translate" msgstr "Перемещение" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Group operations" msgstr "Групповые манипуляции" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set orientation" msgstr "Задание поворота" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set scale" msgstr "Задание масштаба" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset position" msgstr "Сброс позиции" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Reset rotation" msgstr "Сброс вращения" -msgid "Object coordinates" -msgstr "Относительно модели" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Относительно стола" +msgid "Object" +msgstr "Модель" -msgid "Translate(Relative)" -msgstr "Перемещение (относительное)" +msgid "Part" +msgstr "Часть" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "Относительно части" +msgctxt "Noun" +msgid "Scale" +msgstr "Масштаб" #. TRN - Input label. Be short as possible msgid "Size" @@ -540,12 +539,6 @@ msgstr "Зазор" msgid "Spacing" msgstr "Отступ" -msgid "Part" -msgstr "Часть" - -msgid "Object" -msgstr "Модель" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -712,9 +705,8 @@ msgstr "Соединение" msgid "Cut by Plane" msgstr "Разрез по плоскости" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Non-manifold edges be caused by cut tool: do you want to fix now?" -msgstr "При разрезании образовались открытые рёбра. Хотите исправить это сейчас?" +msgstr "При разрезании образовались открытые рёбра: запустить исправление?" msgid "Repairing model object" msgstr "Починка модели" @@ -781,9 +773,8 @@ msgstr "Треугольников: %d" msgid "Show wireframe" msgstr "Показать сетку" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to apply when processing preview" -msgstr "Дождитесь окончания расчёта упрощения модели." +msgstr "Дождитесь окончания расчёта упрощения модели" msgid "Operation already cancelling. Please wait a few seconds." msgstr "Операция уже отменена. Пожалуйста, подождите несколько секунд." @@ -807,7 +798,6 @@ msgstr "Рисование шва" msgid "Remove selection" msgstr "Удалить выделенное" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Entering seam painting" msgstr "Вход в рисование шва" @@ -831,11 +821,8 @@ msgstr "Межбуквенный интервал" msgid "Angle" msgstr "Угол" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Embedded depth" -msgstr "" -"Глубина\n" -"проникновения" +msgstr "Глубинапроникновения" msgid "Input text" msgstr "Введите текст" @@ -1390,7 +1377,6 @@ msgstr "Сохранить как" msgid "Save SVG file" msgstr "Сохранить SVG файл" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Save as SVG file." msgstr "Сохранить как файл '.svg'" @@ -1655,7 +1641,6 @@ msgstr "Alt+" msgid "Notice" msgstr "Примечание" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Undefined" msgstr "Не указано" @@ -1681,14 +1666,12 @@ msgstr "Материал" msgid "Machine" msgstr "Принтер" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The configuration package was loaded, but some values were not recognized." msgstr "Пакет профилей был загружен, но некоторые значения не были распознаны." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The configuration file “%1%” was loaded, but some values were not recognized." -msgstr "Файл профиля \"%1%\" был загружен, но некоторые значения не были распознаны." +msgstr "Файл профиля «%1%» был загружен, но некоторые значения не были распознаны." msgid "Loading configuration" msgstr "Загрузка настроек" @@ -1770,6 +1753,25 @@ msgstr "Неизвестная ошибка OrcaSlicer : %1%" msgid "Untitled" msgstr "Без названия" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Начиная с версии 2.4.0, OrcaSlicer синхронизирует пользовательские профили через Orca Cloud вместо Bambu Cloud.\n" +"\n" +"Чтобы перенести существующие профили, войдите в Orca Cloud, и они будут перенесены автоматически. Чтобы узнать больше о том, как OrcaSlicer хранит и синхронизирует ваши профили, или перенести профили вручную, посетите нашу вики.\n" +"\n" +"Если вы не использовали Bambu Cloud для синхронизации профилей, это изменение вас не затрагивает, и вы можете спокойно проигнорировать это сообщение." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Перезагрузка сетевого плагина..." @@ -1799,6 +1801,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Путь не существует или не является каталогом: %s" @@ -1818,7 +1826,6 @@ msgstr "Запомнить выбор" msgid "Click to download new version in default browser: %s" msgstr "Нажмите «Скачать» для загрузки версии %s в вашем основном браузере." -# TODO: Review, changed by lang refactor. PR 14254 msgid "OrcaSlicer needs an update" msgstr "Orca Slicer нуждается в обновлении" @@ -1882,7 +1889,6 @@ msgstr "Внеш." msgid "Some presets are modified." msgstr "В некоторых профилях имеются изменения." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project, discard, or save changes as new presets." msgstr "Можно перенести изменения в новый проект, отказаться от них или сохранить в новый профиль." @@ -1907,23 +1913,30 @@ 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:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1932,6 +1945,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -2007,7 +2026,8 @@ 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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2081,10 +2101,9 @@ msgstr "Переименовать" msgid "Orca Slicer GUI initialization failed" msgstr "Ошибка инициализации графического интерфейса Orca Slicer" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Fatal error, exception: %1%" -msgstr "Критическая ошибка, обнаружено исключение: %1%" +msgstr "Критическая ошибка, исключение: %1%" msgid "Quality" msgstr "Вид" @@ -2107,22 +2126,18 @@ msgstr "Скорость" msgid "Strength" msgstr "Прочность" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top solid layers" msgstr "Сплошных слоёв сверху" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Top minimum shell thickness" msgstr "Минимальная толщина оболочки сверху" msgid "Top Surface Density" msgstr "Плотность верхней поверхности" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom solid layers" msgstr "Сплошных слоёв снизу" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bottom minimum shell thickness" msgstr "Минимальная толщина оболочки снизу" @@ -2132,14 +2147,12 @@ msgstr "Плотность нижней поверхности" msgid "Ironing" msgstr "Разглаживание" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fuzzy skin" msgstr "Нечёткая оболочка" msgid "Extruders" msgstr "Количество экструдеров" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Extrusion width" msgstr "Ширина линии" @@ -2149,23 +2162,18 @@ msgstr "Параметры очистки" msgid "Bed adhesion" msgstr "Адгезия к столу" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Part" msgstr "Добавить элемент" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Negative Part" msgstr "Добавить вырез" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Modifier" -msgstr "Добавление модификатора" +msgstr "Добавить модификатор" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Blocker" msgstr "Добавить блокировщик поддержки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Support Enforcer" msgstr "Добавить принудительную поддержку" @@ -2197,13 +2205,13 @@ msgid "Show" msgstr "Показать" msgid "Del" -msgstr "" +msgstr "Del" msgid "Delete the selected object" msgstr "Удаление выбранных моделей" msgid "Backspace" -msgstr "" +msgstr "Backspace" msgid "Load..." msgstr "Загрузить…" @@ -2227,6 +2235,9 @@ msgid "Orca Cube" msgstr "Куб Orca" msgid "OrcaSliced Combo" +msgstr "Нарезанная Orca" + +msgid "Orca Badge" msgstr "" msgid "Orca Tolerance Test" @@ -2266,15 +2277,12 @@ msgstr "Рекомендация" msgid "Text" msgstr "Текст" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height Range Modifier" msgstr "Добавить модификатор по высоте" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add Settings" msgstr "Добавить настройки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Change Type" msgstr "Изменить тип" @@ -2288,13 +2296,11 @@ msgid "Support Enforcer" msgstr "Принудительная поддержка" msgid "Change part type" -msgstr "" +msgstr "Изменить тип" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set as An Individual Object" msgstr "Отвязать от группы экземпляров" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Set as Individual Objects" msgstr "Отвязать от группы экземпляров" @@ -2313,9 +2319,8 @@ msgstr "" msgid "Automatically drops the selected object to the build plate." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fix Model" -msgstr "Починить модель" +msgstr "Восстановить модель" msgid "Export as one STL" msgstr "Экспорт в один STL" @@ -2386,19 +2391,15 @@ msgstr "Прочистка в поддержку" msgid "Edit in Parameter Table" msgstr "Редактировать таблицу параметров" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Inches" msgstr "Преобразовать дюймы в миллиметры" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Inch" msgstr "Восстановить в дюймы" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Convert from Meters" msgstr "Преобразовать миллиметры в дюймы" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Restore to Meter" msgstr "Восстановить в миллиметры" @@ -2414,31 +2415,24 @@ msgstr "Булевы операции" msgid "Mesh boolean operations including union and subtraction" msgstr "Булевы операции с сеткой, включая объединение и вычитание" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along X Axis" msgstr "Вдоль оси X" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the X Axis" msgstr "Отразить модель вдоль оси X" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Y Axis" msgstr "Вдоль оси Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Y Axis" msgstr "Отразить модель вдоль оси Y" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Along Z Axis" msgstr "Вдоль оси Z" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror along the Z Axis" msgstr "Отразить модель вдоль оси Z" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Mirror object" msgstr "Отразить модель" @@ -2469,14 +2463,12 @@ msgstr "Добавить модель" msgid "Show Labels" msgstr "Показать имена файлов" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Objects" msgstr "На модели" msgid "Split the selected object into multiple objects" msgstr "Разделить выбранную модель на отдельные модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "To Parts" msgstr "На части" @@ -2502,9 +2494,8 @@ msgid "Merge with" msgstr "Объединить с" msgid "Delete this filament" -msgstr "Удалить этот филамент" +msgstr "Удалить материал" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Select All" msgstr "Выбрать всё" @@ -2517,7 +2508,6 @@ msgstr "Выбрать все столы" msgid "Select all objects on all plates" msgstr "Выбрать все модели на всех столах" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete All" msgstr "Удалить всё" @@ -2658,25 +2648,21 @@ msgstr[2] "%1$d открытых рёбер" msgid "Click the icon to repair model object" msgstr "Нажмите на значок, чтобы починить модель" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object settings" msgstr "Сбросить настройки (ПКМ)" msgid "Click the icon to reset all settings of the object" msgstr "Сбросить настройки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Right click the icon to drop the object printable property" msgstr "Переключить печать модели (ПКМ)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to toggle printable properties of the object" msgstr "Переключить печать модели" msgid "Click the icon to edit support painting of the object" msgstr "Изменить области расположения поддержек" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click the icon to edit color painting for the object" msgstr "Перекрасить модель" @@ -2723,7 +2709,6 @@ msgstr "Удаление выреза из модели, которая явля msgid "To save cut correspondence you can delete all connectors from all related objects." msgstr "Для сохранения информации о разрезе, вы можете удалить все соединения из всех связанных объектов." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This action will break a cut correspondence.\n" "After that, model consistency can't be guaranteed.\n" @@ -2756,15 +2741,12 @@ msgstr "Манипуляция с моделями" msgid "Group manipulation" msgstr "Групповые манипуляции" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Object Settings to Modify" msgstr "Параметры модели для изменения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Part Settings to Modify" msgstr "Параметры элемента для изменения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer Range Settings to Modify" msgstr "Изменение параметров диапазона слоёв" @@ -2792,9 +2774,8 @@ msgstr "Если первый выбранный элемент является msgid "If the first selected item is a part, the second should be a part in the same object." msgstr "Если первый выбранный элемент является частью модели, то второй должен быть частью той же модели." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The type of the last solid object part cannot be changed." -msgstr "Вы не можете изменить тип последнего твердотельного элемента модели." +msgstr "В модели должно быть хотя бы одно твёрдое тело." msgid "Type:" msgstr "Тип:" @@ -2810,18 +2791,18 @@ msgstr "Переименование" msgid "The following model object has been repaired" msgid_plural "The following model objects have been repaired" -msgstr[0] "Следующая модель была успешно починена" -msgstr[1] "Следующие модели были успешно починены" -msgstr[2] "Следующие модели были успешно починены" +msgstr[0] "Следующая модель была успешно восстановлена" +msgstr[1] "Следующие модели были успешно восстановлены" +msgstr[2] "Следующие модели были успешно восстановлены" msgid "Failed to repair the following model object" msgid_plural "Failed to repair the following model objects" -msgstr[0] "Не удалось починить следующую модель" -msgstr[1] "Не удалось починить следующие модели" -msgstr[2] "Не удалось починить следующие модели" +msgstr[0] "Не удалось восстановить следующую модель" +msgstr[1] "Не удалось восстановить следующие модели" +msgstr[2] "Не удалось восстановить следующие модели" msgid "Repairing was canceled" -msgstr "Ремонт был отменён" +msgstr "Восстановление отменено" # Опять пример "лоскутного одеяла", перед этой строкой слайсер добавляет слово # "Модель". @@ -2829,11 +2810,10 @@ msgstr "Ремонт был отменён" 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 "Сетка детали «%s» содержит ошибки. Сначала исправьте их." +msgstr "Сетка модели «%s» содержит ошибки. Выполните её восстановление." msgid "Additional process preset" msgstr "Доп. профиль настроек" @@ -2853,7 +2833,6 @@ msgstr "Добавление диапазона высот слоёв" msgid "Invalid numeric." msgstr "Неправильное числовое значение." -# TODO: Review, changed by lang refactor. PR 14254 msgid "One cell can only be copied to one or more cells in the same column." msgstr "Ячейку можно скопировать только в одну или несколько ячеек того же столбца." @@ -2918,21 +2897,17 @@ msgstr "Тип линии" msgid "1x1 Grid: %d mm" msgstr "Размер ячейки: %d мм" -# TODO: Review, changed by lang refactor. PR 14254 msgid "More" msgstr "Подробнее" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open Preferences" -msgstr "Открыть настройки приложения." +msgstr "Открыть настройки приложения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open next tip" -msgstr "Следующий совет." +msgstr "Следующий совет" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Open documentation in web browser" -msgstr "Открыть документацию в браузере." +msgstr "Открыть документацию в браузере" msgid "Color" msgstr "Цвет" @@ -2965,11 +2940,10 @@ msgstr "Пользовательский G-код" msgid "Enter Custom G-code used on current layer:" msgstr "Введите пользовательский G-код для текущего слоя:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Jump to layer" msgstr "Перейти к слою" -# TODO: Review, changed by lang refactor. PR 14254 +# После фразы идёт диапазон слоёв в скобках и двоеточием в конце предложения, точка тут не нужна! В оригинале её зачем-то добавили вместе с 400 другими типовыми изменениями; вероятно, по ошибке. msgid "Please enter the layer number." msgstr "Введите номер слоя" @@ -3048,16 +3022,14 @@ msgstr "Подключение..." msgid "Auto Refill" msgstr "Автодозаправка" -# кнопка в интерфейсе? Extrude - Выдавить - Load -# TODO: Review, changed by lang refactor. PR 14254 +# Используется только в интерфейсе AMS (AMSControl.cpp и DeviceErrorDialog.cpp), пока больше нигде не повторяется msgid "Load" msgstr "Выдавить" -# кнопка в интерфейсе? retract - Втянуть - Unload (Выгрузить, Выгрузка) +# Используется только в интерфейсе AMS (AMSControl.cpp и DeviceErrorDialog.cpp), пока больше нигде не повторяется msgid "Unload" msgstr "Втянуть" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filament." msgstr "Выберите слот AMS, затем нажмите кнопку «Выдавить» или «Втянуть» для автоматической загрузки или выгрузки прутка." @@ -3174,7 +3146,6 @@ msgstr "Нагрев экструдера" msgid "Cut filament" msgstr "Обрезка прутка" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Pull back the current filament" msgstr "Извлечение текущего прутка" @@ -3216,7 +3187,6 @@ msgstr "" msgid "No matching items..." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deselect All" msgstr "Снять выбор со всего" @@ -3241,7 +3211,6 @@ msgstr "Расширенные настройки" msgid "Expert settings" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Developer mode" msgstr "Режим разработчика" @@ -3272,9 +3241,8 @@ msgstr "Расстановка" msgid "Arranging canceled." msgstr "Расстановка отменена." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Arranging complete, but some items were not able to be arranged. Reduce spacing and try again." -msgstr "Расстановка завершена, но не всё уместилось на столе. Уменьшите отступ расстановки и повторите попытку." +msgstr "Расстановка завершена, но не всё удалось уместить на столе. Уменьшите отступ расстановки и повторите попытку." msgid "Arranging done." msgstr "Расстановка выполнена." @@ -3338,9 +3306,8 @@ msgstr "Ошибка авторизации" msgid "Please check the printer network connection." msgstr "Пожалуйста, проверьте сетевое подключение принтера." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Abnormal print file data: please slice again." -msgstr "Неправильные данные файла печати. Пожалуйста, нарежьте ещё раз." +msgstr "Неправильные данные файла печати; выполните нарезку ещё раз." msgid "Task canceled." msgstr "Задание отменено." @@ -3351,12 +3318,11 @@ msgstr "Истекло время ожидания отправки. Прове msgid "Cloud service connection failed. Please try again." msgstr "Не удалось подключиться к облачному сервису. Пожалуйста, попробуйте ещё раз." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice again." -msgstr "Файл печати не найден, нарежьте ещё раз." +msgstr "Файл печати не найден; выполните нарезку ещё раз." msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again." -msgstr "Файл печати превышает максимально допустимый размер (1 ГБ). Пожалуйста, упростите модель и нарежьте ещё раз." +msgstr "Файл печати превышает максимально допустимый размер (1 ГБ). Упростите модель и выполните нарезку ещё раз." msgid "Failed to send the print job. Please try again." msgstr "Не удалось отправить задание на печать. Пожалуйста, попробуйте ещё раз." @@ -3364,18 +3330,15 @@ msgstr "Не удалось отправить задание на печать. msgid "Failed to upload file to ftp. Please try again." msgstr "Не удалось загрузить файл на FTP. Пожалуйста, попробуйте ещё раз." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Check the current status of the Bambu Lab 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 "Размер файла для печати слишком велик. Пожалуйста, уменьшите размер файла и повторите попытку." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print file not found; please slice it again and send it for printing." -msgstr "Файл печати не найден. Пожалуйста, нарежьте его ещё раз и отправьте на печать." +msgstr "Файл печати не найден; выполните нарезку и отправьте файл на печать ещё раз." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Failed to upload print file via FTP. Please check the network status and try again." msgstr "Не удалось загрузить файл печати на FTP. Проверьте состояние сети и повторите попытку." @@ -3427,7 +3390,6 @@ msgstr "Обнаружена неизвестная ошибка состоян msgid "Sending G-code file over LAN" msgstr "Отправка G-код файла по локальной сети" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sending G-code file to SD card" msgstr "Отправка G-код файла на SD-карту" @@ -3503,7 +3465,6 @@ msgstr "Осталось: %dм %dс" msgid "Importing SLA archive" msgstr "Импорт SLA архива" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer presets first before importing that SLA archive." msgstr "Архив SLA не содержит никаких профилей. Пожалуйста, сначала активируйте какой-нибудь профиль SLA принтера, прежде чем импортировать этот SLA архив." @@ -3516,7 +3477,6 @@ msgstr "Импорт завершён." msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback." msgstr "Импортированный SLA архив не содержит никаких профилей. Текущие SLA профили использовались в качестве резервных." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You cannot load an SLA project with a multi-part object on the bed" msgstr "Вы не можете загрузить проект SLA с многокомпонентным объектом на столе" @@ -3544,7 +3504,6 @@ msgstr "Установка" msgid "Install failed" msgstr "Ошибка установки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "License Info" msgstr "Сторонние компоненты" @@ -3662,7 +3621,6 @@ msgstr "Другой цвет" msgid "Custom Color" msgstr "Пользовательский цвет" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Dynamic flow calibration" msgstr "Калибровка динамики потока" @@ -3672,7 +3630,6 @@ msgstr "Температура экструдера и максимальный msgid "Nozzle Diameter" msgstr "Диаметр сопла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate Type" msgstr "Покрытие" @@ -3696,9 +3653,8 @@ msgid "mm³" msgstr "мм³" # Если короче - Запуск калибровки -# TODO: Review, changed by lang refactor. PR 14254 msgid "Start" -msgstr "Запустить калибровку" +msgstr "Запуск" msgid "Next" msgstr "Далее" @@ -3709,9 +3665,9 @@ msgstr "Калибровка завершена. Теперь найдите н msgid "Save" msgstr "Сохранить" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" -msgstr "Сзади" +msgstr "Назад" msgid "Example" msgstr "Пример" @@ -3807,20 +3763,17 @@ msgstr "Примечание: можно выбирать только слот msgid "Enable AMS" msgstr "Включить AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in the AMS" -msgstr "Печать материалами из AMS" +msgstr "Печать материалом из AMS" msgid "Disable AMS" msgstr "Отключить AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament on external spool" -msgstr "Печать материалом, установленным на задней части корпуса" +msgstr "Печать материалом с внешней катушки" -# TODO: Review, changed by lang refactor. PR 14254 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 takes a few hours to absorb the moisture, and low temperatures also slow down the process." -msgstr "Пожалуйста, замените влагопоглотитель, если он слишком влажный. Индикатор может показывать неточно в следующих случаях: при открытой крышке или замене влагопоглотителя. Для поглощения влаги требуется несколько часов. Низкая температура окружающей среды также замедляет этот процесс." +msgstr "Пожалуйста, замените влагопоглотитель, если он слишком влажный. Индикатор может показывать неточно в следующих случаях: при открытой крышке или замене влагопоглотителя. Для поглощения влаги требуются часы, и низкая температура окружающей среды также замедляет этот процесс." msgid "Configure which AMS slot should be used for a filament used in the print job." msgstr "Задайте слот AMS, который должен использоваться для прутка, используемого в текущем задании." @@ -3839,13 +3792,11 @@ msgstr "Нажмите, чтобы выбрать слот AMS вручную" msgid "Do not Enable AMS" msgstr "Не включать AMS" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print using filament on external spool." -msgstr "Печать с использованием материала, установленного на задней части корпуса" +msgstr "Использовать для печати материал с внешней катушки." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Print with filament in AMS" -msgstr "Печать материалами из AMS" +msgstr "Печать материалом из AMS" msgid "Left" msgstr "Слева" @@ -3868,15 +3819,14 @@ msgstr "Когда текущий материал закончится, при msgid "The printer does not currently support auto refill." msgstr "В настоящее время принтер не поддерживает функцию автодозаправки." -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament backup is not enabled; please enable it in the AMS settings." -msgstr "Резервирование материала AMS не включено, пожалуйста, включите его в настройках AMS." +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" +"Когда материал на катушке закончится, принтер продолжит печать идентичным материалом с другой катушки.\n" "*Идентичный материал: тот же тип, производитель и цвет" msgid "DRY" @@ -3891,7 +3841,6 @@ msgstr "Настройки AMS" msgid "Insertion update" msgstr "Обновлять данные при вставке материала" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament spool. This takes about 20 seconds." msgstr "AMS автоматически считывает информацию о материале при установке новой катушки Bambu. Это занимает около 20 секунд." @@ -3901,14 +3850,12 @@ msgstr "Примечание: если во время печати вставл msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually." msgstr "При вставке новой катушки, AMS не будет автоматически считывать информацию о ней, оставляя поле пустым, чтобы пользователь мог ввести данные вручную." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Update on startup" msgstr "Обновлять данные при включении принтера" # ??? было При включении принтера АСПП будет автоматически считывать # информацию о вставленных материалах. Это занимает около одной минуты. В # процессе считывания информации о материале катушка вращается. -# TODO: Review, changed by lang refactor. PR 14254 msgid "The AMS will automatically read the information of inserted filament on start-up. It will take about 1 minute. The reading process will rotate the filament spools." msgstr "AMS будет автоматически считывать информацию о вставленных материалах при включении принтера. Это занимает около одной минуты. В процессе считывания информации о материале катушка вращается." @@ -3966,7 +3913,6 @@ msgstr "Калибровка" msgid "Failed to download the plug-in. Please check your firewall settings and VPN software and retry." msgstr "Не удалось загрузить плагин. Пожалуйста, проверьте настройки брандмауэра и VPN и повторите попытку." -# TODO: Review, changed by lang refactor. PR 14254 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 has been deleted by anti-virus software." msgstr "Не удалось установить плагин. Возможно, файл занят другим процессом: попробуйте перезапустить OrcaSlicer и установить его заново. Также проверьте, не заблокирован/не удалён ли он антивирусом." @@ -3988,21 +3934,18 @@ msgstr ") для определения положения печатной го msgid "Go Home" msgstr "На главную" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An error occurred. The system may have run out of memory, or a bug may have occurred." -msgstr "Произошла ошибка. Возможно, недостаточно системной памяти, или это баг программы" +msgstr "Произошла ошибка. Возможно, недостаточно системной памяти, или это баг программы." #, boost-format msgid "A fatal error occurred: \"%1%\"" msgstr "Произошла критическая ошибка: \"%1%\"" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please save your project and restart the application." msgstr "Пожалуйста, сохраните проект и перезапустите программу." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing G-Code from previous file…" -msgstr "Обработка G-кода из предыдущего файла..." +msgstr "Обработка G-кода из предыдущего файла…" msgid "Slicing complete" msgstr "Нарезка завершена" @@ -4065,9 +4008,8 @@ msgstr "Копирование временного G-кода завершен msgid "G-code file exported to %1%" msgstr "Файл G-кода экспортирован в %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown error with G-code export" -msgstr "Неизвестная ошибка при экспорте G-кода." +msgstr "Неизвестная ошибка при экспорте G-кода" #, boost-format msgid "" @@ -4079,9 +4021,8 @@ msgstr "" "Сообщение об ошибке: %1%.\n" "Исходный файл %2%." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Copying of the temporary G-code to the output G-code failed." -msgstr "Не удалось скопировать временный G-код в местонахождение выходного файла G-кода" +msgstr "Не удалось скопировать временный G-код в расположение выходного файла." #, boost-format msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue" @@ -4128,14 +4069,12 @@ msgstr "Выберите файл STL для импорта формы стол msgid "Invalid file format." msgstr "Неверный формат файла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error: invalid model" msgstr "Ошибка: недопустимая модель" msgid "The selected file contains no geometry." msgstr "Выбранный файл не содержит геометрии." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The selected file contains several disjointed areas. This is not supported." msgstr "Выбранный файл содержит несколько непересекающихся областей. Такие файлы не поддерживаются." @@ -4162,13 +4101,12 @@ msgstr "Минимально рекомендуемая температура msgid "Please check.\n" msgstr "Пожалуйста, проверьте.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The nozzle may become clogged when the temperature is out of the recommended range.\n" "Please make sure whether to use this temperature to print.\n" "\n" msgstr "" -"Сопло может засориться, если температура превышает рекомендуемый диапазон.\n" +"Сопло может забиться, если температура превышает рекомендуемый диапазон.\n" "Пожалуйста, убедитесь, что вы задали нужную температуру для печати.\n" "\n" @@ -4177,22 +4115,23 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "Диапазон рекомендуемых температур печати данным типом материала составляет [%d, %d] градусов Цельсия." msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "Обнаружена ошибка в настройке адаптивного PA:\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Too small max volumetric speed.\n" "Value was reset to 0.5" msgstr "" -"Слишком маленький максимальный объёмный расход.\n" +"Слишком низкий предел объёмного расхода.\n" "Значение будет сброшено на 0,5." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Текущая температура внутри термокамеры превышает безопасную температуру для этого материала, что может привести к размягчению материала или засорению экструдера. Безопасная температура текущего материала составляет %d" -# TODO: Review, changed by lang refactor. PR 14254 +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4200,7 +4139,6 @@ msgstr "" "Слишком маленькая высота слоя.\n" "Значение будет сброшено на 0,2." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Ironing spacing too small\n" "It has been reset to 0.1" @@ -4217,20 +4155,18 @@ msgstr "" "\n" "Высота первого слоя будет сброшена до 0.2." -# TODO: Review, changed by lang refactor. PR 14254 +# Оба первых предложения легко объединяются в одно. msgid "" "This setting is only used for tuning model size by small amounts.\n" "For example, when the model size has small errors or when tolerances are incorrect. For large adjustments, please use the model scale function.\n" "\n" "The value will be reset to 0." msgstr "" -"Этот параметр используется только для точной корректировки размера модели в определенных случаях.\n" -"Например, когда есть небольшая погрешность в размерах модели и её трудно собрать.\n" +"Этот параметр используется только для точной подгонки размера модели и соблюдения допусков.\n" "Для более значительной корректировки размеров используйте функцию масштабирования модели.\n" "\n" "Это значение будет сброшено на 0." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "The elephant foot compensation value is too large.\n" "If there are significant elephant foot issues, please check other settings.\n" @@ -4238,9 +4174,9 @@ msgid "" "\n" "The value will be reset to 0." msgstr "" -"Слишком большая компенсация слоновьей ноги нецелесообразна.\n" -"Если имеется серьёзный эффект слоновьей ноги, проверьте другие настройки печати.\n" -"Например, не слишком ли высокая температура стола.\n" +"Значение компенсации слоновьей ноги слишком большое.\n" +"Если возникает сильный дефект слоновьей ноги, проблема может исходить из других настроек.\n" +"Например, завышенная температура стола или некорректный прижим сопла на первом слое.\n" "\n" "Значение будет сброшено на 0." @@ -4303,7 +4239,6 @@ msgstr "" "Начальная высота не должна превышать высоту слоя.\n" "Значение сброшено на 0." -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "" "Lock depth should smaller than skin depth.\n" @@ -4335,7 +4270,6 @@ msgstr "" msgid " But machines with I3 structure will not generate timelapse videos." msgstr " Но принтеры с кинематикой I3 не будут писать таймлапс." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings and enable spiral/vase mode automatically\n" @@ -4713,7 +4647,6 @@ msgstr "Профили" msgid "Print settings" msgstr "Настройки печати" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament settings" msgstr "Настройки материала" @@ -4738,7 +4671,6 @@ msgstr "Пустая строка" msgid "Value is out of range." msgstr "Введённое значение вне диапазона." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "%s can’t be a percentage" msgstr "%s не может быть в процентах" @@ -4997,7 +4929,6 @@ msgstr "Башня" msgid "Total" msgstr "Всего" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Total estimation" msgstr "Общая оценка" @@ -5088,11 +5019,9 @@ msgstr "с" msgid "Usage" msgstr "Расход" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height (mm)" msgstr "Высота слоя (мм)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width (mm)" msgstr "Ширина линии (мм)" @@ -5108,7 +5037,6 @@ msgstr "" msgid "Jerk (mm/s)" msgstr "Jerk (mm/s)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Fan speed (%)" msgstr "Скорость вентилятора (%)" @@ -5124,7 +5052,6 @@ msgstr "Действительный расход (мм³/с)" msgid "Seams" msgstr "Швы" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament changes" msgstr "Смена прутка" @@ -5146,10 +5073,10 @@ msgstr "Смена инструмента" msgid "Color change" msgstr "Смена цвета" +msgctxt "Noun" msgid "Print" msgstr "Печать" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printer" msgstr "Принтер" @@ -5270,18 +5197,15 @@ msgstr "Левое сопло: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%\n" msgid "Right nozzle: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" msgstr "Правое сопло: X:%1%-%2%, Y:%3%-%4%, Z:%5%-%6%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Tool move" msgstr "Инструмент перемещения" msgid "Tool Rotate" msgstr "Инструмент вращения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move object" msgstr "Перемещение модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto orientation options" msgstr "Параметры автоориентации" @@ -5312,11 +5236,15 @@ msgstr "Избегать зону калибровки экструзии" msgid "Align to Y axis" msgstr "Выравнивать по оси Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Сзади" + +msgctxt "Camera View" msgid "Left" msgstr "Слева" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Справа" @@ -5365,6 +5293,12 @@ msgstr "Все столы" msgid "Stats" msgstr "Статистика" +msgid "Slice" +msgstr "Нарезать" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Выйти из сборки" @@ -5393,6 +5327,9 @@ msgstr "Нависания" msgid "Outline" msgstr "Обводка выбранного" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5417,7 +5354,6 @@ msgstr "Разнесение" msgid "Section View" msgstr "Сечение" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Assembly Control" msgstr "Управление сборкой" @@ -5441,50 +5377,59 @@ msgid "Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Pleas msgstr "В G-коде на %d слое (z = %.2lf мм) обнаружен конфликт путей. Пожалуйста, разместите конфликтующие модели дальше друг от друга (%s <-> %s)." msgid "An object is laid over the plate boundaries." -msgstr "Модель выходить за границы печатного стола." +msgstr "Модель выходить за границы области печати." msgid "A G-code path goes beyond the max print height." msgstr "Траектория перемещения в G-коде превышает высоту области печати." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A G-code path goes beyond plate boundaries." -msgstr "Траектория перемещения в G-коде выходит за границы печатного стола." +msgstr "Траектория перемещения в G-коде выходит за границы области печати." msgid "Not support printing 2 or more TPU filaments." msgstr "Печать двумя и более прутками TPU не поддерживается." -# Подставляется ID экструдера. Используется для двухэкструдерных Bambu и -# тулченджеров. Чтобы не мешать в одном месте "инструмент-насадка", лучше -# взять более универсальное "экструдер". Подставляется в последующее -# сообщение. +# Подставляется ID экструдера (число). Используется для двухэкструдерных Bambu, IDEX и тулченджеров. Чтобы не мешать в одном месте "инструмент-насадка", лучше взять более универсальное "экструдер". Подставляется в последующее сообщение. UPD: проверил в коде, строка используется только в одном месте, поэтому "экструдер" можно перенести в них и обойти проблему с лишней переменной. #, c-format, boost-format msgid "Tool %d" -msgstr "%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-код выходит за его предел высоты печати [%s]." +msgstr "" +"Материал %s назначен на %s экструдер, но итоговый G-код выходит за его предел высоты печати.\n" +"\n" +"%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-код выходит за его предел высоты печати [%s]." +msgstr "" +"Материалы %s назначены на %s экструдер, но итоговый G-код выходит за его предел высоты печати.\n" +"\n" +"%s экструдер:" # Возможно, какая-то специфичная проверка для тулченджеров, на профиле H2D при -# превышении высоты через подъём при откате оно не выводится. Квадратные -# скобки – костыль для обхода кривизны системы локализации. +# превышении высоты через подъём при откате оно не выводится. Последнее +# предложение – костыль для обхода кривизны системы локализации. #, 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-код выходит за его предел высоты печати [%s]." +msgstr "" +"Материал %s назначен на %s экструдер, но итоговый G-код выходит за его предел высоты печати.\n" +"\n" +"%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-код выходит за его предел высоты печати [%s]." +msgstr "" +"Материалы %s назначены на %s экструдер, но итоговый G-код выходит за его предел высоты печати.\n" +"\n" +"%s экструдер:" msgid "Open wiki for more information." msgstr "Подробнее на Вики." msgid "Only the object being edited is visible." -msgstr "При редактировании другие модели скрываются." +msgstr "Другие модели скрыты на время редактирования." #, c-format, boost-format msgid "Filaments %s cannot be printed directly on the surface of this plate." @@ -5515,7 +5460,6 @@ msgstr "Выбор шагов калибровки" msgid "Micro lidar calibration" msgstr "Калибровка микролидаром" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Bed leveling" msgstr "Выравнивание стола" @@ -5598,9 +5542,8 @@ msgstr "" "Вы можете найти его в «Настройки > Настройки > Только LAN > Код доступа»\n" "на принтере, как показано на рисунке:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Invalid input" -msgstr "Неверный ввод." +msgstr "Неверный ввод" msgid "New Window" msgstr "Новое окно" @@ -5608,7 +5551,6 @@ msgstr "Новое окно" msgid "Open a new window" msgstr "Открыть новое окно" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Closing application" msgstr "Закрытие приложения" @@ -5660,6 +5602,10 @@ msgstr "Распечатать стол" msgid "Export G-code file" msgstr "Экспорт в G-код" +msgctxt "Verb" +msgid "Print" +msgstr "Печать" + msgid "Export plate sliced file" msgstr "Экспорт стола в файл проекта" @@ -5868,17 +5814,15 @@ msgstr "Вставить" msgid "Paste clipboard" msgstr "Вставить из буфера обмена" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete Selected" msgstr "Удалить" msgid "Deletes the current selection" -msgstr "Удалить текущие выбранные модели" +msgstr "Удалить выбранные модели" msgid "Deletes all objects" msgstr "Удалить все модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clone Selected" msgstr "Копировать выбранное" @@ -5946,7 +5890,7 @@ msgid "Show object overhang highlight in 3D scene." msgstr "Подсвечивать нависания у модели в окне подготовки." msgid "Show Selected Outline (beta)" -msgstr "Показать контур выбранной модели" +msgstr "Показать контур выбранного" msgid "Show outline around selected object in 3D scene." msgstr "Отображение контура вокруг выбранных моделей в окне подготовки." @@ -6043,12 +5987,10 @@ msgstr "&Вид" msgid "&Help" msgstr "&Помощь" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A file exists with the same name: %s. Do you want to overwrite it?" msgstr "Файл с именем %s уже существует. Перезаписать его?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "A config exists with the same name: %s. Do you want to overwrite it?" msgstr "Профиль с именем %s уже существует. Перезаписать его?" @@ -6076,7 +6018,6 @@ msgstr[0] "Экспортирован %d профиль (только не си msgstr[1] "Экспортировано %d профиля (только не системные)." msgstr[2] "Экспортировано %d профилей (только не системные)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export Result" msgstr "Результат экспорта" @@ -6123,12 +6064,11 @@ msgstr "Превышен лимит подключений к устройств msgid "Player is malfunctioning. Please reinstall the system player." msgstr "Проигрыватель неисправен. Пожалуйста, переустановите системный проигрыватель." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The player is not loaded; please click the \"play\" button to retry." -msgstr "Проигрыватель не загружается. Нажмите кнопку «Воспроизвести», чтобы повторить попытку." +msgstr "Не удалось загрузить проигрыватель. Нажмите кнопку «Воспроизвести», чтобы повторить попытку." msgid "The player is not loaded because the GStreamer GTK video sink is missing or failed to initialize." -msgstr "" +msgstr "Не удалось загрузить проигрыватель: GStreamer отсутствует или не прошёл инициализацию." msgid "Please confirm if the printer is connected." msgstr "Пожалуйста, проверьте, подключен ли принтер." @@ -6145,7 +6085,6 @@ msgstr "Возникла проблема. Пожалуйста, обновит msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen." msgstr "Видеотрансляция для режима «Только LAN» отключена. Пожалуйста, включите её с экрана принтера." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please enter the IP of the printer to connect." msgstr "Введите IP-адрес принтера для подключения." @@ -6234,7 +6173,6 @@ msgstr "Видео" msgid "Switch to video files." msgstr "Переключиться на видеофайлы." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Switch to 3MF model files." msgstr "Переключиться на файлы моделей в формате 3MF." @@ -6450,7 +6388,6 @@ msgstr "В сети" msgid "Input access code" msgstr "Введите код доступа" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Can't find devices?" msgstr "Не удаётся найти свои принтеры?" @@ -6475,15 +6412,12 @@ msgstr "недопустимые символы:" msgid "illegal suffix:" msgstr "недопустимый суффикс:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name field is not allowed to be empty." msgstr "Имя не может быть пустым." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to start with a space." msgstr "Имя не должно начинаться с пробела." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The name is not allowed to end with a space." msgstr "Имя не должно заканчиваться пробелом." @@ -6507,7 +6441,6 @@ msgstr "Переключение..." msgid "Switching failed" msgstr "Переключение не удалось" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Printing progress" msgstr "Прогресс печати" @@ -6527,7 +6460,6 @@ msgstr "Просмотр подробностей преднагрева" msgid "Clear" msgstr "Сбросить" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You have completed printing the mall model, \n" "but synchronizing rating information has failed." @@ -6622,10 +6554,9 @@ msgstr "Загрузка..." msgid "Cloud Slicing..." msgstr "Облачная нарезка..." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "In Cloud Slicing Queue, there are %s tasks ahead of you." -msgstr "Количество заданий в очереди на облачной нарезке: %s." +msgstr "Ваша очередь в облачной нарезке: %s." #, c-format, boost-format msgid "Layer: %s" @@ -6647,7 +6578,6 @@ msgstr "Если температура камеры превысит 40℃, с msgid "Please select an AMS slot before calibration" msgstr "Пожалуйста, выберите слот AMS перед калибровкой" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot read filament info: the filament is loaded to the tool head. Please unload the filament and try again." msgstr "Не удаётся считать информацию о материале: пруток загружен в печатающую голову. Извлеките его и повторите попытку." @@ -6831,11 +6761,9 @@ msgstr "Информация %s" msgid "Skip" msgstr "Пропустить" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Newer 3MF version" msgstr "Новая версия 3MF" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The 3MF file version is in Beta and it is newer than the current OrcaSlicer version." msgstr "Этот файл 3MF был сохранён в более новой бета-версии OrcaSlicer." @@ -6845,11 +6773,9 @@ msgstr "Нажмите, если хотите попробовать бета-в msgid "Download Beta Version" msgstr "Скачать бета-версию" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The 3MF file version is newer than the current OrcaSlicer version." msgstr "Версия файла 3MF новее, чем ваша текущая версия Orca Slicer." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Updating your OrcaSlicer could enable all functionality in the 3MF file." msgstr "Обновите Orca Slicer, чтобы задействовать все функции, сохранённые в этом 3MF файле." @@ -6888,7 +6814,6 @@ msgid "3D Mouse disconnected." msgstr "3D-мышь отключена." # Теперь профиль может быть обновлён -# TODO: Review, changed by lang refactor. PR 14254 msgid "A new configuration is available. Update now?" msgstr "Теперь профиль можно обновить." @@ -6913,17 +6838,14 @@ msgstr "Доступен новый профиль принтера." msgid "Undo integration failed." msgstr "Не удалось отменить интеграцию." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Exporting" msgstr "Экспорт..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "An update is available!" -msgstr "Доступна новая версия приложения." +msgstr "Доступна новая версия." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Go to download page" -msgstr "Перейти на страницу загрузки." +msgstr "Перейти на страницу загрузки" msgid "Open Folder." msgstr "Открыть папку." @@ -7053,7 +6975,6 @@ msgstr "Снизу" msgid "Enable detection of build plate position" msgstr "Определение положения покрытия" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The localization tag of the build plate will be detected, and printing will be paused if the tag is not in predefined range." msgstr "Функция обнаружения метки (QR-кода) на покрытии стола. Печать приостанавливается, если метка находится не в том месте." @@ -7101,7 +7022,6 @@ msgstr "Определение холостой печати из-за зато msgid "First Layer Inspection" msgstr "Проверка первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Auto-recover from step loss" msgstr "Автовосстановление после смещения слоя" @@ -7114,7 +7034,6 @@ msgstr "Записывать в память внешнего накопител msgid "Allow Prompt Sound" msgstr "Разрешить звуковые уведомления" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament Tangle Detection" msgstr "Обнаружение запутывания прутка" @@ -7378,18 +7297,15 @@ msgstr "Размонтирование прошло успешно. Теперь msgid "Ejecting of device %s (%s) has failed." msgstr "Не удалось извлечь устройство %s (%s)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Previously unsaved items have been detected. Do you want to restore them?" -msgstr "Обнаружен предыдущий несохранённый проект. Хотите восстановить его?" +msgstr "Обнаружен несохранённый проект. Хотите восстановить его?" msgid "Restore" msgstr "Восстановить" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current heatbed temperature is relatively high. The nozzle may clog when printing this filament in a closed environment. Please open the front door and/or remove the upper glass." msgstr "Текущая температура стола довольно высока. При печати этим материалом в закрытом корпусе возможно засорение сопла. Откройте переднюю дверцу и/или верхнюю крышку принтера." -# TODO: Review, changed by lang refactor. PR 14254 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 worn down or damaged." msgstr "Твёрдость заводского сопла недостаточна для печати данным материалом. Замените сопло на закалённое или смените материал. В противном случае сопло быстро станет непригодным для печати." @@ -7414,16 +7330,14 @@ msgstr "" msgid "Loading file: %s" msgstr "Загрузка файла: %s" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Load 3MF" msgstr "Загрузка 3mf" msgid "BambuStudio Project" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The 3MF is not supported by OrcaSlicer, loading geometry data only." -msgstr "Этот 3MF создан не в OrcaSlicer, поэтому загрузятся только данные геометрии." +msgstr "Этот 3MF не поддерживается OrcaSlicer, поэтому загрузятся только данные геометрии." msgid "The 3MF file was generated by an old OrcaSlicer version, loading geometry data only." msgstr "Этот файл 3MF был сохранён в старой версии OrcaSlicer, будут загружены только данные геометрии." @@ -7441,16 +7355,13 @@ msgid "Would you like OrcaSlicer to automatically fix this by clearing the rotat msgstr "Сбросить настройки поворота шаблона заполнения?" # Подставляется номер версии файла, "Orca Slicer", установленная версия -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "The 3MF file version %s is newer than %s's version %s, found the following unrecognized keys:" msgstr "Этот файл 3MF был сохранён в более новой версии OrcaSlicer %s (сейчас установлен %s %s). Обнаружены следующие нераспознанные ключи:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You should update your software.\n" msgstr "Рекомендуется обновить программу.\n" -# TODO: Review, changed by lang refactor. PR 14254 #, 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 был сохранён в более новой версии OrcaSlicer %s (сейчас установлен %s %s). Рекомендуется обновить программу." @@ -7469,7 +7380,6 @@ msgstr "" msgid "Invalid values found in the 3MF:" msgstr "В файле 3MF найдены недопустимые значения:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please correct them in the Param tabs" msgstr "Пожалуйста, исправьте их в настройках" @@ -7494,13 +7404,11 @@ msgstr "Во избежание повреждения принтера убед msgid "Customized Preset" msgstr "Пользовательский профиль" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Component name(s) inside step file not in UTF8 format!" -msgstr "Имена компонентов внутри STEP файла не в формате UTF8!" +msgstr "Имена компонентов внутри файла STEP не в формате UTF8." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Because of unsupported text encoding, garbage characters may appear!" -msgstr "В названии могут присутствовать ненужные символы!" +msgstr "Из-за неподдерживаемой кодировки в названии могут присутствовать ошибочные символы." msgid "Remember my choice." msgstr "Запомнить выбор" @@ -7515,7 +7423,6 @@ msgstr "Модели с нулевым объёмом удалены" msgid "The volume of the object is zero" msgstr "Объём модели равен нулю" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The object from file %s is too small, and may be in meters or inches.\n" @@ -7528,14 +7435,13 @@ msgstr "" msgid "Object too small" msgstr "Модель слишком мала" -# TODO: Review, changed by lang refactor. PR 14254 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 with multiple parts?" msgstr "" "Этот файл содержит несколько моделей, находящихся на разной высоте.\n" -"Следует ли загружать файл как единую модель, состоящий из нескольких\n" +"Следует ли загружать файл как единую модель, состоящую из нескольких\n" "частей (вместо того, чтобы рассматривать их как несколько моделей)?" msgid "Multi-part object detected" @@ -7544,7 +7450,6 @@ msgstr "Обнаружена модель, состоящая из нескол msgid "Load these files as a single object with multiple parts?\n" msgstr "Загрузить эти файлы как единую модель, состоящую из нескольких частей?\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "An object with multiple parts was detected" msgstr "Обнаружена модель, состоящая из нескольких частей" @@ -7586,14 +7491,12 @@ msgid "Export AMF file:" msgstr "Экспорт в файл AMF" # Согласовываем с другими подобными строками -# TODO: Review, changed by lang refactor. PR 14254 msgid "Save file as" msgstr "Сохранение" msgid "Export OBJ file:" msgstr "Экспорт в файл OBJ" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The file %s already exists.\n" @@ -7610,7 +7513,6 @@ msgstr "Подтверждение замены" msgid "Delete object which is a part of cut object" msgstr "Удаление детали, являющейся частью разрезанной модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "You are trying to delete an object which is a part of a cut object.\n" "This action will break a cut correspondence.\n" @@ -7618,7 +7520,7 @@ msgid "" msgstr "" "Вы пытаетесь удалить деталь, являющейся частью разрезанной модели.\n" "Это действие приведёт к удалению информации о разрезе.\n" -"После этого согласованность модели не может быть гарантирована." +"Целостность модели после этого не гарантируется." msgid "The selected object couldn't be split." msgstr "Невозможно разделить выбранную модель." @@ -7635,7 +7537,6 @@ msgstr "Уже идёт другой процесс экспорта." msgid "Unable to replace with more than one volume" msgstr "Замена одной модели на несколько не поддерживается" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Error during replacement" msgstr "Ошибка при выполнении замены" @@ -7646,7 +7547,6 @@ msgstr "Заменить из:" msgid "Select a new file" msgstr "Выбор нового файла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File for the replacement wasn't selected" msgstr "Файл для замены не выбран" @@ -7738,7 +7638,6 @@ msgstr "" msgid "Sync now" msgstr "Синхронизировать" -# TODO: Review, changed by lang refactor. PR 14254 msgid "You can keep the modified presets for the new project or discard them" msgstr "Вы можете перенести сделанные изменения в новый проект или отказаться от их сохранения" @@ -7748,7 +7647,6 @@ msgstr "Создание нового проекта" msgid "Load project" msgstr "Загрузка проекта" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Failed to save the project.\n" "Please check whether the folder exists online or if other programs have the project file open." @@ -7762,18 +7660,15 @@ msgstr "Сохранение проекта" msgid "Importing Model" msgstr "Импортирование модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preparing 3MF file..." -msgstr "подготовка 3MF файла..." +msgstr "подготовка файла 3MF..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; unknown file format." -msgstr "Не удалось загрузить, неизвестный формат файла." +msgstr "Загрузка не удалась, неизвестный формат файла." msgid "Downloading project..." msgstr "скачивание проекта..." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Download failed; File size exception." msgstr "Загрузка не удалась, ошибка размера файла." @@ -7799,11 +7694,9 @@ msgstr "Импорт SLA архива" msgid "The selected file" msgstr "В выбранном файле" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Does not contain valid G-code." msgstr "не содержится правильного G-кода." -# TODO: Review, changed by lang refactor. PR 14254 msgid "An Error has occurred while loading the G-code file." msgstr "Ошибка при загрузке файла G-кода" @@ -7833,25 +7726,21 @@ msgstr "Открыть как проект" msgid "Import geometry only" msgstr "Импортировать только геометрию" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only one G-code file can be opened at a time." msgstr "Одновременно можно открыть только один файл G-кода." msgid "G-code loading" msgstr "Загрузка G-кода" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code files and models cannot be loaded together!" -msgstr "Одновременная загрузка файла G-кода и модели невозможна!" +msgstr "Одновременная загрузка файла G-кода и модели невозможна." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unable to add models in preview mode" -msgstr "В режиме предпросмотра добавление моделей недоступно!" +msgstr "В режиме предпросмотра добавление моделей недоступно." msgid "All objects will be removed, continue?" msgstr "Все модели будут удалены, продолжить?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The current project has unsaved changes. Would you like to save before continuing?" msgstr "В текущем проекте имеются несохранённые изменения. Сохранить их перед продолжением?" @@ -7924,7 +7813,6 @@ msgstr "Загрузить и напечатать" msgid "Abnormal print file data. Please slice again" msgstr "Неправильные данные файла печати. Пожалуйста, нарежьте ещё раз" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Print By Object: \n" "We suggest using auto-arrange to avoid collisions when printing." @@ -8016,7 +7904,6 @@ msgstr "Треугольников: %1%\n" msgid "Use \"Fix Model\" to repair the mesh." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Plate %d: %s is not suggested for use printing filament %s (%s). If you still want to do this print job, please set this filament's bed temperature to a number that is not zero." msgstr "Покрытие %d-го стола (%s) не рекомендуется использовать для печати %s-м материалом (%s). Установите положительную температуру для этого покрытия в настройках материала, чтобы продолжить нарезку." @@ -8045,7 +7932,6 @@ msgstr "спереди" msgid "rear" msgstr "сзади" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Switching languages requires the application to restart.\n" msgstr "Для смены языка требуется перезапуск программы.\n" @@ -8073,7 +7959,6 @@ msgstr "Северная Америка" msgid "Others" msgstr "Прочее" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Changing the region will log you out of your account.\n" msgstr "Смена региона приведёт к выходу из вашей учётной записи.\n" @@ -8115,6 +8000,48 @@ msgstr "Укажите расположение загружаемых файл msgid "Choose Download Directory" 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" +"Загрузить и установить её? Возможно, потребуется перезагрузка приложения." + +msgid "Download Network Plug-in" +msgstr "Загрузить сетевой плагин" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Перезагрузить плагин без перезапуска приложения." + +msgid "Network plug-in reloaded successfully." +msgstr "Плагин успешно перезагружен." + +msgid "Reload" +msgstr "Перезагрузить" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Не удалось перезагрузить сетевой плагин. Требуется перезапуск приложения." + +msgid "Reload Failed" +msgstr "Перезапуск не удался" + msgid "Associate" msgstr "Ассоциация" @@ -8151,7 +8078,6 @@ msgstr "Страница по умолчанию" msgid "Set the page opened on startup." msgstr "Задание страницы, открываемой при запуске приложения." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable dark Mode" msgstr "Тёмная тема" @@ -8170,12 +8096,6 @@ 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 "" @@ -8206,6 +8126,12 @@ msgstr "При загрузке файла 3MF открывать ..." msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Следует ли при открытии 3MF проекта загружать настройки принтера, печати и материала?" +msgid "Auto backup" +msgstr "Сохранение резервной копии" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Периодическое создание резервной копии проекта для восстановления в случае непредвиденного сбоя программы." + msgid "Maximum recent files" msgstr "Ограничение последних файлов" @@ -8226,12 +8152,55 @@ msgstr "Показывать настройки импорта STEP" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Если включено, во время импорта STEP файла появится диалоговое окно настроек параметров импорта." -msgid "Auto backup" -msgstr "Сохранение резервной копии" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Периодическое создание резервной копии проекта для восстановления после непредвиденного сбоя программы." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Качество при экспорте в DRC" + +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 "" +"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n" +"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон – от 8 до 30.\n" +"0 – сжатие без потерь (представление с максимальной точностью)." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Профиль" @@ -8263,6 +8232,12 @@ msgstr "материалов" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "Возможности" @@ -8276,21 +8251,6 @@ msgstr "Если включено, вы сможете управлять нес msgid "Pop up to select filament grouping mode" msgstr "Всплывающее окно для выбора режима группировки филаментов" -msgid "Quality level for Draco export" -msgstr "Качество при экспорте в DRC" - -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 "" -"Настройка глубины квантования при сжатии полигональной сетки в формат Draco.\n" -"Чем меньше глубина, тем ниже качество и размер файла. Допустимый диапазон – от 8 до 30.\n" -"0 – сжатие без потерь (представление с максимальной точностью)." - msgid "Behaviour" msgstr "Автоматизация" @@ -8360,22 +8320,22 @@ 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 "" msgid "Middle Mouse Drag" -msgstr "" +msgstr "Перетаскивание колёсиком мыши" msgid "Set the action that dragging the middle mouse button should perform." msgstr "" msgid "Right Mouse Drag" -msgstr "" +msgstr "Перетаскивание правой кнопкой мыши" msgid "Set the action that dragging the right mouse button should perform." msgstr "" @@ -8525,19 +8485,6 @@ msgstr "Уведомлять только о стабильных версиях msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Синхронизация пользовательских профилей (принтера/материала/настроек)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "Режим синхронизации" @@ -8550,6 +8497,15 @@ msgstr "Цвет и материал" msgid "Color only" 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 "Bambu network plug-in" msgstr "" @@ -8562,33 +8518,6 @@ 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" -"Загрузить и установить её? Возможно, потребуется перезагрузка приложения." - -msgid "Download Network Plug-in" -msgstr "Загрузить сетевой плагин" - msgid "Associate files to OrcaSlicer" msgstr "Открытие файлов по умолчанию" @@ -8601,7 +8530,6 @@ msgstr "" msgid "Associate 3MF files to OrcaSlicer" msgstr "Открывать файлы 3MF в OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open 3MF files." msgstr "Назначить OrcaSlicer приложением по умолчанию для открытия файлов 3MF." @@ -8614,14 +8542,12 @@ msgstr "Назначить OrcaSlicer приложением по умолчан msgid "Associate STL files to OrcaSlicer" msgstr "Открывать файлы STL в OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STL files." msgstr "Назначить OrcaSlicer приложением по умолчанию для открытия файлов STL." msgid "Associate STEP files to OrcaSlicer" msgstr "Открывать файлы STEP в OrcaSlicer" -# TODO: Review, changed by lang refactor. PR 14254 msgid "If enabled, this sets OrcaSlicer as the default application to open STEP files." msgstr "Назначить OrcaSlicer приложением по умолчанию для открытия файлов STEP." @@ -8634,7 +8560,16 @@ msgstr "Разработка" msgid "Skip AMS blacklist check" msgstr "Пропуск проверки материалов в AMS из файла чёрного списка" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8642,12 +8577,6 @@ 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 "Игнорировать неисправность хранилища" @@ -8676,24 +8605,6 @@ msgstr "отладка" msgid "trace" msgstr "трассировка" -msgid "Network plug-in" -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 "Отладка" @@ -8709,25 +8620,6 @@ 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 "Прочее" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Менять направление масштабирования с помощью колеса мыши" - msgid "Enable SSL(MQTT)" msgstr "Включить SSL(MQTT)" @@ -8758,13 +8650,11 @@ msgstr "кнопка сохранения отладки" msgid "Save debug settings" msgstr "сохранить настройки отладки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Debug settings have been saved successfully!" -msgstr "Настройки отладки успешно сохранены!" +msgstr "Настройки отладки успешно сохранены." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cloud environment switched; please login again!" -msgstr "Смена облачной среды, пройдите повторную аутентификацию!" +msgstr "Смена облачной среды; необходима повторная аутентификация." msgid "System presets" msgstr "Системные профили" @@ -8781,9 +8671,8 @@ msgstr "Мой принтер" msgid "Left filaments" msgstr "Остаток материалов" -# TODO: Review, changed by lang refactor. PR 14254 msgid "AMS filament" -msgstr "Материалы AMS" +msgstr "Материал AMS" msgid "Right filaments" msgstr "Филаменты правого экструдера" @@ -8819,7 +8708,6 @@ msgstr "Профили других принтеров" msgid "Unsupported" msgstr "Несовместимые" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add/Remove filament" msgstr "Выбрать материалы" @@ -8859,7 +8747,6 @@ msgstr "Имя стола" # Длинно и не понятно, зачем – это в настройках столов, переопределение типа # покрытия -# TODO: Review, changed by lang refactor. PR 14254 msgid "Same as Global Plate Type" msgstr "По умолчанию" @@ -8896,9 +8783,8 @@ msgstr "Принять" msgid "Log Out" msgstr "Выход" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice all plates to obtain time and filament estimation" -msgstr "Нарезка всех столов для получения примерного времени печати и расчёта необходимого количества материала" +msgstr "Нарезка всех столов для расчёта примерного времени печати и расхода материала" msgid "Packing project data into 3MF file" msgstr "Упаковка данных проекта в файл формата 3mf" @@ -8957,7 +8843,6 @@ msgstr "Профиль \"%1%\" уже существует." msgid "Preset \"%1%\" already exists and is incompatible with the current printer." msgstr "Профиль \"%1%\" уже существует и несовместим с текущим принтером." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please note that saving will overwrite the current preset." msgstr "Обратите внимание, что при сохранении произойдёт перезапись текущего профиля." @@ -9087,7 +8972,6 @@ msgstr "Материал %s не соответствует материалу 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). Пожалуйста, измените профиль принтера на странице подготовки или выберите совместимый принтер на этой странице." -# TODO: Review, changed by lang refactor. PR 14254 msgid "When spiral vase mode is enabled, machines with I3 structure will not generate timelapse videos." msgstr "При включении режима вазы принтеры с кинематикой I3 не будут писать таймлапс." @@ -9106,7 +8990,6 @@ 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 "Выбранный профиль принтера в настройках слайсера не совпадает с фактическим принтером. Для нарезки рекомендуется использовать тот же профиль принтера." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There are some unknown filaments in the AMS mappings. Please check whether they are the required filaments. If they are okay, click \"Confirm\" to start printing." msgstr "В AMS установлены неизвестные материалы. Убедитесь, что установлены именно те, что вам нужны. Если всё в порядке, нажмите «Подтвердить», чтобы начать печать." @@ -9135,13 +9018,12 @@ msgstr "Слишком длинное имя." msgid "Cost %dg filament and %d changes more than optimal grouping." msgstr "Будет затрачено на %d г материала и на %d смен больше, чем при оптимальной группировке." -# используется в двух местах. В одном из них перевод ломает порядок слов в -# предложении. +# используется в двух местах: в настройках диаметра сопла (X mm nozzle) и в подстановке в "The hardness of current material ...". msgid "nozzle" 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 "Совет: после замены сопла в принтере необходимо обновить его настройки («Принтер» → «Части принтера»)." @@ -9247,9 +9129,8 @@ msgstr "Хранилище неисправно или защищено от з msgid "Storage needs to be inserted before printing." msgstr "Перед печатью необходимо вставить хранилище данных." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send the print job to a printer whose firmware must be updated." -msgstr "Невозможно отправить задание печати на принтер, прошивка которого нуждается в обновлении." +msgstr "Невозможно отправить задание печати на принтер, прошивка которого требует обновления." msgid "Cannot send a print job for an empty plate." msgstr "Невозможно отправить задание на печать, так как печатная пластина пуста" @@ -9303,9 +9184,8 @@ msgstr "Превышено время ожидания, проверьте по msgid "Connection failed. Click the icon to retry" msgstr "Не удалось подключиться. Нажмите на значок для повтора." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Cannot send print tasks when an update is in progress" -msgstr "Во время обновления невозможно отправить задание на печать" +msgstr "Во время обновления невозможно отправлять задания на печать" msgid "The selected printer is incompatible with the chosen printer presets." msgstr "Выбранный принтер несовместим с выбранными профилями принтера." @@ -9313,7 +9193,6 @@ msgstr "Выбранный принтер несовместим с выбран msgid "Storage needs to be inserted before send to printer." msgstr "Перед отправкой необходимо вставить хранилище данных" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer is required to be on the same LAN as Orca Slicer." msgstr "Принтер должен находиться в одной локальной сети с Orca Slicer." @@ -9329,7 +9208,6 @@ msgstr "Превышено время ожидания отправки файл msgid "Sending failed, please try again!" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slice complete" msgstr "Нарезка завершена." @@ -9345,11 +9223,9 @@ msgstr "Не удалось подключить сокет" msgid "Failed to publish login request" msgstr "Не удалось опубликовать запрос на вход в систему" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from device" msgstr "Тайм-аут при получении заявки с устройства" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Timeout getting ticket from server" msgstr "Тайм-аут получения заявки с сервера" @@ -9451,10 +9327,15 @@ msgstr "Удалить этот профиль" msgid "Search in preset" msgstr "Поиск в профиле" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Сбросить все изменения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without a prime tower. Are you sure you want to disable the prime tower?" msgstr "Для сглаженного таймлапса требуется черновая башня, без неё на модели могут возникнуть дефекты. Вы действительно хотите отключить черновую башню?" @@ -9471,7 +9352,6 @@ 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?" -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is required for smooth timelapse mode. There may be flaws on the model without prime tower. Do you want to enable the prime tower?" msgstr "Для сглаженного таймлапса требуется черновая башня, без неё на модели могут возникнуть дефекты. Включить черновую башню?" @@ -9496,7 +9376,6 @@ msgstr "" "• Шаблон связующего слоя: чередующийся зигзаг\n" "• Независимая высота слоя поддержки: выкл." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Change these settings automatically?\n" "Yes - Change these settings automatically.\n" @@ -9652,7 +9531,6 @@ msgstr "Периметры" msgid "Top/bottom shells" msgstr "Горизонтальные оболочки сверху/снизу" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer speed" msgstr "Ограничения скоростей на первом слое" @@ -9680,7 +9558,6 @@ msgstr "Рывок (XY)" msgid "Raft" msgstr "Подложка" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament for Supports" msgstr "Материал поддержки" @@ -9747,7 +9624,6 @@ msgstr "Основные" msgid "Recommended nozzle temperature" msgstr "Рекомендуемая температура сопла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Recommended nozzle temperature range of this filament. 0 means not set" msgstr "Рекомендуемый диапазон температур прогрева этого материала при печати. 0 – не задано." @@ -9757,6 +9633,18 @@ msgstr "Поток и коррекция давления (PA)" msgid "Print chamber temperature" msgstr "Температура в термокамере при печати" +msgid "Chamber temperature" +msgstr "Температура термокамеры" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Температура печати" @@ -9769,29 +9657,24 @@ msgstr "Температура стола с низкотемпературны msgid "Cool Plate" msgstr "Гладкое (низкотемп.)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the Cool Plate is installed. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Температура стола с низкотемпературным покрытием. 0 – материал не поддерживает это покрытие." msgid "Textured Cool Plate" msgstr "Текстурное (низкотемп.)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Температура стола с низкотемпературным текстурным покрытием. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature when the engineering plate is installed. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Температура стола с инженерным покрытием. 0 – материал не поддерживает это покрытие." msgid "Smooth PEI Plate / High Temp Plate" msgstr "Гладкое (высокотемп.)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 "Температура стола с гладким покрытием PEI или гладким высокотемпературным покрытием. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the 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 – материал не поддерживает это покрытие." @@ -9805,10 +9688,11 @@ msgstr "Обдув определённого слоя" msgid "Part cooling fan" msgstr "Вентилятор обдува модели" +# Порог усиления обдува msgid "Min fan speed threshold" msgstr "Минимальный обдув слоя" -# TODO: Review, changed by lang refactor. PR 14254 +# Убрать первое предложение? msgid "The part cooling fan will run at the minimum fan speed when the estimated layer time is longer than the threshold value. When the layer time is shorter than the threshold, the fan speed will be interpolated between the minimum and maximum fan speed according to layer printing time." msgstr "" "Настройка зависимости охлаждения от времени печати слоя.\n" @@ -9817,10 +9701,11 @@ msgstr "" "\n" "Примечание: указанный здесь процент скорости берётся за основу при включении «Постоянного обдува»." +# Порог замедления печати, Предельный обдув msgid "Max fan speed threshold" msgstr "Максимальный обдув слоя" -# TODO: Review, changed by lang refactor. PR 14254 +# Убрать первое предложение? msgid "The part cooling fan will run at maximum speed when the estimated layer time is shorter than the threshold value." msgstr "" "Настройка зависимости охлаждения от времени печати слоя.\n" @@ -10066,7 +9951,6 @@ msgstr "" "Если материал из этого профиля сейчас используется в вашем принтере,\n" "необходимо сбросить информацию о материале для этого слота." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Are you sure you want to %1% the selected preset?" msgstr "Вы действительно хотите %1% выбранный профиль?" @@ -10107,32 +9991,39 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "Левый: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Правый: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Сбросить значение до сохранённого" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click to drop current modifications and reset to saved value." msgstr "Сбросить изменение к сохранённому значению" msgid "Process Settings" msgstr "Настройки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "unsaved changes" -msgstr "Несохранённые изменения" +msgstr "несохранённые изменения" msgid "Transfer or discard changes" msgstr "Выбор действия при изменённых параметрах профиля" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Старое значение" msgid "New Value" @@ -10176,12 +10067,11 @@ msgstr "" msgid "Click the right mouse button to display the full text." msgstr "Нажмите правой кнопкой мыши, чтобы отобразить полный текст." -# TODO: Review, changed by lang refactor. PR 14254 msgid "No changes will be saved." -msgstr "Все изменения не будут сохранены" +msgstr "Изменения не будут сохранены." msgid "All changes will be discarded." -msgstr "Все изменения будут потеряны." +msgstr "Все изменения будут сброшены." msgid "Save the selected options." msgstr "Сохранить выбранные параметры." @@ -10222,21 +10112,21 @@ msgstr "Профиль \"%1%\" несовместим с новым профил #, boost-format msgid "You have changed some settings of preset \"%1%\"." -msgstr "Вы изменили параметры профиля \"%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 "Ранее вы изменили свои настройки." @@ -10246,7 +10136,7 @@ msgid "" "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 "Количество экструдеров" @@ -10254,6 +10144,12 @@ msgstr "Количество экструдеров" msgid "Capabilities" msgstr "Характеристики принтера" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Показать все профили (включая несовместимые)" @@ -10734,38 +10630,32 @@ msgstr "Выбор прямоугольником" msgid "Arrow Up" msgstr "Стрелка вверх" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive Y direction" -msgstr "Перемещение выбранного на 10 мм по оси Y+" +msgstr "Перемещение выбранного на +10 мм по оси Y" msgid "Arrow Down" msgstr "Стрелка вниз" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative Y direction" -msgstr "Перемещение выбранного на 10 мм по оси Y-" +msgstr "Перемещение выбранного на -10 мм по оси Y" msgid "Arrow Left" msgstr "Стрелка влево" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in negative X direction" -msgstr "Перемещение выбранного на 10 мм по оси X-" +msgstr "Перемещение выбранного на -10 мм по оси X" msgid "Arrow Right" msgstr "Стрелка вправо" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Move selection 10mm in positive X direction" -msgstr "Перемещение выбранного на 10 мм по оси X+" +msgstr "Перемещение выбранного на +10 мм по оси X" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Movement step set to 1mm" msgstr "Зафиксировать шаг перемещения на 1 мм" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Keyboard 1-9: set filament for object/part" -msgstr "Клавиши 1-9: задать пруток для модели/части модели" +msgstr "Клавиши 1-9: задать материал для модели/части модели" msgid "Camera view - Default" msgstr "Камера по умолчанию" @@ -10861,7 +10751,6 @@ msgstr "Инструмент" msgid "Set extruder number for the objects and parts" msgstr "Задать номер экструдера для моделей/частей" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Delete objects, parts, modifiers" msgstr "Удаление моделей, частей, модификаторов" @@ -10914,7 +10803,6 @@ msgstr "Информация об изменениях в версии %s:" msgid "Network plug-in update" msgstr "Обновление сетевого плагина" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Click OK to update the Network plug-in the next time Orca Slicer launches." msgstr "Нажмите OK, чтобы обновить сетевой плагин при следующем запуске OrcaSlicer." @@ -11060,11 +10948,9 @@ 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 минут. Не выключайте питание во время обновления принтера." -# TODO: Review, changed by lang refactor. PR 14254 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 'Update firmware'." msgstr "Было обнаружено важное обновление, которое необходимо установить перед продолжением печати. Хотите обновиться сейчас? Обновление можно выполнить и позже, нажав «Обновить прошивку»." -# TODO: Review, changed by lang refactor. PR 14254 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 the printer or update next time you start Orca Slicer." msgstr "Ошибка в версии прошивки. Перед печатью её необходимо исправить и обновить. Хотите обновить сейчас? Вы можете сделать это позже с принтера или при следующем запуске Orca Slicer." @@ -11076,20 +10962,18 @@ msgid "Split into %1% parts" msgstr "" msgid "Repair finished" -msgstr "Починка модели завершена" +msgstr "Восстановление завершено" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Repair failed" -msgstr "Не удалось починить модель." +msgstr "Не удалось восстановить модель" msgid "Repair canceled" -msgstr "Починка модели отменена" +msgstr "Восстановление отменено" #, boost-format msgid "Copying of file %1% to %2% failed: %3%" msgstr "Не удалось скопировать файл %1% в %2%: %3%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please check any unsaved changes before updating the configuration." msgstr "Перед обновлением профилей необходимо проверить несохранённые изменения." @@ -11105,16 +10989,14 @@ msgstr "Выберите G-код файл:" msgid "One object has an empty first layer and can't be printed. Please Cut the bottom or enable supports." msgstr "Одна модель имеет пустой начальный слой и не может быть напечатана. Пожалуйста, обрежьте нижнюю часть или включите поддержку." -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "The object has empty layers between %1% and %2% and can’t be printed." -msgstr "Модель не может быть напечатан из-за пустого слоя между %1% и %2%." +msgstr "Модель не может быть напечатана из-за пустого слоя между %1% и %2%." #, boost-format msgid "Object: %1%" msgstr "Модель: %1%" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Parts of the object at these heights may be too thin or the object may have a faulty mesh." msgstr "Возможно, части модели на этой высоте слишком тонкие, или она имеет дефектную сетку" @@ -11124,7 +11006,6 @@ msgstr "" msgid "Filament change extrusion role G-code" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "No object can be printed. It may be too small." msgstr "Печать моделей невозможна. Возможно, они слишком маленькие." @@ -11169,10 +11050,9 @@ msgstr " нельзя заправить в " msgid "Internal Bridge" msgstr "Внутренний мост" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "Failed to calculate line width of %1%. Cannot get value of “%2%” " -msgstr "Не удалось вычислить ширину линии %1%. Не удаётся получить значение \"%2%\". " +msgstr "Не удалось вычислить ширину линии %1%. Не удаётся получить значение «%2%». " msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width" msgstr "Для Flow::with_spacing() был указан недопустимый интервал. Проверьте высоту слоя и ширину линии." @@ -11183,7 +11063,6 @@ msgstr "неопределённая ошибка" msgid "too many files" msgstr "слишком много файлов" -# TODO: Review, changed by lang refactor. PR 14254 msgid "File too large" msgstr "файл слишком большой" @@ -11205,9 +11084,8 @@ msgstr "это не ZIP архив" msgid "invalid header or corrupted" msgstr "неверный или повреждённый заголовок" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Saving to RAID is not supported." -msgstr "неподдерживаемый многотомный архив" +msgstr "сохранение в RAID не поддерживается." msgid "decompression failed" msgstr "сбой распаковки" @@ -11254,7 +11132,6 @@ msgstr "неверный параметр" msgid "invalid filename" msgstr "неверное имя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Buffer too small" msgstr "буфер слишком мал" @@ -11264,7 +11141,6 @@ msgstr "внутренняя ошибка" msgid "file not found" msgstr "файл не найден" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Archive too large" msgstr "слишком большой архив" @@ -11274,7 +11150,6 @@ msgstr "ошибка проверки" msgid "write callback failed" msgstr "ошибка записи функции обратного вызова" -# TODO: Review, changed by lang refactor. PR 14254 #, boost-format msgid "%1% is too close to exclusion area. There may be collisions when printing." msgstr "%1% находится слишком близко к области исключения, что может привести к столкновению при печати." @@ -11299,7 +11174,6 @@ msgstr "Черновая башня" msgid " is too close to others, and collisions may be caused.\n" msgstr " находится слишком близко к другим моделям, что может привести к колизии.\n" -# TODO: Review, changed by lang refactor. PR 14254 msgid " is too close to an exclusion area, and collisions will be caused.\n" msgstr " находится слишком близко к области исключения, что приведёт к столкновению.\n" @@ -11333,7 +11207,6 @@ msgstr "Для обнаружения комкования требуется б msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode." msgstr "Выберите последовательность печати «По очереди», для поддержки печати несколько моделей в режиме вазы." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Spiral (vase) mode does not work when an object contains more than one material." msgstr "Режим вазы не работает, когда модель печатается несколькими материалами." @@ -11369,30 +11242,24 @@ msgstr "Предотвращение течи материала с помощь msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors." msgstr "В настоящее время режим черновой башни поддерживается только следующими типами G-кода: Marlin, Klipper, RepRap/Sprinter, RepRapFirmware и Repetier." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported in “By object” print." msgstr "Черновая башня не поддерживается при печати в режиме «По очереди»." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height." msgstr "Печать черновой башни не поддерживается, когда включена функция переменной высоты слоя. Требуется, чтобы все модели имели одинаковую высоту слоя." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires any “support gap” to be a multiple of layer height." -msgstr "Для черновой башни требуется, чтобы зазор поддержки был кратен высоте слоя." +msgstr "Для черновой башни требуется, чтобы «зазор поддержки...» был кратен высоте слоя." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects have the same layer height." msgstr "Для использования черновой башни требуется, чтобы у всех моделей была одинаковая высота слоя." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A 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 "Режим черновой башни применим для нескольких моделей только в том случае, если они печатаются с одинаковым зазором поддержки сверху." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that all objects are sliced with the same layer height." msgstr "Для использования черновой башни требуется, чтобы все модели были нарезаны с одинаковой высотой слоя." @@ -11402,11 +11269,9 @@ msgstr "Для черновой башни требуется, чтобы все msgid "One or more object were assigned an extruder that the printer does not have." msgstr "Для одного или нескольких моделей был назначен экструдер, который у принтера отсутствует." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too small" msgstr "Слишком маленькая ширина линии" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Line width too large" msgstr "Слишком большая ширина линии" @@ -11414,7 +11279,6 @@ 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 "Печать несколькими экструдерами с разными диаметрами сопел. Если поддержка должна быть напечатана текущим материалом (Материал поддержек → Базовая поддержка/подложка = 0 или Связующий слой поддержки/подложки = 0), все сопла должны быть одинакового диаметра." -# TODO: Review, changed by lang refactor. PR 14254 msgid "A prime tower requires that support has the same layer height as the object." msgstr "Для черновой башни требуется, чтобы поддержка и модель имели одинаковую высоту слоя." @@ -11441,7 +11305,6 @@ msgstr "Шаблон полого основания не поддерживае msgid "Support enforcers are used but support is not enabled. Please enable support." msgstr "Используется принудительная поддержка, но её генерация не включена. Пожалуйста, включите генерацию поддержки в настройках слайсера." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Layer height cannot exceed nozzle diameter." msgstr "Высота слоя не может быть больше диаметра сопла." @@ -11507,10 +11370,10 @@ msgstr "" "Если хотите получить более высокие скорости, вы можете изменить это значение в настройках принтера (вкладка «Ограничение принтера»)." msgid "The precise wall option will be ignored for outer-inner or inner-outer-inner wall sequences." -msgstr "Параметр точной стенки будет проигнорирован для последовательностей стен «внешняя-внутренняя» или «внутренняя-внешняя-внутренняя»." +msgstr "Настройка «Точные периметры» игнорируется при порядке печати периметров снаружи внутрь или навстречу." msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "Диапазон значений PA задан неверно у одного или нескольких экструдеров. Проверьте форматирование." msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "Компенсация усадки материала не будет использоваться, поскольку усадка у используемых материалов не совпадает." @@ -11518,13 +11381,18 @@ msgstr "Компенсация усадки материала не будет msgid "Generating skirt & brim" msgstr "Генерация юбки и каймы" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Экспорт в G-код" msgid "Generating G-code" msgstr "Генерация G-кода" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Processing of the filename_format template failed." msgstr "Ошибка обработки шаблона filename_format." @@ -11555,7 +11423,6 @@ 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 "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Excluded bed area" msgstr "Область исключения" @@ -11571,7 +11438,6 @@ msgstr "Пользовательская модель стола" msgid "Elephant foot compensation" msgstr "Компенсация «слоновьей ноги»" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shrinks the first layer on the build plate to compensate for elephant foot effect." msgstr "Сужает контур первого слоя на заданное значение для компенсации дефекта слоновьей ноги." @@ -11590,14 +11456,12 @@ msgid "" "Subsequent layers become linearly denser by the height specified in elefant_foot_compensation_layers." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the height for each layer. Smaller layer heights give greater accuracy but longer printing time." msgstr "Высота каждого слоя. Чем меньше, тем выше качество поверхности и затраты времени (и наоборот)." msgid "Printable height" msgstr "Высота печати" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum printable height which is limited by the height of the build area." msgstr "Максимальная высота печати, которая ограничена механикой принтера." @@ -11677,7 +11541,6 @@ msgstr "Пароль" msgid "Ignore HTTPS certificate revocation checks" msgstr "Игнорировать проверки отзыва сертификата" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ignore HTTPS certificate revocation checks in the case of missing or offline distribution points. One may want to enable this option for self signed certificates if connection fails." msgstr "Игнорировать проверки отзыва сертификата HTTPS в случае его отсутствия или автономности точек распространения. Можно включить эту опцию для самоподписанных сертификатов в случае сбоя подключения." @@ -11698,16 +11561,14 @@ msgstr "HTTP digest-авторизация" msgid "Avoid crossing walls" msgstr "Избегать пересечения периметров" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detours to avoid traveling across walls, which may cause blobs on the surface." msgstr "Избегать холостого пересечения периметров для предотвращения образования дефектов на поверхности модели." msgid "Avoid crossing walls - Max detour length" msgstr "Максимальная длина обхода" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum detour distance for avoiding crossing wall: The printer won'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. A value of 0 will disable this." -msgstr "Максимальное расстояние обхода сопла от модели во избежание пересечения периметров при движении. Если расстояние обхода превышает это значение, то для данного маршрута эта опция не применяется. Можно указать значение в миллиметрах или процент от прямого пути перемещения (например, 50%). 0 - отключено." +msgstr "Максимальное расстояние обхода сопла от модели во избежание пересечения периметров при движении. Если расстояние обхода превышает это значение, то для данного маршрута эта опция не применяется. Можно указать значение в миллиметрах или процент от прямого пути перемещения (например, 50%). 0 – отключено." msgid "mm or %" msgstr "мм или %" @@ -11718,61 +11579,47 @@ 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 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Температура стола для всех остальных слоёв. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured Cool Plate." msgstr "Температура стола для всех остальных слоёв. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Температура стола для всех остальных слоёв. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the High Temp Plate." msgstr "Температура стола для всех остальных слоёв. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature for layers except for the first one. A value of 0 means the filament does not support printing on the Textured PEI Plate." msgstr "Температура стола для всех остальных слоёв. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer" msgstr "Первый слой" -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer bed temperature" msgstr "Температура стола для первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate SuperTack." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Cool Plate." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured Cool Plate." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Engineering Plate." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the High Temp Plate." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the bed temperature of the first layer. A value of 0 means the filament does not support printing on the Textured PEI Plate." msgstr "Температура стола на первом слое. 0 – материал не поддерживает это покрытие." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Plate types supported by the printer" -msgstr "Типы столов, поддерживаемые принтером." +msgstr "Типы столов, поддерживаемые принтером" msgid "Default bed type" msgstr "Тип стола по умолчанию" @@ -11806,9 +11653,8 @@ msgstr "Количество сплошных слоёв при печати н msgid "Bottom shell thickness" msgstr "Толщина оболочки снизу" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and the thickness of the bottom shell is determined simply by the number of bottom shell layers." -msgstr "Минимальная толщина оболочки снизу в мм. Если толщина оболочки, рассчитанная по количеству сплошных слоёв снизу, меньше этого значения, количество сплошных слоёв снизу будет автоматически увеличено при нарезке, для удовлетворения минимальной толщины оболочки. Это позволяет избежать слишком тонкой оболочки при небольшой высоте слоя. 0 означает, что этот параметр отключён, а толщина оболочки снизу полностью задаётся количеством сплошных слоёв снизу." +msgstr "Минимальная толщина оболочки снизу в мм. Если толщина оболочки, рассчитанная по количеству сплошных слоёв снизу, меньше этого значения, количество сплошных слоёв снизу будет автоматически увеличено при нарезке, для удовлетворения минимальной толщины оболочки. Это позволяет избежать слишком тонкой оболочки при небольшой высоте слоя. 0 означает, что этот параметр отключён, а толщина оболочки снизу задаётся количеством сплошных слоёв снизу." msgid "Apply gap fill" msgstr "Заполнение щелей" @@ -11983,7 +11829,6 @@ msgstr "" msgid "Top surface flow ratio" msgstr "Поток верхней поверхности" -# ???1 msgid "" "This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish.\n" "\n" @@ -12123,10 +11968,7 @@ 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 "" -"Повышение точности оболочки за счёт регулировки расстояния между внешними стенками. Это также позволяет уменьшить расслоение слоёв.\n" -"\n" -"Внимание: Эта настройка будет игнорироваться при печати периметров «Изнутри наружу» и «Навстречу»." +msgstr "Немного увеличивает расстояние между внешним и внутренним периметром. Позволяет улучшить точность и однородность поверхности. Предназначено для компенсации накопления переэкструзии при печати периметров «Изнутри наружу» и не влияет на другие режимы." msgid "Only one wall on top surfaces" msgstr "Только один периметр на верхней поверхности" @@ -12230,13 +12072,11 @@ msgstr "" "При нуле разворот будет на каждом чётном слое, независимо от величина нависания.\n" "Игнорируется, если параметр «Обнаруживать нависающие периметры» не включён; разворот происходит на каждом чётном слое без исключений." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Slow down for overhangs" msgstr "Замедляться на нависаниях" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow down when printing overhangs. The speeds for different overhang percentages are set below." -msgstr "Включение динамического управления скоростью печати нависаний." +msgstr "Включение динамического управления скоростью печати нависаний. Скорости для опорных углов нависаний настраиваются ниже." msgid "Slow down for curled perimeters" msgstr "Замедляться на изогнутых периметрах" @@ -12281,7 +12121,6 @@ msgstr "Скорость печати внутреннего моста. Мож msgid "Brim width" msgstr "Ширина каймы" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the model to the outermost brim line." msgstr "Расстояние от модели до внешней линии каймы." @@ -12294,7 +12133,6 @@ msgstr "Этот параметр управляет формированием msgid "Brim-object gap" msgstr "Смещение каймы" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This creates a gap between the innermost brim line and the object and can make the brim easier to remove." msgstr "" "Смещение каймы от печатаемой модели. Может облегчить её отделение от наклонных поверхностей (например, прилегающих к столу скруглений).\n" @@ -12312,11 +12150,9 @@ msgid "" "Note: The resulting value will not be affected by the first-layer flow ratio." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Brim follows compensated outline" msgstr "Учитывать сдвиг контура" -# TODO: Review, changed by lang refactor. PR 14254 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" @@ -12371,7 +12207,6 @@ msgstr "условия для совместимых принтеров" msgid "Condition" msgstr "Условия совместимости" -# TODO: Review, changed by lang refactor. PR 14254 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 "" "Логическое выражение, с помощью которого можно настраивать условия совместимости профилей принтеров с текущим профилем материала. Если условие выполняется, материал считается совместимым с текущим профилем принтера.\n" @@ -12381,14 +12216,12 @@ msgstr "" msgid "Select profiles" msgstr "Профили настроек" -# TODO: Review, changed by lang refactor. PR 14254 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 "" "Логическое выражение, с помощью которого можно настраивать условия совместимости этого профиля материала с профилями настроек печати. Если условие выполняется, материал считается совместимым с текущими настройками.\n" "\n" "Например, для совместимости материала только с профилями настроек с высотой слоя более 0.2 мм используйте 'layer_height>0.2'." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the print sequence, allowing you to print layer-by-layer or object-by-object." msgstr "" "Выбор последовательности печати моделей - параллельно или по очереди.\n" @@ -12413,17 +12246,32 @@ msgstr "По списку" msgid "Slow printing down for better layer cooling" msgstr "Замедлять печать для охлаждения слоёв" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details." -msgstr "Включите эту опцию для разрешения замедления скорости печати в зависимости от времени печати слоя, чтобы слой мог охлаждаться дольше. Это позволяет улучшить качество охлаждения острых концов и мелких деталей." +msgstr "Включите эту опцию для замедления скорости печати в зависимости от времени печати слоя, чтобы слой мог охлаждаться дольше. Это позволяет улучшить качество охлаждения острых концов и мелких деталей." msgid "Normal printing" msgstr "По умолчанию" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Ускорение по умолчанию для обычной печати и перемещений (кроме первого слоя)." +msgid "Acceleration of travel moves." +msgstr "Ускорение холостого перемещения." + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +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 "Ускорение на мостах. Можно указать процент от ускорения внешних периметров." + msgid "Default filament profile" msgstr "Профиль материала по умолчанию" @@ -12468,9 +12316,8 @@ msgstr "Количество слоёв, начиная с первого, на msgid "Don't support bridges" msgstr "Не печатать поддержки под мостами" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This disables supporting bridges, which decreases the amount of support required. Bridges can usually be printed directly without support over a reasonable distance." -msgstr "Опция, препятствующая печати поддержки под мостами. Мост обычно можно печатать без поддержки, если он не очень длинный." +msgstr "Отключить создание поддержек под мостами. Относительно небольшие мосты обычно можно печатать без них." msgid "Thick external bridges" msgstr "Толстые внешние мосты" @@ -12563,26 +12410,23 @@ msgstr "Без фильтрации" msgid "Max bridge length" msgstr "Максимальный интервал опор" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the maximum 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-код" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-Code when finishing the entire print." -msgstr "Команды в G-коде, которые выполняются в самом конце печати." +msgstr "Команды, которые выполняются в самом конце печати." msgid "Between Object G-code" msgstr "G-код между моделями" msgid "Insert G-code between objects. This parameter will only come into effect when you print your models object by object." -msgstr "Команды в G-коде, которые выполняются каждый раз перед сменой модели. Действует только при печати моделей «По очереди»." +msgstr "Команды, которые выполняются каждый раз перед сменой модели. Действует только при печати моделей «По очереди»." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Add end G-code when finishing the printing of this filament." -msgstr "Команды в G-коде, которые выполняются при окончании печати этим материалом." +msgstr "Команды, которые выполняются при окончании печати этим материалом." msgid "Ensure vertical shell thickness" msgstr "Сохранение толщины вертикальной оболочки" @@ -12613,7 +12457,6 @@ msgstr "Умеренное" msgid "Top surface pattern" msgstr "Шаблон заполнения верхней поверхности" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for top surface infill." msgstr "" "Шаблон заполнения верхней поверхности.\n" @@ -12656,10 +12499,17 @@ msgstr "Спираль Архимеда" msgid "Octagram Spiral" msgstr "Спиральная октаграмма" +# ??? Плотность верхней оболочки +msgid "Top surface density" +msgstr "Плотность верхней поверхности" + +# ??? Плотность верхней поверхности. При 100% создаётся сплошной верхний слой. +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 pattern" msgstr "Шаблон заполнения нижней поверхности" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "" "Шаблон заполнения нижней поверхности, кроме мостов.\n" @@ -12678,6 +12528,16 @@ msgstr "" " не создаёт горизонтального шва.\n" "🞄 Спиральная октаграмма: декоративный шаблон." +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 "Internal solid infill pattern" msgstr "Шаблон сплошного заполнения" @@ -12704,9 +12564,8 @@ msgstr "" msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линии для внешнего периметра. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality." -msgstr "Ограничение скорости движения головы (относительно стола) при печати внешнего периметра (видимого). Можно занизить относительно скорости внутренних периметров для улучшения качества." +msgstr "Ограничение скорости движения головы (относительно стола) при печати внешнего периметра. Можно занизить относительно скорости внутренних периметров для улучшения качества." msgid "Small perimeters" msgstr "Короткие периметры" @@ -12720,6 +12579,18 @@ msgstr "Порог коротких периметров" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Пороговое значение (радиус) для расчёта длины коротких периметров (по формуле длины окружности). Значение по умолчанию – 0 мм." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Порядок печати периметров" @@ -12781,18 +12652,15 @@ msgstr "По часовой стрелке" msgid "Height to rod" msgstr "Высота до вала" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lower rod. Used for collision avoidance in by-object printing." -msgstr "Расстояние от кончика сопла до нижнего вала. Значение важно для предотвращения столкновений при печати объектов по очереди." +msgstr "Расстояние от кончика сопла до нижнего вала. Используется для предотвращения столкновений при печати объектов по очереди." msgid "Height to lid" msgstr "Высота до крышки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Distance from the nozzle tip to the lid. Used for collision avoidance in by-object printing." -msgstr "Расстояние от кончика сопла до крышки. Значение важно для предотвращения столкновений при печати объектов по очереди." +msgstr "Расстояние от кончика сопла до крышки. Используется для предотвращения столкновений при печати объектов по очереди." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Clearance radius around extruder: used for collision avoidance in by-object printing." msgstr "Безопасное расстояние вокруг экструдера. Используется для предотвращения столкновений при печати отдельно стоящих моделей." @@ -12932,27 +12800,26 @@ msgstr "" "\n" "3. Проверьте порядок введённых значений (PA, расход, ускорения) и сохраните профиль материала." -# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном -# алгоритме -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Адаптивный PA на нависаниях (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Коэффициент PA на мостах" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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) значений ниже. Можно указать процент от диаметра сопла." @@ -12960,7 +12827,6 @@ msgstr "Стандартная ширина линии для отключённ msgid "Keep fan always on" msgstr "Постоянный обдув" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enabling this setting means that part cooling fan will never stop entirely and will instead run at least at minimum speed to reduce the frequency of starting and stopping." msgstr "Если включено, вместо отключения вентилятор охлаждения модели будет поддерживать минимальную скорость (указанную выше), чтобы сократить частоту его запуска и остановки." @@ -12981,9 +12847,8 @@ msgstr "" msgid "Layer time" msgstr "Время слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan will be enabled for layers where the estimated time is shorter than this value. Fan speed is interpolated between the minimum and maximum fan speeds according to layer printing time." -msgstr "Вентилятор охлаждения моделей будет включён для слоёв, расчётное время которых меньше этого значения. Скорость вентилятора интерполируется между минимальной и максимальной скоростями вентилятора зависимости от времени печати слоя." +msgstr "Вентилятор охлаждения моделей будет включён для слоёв, расчётное время которых меньше этого значения. Скорость вентилятора интерполируется между минимальной и максимальной скоростями зависимости от времени печати слоя." msgid "s" msgstr "с" @@ -13007,9 +12872,8 @@ msgstr "Здесь вы можете оставить свои заметки д msgid "Required nozzle HRC" msgstr "Необходимая твёрдость сопла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Minimum HRC of nozzle required to print the filament. A value of 0 means no checking of the nozzle's HRC." -msgstr "Минимальная твёрдость материала сопла (HRC), необходимая для печати материалом. 0 - отключение контроля сопел на твёрдость." +msgstr "Минимальная твёрдость материала сопла (HRC), необходимая для печати материалом. 0 – отключение проверки твёрдости сопел." msgid "Filament map to extruder" msgstr "Назначение филамента на экструдер" @@ -13023,18 +12887,6 @@ 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 "" - msgid "Flush temperature" msgstr "Температура прочистки" @@ -13047,7 +12899,6 @@ msgstr "Расход при прочистке" msgid "Volumetric speed when flushing filament. 0 indicates the max volumetric speed." msgstr "Объёмный расход при прочистке материала. 0 – использовать максимальный расход из настроек материала." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting is the volume of filament that can be melted and extruded per second. Printing speed is limited by max volumetric speed, in case of too high and unreasonable speed setting. This value cannot be zero." msgstr "" "Ограничение объёма материала, проходящего через экструдер за секунду. Скорость движения головы при печати будет снижаться для соблюдения этого ограничения. Значение не может быть нулевым.\n" @@ -13083,7 +12934,6 @@ msgstr "По первому материалу" msgid "By Highest Temp" msgstr "Наибольшая температура" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament diameter is used to calculate extrusion variables in G-code, so it is important that this is accurate and precise." msgstr "Диаметр материала используется для расчёта подачи пластика, поэтому он важен и должен быть точным." @@ -13157,9 +13007,8 @@ msgstr "Скорость в начальной фазе загрузки пру msgid "Unloading speed" msgstr "Скорость выгрузки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)." -msgstr "Скорость выгрузки прутка на черновую башню. (не влияет на начальную фазу выгрузки сразу после рэмминга)." +msgstr "Скорость выгрузки прутка на черновой башне (не влияет на начальную фазу выгрузки сразу после рэмминга)." msgid "Unloading speed at the start" msgstr "Начальная скорость выгрузки" @@ -13286,16 +13135,14 @@ msgstr "Объёмный расход для рэмминга перед сме msgid "Density" msgstr "Плотность" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament density, for statistical purposes only." msgstr "Плотность материала. Используется при подсчёте статистики." msgid "g/cm³" msgstr "г/см³" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament material type" -msgstr "Обозначение состава материала." +msgstr "Обозначение состава материала" msgid "Soluble material" msgstr "Растворимый материал" @@ -13326,14 +13173,12 @@ msgstr "Материалом можно печатать через экстру msgid "Softening temperature" msgstr "Температура размягчения" -# TODO: Review, changed by lang refactor. PR 14254 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 clogs." msgstr "При этой температуре материал размягчается, поэтому, когда температура стола равна или превышает её, настоятельно рекомендуется открыть переднюю дверцу и/или верхнюю крышку принтера, чтобы избежать засорения сопла." msgid "Price" msgstr "Стоимость" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament price, for statistical purposes only." msgstr "Стоимость материала. Используется при подсчёте статистики." @@ -13352,7 +13197,6 @@ msgstr "(Не указано)" msgid "Sparse infill direction" msgstr "Угол шаблона заполнения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the angle for sparse infill pattern, which controls the start or main direction of lines." msgstr "Угол ориентации шаблона разреженного заполнения, который определяет начало или основное направление линий." @@ -13362,6 +13206,22 @@ msgstr "Угол шаблона сплошного заполнения" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Угол ориентации шаблона сплошного заполнения, который определяет начало или основное направление линий." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Плотность заполнения" @@ -13394,14 +13254,13 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" msgid "Sparse infill pattern" msgstr "Шаблон заполнения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for internal sparse infill." msgstr "" "Шаблон разреженного заполнения внутри модели.\n" @@ -13505,93 +13364,14 @@ msgstr "ТПМП Фишера-Коха S" 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 (0 - вертикально)." - -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 (0 - вертикально)." - -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 "" -"Максимальная длина одиночных привязок. Можно указать процент от ширины линии заполнения. 0 – отключить привязки.\n" -"\n" -"Внимание: фактическая длина может быть ограничена пределом стыковки линий.\n" -"\n" -"Примечание: привязка – продолжение линии заполнения, которое печатается вдоль внутреннего периметра для улучшения сцепления с ним." - -msgid "0 (no open anchors)" -msgstr "0 (без привязок)" - -msgid "1000 (unlimited)" -msgstr "1000 (не ограничено)" - -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 "Максимальная длина стыковки отдельных линий шаблона заполнения в одну непрерывную. Можно указать процент от ширины линии заполнения. 0 – отключить стыковку." - -msgid "0 (Simple connect)" -msgstr "0 (без стыковки)" - -msgid "Acceleration of inner walls." -msgstr "Ускорение на внутренних периметрах." - -msgid "Acceleration of travel moves." -msgstr "Ускорение холостого перемещения." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Ускорение на верхней поверхности. Использование меньшего значения может улучшить качество верхней поверхности." -# TODO: Review, changed by lang refactor. PR 14254 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 "Ускорение на мостах. Можно указать процент от ускорения внешних периметров." - -msgid "mm/s² or %" -msgstr "мм/с² или %" +msgid "Acceleration of inner walls." +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 "Ускорение на разреженном заполнении. Можно указать процент от ускорения по умолчанию." @@ -13599,18 +13379,9 @@ msgstr "Ускорение на разреженном заполнении. М 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 "Ускорение на сплошном заполнении. Можно указать процент от ускорения по умолчанию." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "" - msgid "Enable accel_to_decel" msgstr "Заменять \"max_accel_to_decel\"" @@ -13662,23 +13433,18 @@ msgstr "" msgid "Line width of the first layer. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линий первого слоя. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer height" msgstr "Высота первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Height of the first layer. Making the first layer height thicker can improve build plate adhesion." msgstr "Высота первого слоя. Небольшое увеличение высоты снижает вероятность отрыва детали от неровной поверхности стола." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for the first layer except for solid infill sections." msgstr "Общее ограничение скорости движения головы (относительно стола) при печати элементов первого слоя (кроме сплошного заполнения)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer infill" msgstr "Заполнение" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid infill parts of the first layer." msgstr "Ограничение скорости движения головы (относительно стола) при печати сплошного заполнения на первом слое." @@ -13689,16 +13455,14 @@ msgid "Travel speed of the first layer." msgstr "Ограничение скорости холостых перемещений печатающей головы на первом слое (относительно стола). Можно указать процент от основной скорости холостых перемещений." msgid "Number of slow layers" -msgstr "" +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 "Первые несколько слоёв печатаются медленнее, чем обычно. Скорость линейно увеличивается в заданном диапазоне слоёв." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer nozzle temperature" msgstr "Температура экструдера на первом слое" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature for printing the first layer with this filament" msgstr "Температура экструдера для печати первого слоя этим материалом." @@ -13714,6 +13478,17 @@ msgstr "" msgid "layer" msgstr "слой" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Обдув связующего слоя" @@ -13781,7 +13556,6 @@ msgstr "Ограничение скорости" msgid "Filament-specific override for ironing speed. This allows you to customize the print speed of ironing lines for each filament type." msgstr "Замещение общего ограничения скорости разглаживания. Позволяет ограничить скорость движения при разглаживании отдельно для каждого материала." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting makes the toolhead randomly jitter while printing walls so that the surface has a rough textured look. This setting controls the fuzzy position." msgstr "Нечёткая оболочка используется для придания поверхностям шершавой фактуры. Доступны несколько вариантов применения." @@ -13803,7 +13577,6 @@ msgstr "Все периметры" msgid "Fuzzy skin thickness" msgstr "Максимальное отклонение" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The width of jittering: it’s recommended to keep this lower than the outer wall line width." msgstr "" "Максимальная величина отклонения сегментов оболочки. \n" @@ -13947,7 +13720,6 @@ 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 "Пропускать щели короче указанного порога (в мм). Применяется к верхнему, нижнему и сплошному заполнению, а при использовании классического генератора периметров – к заполнению щелей внутри стенок." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for gap infill. Gaps usually have irregular line width and should be printed more slowly." msgstr "Скорость заполнения щелей. Для надёжного заполнения рекомендуется печатать медленнее, поскольку ширина таких мест зачастую непостоянна и требует быстрого изменения потока." @@ -13978,7 +13750,6 @@ msgstr "Добавлять в начало каждой строки G-кода msgid "Scan first layer" msgstr "Проверка первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Enable this to allow the camera on the printer to check the quality of the first layer." msgstr "Проверять качество печати первого слоя при помощи камеры принтера." @@ -13996,7 +13767,6 @@ msgstr "По умолчанию" msgid "Nozzle type" msgstr "Материал сопла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The metallic material of the nozzle: This determines the abrasive resistance of the nozzle and what kind of filament can be printed." msgstr "Материал сопла. Определяет абразивную стойкость сопла, а также то, каким материалом можно печатать." @@ -14012,7 +13782,6 @@ msgstr "Карбид вольфрама" msgid "Nozzle HRC" msgstr "Твёрдость сопла (HRC)" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle's hardness. Zero means no checking for nozzle hardness during slicing." msgstr "Твёрдость сопел. 0 - отключение контроля сопел на твёрдость при нарезке." @@ -14097,7 +13866,6 @@ msgstr "Стоимость часа работы принтера." msgid "money/h" msgstr "цена/ч" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Support controlling chamber temperature" msgstr "Контроль температуры в термокамере" @@ -14163,7 +13931,6 @@ msgstr "Включите эту опцию, чтобы в каждой стро msgid "Infill combination" msgstr "Объединение слоёв заполнения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Automatically combine sparse infill of several layers to print together in order to reduce time. Walls are still printed with original layer height." msgstr "" "Для сокращения времени печати есть возможность печатать заполнение не на каждом слое, а на нескольких слоях сразу.\n" @@ -14280,6 +14047,74 @@ msgstr "Исключаемая область зондирования комк msgid "Probing exclude area of clumping." 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 (0 - вертикально)." + +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 (0 - вертикально)." + +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 "" +"Максимальная длина одиночных привязок. Можно указать процент от ширины линии заполнения. 0 – отключить привязки.\n" +"\n" +"Внимание: фактическая длина может быть ограничена пределом стыковки линий.\n" +"\n" +"Примечание: привязка – продолжение линии заполнения, которое печатается вдоль внутреннего периметра для улучшения сцепления с ним." + +msgid "0 (no open anchors)" +msgstr "0 (без привязок)" + +msgid "1000 (unlimited)" +msgstr "1000 (не ограничено)" + +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 "Максимальная длина стыковки отдельных линий шаблона заполнения в одну непрерывную. Можно указать процент от ширины линии заполнения. 0 – отключить стыковку." + +msgid "0 (Simple connect)" +msgstr "0 (без стыковки)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14289,11 +14124,9 @@ msgid "Line width of internal sparse infill. If expressed as a %, it will be com msgstr "Ширина линий заполнения. Можно указать процент от диаметра сопла." # Придется сократить «Перекрытие линий заполнения с линиями периметра» -# TODO: Review, changed by lang refactor. PR 14254 msgid "Infill/wall overlap" msgstr "Перекрытие заполнения с периметром" -# TODO: Review, changed by lang refactor. PR 14254 #, no-c-format, no-boost-format msgid "This allows the infill area to be enlarged slightly to overlap with walls 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%, чтобы свести к минимуму вероятность чрезмерной экструзии и накопления материала приводящее к шероховатости поверхности." @@ -14305,7 +14138,6 @@ msgstr "Перекрытие заполнения поверхности с пе 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% является хорошей отправной точкой, минимизирующей появление таких отверстий." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal sparse infill." msgstr "Ограничение скорости движения головы при печати разреженного заполнения (относительно стола)." @@ -14330,7 +14162,6 @@ msgid "Maximum width of a segmented region" msgstr "Глубина проникновения окрашенной области" # Переведено с фактическими ошибками, переписать с нуля -# TODO: Review, changed by lang refactor. PR 14254 msgid "Maximum width of a segmented region. A value of 0 disables this feature." msgstr "Толщина той части модели, которая была окрашена инструментом мультиматериальная покраска. Фактически это глубина проникновения окрашенной области в модель. Установите 0 для отключения работы этой функции." @@ -14379,26 +14210,21 @@ msgstr "Избегание границ взаимосвязанной стру msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing type" msgstr "Тип разглаживания" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Ironing uses a small flow to print at the same height of a surface to make flat surfaces smoother. This setting controls which layers are being ironed." msgstr "Включение разглаживания верхних слоёв с помощью горячего сопла для получения гладкой поверхности. После печати верхнего слоя сопло пройдётся по нему ещё раз, но с значительно меньшей скоростью и потоком. Это нужно чтобы разгладить поверхность, скрыв шаблон заполнения и другие дефекты поверхности. Эта функция увеличивает время печати." msgid "No ironing" msgstr "Отключено" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All top surfaces" msgstr "Поверхности" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Topmost surface only" msgstr "Верхний слой" -# TODO: Review, changed by lang refactor. PR 14254 msgid "All solid layers" msgstr "Сплошные слои" @@ -14408,11 +14234,9 @@ msgstr "Шаблон разглаживания" msgid "The pattern that will be used when ironing." msgstr "Шаблон по которому будет производиться разглаживание." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the amount of material to be extruded during ironing. It is relative to the flow of normal layer height. Too high a value will result in overextrusion on the surface." msgstr "Количество материала, которое необходимо выдавить во время разглаживания относительно потока при нормальной высоте слоя." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance between the lines used for ironing." msgstr "Интервал линий разглаживания." @@ -14421,7 +14245,6 @@ msgstr "" "Сужение области разглаживания (в мм).\n" "0 – смещать на радиус сопла (∅/2)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the print speed for ironing lines." msgstr "Скорость разглаживания." @@ -14479,13 +14302,11 @@ msgstr "Команды в G-коде, которые выполняются ка msgid "Clumping detection G-code" msgstr "G-код при обнаружении налипшего пластика" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Silent Mode" msgstr "Поддержка тихого режима" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whether the machine supports silent mode in which machine uses lower acceleration to print more quietly" -msgstr "Поддерживает ли принтер тихий режим, в котором используются сниженные ускорения печати." +msgstr "Поддерживает ли принтер тихий режим, для подавления шума в котором используются сниженные ускорения печати." msgid "Emit limits to G-code" msgstr "Отправлять в G-код" @@ -14739,7 +14560,6 @@ msgid "" "To disable input shaping, use the Disable type." msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed for the part cooling fan." msgstr "Скорость вентилятора охлаждения моделей может быть увеличена, если включено автоматическое охлаждение. Это максимальное ограничение скорости вентилятора для охлаждения моделей." @@ -14862,7 +14682,6 @@ msgstr "Orca Slicer может загружать файл G-кода на хо msgid "Nozzle volume" msgstr "Объём сопла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Volume of nozzle between the filament cutter and the end of the nozzle" msgstr "Объём остатка материала между ножом и кончиком сопла." @@ -14901,9 +14720,8 @@ msgstr "При значении 0 расстояние загрузки равн msgid "Start end points" msgstr "Начальные и конечные точки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The start and end points which are from the cutter area to the excess chute." -msgstr "Начальная и конечная точки от зоны обрезки до мусорного лотка." +msgstr "Начальная и конечная точки траектории перемещения от зоны обрезки до области прочистки сопла." # Отключить откаты при печати заполнения – вариант проще и понятнее, хотя не # совсем корректный. Отключение избыточных откатов затрагивает только шаблон @@ -14916,7 +14734,6 @@ msgstr "Начальная и конечная точки от зоны обре msgid "Reduce infill retraction" msgstr "Откат только при пересечении периметров" -# TODO: Review, changed by lang refactor. PR 14254 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 "" "Отключает откат (и подъём по Z), когда перемещения совершаются полностью над заполнением (где любые подтёки, вероятно, будут скрыты). Это поможет снизить количество откатов при печати сложных моделей и немного сэкономить время, но увеличит время нарезки и генерации G-кода.\n" @@ -14929,9 +14746,8 @@ msgstr "Эта опция снижает температуру неактивн msgid "Filename format" msgstr "Формат имени файла" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Users can decide project file names when exporting." -msgstr "Пользователь может сам задать имя файла проекта при экспорте." +msgstr "Имя файла проекта можно задать при экспорте." msgid "Make overhangs printable" msgstr "Делать нависания пригодными для печати" @@ -14951,25 +14767,25 @@ 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 все отверстия в основании модели будут заполнены." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect overhang walls" msgstr "Обнаруживать нависающие периметры" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This detects the overhang percentage relative to line width and uses a different speed to print. For 100%% overhang, bridging speed is used." msgstr "Определяет процент нависания относительно ширины линии и использует разную скорость печати. Для 100%%-го нависания используется скорость печати мостов." +# В секции "Материал для линий" msgid "Outer walls" -msgstr "" +msgstr "Внешние периметры" msgid "" "Filament to print outer walls.\n" "\"Default\" uses the active object/part filament." msgstr "" +# В секции "Материал для линий" msgid "Inner walls" -msgstr "" +msgstr "Внутренние периметры" msgid "" "Filament to print inner walls.\n" @@ -14979,11 +14795,9 @@ msgstr "" msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линий внутренних периметров. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for inner walls." msgstr "Ограничение скорости движения головы при печати внутренних периметров (относительно стола)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of walls per layer." msgstr "Количество периметров на каждом слое модели." @@ -15030,32 +14844,26 @@ msgstr "Модификация принтера" msgid "Raft contact Z distance" msgstr "Зазор под моделью" -# TODO: Review, changed by lang refactor. PR 14254 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 "Вертикальное расстояние между подложкой и моделью. Если зазор поддержки сверху равен 0, это значение игнорируется, и модель печатается в прямом контакте с подложкой (без зазора)." msgid "Raft expansion" msgstr "Расширение подложки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands all raft layers in XY plane." msgstr "Расширение всех слоёв подложки в плоскости XY." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer density" msgstr "Плотность первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the density of the first raft or support layer." msgstr "Плотность первого слоя поддержки или первого слоя подложки, если она включена." -# TODO: Review, changed by lang refactor. PR 14254 msgid "First layer expansion" msgstr "Расширение первого слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This expands the first raft or support layer to improve bed adhesion." -msgstr "Расширение первого слоя подложки или поддержки в плоскости XY для улучшения адгезии при печати материалами, склонными к отлипанию и закручиванию." +msgstr "Расширение первого слоя подложки или поддержки в плоскости XY для улучшения адгезии к столу." msgid "Raft layers" msgstr "Слоёв в подложке" @@ -15063,9 +14871,12 @@ msgstr "Слоёв в подложке" msgid "Object will be raised by this number of support layers. Use this function to avoid warping when printing ABS." msgstr "Параметр устанавливает высоту подложки в слоях, тем самым поднимая модель на заданное количество слоёв от стола. Используйте эту функцию, чтобы избежать деформации при печати ABS пластиком." -# TODO: Review, changed by lang refactor. PR 14254 +# Расширение контекста от Andy. Хотя тут мы имеем дело с очередной логической ошибкой в исходнике: разрешение повышает нагрузку при увеличении, а здесь увеличение значения, наоборот, ведёт к её уменьшению вместе со снижением качества. То есть, это именно "допуск", "Допустимое отклонение", "Gcode tolerance". Не уверен, стоит ли ломать то, что работает – народ уже давно запомнил эту настройку именно как "разрешение". Хороший компромисс – оставить название, но убрать путающее "разрешение" из описания. + перефразировал и изменил порядок изложения информации, чтобы обеспечить линейные логические связи. msgid "The G-code path is generated after simplifying the contour of models to avoid too many points and G-code lines. Smaller values mean higher resolution and more time required to slice." -msgstr "Разрешение G-кода. Максимальное отклонение экспортируемых в G-код путей до и после упрощения. Для нарезки и предпросмотра G-кода с очень высоким разрешением требуется большой объём оперативной памяти. Также при печати принтер может подвисать, не имея возможности своевременно обрабатывать такой G-код. Увеличение значения разрешения G-кода снижает нагрузку на электронику принтера. Но слишком высокие значения приводят к видимым артефактам, типа эффекта низкополигональной модели." +msgstr "" +"Максимальное отклонение планируемой траектории движения экструдера от среза модели. Повышение отклонения снижает время нарезки и нагрузку на электронику принтера, а понижение – позволяет устранить артефакты упрощения геометрии модели.\n" +"\n" +"Внимание: для нарезки и визуализации G-кода с очень низким отклонением требуется большой объём оперативной памяти, а высокая плотность команд может привести к перегрузке электроники принтера." msgid "Travel distance threshold" msgstr "Порог перемещения" @@ -15076,36 +14887,33 @@ msgstr "Отключить откат при холостых перемещен msgid "Retract amount before wipe" msgstr "Первичный откат" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the length of fast retraction before a wipe, relative to retraction length." msgstr "" "Быстрый откат перед очисткой, выраженный в процентах от общей длины отката. Меньшие значения снижают заметность шва, так как это уменьшает время задержки над ним разогретого сопла. Бóльшие значения в паре со сниженной скоростью очистки снижают количество «паутины».\n" "\n" "Примечание: значение не может быть меньше 25% или больше 100% и будет скорректировано автоматически при нарезке." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retract on layer change" msgstr "Откат при смене слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This forces a retraction on layer changes." -msgstr "Эта опция включает принудительный откат при переходе со слоя на слой." +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 "Некоторое количество материала в экструдере отводится назад, чтобы избежать подтёков при длительном перемещении. 0 - отключение отката." +msgstr "Некоторое количество материала в экструдере отводится назад, чтобы избежать подтёков при длительном перемещении. 0 – отключение отката." -# TODO: Review, changed by lang refactor. PR 14254 +# Техника, к сущности привычных откатов не относящаяся. Изменил, чтобы лучше разделять назначение действия. Настройка применима к принтерам с MMU, а аналогичная настройка для двух-головых/экструдерных принтеров не подразумевает обрезки и служит другой цели – выводу прутка из горячей зоны. msgid "Long retraction when cut (beta)" -msgstr "Длинный откат перед обрезкой прутка (beta)" +msgstr "Обрезать пруток ближе к кончику (beta)" 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 "[Экспериментальная функция] Втягивание и обрезка прутка на большем расстоянии во время смены материала для минимизации отходов. Хотя это значительно уменьшает величину прочистки, повышается риск засорения сопла или других проблем при печати." +msgstr "[Экспериментальная функция] Втягивание и обрезка прутка на меньшем расстоянии к кончику во время смены материала для минимизации отходов. Хотя это значительно уменьшает величину прочистки, повышается риск возникновения затора или других проблем при печати." msgid "Retraction distance when cut" -msgstr "Длина отката перед обрезкой прутка" +msgstr "Длина втягивания перед обрезкой" msgid "Experimental feature: Retraction length before cutting off during filament change." msgstr "[Экспериментальная функция] Длина втягивания перед отрезанием прутка при смене материала." @@ -15119,7 +14927,6 @@ msgstr "Длина отката перед сменой экструдера" msgid "Z-hop height" msgstr "Высота подъёма" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Whenever there is a retraction, the nozzle is lifted a little to create clearance between the nozzle and the print. This prevents the nozzle from hitting the print when traveling more. Using spiral lines to lift z can prevent stringing." msgstr "При каждом откате печатная голова немного приподнимается, создавая зазор между соплом и моделью. Это предотвращает столкновение сопла с моделью при перемещении. Использование спирального подъёма может помочь сократить образование \"паутины\"." @@ -15211,6 +15018,18 @@ msgstr "Прямой (Direct)" msgid "Bowden" msgstr "Внешний (Bowden)" +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 "" + msgid "Extra length on restart" msgstr "Доп. подача после отката" @@ -15220,14 +15039,12 @@ msgstr "Дополнительная длина подачи при возвра msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament." msgstr "Дополнительная длина подачи после смены насадки." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Retraction speed" msgstr "Скорость отката" msgid "Speed for retracting filament from the nozzle." msgstr "Скорость выгрузки материала при откате." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Deretraction speed" msgstr "Скорость возврата" @@ -15260,7 +15077,6 @@ msgstr "Отключить вставку в G-код команд для выв msgid "Seam position" msgstr "Позиция шва" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the starting position for each part of the outer wall." msgstr "" "Расположение точек начала печати внешних периметров.\n" @@ -15287,6 +15103,10 @@ msgstr "В углах" msgid "Aligned back" msgstr "В углах сзади" +# Используется в нескольких местах: в 2 местах в значении расположения (шва и камеры), в одном – на кнопке "назад" (калибровка бамбу) +msgid "Back" +msgstr "Сзади" + msgid "Random" msgstr "Случайная" @@ -15447,7 +15267,6 @@ msgstr "Скорость возвратного движения при очис msgid "Skirt distance" msgstr "Смещение юбки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the distance from the skirt to the brim or the object." msgstr "Расстояние между юбкой и каймой/моделью." @@ -15460,9 +15279,8 @@ msgstr "Угол между центром модели и начальной т msgid "Skirt height" msgstr "Слоёв юбки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Number of skirt layers: usually only one" -msgstr "Количество слоёв юбки. Обычно нужен только один слой." +msgstr "Количество слоёв юбки. Для прочистки экструдера достаточно одного, однако иногда может быть полезно несколько (например, в целях использования юбки в качестве многослойной каймы)." msgid "Single loop after first layer" msgstr "Один контур после первого слоя" @@ -15490,8 +15308,12 @@ msgstr "Включено" msgid "Skirt type" msgstr "Тип юбки" +# Про расширенное описание см. в комментарии к перевод подсказки настройки "Skirt minimum extrusion length" msgid "Combined - single skirt for all objects, Per object - individual object skirt." -msgstr "Выбор типа печатаемой юбки - одна общая для всех моделей или отдельные юбки для каждой модели." +msgstr "" +"Выбор типа печатаемой юбки – одна общая для всех моделей или отдельные юбки для каждой модели.\n" +"\n" +"Внимание: при создании индивидуальных юбок проверка пересечения не совершается, из-за чего при близком расположении моделей они могут накладываться друг на друга. В таких случаях рекомендуется понизить количество контуров." # Отдельный (антоним к "совместный") msgid "Per object" @@ -15500,9 +15322,8 @@ msgstr "Для каждой модели" msgid "Skirt loops" msgstr "Контуров юбки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of loops for the skirt. 0 means the skirt is disabled." -msgstr "Количество контуров юбки вокруг модели. 0 - отключение юбки." +msgstr "Количество контуров юбки вокруг модели. 0 – отключение юбки." msgid "Skirt speed" msgstr "Скорость юбки" @@ -15510,19 +15331,20 @@ msgstr "Скорость юбки" msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed." msgstr "Ограничение скорости движения головы (относительно стола) при печати юбки (мм/с). 0 – соблюдать ограничение слоя." +# (Мин.) Длина прутка для печати юбки, Минимальная экструзия для юбки, Мин. расход для юбки msgid "Skirt minimum extrusion length" -msgstr "Минимальная длина юбки" +msgstr "Мин. расход для юбки" +# Всё пытался понять, о чём речь в последнем абзаце, и почему это здесь. Оказалось (коммит 2a8b39a), что это предупреждение о том, что при выборе режима отдельной юбки у каждой модели не совершается проверок на коллизию линий, и при их близком расположении они могут накладываться друг на друга, поэтому в случае чего надо увеличить расстояние/уменьшить расход для юбки. Increase loop number in such case – ошибочное высказывание. Переместил это предупреждение в подсказку к типу юбки, где ему и место. 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 "" -"Минимальное количество пластика, которое должно быть выдавлено при печати юбки в миллиметрах. 0 - функция отключена.\n" +"Минимальная длина прутка для прочистки на юбке (в миллиметрах). Позволяет автоматически расчитывать количество контуров юбки для её использования в качестве альтернативы линии прочистки.\n" "\n" -"Необходимо, если принтер настроен на печать без стартовой линии очистки сопла.\n" -"При расстановке или проверке расстояния между моделями игнорируется конечное число петель юбки, поэтому если их недостаточно, то увеличьте их количество." +"0 – отключить автоматический расчёт." 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-коде будет замедлена, если расчётное время печати слоя меньше заданного здесь значения, для обеспечения лучшего охлаждения этих слоёв." @@ -15530,7 +15352,6 @@ msgstr "Скорость печати в экспортированном G-ко msgid "Minimum sparse infill threshold" msgstr "Заполнять области менее" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Sparse infill areas which are smaller than this threshold value are replaced by internal solid infill." msgstr "Заполнять целиком области внутри слоя с площадью меньше указанного значения." @@ -15552,11 +15373,9 @@ msgstr "" msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линий внутреннего сплошного заполнения. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for internal solid infill, not including the top or bottom surface." msgstr "Ограничение скорости движения головы при печати внутреннего сплошного заполнения (относительно стола), за исключением верхних и нижних поверхностей." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables spiraling, which 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 "Режим печати модели непрерывным контуром с постепенным набором высоты. Итоговая модель состоит только из дна и тонкой стенки, зато не имеет шва, характерного для печати по слоям." @@ -15597,7 +15416,6 @@ msgstr "" "Поток для конца печати контура вазы. По умолчанию поток последнего сегмента равномерно снижается к концу до нуля, что может вызвать недоэкструзию.\n" "Можно указать своё конечное значение потока, чтобы избежать подобных проблем." -# TODO: Review, changed by lang refactor. PR 14254 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 the nozzle." msgstr "На протяжении всей печати встроенная камера делает снимки, которые затем объединяются в ускоренное видео. Избыточные резкие движения в кадре можно сгладить при помощи соответствующего режима; после печати каждого слоя для создания снимка экструдер будет отводиться к лотку для удаления излишков. В этом режиме необходима черновая башня для устранения возможных подтёков во время создания снимка." @@ -15632,11 +15450,9 @@ msgstr "Код для вставки в первые строки файла (п msgid "Start G-code" msgstr "Стартовый G-код" -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when starting a print." msgstr "Команды в G-коде, которые выполняются в самом начале печати." -# TODO: Review, changed by lang refactor. PR 14254 msgid "G-code added when the printer starts using this filament" msgstr "Команды в G-коде, которые выполняются при запуске печати этим материалом." @@ -15701,6 +15517,9 @@ msgstr "Часто в импортируемых в программу моде msgid "Slicing Mode" msgstr "Режим нарезки" +msgid "Other" +msgstr "Прочее" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "" "Режим нарезки «Чётный-нечётный» применяется для моделей с намеренно нарушенной целостностью. Например, для моделей самолётов с ресурса 3DLabPrint.\n" @@ -15725,9 +15544,8 @@ msgstr "Это значение будет прибавлено ко всем к msgid "Enable support" msgstr "Включить поддержку" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This enables support generation." -msgstr "Включить генерацию поддержки." +msgstr "Включить генерацию поддержек." # Метки [А] и [Р] обозначают автоматическое и ручное размещение поддержек. # Вручную поддержки можно указать при помощи инструмента рисования поддержек, @@ -15750,7 +15568,6 @@ msgstr "[Р] древовидная" msgid "Support/object XY distance" msgstr "Отступ от модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This controls the XY separation between an object and its support." msgstr "Расстояние между поддержкой и моделью по горизонтали." @@ -15769,9 +15586,8 @@ msgstr "Используйте эту настройку для поворота msgid "On build plate only" msgstr "Поддержка только от стола" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This setting only generates supports that begin on the build plate." -msgstr "Создавать поддержку только от стола." +msgstr "Создавать поддержки только от стола." msgid "Support critical regions only" msgstr "Поддержка только критических областей" @@ -15790,21 +15606,18 @@ msgstr "Не печатать поддержки для небольших на msgid "Top Z distance" msgstr "Зазор поддержки сверху" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Z gap between the support's top and object." -msgstr "Вертикальное расстояние между связующим слоем поддержки сверху и моделью." +msgstr "Вертикальное расстояние между опорным связующим слоем поддержки и моделью." msgid "Bottom Z distance" msgstr "Зазор поддержки снизу" -# TODO: Review, changed by lang refactor. PR 14254 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 "Вертикальное расстояние между связующим слоем поддержки снизу и моделью. Если зазор поддержки сверху равен 0 и снизу есть интерфейсные слои, это значение игнорируется, и поддержка печатается в прямом контакте с моделью (без зазора)." +msgstr "Вертикальное расстояние между связующим слоем начала поддержки и опорной поверхностью модели. Если зазор поддержки сверху равен 0 и снизу есть интерфейсные слои, это значение игнорируется, и поддержка печатается в прямом контакте с моделью (без зазора)." msgid "Support/raft base" msgstr "Поддержка/подложка" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Filament to print support base and raft.\n" "\"Default\" means no specific filament for support and current filament is used." @@ -15819,19 +15632,16 @@ msgstr "Избегать использования материала связ msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линий поддержки. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Loop pattern interface" msgstr "Связующий слой петлями" # ??? Печатать контактный слой связующего слоя поддержки петлями -# TODO: Review, changed by lang refactor. PR 14254 msgid "This covers the top contact layer of the supports with loops. It is disabled by default." msgstr "Печатать по периметру последнего связующего слоя поддержки непрерывную полилинию. По умолчанию отключено. Устаревшая функция, которая не всегда работает корректно." msgid "Support/raft interface" msgstr "Связующий слой поддержки/подложки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Filament to print support interface.\n" "\"Default\" means no specific filament for support interface and current filament is used." @@ -15840,9 +15650,8 @@ msgstr "Материал для печати связующего слоя по msgid "Top interface layers" msgstr "Связующие слои сверху" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the number of top interface layers." -msgstr "Количество медленных слоёв" +msgstr "Количество связующих слоёв сверху" msgid "Bottom interface layers" msgstr "Связующие слои снизу" @@ -15866,11 +15675,9 @@ msgstr "" msgid "Bottom interface spacing" msgstr "Отступ между линиями связующего слоя снизу" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the spacing of bottom interface lines. 0 means solid interface." msgstr "Расстояние между линиями связующего слоя снизу. Установите 0, чтобы получить сплошной слой." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support interfaces." msgstr "Ограничение скорости при печати связующего слоя поддержки." @@ -15910,7 +15717,6 @@ msgstr "Полость" msgid "Interface pattern" msgstr "Шаблон связующего слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the line pattern for support interfaces. The default pattern for non-soluble support interfaces is Rectilinear while the default pattern for soluble support interfaces is Concentric." msgstr "" "Шаблон печати связующего слоя поддержек.\n" @@ -15933,18 +15739,15 @@ msgstr "Чередующийся зигзаг" msgid "Base pattern spacing" msgstr "Отступ между линиями поддержки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This determines the spacing between support lines." msgstr "Расстояние между отдельными линиями поддержки." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Normal support expansion" msgstr "Горизонтальное расширение поддержки" msgid "Expand (+) or shrink (-) the horizontal span of normal support." msgstr "Горизонтальное расширение (+) или сужение (-) поддержки в плоскости XY." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for support." msgstr "Ограничение линейной скорости при печати поддержки." @@ -15992,7 +15795,6 @@ msgstr "Максимальный угол" # в режим обнаружения нависаний по проценту выноса линии. Древовидные # поддержки при этом будут использовать угол по умолчанию (30°)" ВНИМАНИЕ: # последнее предложение – особенность PR -# TODO: Review, changed by lang refactor. PR 14254 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." @@ -16121,9 +15923,6 @@ msgstr "" "\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" @@ -16139,18 +15938,26 @@ msgstr "" "PRINT_START <...> CHAMBER_TEMP=[chamber_temperature].\n" "Это особенно полезно, если принтер не поддерживает команды M141/M191, или если управление температурой термокамеры реализовано через макросы (например, при отсутствии активного нагревателя камеры)." -# TODO: Review, changed by lang refactor. PR 14254 +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + msgid "Nozzle temperature after the first layer" msgstr "Температура при печати последующих слоёв." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect thin walls" msgstr "Обнаруживать тонкие стенки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This detects thin walls which can’t contain two lines and uses a single line to print. It may not print as well because it’s not a closed loop." msgstr "" -"Обнаруживать стенки, которые можно напечатать только в одну линию. Возможно, будет напечатано не очень хорошо, так как это разомкнутый контур.\n" +"Обнаруживать стенки, которые невозможно напечатать замкнутым периметром. Возможны проблемы с качеством, так как это создаёт разрыв в линии периметра.\n" "\n" "Внимание: эта настройка не влияет на поведение генератора Arachne." @@ -16169,51 +15976,28 @@ msgstr "" msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter." msgstr "Ширина линий заполнения верхней поверхности. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed for solid top surface infill." msgstr "Скорость печати верхних сплошных поверхностей." msgid "Top shell layers" msgstr "Сплошных слоёв сверху" -# TODO: Review, changed by lang refactor. PR 14254 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 the top shell thickness, the top shell layers will be increased" msgstr "Количество сплошных слоёв при печати верхней поверхности модели. Если толщина, рассчитанная с помощью этого значения, меньше толщины оболочки сверху, количество сплошных слоёв сверху будет увеличено." msgid "Top shell thickness" msgstr "Толщина оболочки сверху" -# TODO: Review, changed by lang refactor. PR 14254 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." -msgstr "Минимальная толщина оболочки сверху в мм. Если толщина оболочки, рассчитанная по количеству сплошных слоёв сверху, меньше этого значения, количество сплошных слоёв сверху будет автоматически увеличено при нарезке, для удовлетворения минимальной толщины оболочки. Это позволяет избежать слишком тонкой оболочки при небольшой высоте слоя. 0 означает, что этот параметр отключён, а толщина оболочки сверху полностью задаётся количеством сплошных слоёв сверху." +msgstr "Минимальная толщина оболочки сверху в мм. Если толщина оболочки, рассчитанная по количеству сплошных слоёв сверху, меньше этого значения, количество сплошных слоёв сверху будет автоматически увеличено при нарезке, для удовлетворения минимальной толщины оболочки. Это позволяет избежать слишком тонкой оболочки при небольшой высоте слоя. 0 означает, что этот параметр отключён, а толщина оболочки сверху задаётся количеством сплошных слоёв сверху." -# ??? Плотность верхней оболочки -msgid "Top surface density" -msgstr "Плотность верхней поверхности" - -# ??? Плотность верхней поверхности. При 100% создаётся сплошной верхний слой. -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" -"Внимание: уменьшение этого значения может негативно повлиять на адгезию к печатной платформе." - -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." -msgstr "Ограничение скорости холостых перемещений печатающей головы без подачи материала." +msgstr "Ограничение скорости холостых перемещений печатающей головы." msgid "Wipe while retracting" msgstr "Очистка сопла при откате" # ... чтобы вытереть об неё подтёки материала с кончика сопла. -# TODO: Review, changed by lang refactor. PR 14254 msgid "This moves the 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 "" "Выполнять откат совместно с небольшим движением вдоль напечатанной линии, чтобы очистить сопло от подтёков материала. Это может уменьшить «паутину» и дефекты переэкструзии при печати новой линии после холостого перемещения.\n" @@ -16223,7 +16007,6 @@ msgstr "" # Как выяснилось в чате K3D, "Расстояние очистки" вводит людей в заблуждение, # т.к. из-за путаницы в старой терминологии люди думали, что очистка здесь – # это откат (его часть). -# TODO: Review, changed by lang refactor. PR 14254 msgid "Wipe distance" msgstr "Длина движения очистки" @@ -16246,7 +16029,6 @@ msgstr "" "\n" "Внимание: процент первичного отката будет увеличен, если длины очистки окажется недостаточно при текущей скорости отката (или из-за иных ограничений)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The wiping tower can be used to clean up residue on the nozzle and stabilize the chamber pressure inside the nozzle in order to avoid appearance defects when printing objects." msgstr "Черновая башня – специальная структура, которая используется для прочистки сопла от остатков материала и стабилизации давления внутри сопла при смене экструдера, чтобы избежать дефектов на поверхности печатаемой модели." @@ -16267,18 +16049,15 @@ msgstr "Объём прочистки" msgid "Flush multiplier" msgstr "Множитель прочистки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The actual flushing volumes is equal to the flush multiplier value multiplied by the flushing volumes in the table." msgstr "Реальные объёмы прочистки равны произведению множителя и значений, указанных в таблице." msgid "Prime volume" msgstr "Объём сброса материала на черновой башне" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the volume of material to prime the extruder with on the tower." msgstr "Объём материала, который необходимо выдавить для подготовки экструдера на черновой башне." -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the width of prime towers." msgstr "Размер черновой башни по оси X. Размер по оси Y будет автоматически вычислен исходя из необходимого объёма очистки и ширины башни. Таким образом, увеличивая ширину башни вы уменьшаете её длину и наоборот." @@ -16399,11 +16178,12 @@ msgstr "Интервал между линиями" msgid "Infill gap." msgstr "Управление отступом между линиями сброса материала." -# TODO: Review, changed by lang refactor. PR 14254 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 visible. It will not take effect unless the prime tower is enabled." -msgstr "Прочистка сопла после смены материала будет производиться в заполнение модели. Это снижает количество отходов и сокращает время печати. Требуется включить черновую башню." +msgstr "" +"Прочистка сопла после смены материала будет производиться в заполнение модели. Это снижает количество отходов и сокращает время печати. Требуется включить черновую башню.\n" +"\n" +"Примечание: не рекомендуется при печати стенок прозрачным материалом." -# TODO: Review, changed by lang refactor. PR 14254 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 a prime tower is enabled." msgstr "Прочистка сопла после смены материала будет производиться в поддержку модели. Это снижает количество отходов и сокращает время печати. Требуется включить черновую башню." @@ -16439,7 +16219,6 @@ msgstr "Температура во время печати другим экс msgid "X-Y hole compensation" msgstr "Расширение пустот в слое" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Holes in objects will expand or contract in the XY plane by the set value. Positive values make holes bigger and negative values make holes smaller. This function is used to adjust sizes slightly when objects have assembly issues." msgstr "" "Корректирует размеры внутренних контуров на горизонтальном срезе модели на заданное значение. Положительные значения расширяют вертикальные отверстия и полости, отрицательные - сужают. Функция предназначена для корректировки точности размеров моделей во избежание проблем со сборкой.\n" @@ -16449,7 +16228,6 @@ msgstr "" msgid "X-Y contour compensation" msgstr "Расширение контура слоя" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Contours of objects will expand or contract in the XY plane by the set value. Positive values make contours bigger and negative values make contours smaller. This function is used to adjust sizes slightly when objects have assembly issues." msgstr "Корректирует размеры внешних контуров на горизонтальном срезе модели на заданное значение. Положительные значения увеличивают модель, отрицательные - уменьшают. Функция предназначена для корректировки точности размеров моделей во избежание проблем со сборкой." @@ -16482,6 +16260,14 @@ msgstr "Скручивание многогранника" msgid "Rotate the polyhole every layer." msgstr "Вращение многогранного отверстия на каждом слое." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Эскизы в G-коде" @@ -16504,7 +16290,6 @@ msgstr "Относительные координаты экструдера" 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 "Относительная экструзия рекомендуется при использовании опции «Помечать объекты». Некоторые экструдеры работают лучше при отключении этой опции (абсолютный режим экструзии). Черновая башня совместима только с относительной экструзии. Рекомендуется включить для большинства принтеров (по умолчанию включено)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The classic wall generator produces walls with constant extrusion width and for very thin areas, gap-fill is used. The Arachne engine produces walls with variable extrusion width." msgstr "" "Классический генератор создаёт периметры с постоянной шириной линии, а для очень тонких участков используется заполнение щелей.\n" @@ -16519,12 +16304,11 @@ msgstr "Arachne" msgid "Wall transition length" msgstr "Длина перехода между периметрами" -# TODO: Review, changed by lang refactor. PR 14254 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 "Граница фильтрации переходов между периметрами" +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 "Параметр расширяет допустимый диапазон значений ширины периметров, чтобы уменьшить частые изменения их количества на тонких стенках, что улучшает качество печати. Однако слишком большой диапазон может привести к недоэкструзии или переэкструзии. Указывается в процентах от диаметра сопла. Например, для сопла 0,4 мм оптимальным считается значение 25% (0,1 мм)." @@ -16590,7 +16374,6 @@ 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 "Минимальная ширина периметра для печати тонких элементов модели (в соответствии с «минимальным размером элемента»). Ширина периметра будет подогнана под размер элемента, если значение этого параметра меньше его ширины. Можно указать процент от диаметра сопла." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Detect narrow internal solid infills" msgstr "Оптимизация заполнения узких мест" @@ -16615,14 +16398,12 @@ msgstr " вне диапазона " msgid "Export 3MF" msgstr "Экспорт в 3MF" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports the project as a 3MF file." msgstr "Экспорт проекта в 3MF." msgid "Export slicing data" msgstr "Экспорт данных о нарезке" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Export slicing data to a folder" msgstr "Экспорт данных нарезки в папку." @@ -16645,13 +16426,9 @@ 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, другие - недопустимо" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This shows command help." msgstr "Показать справку по команде." @@ -16679,17 +16456,15 @@ msgstr "Экспорт 3MF файла с минимальным размером msgid "mtcpp" msgstr "mtcpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max triangle count per plate for slicing" -msgstr "максимальное количество треугольников на столе при нарезке." +msgstr "максимальное количество треугольников на столе при нарезке" # мвнс , Макс. время нарезки стола msgid "mstpp" msgstr "mstpp" -# TODO: Review, changed by lang refactor. PR 14254 msgid "max slicing time per plate in seconds" -msgstr "максимальное время нарезки одного стола в секундах." +msgstr "максимальное время нарезки одного стола в секундах" msgid "No check" msgstr "Без проверки" @@ -16708,7 +16483,6 @@ msgstr "Проверка нормативных пунктов." msgid "Output Model Info" msgstr "Информация о модели" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This outputs the model’s information." msgstr "Вывод информации о модели." @@ -16716,7 +16490,6 @@ msgstr "Вывод информации о модели." msgid "Export Settings" msgstr "Экспорт настроек" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This exports settings to a file." msgstr "Экспорт настроек в файл." @@ -16814,7 +16587,6 @@ msgstr "Клонировать объекты в списке загрузки." msgid "Load uptodate process/machine settings when using uptodate" msgstr "Загрузить настройки печати/принтера при использовании обновления" -# TODO: Review, changed by lang refactor. PR 14254 msgid "load up-to-date process/machine settings from the specified file when using up-to-date" msgstr "Загрузить настройки печати/принтера при использовании обновления из указанного файла." @@ -16858,7 +16630,6 @@ msgstr "Загрузка и сохранение настроек будет п msgid "Output directory" msgstr "Папку сохранения" -# TODO: Review, changed by lang refactor. PR 14254 msgid "This is the output directory for exported files." msgstr "Выходной каталог для экспортированных файлов." @@ -16919,25 +16690,21 @@ msgstr "Избегать зону калибровки экструзии при msgid "If enabled, Arrange will avoid extrusion calibrate region when placing objects." msgstr "Если включено, то при расстановки моделей будет избегаться зона калибровки экструзии." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Skip modified G-code in 3MF" -msgstr "Пропуск модифицированного G-кода в 3mf-файле" +msgstr "Пропуск модифицированного G-кода в 3MF-файле" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Skip the modified G-code in 3MF from printer or filament presets." msgstr "Пропуск модифицированного G-кода в 3MF-файле в профиле принтера или материала." msgid "MakerLab name" msgstr "Имя MakerLab" -# TODO: Review, changed by lang refactor. PR 14254 msgid "MakerLab name to generate this 3MF." msgstr "Имя MakerLab, использованное для создания этого 3MF-файла." msgid "MakerLab version" msgstr "Версия MakerLab" -# TODO: Review, changed by lang refactor. PR 14254 msgid "MakerLab version to generate this 3MF." msgstr "Версия MakerLab, использованная для создания этого 3MF-файла." @@ -17152,11 +16919,9 @@ msgstr "Имя входного файла без расширения" msgid "Source filename of the first object, without extension." msgstr "Имя исходного файла первой модели без расширения." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vector has two elements: X and Y coordinate of the point. Values in mm." msgstr "Вектор состоит из двух элементов: координаты точки x и y. Значения заданы в мм." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vector has two elements: X and Y dimension of the bounding box. Values in mm." msgstr "Вектор состоит из двух элементов: ширина (x-размер) и высота (y-размер) ограничивающего прямоугольника. Значения заданы в мм." @@ -17325,17 +17090,14 @@ msgstr "Не удалось загрузить файл модели." msgid "Meshing of a model file failed or no valid shape." msgstr "Не удалось обнаружить форму или создать по ней полигональную сетку." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The supplied file couldn't be read because it's empty." -msgstr "Невозможно прочитать файл, так как он пуст" +msgstr "Невозможно прочитать файл, так как он пуст." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .stl, .obj, or .amf(.xml) extension." -msgstr "Неизвестный формат файла. Входной файл должен иметь расширение *.stl, *.obj, *.amf(.xml)." +msgstr "Неизвестный формат файла: входной файл должен иметь расширение *.stl, *.obj или *.amf(.xml)." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Unknown file format: input file must have .3mf or .zip.amf extension." -msgstr "Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *.zip.amf." +msgstr "Неизвестный формат файла: входной файл должен иметь расширение *.3mf или *.zip.amf." msgid "load_obj: failed to parse" msgstr "load_obj: ошибка обработки" @@ -17385,7 +17147,6 @@ msgstr "Калибровка" msgid "Finish" msgstr "Завершить" -# TODO: Review, changed by lang refactor. PR 14254 msgid "How can I use calibration results?" msgstr "Как использовать результаты калибровки?" @@ -17463,7 +17224,6 @@ msgstr "Пожалуйста, выберите пруток для калибр msgid "The input value size must be 3." msgstr "Размер входного значения должен быть равен 3." -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "This machine type can only hold 16 historical 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?" @@ -17475,10 +17235,9 @@ msgstr "" 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). Вы действительно хотите перезаписать остальные?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "There is already a previous calibration result with the same name: %s. Only one result with a name is saved. Are you sure you want to overwrite the previous result?" -msgstr "Результат калибровки с таким именем уже с существует: %s. Вы уверены, что хотите перезаписать прошлый результат?" +msgstr "Результат калибровки с таким именем уже с существует: %s. Перезаписать прошлый результат?" #, c-format, boost-format msgid "" @@ -17488,7 +17247,6 @@ msgstr "" "Для одного экструдера имя (%s) должно быть уникальным при одинаковых типе филамента, диаметре и потоке сопла.\n" "Вы уверены, что хотите перезаписать предыдущий результат?" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle. This result will not be saved." msgstr "Данный принтер может хранить максимум %d результатов для каждого сопла. Этот результат не будет сохранён." @@ -17572,7 +17330,6 @@ msgstr "Кроме того, калибровка скорости потока 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 с официальными материалами, стандартные настройки работают хорошо, так как они были предварительно откалиброваны и тщательно настроены. Для обычного материала обычно не требуется выполнять калибровку скорости потока, если только после выполнения других калибровок вы всё ещё видите перечисленные дефекты. Более подробную информацию можно найти на нашем вики-сайте." -# TODO: Review, changed by lang refactor. PR 14254 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, have sparkles, or have a highly-reflective finish may not be suitable for this calibration and can produce less-than-desirable results.\n" "\n" @@ -17580,7 +17337,7 @@ msgid "" "\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 "" -"Автоматическая калибровка скорости потока использует технологию микролидара Bambu Lab, непосредственно измеряя калибровочные шаблоны. Однако имейте ввиду, что эффективность и точность этого метода может быть снижена при использовании определённых типов материалов. В частности, прозрачные или полупрозрачные материалы, материалы с блестящими частицами или с светоотражающим покрытием могут не подойти для данной калибровки и привести к нежелательным результатам.\n" +"Автоматическая калибровка скорости потока использует технологию микролидара Bambu Lab, непосредственно измеряя калибровочные шаблоны. Однако имейте ввиду, что эффективность и точность этого метода может быть снижена при использовании определённых типов материалов. В частности, прозрачные или полупрозрачные материалы, материалы с блестящими или светоотражающими частицами могут не подойти для данной калибровки и привести к нежелательным результатам.\n" "\n" "\n" "Результаты калибровки могут различаться от калибровки к калибровке или от материала к материалу. Мы продолжаем улучшать точность и совместимость этой калибровки путём обновления прошивки принтера.\n" @@ -17621,7 +17378,6 @@ msgstr "Максимальная длина имени 40 символов." msgid "Please find the best line on your plate" msgstr "Пожалуйста, найдите лучшую линию на столе" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please find the corner with the perfect degree of extrusion" msgstr "Пожалуйста, найдите угол с идеальной экструзией" @@ -17784,14 +17540,12 @@ msgstr "Журнал результатов пуст" msgid "Success to get history result" msgstr "История успешных результатов калибровки" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Refreshing the previous Flow Dynamics Calibration records" -msgstr "Обновление записей истории калибровки динамики потока" +msgstr "Обновление записей прошлых калибровок динамики потока" msgid "Action" msgstr "Действие" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "This machine type can only hold %d historical results per nozzle." msgstr "Данный принтер может хранить максимум %d результатов для каждого сопла." @@ -18307,14 +18061,17 @@ msgstr "Невозможно выполнить булеву операцию н msgid "Mesh Boolean" msgstr "Булевы операции" +# Одновременно тип операции и кнопка выполнения msgid "Union" -msgstr "Объединение" +msgstr "Объединить" +# Одновременно тип операции и кнопка выполнения msgid "Difference" -msgstr "Разность" +msgstr "Вычесть" +# Одновременно тип операции и кнопка выполнения msgid "Intersection" -msgstr "Пересечение" +msgstr "Сохранить пересечение" msgid "Source Volume" msgstr "Исходный объём" @@ -18428,13 +18185,11 @@ msgstr "Профиль материала" msgid "Create" msgstr "Создать" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor is not selected; please reselect vendor." -msgstr "Не выбран производитель, пожалуйста, выберите его заново." +msgstr "Производитель не выбран; пожалуйста, выберите его заново." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Custom vendor missing; please input custom vendor." -msgstr "Не задан производитель, пожалуйста, введите производителя." +msgstr "Производитель не задан; пожалуйста, введите производителя." msgid "\"Bambu\" or \"Generic\" cannot be used as a Vendor for custom filaments." msgstr "\"Bambu\" или \"Generic\" нельзя использовать в качестве производителей для пользовательских материалов." @@ -18442,25 +18197,21 @@ msgstr "\"Bambu\" или \"Generic\" нельзя использовать в к msgid "Filament type is not selected, please reselect type." msgstr "Не выбран тип материала, пожалуйста, выберите его заново." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Filament serial missing; please input serial." msgstr "Введите серийный номер материала." -# TODO: Review, changed by lang refactor. PR 14254 msgid "There may be disallowed characters in the vendor or serial input of the filament. Please delete and re-enter." -msgstr "В данных о производителе или серийном номере материала присутствуют экранирующие символы. Удалите их и введите корректные данные." +msgstr "В данных о производителе или серийном номере материала присутствуют недопустимые символы. Удалите их и введите корректные данные." msgid "All inputs in the custom vendor or serial are spaces. Please re-enter." msgstr "В поле ввода производителя/серии материала введены пробелы. Пожалуйста, введите корректные данные." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The vendor cannot be a number; please re-enter." -msgstr "Имя производителя не может начинаться с числа. Пожалуйста, введите корректное имя." +msgstr "Имя производителя не может начинаться с числа; введите корректное имя." msgid "You have not selected a printer or preset yet. Please select at least one." msgstr "Выберите хотя бы один принтер или профиль." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The Filament name %s you created already exists.\n" @@ -18509,9 +18260,8 @@ msgstr "Импорт профиля" msgid "Create Type" msgstr "Создать:" -# TODO: Review, changed by lang refactor. PR 14254 msgid "The model was not found; please reselect vendor." -msgstr "Модель не найдена, выберите производителя." +msgstr "Модель не найдена; выберите производителя." msgid "Select Printer" msgstr "Выбор принтера" @@ -18550,20 +18300,17 @@ msgstr "Размер файла превышает %d МБ, попробуйте msgid "Exception in obtaining file size, please import again." msgstr "Ошибка при получении размера файла, попробуйте ещё раз." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Preset path was not found; please reselect vendor." -msgstr "Путь к профилю не найден, пожалуйста, выберите другого производителя." +msgstr "Путь к профилю не найден; выберите другого производителя." msgid "The printer model was not found, please reselect." msgstr "Модель принтера не найдена, пожалуйста, выберите заново." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The nozzle diameter was not found; please reselect." -msgstr "Диаметр сопла не задан, пожалуйста, выберите заново." +msgstr "Диаметр сопла не задан; выберите заново." -# TODO: Review, changed by lang refactor. PR 14254 msgid "The printer preset was not found; please reselect." -msgstr "Профиль принтера не найдена, выберите заново." +msgstr "Профиль принтера не найдена; выберите заново." msgid "Printer Preset" msgstr "Профиль принтера" @@ -18577,11 +18324,9 @@ msgstr "Шаблон профиля настроек" msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer" msgstr "Не выбран родительский профиль в качестве основы для создания нового. Выберите производителя и модель принтера." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have entered a disallowed character in the printable area section on the first page. Please use only numbers." msgstr "В разделе «Область печати» на первой странице введено недопустимое значение. Проверьте указанные значения перед созданием." -# TODO: Review, changed by lang refactor. PR 14254 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" @@ -18604,14 +18349,12 @@ msgstr "Не удалось создать профиль материала. П msgid "Create process presets failed. As follows:\n" msgstr "Не удалось создать профиль настроек печати. Причины: \n" -# TODO: Review, changed by lang refactor. PR 14254 msgid "Vendor was not found; please reselect." -msgstr "Производитель не найден, пожалуйста, выберите другого." +msgstr "Производитель не найден; выберите заново." msgid "Current vendor has no models, please reselect." msgstr "У текущего производителя отсутствуют модели принтеров, пожалуйста, выберите заново." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not selected the vendor and model or input the custom vendor and model." msgstr "Не указан производитель и модель принтера." @@ -18626,7 +18369,6 @@ msgstr "" msgid "Please check bed printable shape and origin input." msgstr "Пожалуйста, проверьте правильность введённых значений области печати." -# TODO: Review, changed by lang refactor. PR 14254 msgid "You have not yet selected the printer to replace the nozzle for; please choose a printer." msgstr "Для добавления сопла сначала выберите принтер." @@ -18669,7 +18411,6 @@ msgstr "Для изменения настроек профиля перейди msgid "Filament Created" msgstr "Профиль материала создан" -# TODO: Review, changed by lang refactor. PR 14254 msgid "" "Please go to filament settings to edit your presets if you need to.\n" "Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed each have a significant impact on printing quality. Please set them carefully." @@ -18690,7 +18431,7 @@ msgstr "" "Нажмите «Синхронизировать пользовательские профили», чтобы включить функцию синхронизации." msgid "Printer Setting" -msgstr "Настройка принтера" +msgstr "Настроить принтер" msgid "Printer config bundle(.orca_printer)" msgstr "Printer config bundle(.orca_printer) - Пакет профилей принтера" @@ -18725,7 +18466,6 @@ msgstr "ошибка открытия zip-файла для записи" msgid "Export successful" msgstr "Успешно экспортировано" -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "" "The '%s' folder already exists in the current directory. Do you want to clear it and rebuild it?\n" @@ -18759,7 +18499,6 @@ msgstr "" "Экспортируется набор пользовательских профилей материалов.\n" "Этими файлами можно поделиться с другими пользователями." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Only display printers with changes to printer, filament, and process presets are displayed." msgstr "Будут отображаться только изменённые профили принтеров, материалов и настроек печати." @@ -18786,11 +18525,10 @@ msgstr "" "Все изменённые профили настроек будут экспортированы в единый zip-файл." msgid "Please select at least one printer or filament." -msgstr "Пожалуйста, выберите хотя бы один принтер или материал." +msgstr "Выберите хотя бы один принтер или материал." -# TODO: Review, changed by lang refactor. PR 14254 msgid "Please select a preset type you want to export" -msgstr "Пожалуйста, выберите тип, который вы хотите экспортировать" +msgstr "Выберите тип профилей, который вы хотите экспортировать" msgid "Failed to create temporary folder, please try Export Configs again." msgstr "Не удалось создать временную папку, пожалуйста, попробуйте экспортировать конфигурацию ещё раз." @@ -18855,7 +18593,6 @@ msgstr "[Необходимо удалить]" msgid "Edit Preset" msgstr "Изменить профиль" -# TODO: Review, changed by lang refactor. PR 14254 msgid "For more information, please check out our Wiki" msgstr "Подробности читайте на сайте" @@ -18986,6 +18723,132 @@ msgstr "Вход/Тест" msgid "Connection to printers connected via the print host failed." msgstr "Не удалось подключиться к принтерам, подключенным через хост печати." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -19068,6 +18931,19 @@ msgstr "Подключение к MKS успешно установлено." msgid "Could not connect to MKS" msgstr "Не удалось подключиться к MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Подключение к OctoPrint успешно установлено." @@ -19355,7 +19231,6 @@ msgstr "принтера(-ов) одновременно (зависит от т msgid "Wait" msgstr "Ждать" -# TODO: Review, changed by lang refactor. PR 14254 msgid "minute each batch. (It depends on how long it takes to complete heating.)" msgstr "минут для отправки каждого пакета заданий (зависит от того, сколько времени требуется для завершения нагрева перед началом печати.)" @@ -19658,7 +19533,6 @@ msgstr "Предупреждение: ручная расстановка кай msgid "Set the brim type of this object to \"painted\"" msgstr "Переключить тип каймы для этого объекта на «Вручную»." -# TODO: Review, changed by lang refactor. PR 14254 msgid "invalid brim ears" msgstr " недействительные «мышиные уши»" @@ -19763,7 +19637,6 @@ msgstr "Напомнить позже" msgid "A new version of the Bambu Network Plug-in is available." msgstr "Доступна новая версия сетевого плагина Bambu." -# TODO: Review, changed by lang refactor. PR 14254 #, c-format, boost-format msgid "Current version: %s" msgstr "Текущая версия: %s" @@ -19830,6 +19703,12 @@ msgstr "Количество треугольников" msgid "Calculating, please wait..." msgstr "Расчёт, подождите..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -20042,7 +19921,6 @@ msgstr "" "Таймлапсы (ускоренная видеосъёмка)\n" "Знаете ли вы, что во время печати можно создавать таймлапсы?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Arrange] msgid "" "Auto-Arrange\n" @@ -20051,7 +19929,6 @@ msgstr "" "Авторасстановка\n" "Знаете ли вы, что можно автоматически расставить все модели в вашем проекте?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Auto-Orient] msgid "" "Auto-Orient\n" @@ -20150,7 +20027,6 @@ msgstr "" "Распределение печатаемого на другие столы\n" "Знаете ли вы, что модель, состоящую из большого количества частей, можно распределить на несколько столов? Это упрощает процесс отслеживания всех деталей при печати." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Speed up your print with Adaptive Layer #: Height] msgid "" @@ -20168,7 +20044,6 @@ msgstr "" "Рисование поддержек\n" "Знаете ли вы, что можно прямо на модели рисовать где будет размещаться принудительная поддержка, а где поддержка будет заблокирована? Используйте для этого функцию «Рисование поддержек»." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Different types of supports] msgid "" "Different types of supports\n" @@ -20177,7 +20052,6 @@ msgstr "" "Различные типы поддержек\n" "Знаете ли вы, что можно выбрать один из нескольких типов поддержек? Древовидная поддержка отлично подходит для органических моделей, экономя при этом материал и уменьшая время печати. Попробуйте их!" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Printing Silk Filament] msgid "" "Printing Silk Filament\n" @@ -20194,7 +20068,6 @@ msgstr "" "Кайма для лучшей адгезии\n" "Знаете ли вы, что при печати модели имеющей небольшой контакт с поверхностью стола, рекомендуется использовать кайму?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Set parameters for multiple objects] msgid "" "Set parameters for multiple objects\n" @@ -20211,7 +20084,6 @@ msgstr "" "Объединение моделей\n" "Знаете ли вы, что можно объединить несколько моделей в единую? Используйте для этого команду «Объединить в сборку», выбрав несколько моделей." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Flush into support/objects/infill] msgid "" "Flush into support/objects/infill\n" @@ -20228,7 +20100,6 @@ msgstr "" "Увеличение прочности\n" "Знаете ли вы, что для повышения прочности модели можно увеличить количество периметров и плотность заполнения?" -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:When do you need to print with the printer #: door opened] msgid "" @@ -20238,7 +20109,6 @@ msgstr "" "Когда необходимо печатать с открытой дверцей принтера?\n" "Знаете ли вы, что при печати низкотемпературным материалом при более высокой температуре внутри термокамеры открытие дверцы принтера снижает вероятность засорения экструдера/хотэнда? Более подробную информацию читайте на Wiki." -# TODO: Review, changed by lang refactor. PR 14254 #: resources/data/hints.ini: [hint:Avoid warping] msgid "" "Avoid warping\n" @@ -20247,6 +20117,73 @@ msgstr "" "Предотвращение коробления материала\n" "Знаете ли вы, что при печати материалами, склонными к короблению, таких как ABS, повышение температуры подогреваемого стола может снизить эту вероятность?" +#~ msgid "Print" +#~ msgstr "Печать" + +#~ msgid "in" +#~ msgstr "дюйм" + +#~ msgid "Object coordinates" +#~ msgstr "Относительно модели" + +#~ msgid "World coordinates" +#~ msgstr "Относительно стола" + +#~ msgid "Translate(Relative)" +#~ msgstr "Перемещение (относительное)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Поворот" + +#~ msgid "Part coordinates" +#~ msgstr "Относительно части" + +# Тут речь о коэффициенте PA (адаптивный коэффициент PA), а не об адаптивном +# алгоритме +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Адаптивный PA на нависаниях (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Коэффициент PA на мостах" + +#~ 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 "Filament Sync Options" +#~ msgstr "Настройки синхронизации" + +#~ msgid "Network plug-in" +#~ msgstr "Сетевой плагин" + +#~ msgid "View control settings" +#~ msgstr "Просмотр настроек управления" + +#~ msgid "Rotate view" +#~ msgstr "Вращение камеры" + +#~ msgid "Pan view" +#~ msgstr "Перемещение камеры" + +#~ msgid "Zoom view" +#~ msgstr "Масштабирование вида" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Инвертировать масштабирование с помощью колеса мыши" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Левый: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Правый: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Включить сетевой плагин" diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po index e47b3e2816..0bbb793d5b 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "Language: sv\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -324,6 +324,7 @@ msgstr "" msgid "Optimize orientation" msgstr "Optimisera placering" +msgctxt "Verb" msgid "Scale" msgstr "Skala" @@ -333,8 +334,9 @@ msgstr "" msgid "Error: Please close all toolbar menus first" msgstr "FEL: Stäng alla verktygsmenyer först" +msgctxt "inches" msgid "in" -msgstr "i" +msgstr "" msgid "mm" msgstr "mm" @@ -367,6 +369,9 @@ msgstr "Skalnings förhållande" msgid "Object operations" msgstr "Objekt Åtgärder" +msgid "Scale" +msgstr "Skala" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Volym Åtgärder" @@ -393,26 +398,33 @@ msgstr "Återställ Position" msgid "Reset rotation" msgstr "" -msgid "Object coordinates" +msgid "World" msgstr "" -msgid "World coordinates" -msgstr "Världskoordinater" +msgid "Object" +msgstr "Objekt" -msgid "Translate(Relative)" +msgid "Part" +msgstr "Del" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" 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 "" +msgctxt "Noun" +msgid "Scale" +msgstr "Skala" #. TRN - Input label. Be short as possible msgid "Size" @@ -517,12 +529,6 @@ msgstr "Glipa" msgid "Spacing" msgstr "Mellanrum" -msgid "Part" -msgstr "Del" - -msgid "Object" -msgstr "Objekt" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1687,6 +1693,25 @@ msgstr "" msgid "Untitled" msgstr "Ej namngiven" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Från och med version 2.4.0 synkroniserar OrcaSlicer användarprofiler via Orca Cloud i stället för Bambu Cloud.\n" +"\n" +"Logga in på Orca Cloud för att migrera dina befintliga profiler, så överförs de automatiskt. Läs mer om hur OrcaSlicer lagrar och synkroniserar dina profiler, eller om hur du migrerar dina förinställningar manuellt, i vår wiki.\n" +"\n" +"Om du inte använde Bambu Cloud för att synkronisera profiler påverkar den här ändringen dig inte och du kan ignorera det här meddelandet." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1714,6 +1739,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1816,23 +1847,30 @@ msgstr "Öppna Projekt" 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 "Versionen av Orca Slicer är för låg och behöver uppdateras till den senaste versionen innan den kan användas normalt" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1841,6 +1879,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1908,7 +1952,8 @@ msgstr "Antalet användar inställningar som cachats i molnet har överskridit d msgid "Sync user presets" msgstr "Synkronisera användar inställningar" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2130,6 +2175,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3563,7 +3611,7 @@ msgstr "Kalibreringen klar. Vänligen hitta den mest enhetliga extruderingslinje msgid "Save" msgstr "Spara" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Tillbaka" @@ -4023,6 +4071,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "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" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4917,6 +4969,7 @@ msgstr "" msgid "Color change" msgstr "Färg byte" +msgctxt "Noun" msgid "Print" msgstr "Skriv ut" @@ -5076,11 +5129,15 @@ msgstr "Undvik kalibrerings området" msgid "Align to Y axis" msgstr "Justera mot Y-axeln" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Tillbaka" + +msgctxt "Camera View" msgid "Left" msgstr "Vänster" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Höger" @@ -5129,6 +5186,12 @@ msgstr "Alla plattor" msgid "Stats" msgstr "Statistik" +msgid "Slice" +msgstr "Bered" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Monterings retur" @@ -5153,6 +5216,9 @@ msgstr "" msgid "Outline" msgstr "Kontur" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5395,6 +5461,10 @@ msgstr "Skriv ut byggplattan" msgid "Export G-code file" msgstr "Exportera G-kod filen" +msgctxt "Verb" +msgid "Print" +msgstr "Skriv ut" + msgid "Export plate sliced file" msgstr "Exportera byggplattans beredda fil" @@ -7754,6 +7824,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Välj Nedladdnings Register" +msgid "(Latest)" +msgstr "" + +msgid "Network plug-in switched successfully." +msgstr "" + +msgid "Success" +msgstr "Lyckades" + +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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "Ladda om" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "" @@ -7809,12 +7918,6 @@ msgstr "Visa välkomstskärm" msgid "Show the splash screen during startup." msgstr "Visa välkomstskärmen under uppstart." -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 "" @@ -7845,6 +7948,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "" +msgid "Auto backup" +msgstr "Auto säkerhetskopiera" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch." + msgid "Maximum recent files" msgstr "" @@ -7863,12 +7973,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Auto säkerhetskopiera" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Säkerhetskopiera ditt projekt med jämna mellanrum för att underlätta återställning efter en tillfällig krasch." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Förinställd" @@ -7900,6 +8050,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "Funktioner" @@ -7912,18 +8068,6 @@ msgstr "" msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "" @@ -8148,19 +8292,6 @@ msgstr "" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Automatisk synkronisering av användarens förinställningar (skrivare/filament/process)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Uppdatera inbyggda förinställningar automatiskt." - -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 "" @@ -8173,6 +8304,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Uppdatera inbyggda förinställningar automatiskt." + +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 "Bambu network plug-in" msgstr "" @@ -8185,30 +8326,6 @@ msgstr "" msgid "Select the network plug-in version to use" msgstr "" -msgid "(Latest)" -msgstr "" - -msgid "Network plug-in switched successfully." -msgstr "" - -msgid "Success" -msgstr "Lyckades" - -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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Associerade filer till Orca Slicer" @@ -8255,7 +8372,16 @@ msgstr "Utvecklare" msgid "Skip AMS blacklist check" msgstr "Hoppa över kontrollen av AMS svarta lista" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8263,12 +8389,6 @@ 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 "" @@ -8295,24 +8415,6 @@ msgstr "felsök" msgid "trace" msgstr "spåra" -msgid "Network plug-in" -msgstr "" - -msgid "Reload" -msgstr "Ladda om" - -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 "Felsökning" @@ -8328,25 +8430,6 @@ msgstr "Förinställd synkronisering" msgid "Preferences sync" msgstr "Synkronisera inställningar" -msgid "View control settings" -msgstr "Kontroll inställningar" - -msgid "Rotate view" -msgstr "Rotera vy" - -msgid "Pan view" -msgstr "Panoreringsvy" - -msgid "Zoom view" -msgstr "Zoomvy" - -msgid "Other" -msgstr "Andra" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Reversera mushjulet för att zooma" - msgid "Enable SSL(MQTT)" msgstr "Aktivera SSL(MQTT)" @@ -9047,6 +9130,12 @@ msgstr "Radera denna förinställning" msgid "Search in preset" msgstr "Sök i inställning" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Klicka för att återställa alla inställningar till den senast sparade förinställningen." @@ -9331,6 +9420,18 @@ msgstr "" msgid "Print chamber temperature" msgstr "" +msgid "Chamber temperature" +msgstr "Kammarens temperatur" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Utskrifts temperatur" @@ -9650,11 +9751,21 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, c-format, boost-format -msgid "Right: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." @@ -9675,7 +9786,7 @@ msgid "Transfer or discard changes" msgstr "Överge eller Behåll ändringar" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Gammalt värde" msgid "New Value" @@ -9791,6 +9902,12 @@ msgstr "Antal extruders" msgid "Capabilities" msgstr "Förmågor" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Visa alla inställningar (inklusive inkompatibla)" @@ -11013,6 +11130,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "Skapar Skirt & Brim" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Exporterar G-kod" @@ -11809,6 +11932,23 @@ msgstr "Normal utskrift" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Standard acceleration för både normal utskrift och förflyttning förrutom första lager" +msgid "Acceleration of travel moves." +msgstr "" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² eller %" + +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 "" + msgid "Default filament profile" msgstr "Standard filament profil" @@ -11991,6 +12131,12 @@ msgstr "" msgid "Octagram Spiral" msgstr "" +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 "" + msgid "Bottom surface pattern" msgstr "Botten ytans mönster" @@ -11998,6 +12144,14 @@ msgstr "Botten ytans mönster" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Botten ytans ifyllnads linjemönster, inte bridge/brygg ifyllnad" +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 "" + msgid "Internal solid infill pattern" msgstr "Invändigt mönster för fyllning av solida ytor" @@ -12023,6 +12177,18 @@ msgstr "" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Detta ställer in tröskelvärdet för liten perimeterlängd. Standardgränsen är 0mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "" @@ -12178,21 +12344,25 @@ msgid "" "3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile." msgstr "" -msgid "Enable adaptive pressure advance for overhangs (beta)" +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." -msgstr "" - -msgid "Pressure advance for bridges" -msgstr "" - -msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\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." +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" + +msgid "" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "" msgid "Default line width if other line widths are set to 0. If expressed as a %, it will be computed over the nozzle diameter." @@ -12258,18 +12428,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12571,6 +12729,22 @@ msgstr "" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Sparsam ifyllnads densitet" @@ -12601,7 +12775,7 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12669,75 +12843,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Lateral lattice angle 2" -msgstr "" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "" - -msgid "Infill overhang angle" -msgstr "" - -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 "" - -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 "" - -msgid "0 (no open anchors)" -msgstr "0 (inga öppna ankare)" - -msgid "1000 (unlimited)" -msgstr "1000 (obegränsat)" - -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 "" - -msgid "0 (Simple connect)" -msgstr "" - -msgid "Acceleration of inner walls." -msgstr "" - -msgid "Acceleration of travel moves." -msgstr "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Acceleration av fyllning av toppytan. Att använda ett lägre värde kan förbättra ytkvaliteten" @@ -12746,12 +12851,9 @@ msgstr "Acceleration av fyllning av toppytan. Att använda ett lägre värde kan msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Acceleration av yttervägg: ett lägre värde kan förbättra kvaliteten." -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." +msgid "Acceleration of inner walls." msgstr "" -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." msgstr "Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. 100%) kommer det att beräknas baserat på standard accelerationen." @@ -12762,14 +12864,6 @@ msgstr "" msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Utskrifts acceleration för första lager. Ett lägre värde kan förbättra objektets fäste på byggplattan" -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Aktivera accel_to_decel" @@ -12864,6 +12958,17 @@ msgstr "" msgid "layer" msgstr "" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "" @@ -13348,6 +13453,69 @@ msgstr "" msgid "Probing exclude area of clumping." msgstr "" +msgid "Lateral lattice angle 1" +msgstr "" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Lateral lattice angle 2" +msgstr "" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "" + +msgid "Infill overhang angle" +msgstr "" + +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 "" + +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 "" + +msgid "0 (no open anchors)" +msgstr "0 (inga öppna ankare)" + +msgid "1000 (unlimited)" +msgstr "1000 (obegränsat)" + +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 "" + +msgid "0 (Simple connect)" +msgstr "" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14183,6 +14351,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Extra längd vid omstart" @@ -14237,6 +14417,10 @@ msgstr "Linjerad" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Tillbaka" + msgid "Random" msgstr "Slumpmässig" @@ -14589,6 +14773,9 @@ msgstr "Sprickor mindre än 2 x gap stängningsradie fylls under triangeln mesh msgid "Slicing Mode" msgstr "Berednings läge" +msgid "Other" +msgstr "Andra" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Använd ”Jämn-Udda” för 3DLabPrint flygplans modeller. Använd ”Stäng hål” för att stänga alla hål i modellen." @@ -14940,9 +15127,6 @@ msgid "" "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 "" -msgid "Chamber temperature" -msgstr "Kammarens temperatur" - 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" @@ -14951,6 +15135,17 @@ msgid "" "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 "" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Nozzel temperatur efter första lager" @@ -14996,20 +15191,6 @@ msgstr "Övre skalets tjocklek" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Antal solida övre lager ökas när tjockleken kalkyleras och övre skalet är tunnare än detta värde. Detta kan undvika att ha för tunt skal när lagerhöjden är liten. 0 betyder att den här inställningen är inaktiverad och tjockleken på det övre skalet bestäms av de övre skal lagerna" -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 "" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Förflyttnings hastighet" @@ -15234,6 +15415,14 @@ msgstr "" msgid "Rotate the polyhole every layer." msgstr "" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "" @@ -15378,9 +15567,6 @@ msgstr "" msgid "Export the objects as multiple STLs to directory." msgstr "" -msgid "Slice" -msgstr "Bered" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Bered plattorna: 0-alla plattor, i-platta i, andra-ogiltiga" @@ -17534,6 +17720,132 @@ msgstr "" msgid "Connection to printers connected via the print host failed." msgstr "Anslutningen till printrar som är anslutna via printer värden misslyckades." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -17616,6 +17928,19 @@ msgstr "" msgid "Could not connect to MKS" msgstr "Kunde inte ansluta till MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "" @@ -18367,6 +18692,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -18745,6 +19076,31 @@ msgstr "" "Undvik vridning\n" "Visste du att när du skriver ut material som är benägna att vrida, såsom ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten för vridning?" +#~ msgid "Print" +#~ msgstr "Skriv ut" + +#~ msgid "in" +#~ msgstr "i" + +#~ msgid "World coordinates" +#~ msgstr "Världskoordinater" + +#~ msgid "View control settings" +#~ msgstr "Kontroll inställningar" + +#~ msgid "Rotate view" +#~ msgstr "Rotera vy" + +#~ msgid "Pan view" +#~ msgstr "Panoreringsvy" + +#~ msgid "Zoom view" +#~ msgstr "Zoomvy" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Reversera mushjulet för att zooma" + #~ msgid "Perform" #~ msgstr "Utför" @@ -19896,10 +20252,6 @@ msgstr "" #~ msgid "Thick bridges" #~ msgstr "Tjocka bridges" -#~ msgctxt "Verb" -#~ msgid "Scale" -#~ msgstr "Skala" - #~ msgid "Z-hop when retract" #~ msgstr "Z-hopp vid retraktion" diff --git a/localization/i18n/th/OrcaSlicer_th.po b/localization/i18n/th/OrcaSlicer_th.po index 62f825f1ae..0e1b189984 100644 --- a/localization/i18n/th/OrcaSlicer_th.po +++ b/localization/i18n/th/OrcaSlicer_th.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Orca Slicer\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2026-06-19 13:40+0700\n" "Last-Translator: Icezaza\n" "Language-Team: Thai\n" @@ -324,6 +324,7 @@ msgstr "Gizmo-หมุน" msgid "Optimize orientation" msgstr "ปรับการวางแนวให้เหมาะสม" +msgctxt "Verb" msgid "Scale" msgstr "ปรับขนาด" @@ -333,8 +334,9 @@ msgstr "Gizmo-ขนาด" msgid "Error: Please close all toolbar menus first" msgstr "ข้อผิดพลาด: โปรดปิดเมนูแถบเครื่องมือทั้งหมดก่อน" +msgctxt "inches" msgid "in" -msgstr "นิ้ว" +msgstr "" msgid "mm" msgstr "มม." @@ -366,6 +368,9 @@ msgstr "อัตราส่วนการปรับขนาด" msgid "Object operations" msgstr "การทำงานกับวัตถุ" +msgid "Scale" +msgstr "ปรับขนาด" + msgid "Volume operations" msgstr "การทำงานกับวอลลุ่ม" @@ -387,26 +392,33 @@ msgstr "รีเซ็ตตำแหน่ง" msgid "Reset rotation" msgstr "รีเซ็ตการหมุน" -msgid "Object coordinates" -msgstr "พิกัดวัตถุ" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "พิกัดโลก" +msgid "Object" +msgstr "วัตถุ" -msgid "Translate(Relative)" -msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)" +msgid "Part" +msgstr "ชิ้นส่วน" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "พิกัดส่วน" +msgctxt "Noun" +msgid "Scale" +msgstr "ปรับขนาด" #. TRN - Input label. Be short as possible msgid "Size" @@ -511,12 +523,6 @@ msgstr "ช่องว่าง" msgid "Spacing" msgstr "ระยะห่าง" -msgid "Part" -msgstr "ชิ้นส่วน" - -msgid "Object" -msgstr "วัตถุ" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1693,6 +1699,25 @@ msgstr "OrcaSlicer พบข้อยกเว้นที่ไม่ได้ msgid "Untitled" msgstr "ไม่มีชื่อ" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"ตั้งแต่เวอร์ชัน 2.4.0 เป็นต้นไป OrcaSlicer จะซิงค์โปรไฟล์ผู้ใช้ผ่าน Orca Cloud แทน Bambu Cloud\n" +"\n" +"หากต้องการย้ายโปรไฟล์ที่มีอยู่ของคุณ ให้เข้าสู่ระบบ Orca Cloud แล้วระบบจะถ่ายโอนให้โดยอัตโนมัติ หากต้องการเรียนรู้เพิ่มเติมเกี่ยวกับวิธีที่ OrcaSlicer จัดเก็บและซิงค์โปรไฟล์ของคุณ หรือต้องการย้ายพรีเซ็ตด้วยตนเอง โปรดดูที่วิกิของเรา\n" +"\n" +"หากคุณไม่ได้ใช้ Bambu Cloud ในการซิงค์โปรไฟล์ การเปลี่ยนแปลงนี้จะไม่ส่งผลต่อคุณ และคุณสามารถเพิกเฉยต่อข้อความนี้ได้" + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "กำลังโหลดปลั๊กอินเครือข่ายใหม่..." @@ -1722,6 +1747,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "รันไทม์ WebView2" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "ไม่มีเส้นทางทรัพยากรหรือไม่ใช่ไดเรกทอรี: %s" @@ -1825,33 +1856,32 @@ 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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" msgstr "" -"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n" -"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n" -"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"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 "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n" -"ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n" -"ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1860,6 +1890,12 @@ msgstr "" "การบังคับส่งจะเขียนทับสำเนาบนคลาวด์ด้วยการเปลี่ยนแปลงค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ\n" "คุณต้องการดำเนินการต่อหรือไม่?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "แก้ไขความขัดแย้งการซิงค์คลาวด์" @@ -1939,8 +1975,9 @@ 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 "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2149,6 +2186,9 @@ msgstr "ออร์ก้าคิวบ์" msgid "OrcaSliced Combo" msgstr "OrcaSliced Combo" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "การทดสอบค่าความเผื่อ Orca" @@ -3527,6 +3567,7 @@ msgstr "การสอบเทียบเสร็จสิ้น โปร msgid "Save" msgstr "บันทึก" +msgctxt "Navigation" msgid "Back" msgstr "กลับ" @@ -3979,6 +4020,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "อุณหภูมิห้องพิมพ์ปัจจุบันสูงกว่าอุณหภูมิปลอดภัยของวัสดุ ซึ่งอาจทำให้วัสดุนิ่มและหัวฉีดอุดตัน อุณหภูมิปลอดภัยสูงสุดของวัสดุนี้คือ %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + msgid "" "Layer height too small\n" "It has been reset to 0.2" @@ -4871,6 +4916,7 @@ msgstr "การเปลี่ยนแปลงเครื่องมือ msgid "Color change" msgstr "เปลี่ยนสี" +msgctxt "Noun" msgid "Print" msgstr "พิมพ์" @@ -5030,11 +5076,15 @@ msgstr "หลีกเลี่ยงบริเวณการสอบเท msgid "Align to Y axis" msgstr "จัดแนวตามแกน Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "กลับ" + +msgctxt "Camera View" msgid "Left" msgstr "ซ้าย" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "ขวา" @@ -5083,6 +5133,12 @@ msgstr "ทุกแผ่น" msgid "Stats" msgstr "สถิติ" +msgid "Slice" +msgstr "สไลซ์" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "การส่งคืนการประกอบ" @@ -5107,6 +5163,9 @@ msgstr "ส่วนยื่น" msgid "Outline" msgstr "เส้นขอบ" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "มุมมองสมจริง" @@ -5348,6 +5407,10 @@ msgstr "พิมพ์ฐานพิมพ์" msgid "Export G-code file" msgstr "ส่งออกไฟล์ G-code" +msgctxt "Verb" +msgid "Print" +msgstr "พิมพ์" + msgid "Export plate sliced file" msgstr "ส่งออกไฟล์แผ่นสไลซ์บาง ๆ" @@ -7676,6 +7739,50 @@ msgstr "เลือกโฟลเดอร์สำหรับรายกา msgid "Choose Download Directory" 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 "Reload the network plug-in without restarting the application" +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำโดยไม่ต้องรีสตาร์ทแอปพลิเคชัน" + +msgid "Network plug-in reloaded successfully." +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำสำเร็จแล้ว" + +msgid "Reload" +msgstr "โหลดใหม่" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "โหลดปลั๊กอินเครือข่ายซ้ำไม่สำเร็จ กรุณารีสตาร์ทแอปพลิเคชัน" + +msgid "Reload Failed" +msgstr "โหลดใหม่ล้มเหลว" + msgid "Associate" msgstr "เชื่อมโยง" @@ -7730,12 +7837,6 @@ 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 "ใช้ปุ่มหน้าต่างทางด้านซ้าย" @@ -7766,6 +7867,12 @@ msgstr "พฤติกรรมการโหลด" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "ควรโหลดการตั้งค่าเครื่องพิมพ์/เส้นพลาสติก/กระบวนการเมื่อเปิดไฟล์ 3MF หรือไม่" +msgid "Auto backup" +msgstr "การสำรองข้อมูลอัตโนมัติ" + +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว" + msgid "Maximum recent files" msgstr "ไฟล์ล่าสุดสูงสุด" @@ -7784,11 +7891,55 @@ msgstr "แสดงตัวเลือกเมื่อนำเข้าไ msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "หากเปิดใช้งาน กล่องโต้ตอบการตั้งค่าพารามิเตอร์จะปรากฏขึ้นระหว่างการนำเข้าไฟล์ STEP" -msgid "Auto backup" -msgstr "การสำรองข้อมูลอัตโนมัติ" +msgid "STEP importing: linear deflection" +msgstr "" -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "สำรองข้อมูลโปรเจ็กต์ของคุณเป็นระยะเพื่อกู้คืนจากข้อขัดข้องเป็นครั้งคราว" +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +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 "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "พรีเซ็ต" @@ -7820,6 +7971,12 @@ msgstr "เส้นพลาสติก" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "คุณสมบัติ" @@ -7832,21 +7989,6 @@ 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 "พฤติกรรม" @@ -8091,18 +8233,6 @@ 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 "โหมดการซิงค์ฟิลาเมนต์" @@ -8115,6 +8245,15 @@ msgstr "เส้นพลาสติกและสี" msgid "Color only" 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 "Bambu network plug-in" msgstr "ปลั๊กอินเครือข่าย Bambu" @@ -8127,35 +8266,6 @@ 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" @@ -8198,8 +8308,17 @@ msgstr "นักพัฒนา" msgid "Skip AMS blacklist check" msgstr "ข้ามการตรวจสอบบัญชีดำของ AMS" -msgid "(Experimental) Keep painted feature after mesh change" -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 "Experimental Features" +msgstr "" + +msgid "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" @@ -8208,12 +8327,6 @@ 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 "อนุญาตให้จัดเก็บผิดปกติ" @@ -8242,24 +8355,6 @@ msgstr "แก้ปัญหา" msgid "trace" msgstr "ติดตาม" -msgid "Network plug-in" -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 "ดีบัก" @@ -8275,24 +8370,6 @@ 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 "Reverse scroll direction while zooming" -msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม" - msgid "Enable SSL(MQTT)" msgstr "เปิดใช้งาน SSL(MQTT)" @@ -8986,6 +9063,12 @@ msgstr "ลบค่าที่ตั้งล่วงหน้านี้" msgid "Search in preset" msgstr "ค้นหาในที่ตั้งไว้ล่วงหน้า" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "คลิกเพื่อรีเซ็ตการตั้งค่าทั้งหมดเป็นค่าที่ตั้งไว้ล่วงหน้าที่บันทึกไว้ล่าสุด" @@ -9269,6 +9352,18 @@ msgstr "อัตราการไหลและแรงดันล่วง msgid "Print chamber temperature" msgstr "อุณหภูมิห้องพิมพ์" +msgid "Chamber temperature" +msgstr "อุณหภูมิห้องพิมพ์" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "อุณหภูมิพิมพ์" @@ -9593,12 +9688,22 @@ msgid "Don't warn again for this preset" msgstr "ไม่ต้องเตือนอีกสำหรับค่าที่กำหนดล่วงหน้านี้" #, c-format, boost-format -msgid "Left: %s" -msgstr "ซ้าย: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "ขวา: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "คลิกเพื่อรีเซ็ตค่าปัจจุบันและแนบไปกับค่าส่วนกลาง" @@ -9615,7 +9720,7 @@ msgstr "การเปลี่ยนแปลงที่ไม่ได้บ msgid "Transfer or discard changes" msgstr "โอนหรือละทิ้งการเปลี่ยนแปลง" -msgid "Old value" +msgid "Old Value" msgstr "ค่าเก่า" msgid "New Value" @@ -9747,6 +9852,12 @@ msgstr "จำนวนชุดดันเส้น" msgid "Capabilities" msgstr "ความสามารถ" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "แสดงค่าที่ตั้งล่วงหน้าทั้งหมด (รวมทั้งเข้ากันไม่ได้)" @@ -10961,6 +11072,12 @@ msgstr "การหดตัวของเส้นพลาสติกจะ msgid "Generating skirt & brim" msgstr "กำลังสร้าง เส้นล้อมชิ้นงาน และ ขอบยึดชิ้นงาน" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "กำลังส่งออก G-code" @@ -11873,6 +11990,25 @@ msgstr "การพิมพ์ปกติ" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "การเร่งความเร็วเริ่มต้นของทั้งการพิมพ์และการเคลื่อนที่ตามปกติ ยกเว้นเลเยอร์เริ่มต้น" +msgid "Acceleration of travel moves." +msgstr "การเร่งความเร็วของการเดินทาง" + +msgid "First layer travel" +msgstr "การเดินทางชั้นแรก" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"ความเร่งการเคลื่อนที่ของชั้นแรก\n" +"ค่าเปอร์เซ็นต์สัมพันธ์กับการเร่งความเร็วในการเดินทาง" + +msgid "mm/s² or %" +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 "Default filament profile" msgstr "โปรไฟล์เส้นพลาสติกเริ่มต้น" @@ -12080,12 +12216,28 @@ msgstr "คอร์ดอาร์คิมีดีน" msgid "Octagram Spiral" msgstr "เกลียวแปดเหลี่ยม" +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 pattern" msgstr "รูปแบบผิวด้านล่าง" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "รูปแบบเส้นของไส้ในพื้นผิวด้านล่าง ไม่ใช่ไส้ในแบบบริดจ์" +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 "Internal solid infill pattern" msgstr "รูปแบบไส้ในของแข็งภายใน" @@ -12110,6 +12262,18 @@ msgstr "เกณฑ์ขอบเขตขนาดเล็ก" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "นี่เป็นการกำหนดเกณฑ์สำหรับความยาวเส้นรอบวงเล็กน้อย เกณฑ์เริ่มต้นคือ 0 มม." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "สั่งพิมพ์ผนัง" @@ -12294,27 +12458,26 @@ msgstr "" "2. จดบันทึกค่า PA ที่เหมาะสมที่สุดสำหรับความเร็วการไหลและความเร่งตามปริมาตรแต่ละรายการ คุณสามารถค้นหาหมายเลขโฟลว์ได้โดยเลือกโฟลว์จากรายการสีแบบเลื่อนลง และเลื่อนแถบเลื่อนแนวนอนไปเหนือเส้นรูปแบบ PA หมายเลขควรปรากฏที่ด้านล่างของหน้า ค่า PA ในอุดมคติควรลดลงตามอัตราการไหลตามปริมาตรที่สูงขึ้น หากไม่เป็นเช่นนั้น ให้ยืนยันว่าชุดดันเส้นของคุณทำงานอย่างถูกต้อง ยิ่งคุณพิมพ์ช้าลงและเร่งความเร็วน้อยลง ช่วงของค่า PA ที่ยอมรับได้ก็จะยิ่งมากขึ้นเท่านั้น หากไม่เห็นความแตกต่าง ให้ใช้ค่า PA จากการทดสอบที่เร็วกว่า\n" "3. ป้อนค่า PA, การไหล และความเร่งสามเท่าในกล่องข้อความที่นี่ และบันทึกโปรไฟล์เส้นพลาสติกของคุณ" -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "เปิดใช้งานการปรับPressure Advanceสำหรับระยะยื่น (เบต้า)" +msgid "Enable adaptive pressure advance within features (beta)" +msgstr "" 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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." msgstr "" -"เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n" -"ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง" -msgid "Pressure advance for bridges" -msgstr "แรงดันล่วงหน้า (Pressure Advance)สำหรับสะพาน" +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 หากแสดงเป็น % ระบบจะคำนวณตามเส้นผ่านศูนย์กลางของหัวฉีด" @@ -12382,18 +12545,6 @@ 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 "อุณหภูมิไล่เส้น" @@ -12698,6 +12849,22 @@ msgstr "ทิศทางไส้ในแบบทึบ" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "มุมสำหรับรูปแบบไส้ในแบบทึบ ซึ่งควบคุมจุดเริ่มต้นหรือทิศทางหลักของเส้น" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "ความหนาแน่นไส้ในแบบโปร่ง" @@ -12730,7 +12897,7 @@ msgstr "การใช้หลายบรรทัดสำหรับรู msgid "Z-buckling bias optimization (experimental)" msgstr "การปรับชดเชยการโก่งตัวตามแกน Z ให้เหมาะสม (ทดลอง)" -#, fuzzy, c-format, boost-format +#, no-c-format, no-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% ขึ้นไป ใช้เฉพาะเมื่อรูปแบบไส้ในแบบโปร่งตั้งเป็นไจรอยด์เท่านั้น" @@ -12797,92 +12964,14 @@ 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 "มุมส่วนยื่น Lightning" - -msgid "Maximum overhang angle for Lightning infill support propagation." -msgstr "มุมส่วนยื่นสูงสุดสำหรับการแพร่กระจายส่วนรองรับไส้ใน Lightning" - -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 "" -"กำหนดระดับการตัดกิ่ง Lightning ที่สั้นหรือไม่มีส่วนรองรับออก\n" -"มุมนี้จะถูกแปลงภายในเป็นระยะทางต่อชั้น" - -msgid "Straightening angle" -msgstr "มุมจัดให้ตรง" - -msgid "Maximum straightening angle used to simplify Lightning branches." -msgstr "มุมจัดให้ตรงสูงสุดที่ใช้ลดความซับซ้อนของกิ่ง Lightning" - -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 จะใช้อัลกอริทึมเดิมสำหรับการเชื่อมต่อไส้ใน ซึ่งควรให้ผลลัพธ์เดียวกับ 1000 & 0" - -msgid "0 (Simple connect)" -msgstr "0 (เชื่อมต่อแบบง่าย)" - -msgid "Acceleration of inner walls." -msgstr "การเร่งความเร็วของผนังด้านใน" - -msgid "Acceleration of travel moves." -msgstr "การเร่งความเร็วของการเดินทาง" - msgid "This is the 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 inner walls." +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%) ค่านั้นจะถูกคำนวณตามความเร่งเริ่มต้น" @@ -12893,16 +12982,6 @@ msgstr "ความเร่งของไส้ในของแข็งภ msgid "This is the printing acceleration for the first layer. Using limited acceleration 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" @@ -12992,6 +13071,17 @@ msgstr "ความเร็วพัดลมจะเพิ่มขึ้น msgid "layer" msgstr "ชั้น" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "ความเร็วพัดลมผิวสัมผัสส่วนรองรับ" @@ -13523,6 +13613,75 @@ msgstr "การตรวจวัดไม่รวมพื้นที่จ msgid "Probing exclude area of clumping." 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 "มุมส่วนยื่น Lightning" + +msgid "Maximum overhang angle for Lightning infill support propagation." +msgstr "มุมส่วนยื่นสูงสุดสำหรับการแพร่กระจายส่วนรองรับไส้ใน Lightning" + +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 "" +"กำหนดระดับการตัดกิ่ง Lightning ที่สั้นหรือไม่มีส่วนรองรับออก\n" +"มุมนี้จะถูกแปลงภายในเป็นระยะทางต่อชั้น" + +msgid "Straightening angle" +msgstr "มุมจัดให้ตรง" + +msgid "Maximum straightening angle used to simplify Lightning branches." +msgstr "มุมจัดให้ตรงสูงสุดที่ใช้ลดความซับซ้อนของกิ่ง Lightning" + +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 จะใช้อัลกอริทึมเดิมสำหรับการเชื่อมต่อไส้ใน ซึ่งควรให้ผลลัพธ์เดียวกับ 1000 & 0" + +msgid "0 (Simple connect)" +msgstr "0 (เชื่อมต่อแบบง่าย)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14387,6 +14546,18 @@ msgstr "ขับตรง" msgid "Bowden" 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 "Extra length on restart" msgstr "ความยาวพิเศษเมื่อรีสตาร์ท" @@ -14438,6 +14609,9 @@ msgstr "จัดตำแหน่ง" msgid "Aligned back" msgstr "จัดแนวกลับ" +msgid "Back" +msgstr "กลับ" + msgid "Random" msgstr "สุ่ม" @@ -14804,6 +14978,9 @@ msgstr "รอยแตกร้าวที่มีขนาดเล็กก msgid "Slicing Mode" msgstr "โหมดการแบ่งส่วน" +msgid "Other" +msgstr "อื่นๆ" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "ใช้ \"เลขคู่\" สำหรับโมเดลเครื่องบิน 3DLabPrint ใช้ \"ปิดรู\" เพื่อปิดรูทั้งหมดในโมเดล" @@ -15152,9 +15329,6 @@ msgstr "" "\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" @@ -15168,6 +15342,17 @@ msgstr "" "\n" "หากเปิดใช้งาน พารามิเตอร์นี้จะตั้งค่าตัวแปร G-code ชื่อ Chamber_temperature ซึ่งสามารถใช้เพื่อส่งอุณหภูมิห้องเพาะเลี้ยงที่ต้องการไปยังมาโครเริ่มการพิมพ์ของคุณ หรือมาโครความร้อนแช่เช่นนี้: PRINT_START (ตัวแปรอื่นๆ) CHAMBER_TEMP=[chamber_temperature] วิธีนี้อาจเป็นประโยชน์หากเครื่องพิมพ์ของคุณไม่รองรับคำสั่ง M141/M191 หรือหากคุณต้องการจัดการกับความร้อนที่แช่อยู่ในมาโครเริ่มการพิมพ์ หากไม่มีการติดตั้งเครื่องทำความร้อนในห้องที่ใช้งานอยู่" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + msgid "Nozzle temperature after the first layer" msgstr "อุณหภูมิหัวฉีดสำหรับชั้นหลังจากอันแรก" @@ -15207,22 +15392,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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 "This is the speed at which traveling is done." msgstr "ความเร็วที่ใช้ในการเคลื่อนที่แบบไม่อัดเส้น" @@ -15459,6 +15628,14 @@ msgstr "บิดรูหลายรู" msgid "Rotate the polyhole every layer." msgstr "หมุนโพลีโฮลทุกชั้น" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "ภาพขนาดย่อ G-code" @@ -15600,9 +15777,6 @@ 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, อื่นๆ-ไม่ถูกต้อง" @@ -17815,6 +17989,132 @@ msgstr "เข้าสู่ระบบ/ทดสอบ" msgid "Connection to printers connected via the print host failed." msgstr "การเชื่อมต่อกับเครื่องพิมพ์ที่เชื่อมต่อผ่านโฮสต์การพิมพ์ล้มเหลว" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "ตัวเลือกอัปโหลดคลาวด์ 3DPrinterOS" @@ -17897,6 +18197,19 @@ msgstr "การเชื่อมต่อกับ MKS ทำงานอย msgid "Could not connect to MKS" msgstr "ไม่สามารถเชื่อมต่อกับ MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "การเชื่อมต่อกับ OctoPrint ทำงานอย่างถูกต้อง" @@ -18646,6 +18959,12 @@ msgstr "จำนวนด้านสามเหลี่ยม" msgid "Calculating, please wait..." msgstr "กำลังคำนวณ โปรดรอสักครู่..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "ชุดค่าที่ตั้งไว้ล่วงหน้า" @@ -19047,6 +19366,112 @@ msgstr "" "หลีกเลี่ยงการบิดเบี้ยว\n" "คุณรู้หรือไม่ว่าเมื่อพิมพ์วัสดุที่มีแนวโน้มที่จะเกิดการบิดเบี้ยว เช่น ABS การเพิ่มอุณหภูมิฐานพิมพ์อย่างเหมาะสมสามารถลดความน่าจะเป็นของการบิดเบี้ยวได้" +#~ msgid "Print" +#~ msgstr "พิมพ์" + +#~ msgid "in" +#~ msgstr "นิ้ว" + +#~ msgid "Object coordinates" +#~ msgstr "พิกัดวัตถุ" + +#~ msgid "World coordinates" +#~ msgstr "พิกัดโลก" + +#~ msgid "Translate(Relative)" +#~ msgstr "เลื่อนตำแหน่ง (แบบสัมพันธ์)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "หมุน (สัมบูรณ์)" + +#~ msgid "Part coordinates" +#~ msgstr "พิกัดส่วน" + +#~ 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 "" +#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้านี้มีเวอร์ชันใหม่กว่าใน Orca Cloud\n" +#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" + +#~ 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 "" +#~ "ความขัดแย้งในการซิงก์ Cloud: มีค่าที่ตั้งไว้ล่วงหน้าชื่อนี้อยู่ใน Orca Cloud แล้ว\n" +#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "ความขัดแย้งในการซิงก์ Cloud: ค่าที่ตั้งไว้ล่วงหน้าชื่อเดียวกันเคยถูกลบจากคลาวด์แล้ว\n" +#~ "ลบจะลบค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "ความขัดแย้งในการซิงก์ Cloud: พบความขัดแย้งของค่าที่ตั้งไว้ล่วงหน้าที่ไม่คาดคิดหรือระบุไม่ได้\n" +#~ "ดึงข้อมูลจะดาวน์โหลดสำเนาจากคลาวด์ บังคับส่งจะเขียนทับด้วยค่าที่ตั้งไว้ล่วงหน้าในเครื่องของคุณ" + +#~ 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) โปรดลดขนาดที่กำหนดไว้ล่วงหน้าโดยการลบการกำหนดค่าที่กำหนดเองออกหรือใช้เฉพาะในเครื่องเท่านั้น" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "เปิดใช้งาน PA แบบปรับตัวสำหรับส่วนยื่นและเมื่ออัตราการไหลเปลี่ยนภายในฟีเจอร์เดียวกัน เป็นตัวเลือกทดลอง หากโปรไฟล์ PA ไม่แม่นยำ จะทำให้ผิวด้านนอกไม่สม่ำเสมอก่อนและหลังส่วนยื่น\n" +#~ "ไม่รองรับเครื่องพิมพ์ Prusa เพราะจะหยุดชั่วคราวเพื่อประมวลผลการเปลี่ยน PA ทำให้เกิดความล่าช้าและข้อบกพร่อง" + +#~ 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 "Filament Sync Options" +#~ msgstr "ตัวเลือกการซิงค์ฟิลาเมนต์" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(ทดลอง) เก็บคุณสมบัติการทาสีไว้หลังจากเปลี่ยนตาข่าย" + +#~ msgid "Network plug-in" +#~ msgstr "ปลั๊กอินเครือข่าย" + +#~ msgid "View control settings" +#~ msgstr "ดูการตั้งค่าการควบคุม" + +#~ msgid "Rotate view" +#~ msgstr "หมุนมุมมอง" + +#~ msgid "Pan view" +#~ msgstr "แพนวิว" + +#~ msgid "Zoom view" +#~ msgstr "ซูมดู" + +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "ล้อเมาส์จะกลับด้านเมื่อซูม" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "ซ้าย: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "ขวา: %s" + #~ msgid "This is the height of the first layer. Making the first layer height thicker can improve build plate adhesion." #~ msgstr "ความสูงของชั้นแรก การทำให้ชั้นแรกหนาขึ้นสามารถปรับปรุงการยึดเกาะของแผ่นรองพื้นได้" diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po index a20151e359..163a45e2f4 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2026-04-08 23:59+0300\n" "Last-Translator: GlauTech\n" "Language-Team: \n" @@ -327,6 +327,7 @@ msgstr "Gizmo-Döndür" msgid "Optimize orientation" msgstr "Yönü optimize edin" +msgctxt "Verb" msgid "Scale" msgstr "Ölçeklendir" @@ -336,8 +337,9 @@ msgstr "Gizmo-Ölçeklendir" msgid "Error: Please close all toolbar menus first" msgstr "Hata: Lütfen önce tüm araç çubuğu menülerini kapatın" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -370,6 +372,9 @@ msgstr "Ölçek oranları" msgid "Object operations" msgstr "Nesne İşlemleri" +msgid "Scale" +msgstr "Ölçeklendir" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Hacim İşlemleri" @@ -397,26 +402,33 @@ msgstr "Konumu Sıfırla" msgid "Reset rotation" msgstr "Döndürmeyi sıfırla" -msgid "Object coordinates" -msgstr "Nesne koordinatları" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Dünya koordinatları" +msgid "Object" +msgstr "Nesne" -msgid "Translate(Relative)" -msgstr "Çevir(Göreceli)" +msgid "Part" +msgstr "Parça" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Döndürme aracını açtığınızda mevcut döndürme değerini sıfırlayın." -msgid "Rotate (absolute)" -msgstr "Döndür (mutlak)" - msgid "Reset current rotation to real zeros." msgstr "Mevcut dönüşü gerçek sıfırlara sıfırla." -msgid "Part coordinates" -msgstr "Parça koordinatları" +msgctxt "Noun" +msgid "Scale" +msgstr "Ölçeklendir" #. TRN - Input label. Be short as possible msgid "Size" @@ -521,12 +533,6 @@ msgstr "Boşluk" msgid "Spacing" msgstr "Boşluk" -msgid "Part" -msgstr "Parça" - -msgid "Object" -msgstr "Nesne" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1712,6 +1718,25 @@ msgstr "OrcaSlicer'da işlenmeyen bir istisna oluştu: %1%" msgid "Untitled" msgstr "İsimsiz" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"OrcaSlicer, 2.4.0 sürümünden itibaren kullanıcı profillerini Bambu Cloud yerine Orca Cloud üzerinden senkronize eder.\n" +"\n" +"Mevcut profillerinizi taşımak için Orca Cloud'da oturum açın; profilleriniz otomatik olarak aktarılacaktır. OrcaSlicer'ın profillerinizi nasıl depolayıp senkronize ettiği hakkında daha fazla bilgi edinmek veya ön ayarlarınızı elle taşımak için wiki'mize göz atın.\n" +"\n" +"Profilleri senkronize etmek için Bambu Cloud kullanmadıysanız bu değişiklik sizi etkilemez ve bu mesajı güvenle yoksayabilirsiniz." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "Ağ eklentisi yeniden yükleniyor..." @@ -1741,6 +1766,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Çalışma Zamanı" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Kaynak yolu mevcut değil veya bir dizin değil: %s" @@ -1846,23 +1877,30 @@ msgstr "Projeyi Aç" 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'ın sürümü çok düşük ve normal şekilde kullanılabilmesi için en son sürüme güncellenmesi gerekiyor." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1871,6 +1909,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1945,7 +1989,8 @@ msgstr "Bulutta önbelleğe alınan kullanıcı ön ayarlarının sayısı üst msgid "Sync user presets" msgstr "Kullanıcı ön ayarlarını senkronize edin" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2167,6 +2212,9 @@ msgstr "Orca Küpü" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca tolerans testi" @@ -3604,7 +3652,7 @@ msgstr "Kalibrasyon tamamlandı. Lütfen sıcak yatağınızdaki en düzgün eks msgid "Save" msgstr "Kaydet" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Arka" @@ -4079,6 +4127,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Mevcut hazne sıcaklığı malzemenin güvenli sıcaklığından yüksektir, malzemenin yumuşamasına ve tıkanmasına neden olabilir Malzeme için maksimum güvenli sıcaklık %d'dir" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4983,6 +5035,7 @@ msgstr "Takım değişiklikleri" msgid "Color change" msgstr "Renk değişimi" +msgctxt "Noun" msgid "Print" msgstr "Yazdır" @@ -5146,11 +5199,15 @@ msgstr "Ekstrüzyon kalibrasyon bölgesinden kaçın" msgid "Align to Y axis" msgstr "Y eksenine hizala" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Arka" + +msgctxt "Camera View" msgid "Left" msgstr "Sol" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Sağ" @@ -5199,6 +5256,12 @@ msgstr "Tüm Plakalar" msgid "Stats" msgstr "İstatistikler" +msgid "Slice" +msgstr "Dilimle" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Montaj İptali" @@ -5223,6 +5286,9 @@ msgstr "Çıkıntılar" msgid "Outline" msgstr "Taslak" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5469,6 +5535,10 @@ msgstr "Plakayı Yazdır" msgid "Export G-code file" msgstr "G-kod dosyasını dışa aktar" +msgctxt "Verb" +msgid "Print" +msgstr "Yazdır" + msgid "Export plate sliced file" msgstr "Dilimlenmiş plaka dosyasını dışa aktar" @@ -7851,6 +7921,50 @@ msgstr "İndirilen öğeler için klasör seçin" msgid "Choose Download Directory" msgstr "İndirme Dizini seçin" +msgid "(Latest)" +msgstr "(En sonuncu)" + +msgid "Network plug-in switched successfully." +msgstr "Ağ eklentisi başarıyla değiştirildi." + +msgid "Success" +msgstr "Başarı" + +msgid "Failed to load network plug-in. Please restart the application." +msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın." + +#, 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 "" +"Ağ eklentisi %s sürümünü seçtiniz.\n" +"\n" +"Bu sürümü şimdi indirip yüklemek ister misiniz?\n" +"\n" +"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir." + +msgid "Download Network Plug-in" +msgstr "Ağ Eklentisini İndirin" + +msgid "Reload the network plug-in without restarting the application" +msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin" + +msgid "Network plug-in reloaded successfully." +msgstr "Ağ eklentisi başarıyla yeniden yüklendi." + +msgid "Reload" +msgstr "Yeniden yükle" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın." + +msgid "Reload Failed" +msgstr "Yeniden Yükleme Başarısız" + msgid "Associate" msgstr "Ortak" @@ -7906,12 +8020,6 @@ msgstr "Açılış ekranını göster" msgid "Show the splash screen during startup." msgstr "Açılış sırasında açılış ekranını göster." -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 "" @@ -7942,6 +8050,13 @@ msgstr "Yükleme davranışı" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Bir .3mf açılırken yazıcı/filament/işlem ayarları yüklenmeli mi?" +msgid "Auto backup" +msgstr "Otomatik yedekleme" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin." + msgid "Maximum recent files" msgstr "Son kullanılan dosyaların maksimum sayısı" @@ -7960,12 +8075,55 @@ msgstr "STEP dosyasını içe aktarırken seçenekleri göster" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Etkinleştirilirse, STEP dosyası içe aktarılırken bir parametre ayarları iletişim kutusu görüntülenir." -msgid "Auto backup" -msgstr "Otomatik yedekleme" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Ara sıra meydana gelen çökmelerden sonra geri yüklemek için projenizi düzenli aralıklarla yedekleyin." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "Draco dışa aktarımı için kalite düzeyi" + +msgid "bits" +msgstr "bitler" + +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 formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n" +"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n" +"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur." + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Ön ayar" @@ -7997,6 +8155,12 @@ msgstr "filamentler" msgid "Optimizes filament area maximum height by chosen filament count." msgstr "Seçilen filaman sayısına göre filaman alanı maksimum yüksekliğini optimize eder." +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 "Features" msgstr "Özellikler" @@ -8009,21 +8173,6 @@ msgstr "Bu seçenek etkinleştirildiğinde, aynı anda birden fazla cihaza bir g msgid "Pop up to select filament grouping mode" msgstr "Filament gruplama modunu seçmek için açılır pencere" -msgid "Quality level for Draco export" -msgstr "Draco dışa aktarımı için kalite düzeyi" - -msgid "bits" -msgstr "bitler" - -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 formatına sıkıştırılırken kullanılan niceleme bit derinliğini kontrol eder.\n" -"0 = kayıpsız sıkıştırma (geometri tam hassasiyetle korunur). Geçerli kayıplı değerler 8 ile 30 arasında değişir.\n" -"Daha düşük değerler daha küçük dosyalar oluşturur ancak daha fazla geometrik ayrıntıyı kaybeder; daha yüksek değerler, daha büyük dosyalar pahasına daha fazla ayrıntıyı korur." - msgid "Behaviour" msgstr "Davranış" @@ -8251,19 +8400,6 @@ msgstr "Yalnızca kararlı güncellemeleri kontrol edin" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin." - -msgid "Use encrypted file for token storage" -msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan" - -msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" -msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)" - -msgid "Filament Sync Options" -msgstr "Filament Senkronizasyon Seçenekleri" - msgid "Filament sync mode" msgstr "Filament senkronizasyon modu" @@ -8276,6 +8412,16 @@ msgstr "Filament ve Renk" msgid "Color only" msgstr "Yalnızca renk" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Yerleşik Ön Ayarları otomatik olarak güncelleyin." + +msgid "Use encrypted file for token storage" +msgstr "Belirteç depolaması için şifrelenmiş dosyayı kullan" + +msgid "Store authentication tokens in an encrypted file instead of the system keychain. (Requires restart)" +msgstr "Kimlik doğrulama belirteçlerini sistem anahtarlığı yerine şifrelenmiş bir dosyada saklayın. (Yeniden başlatma gerektirir)" + msgid "Bambu network plug-in" msgstr "" @@ -8288,35 +8434,6 @@ msgstr "Ağ eklentisi sürümü" msgid "Select the network plug-in version to use" msgstr "Kullanılacak ağ eklentisi sürümünü seçin" -msgid "(Latest)" -msgstr "(En sonuncu)" - -msgid "Network plug-in switched successfully." -msgstr "Ağ eklentisi başarıyla değiştirildi." - -msgid "Success" -msgstr "Başarı" - -msgid "Failed to load network plug-in. Please restart the application." -msgstr "Ağ eklentisi yüklenemedi. Lütfen uygulamayı yeniden başlatın." - -#, 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 "" -"Ağ eklentisi %s sürümünü seçtiniz.\n" -"\n" -"Bu sürümü şimdi indirip yüklemek ister misiniz?\n" -"\n" -"Not: Uygulamanın kurulumdan sonra yeniden başlatılması gerekebilir." - -msgid "Download Network Plug-in" -msgstr "Ağ Eklentisini İndirin" - msgid "Associate files to OrcaSlicer" msgstr "Dosyaları OrcaSlicer ile ilişkilendirin" @@ -8362,7 +8479,16 @@ msgstr "Geliştirici" msgid "Skip AMS blacklist check" msgstr "AMS kara liste kontrolünü atla" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8370,12 +8496,6 @@ 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" @@ -8404,24 +8524,6 @@ msgstr "hata ayıklama" msgid "trace" msgstr "iz" -msgid "Network plug-in" -msgstr "Ağ eklentisi" - -msgid "Reload" -msgstr "Yeniden yükle" - -msgid "Reload the network plug-in without restarting the application" -msgstr "Uygulamayı yeniden başlatmadan ağ eklentisini yeniden yükleyin" - -msgid "Network plug-in reloaded successfully." -msgstr "Ağ eklentisi başarıyla yeniden yüklendi." - -msgid "Failed to reload network plug-in. Please restart the application." -msgstr "Ağ eklentisi yeniden yüklenemedi. Lütfen uygulamayı yeniden başlatın." - -msgid "Reload Failed" -msgstr "Yeniden Yükleme Başarısız" - msgid "Debug" msgstr "Hata ayıklama" @@ -8437,25 +8539,6 @@ msgstr "Ön ayar senkronizasyonu" msgid "Preferences sync" msgstr "Tercihler senkronizasyonu" -msgid "View control settings" -msgstr "Kontrol ayarlarını görüntüle" - -msgid "Rotate view" -msgstr "Görüntüyü döndür" - -msgid "Pan view" -msgstr "Pan Görünümü" - -msgid "Zoom view" -msgstr "Zoom Görünümü" - -msgid "Other" -msgstr "Diğer" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor" - msgid "Enable SSL(MQTT)" msgstr "SSL'yi etkinleştir(MQTT)" @@ -9164,6 +9247,12 @@ msgstr "Bu ön ayarı sil" msgid "Search in preset" msgstr "Ön ayarda ara" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Tüm ayarları en son kaydedilen ön ayara sıfırlamak için tıklayın." @@ -9456,6 +9545,18 @@ msgstr "Akış Oranı Ve Basınç İlerlemesi" msgid "Print chamber temperature" msgstr "Baskı Odası Sıcaklığı" +msgid "Chamber temperature" +msgstr "Bölme sıcaklığı" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Yazdırma Sıcaklığı" @@ -9778,12 +9879,22 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" -msgstr "Sol: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "Sağ: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "Geçerli değeri sıfırlamak ve genel değere eklemek için tıklayın." @@ -9803,7 +9914,7 @@ msgid "Transfer or discard changes" msgstr "Değişiklikleri Çıkart veya Sakla" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Eski Değer" msgid "New Value" @@ -9925,6 +10036,12 @@ msgstr "Ekstruder sayısı" msgid "Capabilities" msgstr "Yetenekler" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Tüm ön ayarları göster (uyumsuz olanlar dahil)" @@ -11172,6 +11289,12 @@ msgstr "Filament büzülmesi kullanılmayacaktır çünkü kullanılan filamentl msgid "Generating skirt & brim" msgstr "Etek ve kenar oluşturma" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "G kodu dışa aktarılıyor" @@ -12043,6 +12166,23 @@ msgstr "Normal baskı" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "İlk katman dışında hem normal yazdırmanın hem de ilerlemenin varsayılan ivmesi." +msgid "Acceleration of travel moves." +msgstr "Seyahat hareketlerinin hızlandırılması." + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² veya %" + +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 "Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), dış duvar ivmesine göre hesaplanacaktır." + msgid "Default filament profile" msgstr "Varsayılan filament profili" @@ -12249,6 +12389,12 @@ msgstr "Arşimet akorları" msgid "Octagram Spiral" msgstr "Sekizgen spiral" +msgid "Top surface density" +msgstr "Üst yüzey yoğunluğu" + +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 "Üst yüzey katmanının yoğunluğu. %100 değeri, tamamen sağlam ve pürüzsüz bir üst katman oluşturur. Bu değerin düşürülmesi, seçilen üst yüzey desenine göre dokulu bir üst yüzey elde edilmesini sağlar. %0 değeri ise yalnızca üst katmandaki duvarların oluşturulmasını sağlar. Estetik veya işlevsel amaçlar için tasarlanmıştır, aşırı ekstrüzyon gibi sorunları gidermek için değildir." + msgid "Bottom surface pattern" msgstr "Alt yüzey deseni" @@ -12256,6 +12402,16 @@ msgstr "Alt yüzey deseni" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Köprü dolgusu değil, alt yüzey dolgusunun çizgi deseni." +msgid "Bottom surface density" +msgstr "Alt yüzey yoğunluğu" + +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 "" +"Alt yüzey katmanının yoğunluğu. Estetik veya işlevsel amaçlar için tasarlanmıştır, aşırı ekstrüzyon gibi sorunları gidermek için değildir.\n" +"UYARI: Bu değerin düşürülmesi, yatak yapışmasını olumsuz etkileyebilir." + msgid "Internal solid infill pattern" msgstr "İç katı dolgu deseni" @@ -12281,6 +12437,18 @@ msgstr "Küçük çevre (perimeter) eşiği" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Bu, küçük çevre uzunluğu için eşiği belirler. Varsayılan eşik 0 mm'dir." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Duvar baskı sırası" @@ -12464,25 +12632,26 @@ msgstr "" "2. Her hacimsel akış hızı ve ivme için en uygun PA değerini not edin. Renk şeması açılır menüsünden akışı seçerek ve yatay kaydırıcıyı PA desen çizgileri üzerinde hareket ettirerek akış numarasını bulabilirsiniz. Numara sayfanın altında görünmelidir. İdeal PA değeri hacimsel akış ne kadar yüksek olursa o kadar azalmalıdır. Değilse, ekstruderinizin doğru şekilde çalıştığını doğrulayın. Ne kadar yavaş ve daha az ivmeyle yazdırırsanız, kabul edilebilir PA değerleri aralığı o kadar geniş olur. Hiçbir fark görünmüyorsa, daha hızlı olan testteki PA değerini kullanın.\n" "3. Buradaki metin kutusuna PA değerleri, Akış ve Hızlanma üçlüsünü girin ve filament profilinizi kaydedin." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Köprüler için basınç ilerlemesi" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0’a ayarlayın.\n" -"\n" -" Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur." 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 "Diğer çizgi genişlikleri 0'a ayarlanmışsa varsayılan çizgi genişliği. % olarak ifade edilirse nozul çapı üzerinden hesaplanacaktır." @@ -12553,18 +12722,6 @@ msgstr "Yıkama İçin Otomatik" msgid "Auto For Match" msgstr "Otomatik Maç İçin" -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 "" - msgid "Flush temperature" msgstr "Yıkama sıcaklığı" @@ -12877,6 +13034,22 @@ msgstr "Katı dolgu yönü" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Hattın başlangıcını veya ana yönünü kontrol eden katı dolgu deseni açısı." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Dolgu yoğunluğu" @@ -12907,7 +13080,7 @@ msgstr "Dolgu deseni tarafından destekleniyorsa, dolgu deseni için birden fazl msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12975,79 +13148,6 @@ msgstr "Tpms-fk" msgid "Gyroid" msgstr "Jiroid" -msgid "Lateral lattice angle 1" -msgstr "Kafes açısı 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "İlk 2 boyutlu kafes elemanları grubunun Z yönündeki açısı. Sıfır dikeydir." - -msgid "Lateral lattice angle 2" -msgstr "Kafes açısı 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "İkinci 2 boyutlu kafes elemanları grubunun Z yönündeki açısı. Sıfır dikeydir." - -msgid "Infill overhang angle" -msgstr "Dolgu çıkıntı açısı" - -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" - -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 "" -"Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle bir çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre segmentine bağlanır ve alınan çevre segmentinin uzunluğu bu parametreyle sınırlıdır, ancak çapa_uzunluk_max'tan uzun olamaz.\n" -"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için bu parametreyi sıfıra ayarlayın." - -msgid "0 (no open anchors)" -msgstr "0 (açık bağlantı yok)" - -msgid "1000 (unlimited)" -msgstr "1000 (sınırsız)" - -msgid "Maximum length of the infill anchor" -msgstr "Dolgu maksimum uzunluk" - -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 "" -"Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre segmenti bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine bağlanır ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır ancak bu parametreden daha uzun olamaz.\n" -"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 ve 0 ile aynı sonucu oluşturmalıdır." - -msgid "0 (Simple connect)" -msgstr "0 (Basit bağlantı)" - -msgid "Acceleration of inner walls." -msgstr "İç duvarların hızlandırılması." - -msgid "Acceleration of travel moves." -msgstr "Seyahat hareketlerinin hızlandırılması." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin kullanılması üst yüzey kalitesini iyileştirebilir." @@ -13056,11 +13156,8 @@ msgstr "Üst yüzey dolgusunun hızlandırılması. Daha düşük bir değerin k msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Dış duvarın hızlanması. Daha düşük bir değer kullanmak kaliteyi artırabilir." -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 "Köprülerin hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %50), dış duvar ivmesine göre hesaplanacaktır." - -msgid "mm/s² or %" -msgstr "mm/s² veya %" +msgid "Acceleration of inner walls." +msgstr "İç duvarların hızlandırılması." 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 "Seyrek dolgunun hızlandırılması. Değer yüzde olarak ifade edilirse (örn. %100), varsayılan ivmeye göre hesaplanacaktır." @@ -13072,14 +13169,6 @@ msgstr "İç katı dolgunun hızlandırılması. Değer yüzde olarak ifade edil msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Başlangıç katmanının hızlandırılması. Daha düşük bir değerin kullanılması baskı plakası yapışkanlığını iyileştirebilir." -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Accel_to_decel'i etkinleştir" @@ -13174,6 +13263,17 @@ msgstr "Fan hızı, \"close_fan_the_first_x_layers\" katmanında sıfırdan \"fu msgid "layer" msgstr "katman" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Destekler için fan hızı" @@ -13695,6 +13795,73 @@ msgstr "Sondalama topaklanma alanını hariç tutar" msgid "Probing exclude area of clumping." msgstr "Sondalama, topaklanma alanını hariç tutar." +msgid "Lateral lattice angle 1" +msgstr "Kafes açısı 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "İlk 2 boyutlu kafes elemanları grubunun Z yönündeki açısı. Sıfır dikeydir." + +msgid "Lateral lattice angle 2" +msgstr "Kafes açısı 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "İkinci 2 boyutlu kafes elemanları grubunun Z yönündeki açısı. Sıfır dikeydir." + +msgid "Infill overhang angle" +msgstr "Dolgu çıkıntı açısı" + +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" + +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 "" +"Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre segmentine bağlamaya çalışıyor. infill_anchor_max'tan daha kısa böyle bir çevre segmenti bulunamazsa, dolgu hattı yalnızca bir taraftaki bir çevre segmentine bağlanır ve alınan çevre segmentinin uzunluğu bu parametreyle sınırlıdır, ancak çapa_uzunluk_max'tan uzun olamaz.\n" +"Tek bir dolgu hattına bağlı sabitleme çevrelerini devre dışı bırakmak için bu parametreyi sıfıra ayarlayın." + +msgid "0 (no open anchors)" +msgstr "0 (açık bağlantı yok)" + +msgid "1000 (unlimited)" +msgstr "1000 (sınırsız)" + +msgid "Maximum length of the infill anchor" +msgstr "Dolgu maksimum uzunluk" + +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 "" +"Bir dolgu hattını, ek bir çevrenin kısa bir bölümü ile bir iç çevreye bağlayın. Yüzde olarak ifade edilirse (örnek: %15) dolgu ekstrüzyon genişliği üzerinden hesaplanır. Orca Slicer iki yakın dolgu hattını kısa bir çevre segmentine bağlamaya çalışıyor. Bu parametreden daha kısa bir çevre segmenti bulunamazsa, dolgu hattı sadece bir kenardaki bir çevre segmentine bağlanır ve alınan çevre segmentinin uzunluğu infill_anchor ile sınırlıdır ancak bu parametreden daha uzun olamaz.\n" +"0'a ayarlanırsa dolgu bağlantısı için eski algoritma kullanılacaktır; 1000 ve 0 ile aynı sonucu oluşturmalıdır." + +msgid "0 (Simple connect)" +msgstr "0 (Basit bağlantı)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14560,6 +14727,18 @@ msgstr "Doğrudan Tahrik" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Yeniden başlatma sırasında ekstra uzunluk" @@ -14614,6 +14793,10 @@ msgstr "Hizalı" msgid "Aligned back" msgstr "Arkaya hizalı" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Arka" + msgid "Random" msgstr "Rastgele" @@ -14983,6 +15166,9 @@ msgstr "Üçgen mesh dilimleme sırasında 2x boşluk kapatma yarıçapından k msgid "Slicing Mode" msgstr "Dilimleme modu" +msgid "Other" +msgstr "Diğer" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "3DLabPrint uçak modelleri için \"Çift-tek\" seçeneğini kullanın. Modeldeki tüm delikleri kapatmak için \"Delikleri kapat\"ı kullanın." @@ -15348,9 +15534,6 @@ msgstr "" "\n" "Bu seçenek, M191 ve M141 komutlarını makrolar aracılığıyla veya yerel olarak destekleyen bellenime dayanır ve genellikle aktif bir oda ısıtıcısı kurulduğunda kullanılır." -msgid "Chamber temperature" -msgstr "Bölme sıcaklığı" - 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" @@ -15364,6 +15547,17 @@ msgstr "" "\n" "Etkinleştirilirse, bu parametre aynı zamanda istenen oda sıcaklığını yazdırma başlatma makronuza veya şuna benzer bir ısı emme makrosuna iletmek için kullanılabilecek Chamber_temperature adlı bir gcode değişkenini de ayarlar: PRINT_START (diğer değişkenler) CHAMBER_TEMP=[chamber_temperature]. Yazıcınız M141/M191 komutlarını desteklemiyorsa veya aktif oda ısıtıcısı takılı değilse yazdırma başlatma makrosunda ısı bekletme işlemini gerçekleştirmek istiyorsanız bu yararlı olabilir." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "İlk katmandan sonraki katmanlar için nozul sıcaklığı." @@ -15408,22 +15602,6 @@ msgstr "Üst katman kalınlığı" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Üst kabuk katmanları tarafından hesaplanan kalınlık bu değerden daha ince ise dilimleme sırasında üst katı katmanların sayısı artırılır. Bu, katman yüksekliği küçük olduğunda kabuğun çok ince olmasını önleyebilir. 0, bu ayarın devre dışı olduğu ve üst kabuğun kalınlığının kesinlikle üst kabuk katmanları tarafından belirlendiği anlamına gelir." -msgid "Top surface density" -msgstr "Üst yüzey yoğunluğu" - -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 "Üst yüzey katmanının yoğunluğu. %100 değeri, tamamen sağlam ve pürüzsüz bir üst katman oluşturur. Bu değerin düşürülmesi, seçilen üst yüzey desenine göre dokulu bir üst yüzey elde edilmesini sağlar. %0 değeri ise yalnızca üst katmandaki duvarların oluşturulmasını sağlar. Estetik veya işlevsel amaçlar için tasarlanmıştır, aşırı ekstrüzyon gibi sorunları gidermek için değildir." - -msgid "Bottom surface density" -msgstr "Alt yüzey yoğunluğu" - -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 "" -"Alt yüzey katmanının yoğunluğu. Estetik veya işlevsel amaçlar için tasarlanmıştır, aşırı ekstrüzyon gibi sorunları gidermek için değildir.\n" -"UYARI: Bu değerin düşürülmesi, yatak yapışmasını olumsuz etkileyebilir." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Daha hızlı ve ekstrüzyonsuz seyahat hızı." @@ -15671,6 +15849,14 @@ msgstr "Çokgen delik eğrisi" msgid "Rotate the polyhole every layer." msgstr "Çokgeni her katmanda döndürün." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-code önizleme resimleri" @@ -15816,9 +16002,6 @@ msgstr "Birden çok STL’yi dışa aktar" msgid "Export the objects as multiple STLs to directory." msgstr "Nesneleri birden fazla STL olarak dizine aktarın." -msgid "Slice" -msgstr "Dilimle" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Plakaları dilimleyin: 0-tüm plakalar, i-plaka i, diğerleri-geçersiz" @@ -18065,6 +18248,132 @@ msgstr "Giriş/Test" msgid "Connection to printers connected via the print host failed." msgstr "Yazdırma ana bilgisayarı aracılığıyla bağlanan yazıcılara bağlantı başarısız oldu." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18147,6 +18456,19 @@ msgstr "MKS'ye bağlantı düzgün çalışıyor." msgid "Could not connect to MKS" msgstr "MKS'ye bağlanılamadı" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "OctoPrint'e bağlantı düzgün çalışıyor." @@ -18898,6 +19220,12 @@ msgstr "Üçgen yüzeylerin sayısı" msgid "Calculating, please wait..." msgstr "Hesaplanıyor, lütfen bekleyin..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19303,6 +19631,72 @@ msgstr "" "Eğilmeyi önleyin\n" "ABS gibi bükülmeye yatkın malzemelere baskı yaparken, ısıtma yatağı sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını azaltabileceğini biliyor muydunuz?" +#~ msgid "Print" +#~ msgstr "Yazdır" + +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Nesne koordinatları" + +#~ msgid "World coordinates" +#~ msgstr "Dünya koordinatları" + +#~ msgid "Translate(Relative)" +#~ msgstr "Çevir(Göreceli)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Döndür (mutlak)" + +#~ msgid "Part coordinates" +#~ msgstr "Parça koordinatları" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Çıkıntılar için uyarlanabilir basınç ilerlemesini etkinleştirin (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Köprüler için basınç ilerlemesi" + +#~ 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 "" +#~ "Köprüler için basınç ilerleme değeri. Devre dışı bırakmak için 0’a ayarlayın.\n" +#~ "\n" +#~ " Köprüleri yazdırırken daha düşük bir basınç değeri, köprülerden hemen sonra hafif ekstrüzyon görünümünün azaltılmasına yardımcı olur. Bunun nedeni, havada yazdırma sırasında nozuldaki basınç düşüşüdür ve daha düşük bir basınç, bunu önlemeye yardımcı olur." + +#~ msgid "Filament Sync Options" +#~ msgstr "Filament Senkronizasyon Seçenekleri" + +#~ msgid "Network plug-in" +#~ msgstr "Ağ eklentisi" + +#~ msgid "View control settings" +#~ msgstr "Kontrol ayarlarını görüntüle" + +#~ msgid "Rotate view" +#~ msgstr "Görüntüyü döndür" + +#~ msgid "Pan view" +#~ msgstr "Pan Görünümü" + +#~ msgid "Zoom view" +#~ msgstr "Zoom Görünümü" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Yakınlaştırma sırasında fare tekerleği ters dönüyor" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "Sol: %s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "Sağ: %s" + #~ msgid "Enable network plug-in" #~ msgstr "Ağ eklentisini etkinleştir" diff --git a/localization/i18n/uk/OrcaSlicer_uk.po b/localization/i18n/uk/OrcaSlicer_uk.po index 7a758bc090..7de6f123b9 100644 --- a/localization/i18n/uk/OrcaSlicer_uk.po +++ b/localization/i18n/uk/OrcaSlicer_uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: orcaslicerua\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2026-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2025-03-07 09:30+0200\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" @@ -332,6 +332,7 @@ msgstr "Gizmo обертання" msgid "Optimize orientation" msgstr "Оптимізувати орієнтацію" +msgctxt "Verb" msgid "Scale" msgstr "Масштаб" @@ -341,8 +342,9 @@ msgstr "Gizmo масштабування" msgid "Error: Please close all toolbar menus first" msgstr "Помилка: будь ласка, спочатку закрийте все меню панелі інструментів" +msgctxt "inches" msgid "in" -msgstr "в" +msgstr "" msgid "mm" msgstr "мм" @@ -375,6 +377,9 @@ msgstr "Коефіцієнти масштабування" msgid "Object operations" msgstr "Операції з об'єктами" +msgid "Scale" +msgstr "Масштаб" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Операції з об’ємом" @@ -402,26 +407,33 @@ msgstr "Скинути позицію" msgid "Reset rotation" msgstr "Скинути обертання" -msgid "Object coordinates" -msgstr "Координати об'єкта" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Глобальні координати" +msgid "Object" +msgstr "Об'єкт" -msgid "Translate(Relative)" +msgid "Part" +msgstr "Частина" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" 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 "Координати частини" +msgctxt "Noun" +msgid "Scale" +msgstr "Масштаб" #. TRN - Input label. Be short as possible msgid "Size" @@ -526,12 +538,6 @@ msgstr "Проміжок" msgid "Spacing" msgstr "Відстань" -msgid "Part" -msgstr "Частина" - -msgid "Object" -msgstr "Об'єкт" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1721,6 +1727,25 @@ msgstr "Невідома помилка OrcaSlicer : %1%" msgid "Untitled" msgstr "Без назви" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Починаючи з версії 2.4.0, OrcaSlicer синхронізує профілі користувача через Orca Cloud замість Bambu Cloud.\n" +"\n" +"Щоб перенести наявні профілі, увійдіть до Orca Cloud, і вони будуть перенесені автоматично. Щоб дізнатися більше про те, як OrcaSlicer зберігає та синхронізує ваші профілі, або щоб перенести свої шаблони вручну, перегляньте нашу вікі.\n" +"\n" +"Якщо ви не використовували Bambu Cloud для синхронізації профілів, ця зміна вас не стосується, і ви можете сміливо проігнорувати це повідомлення." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1750,6 +1775,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "Виконання WebView2" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "" @@ -1853,23 +1884,30 @@ 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 "Версія студії Bambu надто низька, її необхідно оновити до останньоїверсії, перш ніж її можна буде використовувати у звичайному режимі" +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1878,6 +1916,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1945,7 +1989,8 @@ 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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2167,6 +2212,9 @@ msgstr "Orca Куб" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Тест на допуски ORCA" @@ -3620,7 +3668,7 @@ msgstr "Калібрування завершено. Тепер знайдіть msgid "Save" msgstr "Зберегти" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Ззаду" @@ -4087,6 +4135,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Поточна температура камери вища, ніж безпечна температура матеріалу, це може призвести до розм’якшення матеріалу та його забивання. Максимально безпечна температура для цього матеріалу становить %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4986,6 +5038,7 @@ msgstr "Зміна інструменту" msgid "Color change" msgstr "Зміна кольору" +msgctxt "Noun" msgid "Print" msgstr "Друк" @@ -5147,11 +5200,15 @@ msgstr "Уникайте області калібрування екструз msgid "Align to Y axis" msgstr "Розташувати вздовж осі Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Ззаду" + +msgctxt "Camera View" msgid "Left" msgstr "Ліво" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Право" @@ -5200,6 +5257,12 @@ msgstr "" msgid "Stats" msgstr "" +msgid "Slice" +msgstr "Нарізка" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Повернення збірки" @@ -5224,6 +5287,9 @@ msgstr "Нависання" msgid "Outline" msgstr "Контур" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5470,6 +5536,10 @@ msgstr "Друкувати пластину" msgid "Export G-code file" msgstr "Експорт файлу G-коду" +msgctxt "Verb" +msgid "Print" +msgstr "Друк" + msgid "Export plate sliced file" msgstr "Експортувати файл нарізки пластини" @@ -7870,6 +7940,45 @@ msgstr "" msgid "Choose Download Directory" 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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Ассоціювати" @@ -7925,12 +8034,6 @@ 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 "" @@ -7961,6 +8064,13 @@ msgstr "Поведінка завантаження" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Чи повинні бути завантажені налаштування принтера/філаменту/процесу при відкритті файлу .3mf?" +msgid "Auto backup" +msgstr "Автобекап" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою." + msgid "Maximum recent files" msgstr "" @@ -7979,12 +8089,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "" -msgid "Auto backup" -msgstr "Автобекап" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Періодично робіть резервну копію вашого проекту для відновлення після випадкового збою." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Шаблон" @@ -8016,6 +8166,12 @@ msgstr "філаменти" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -8028,18 +8184,6 @@ msgstr "З цією опцією ввімкненою, ви можете від msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "" @@ -8267,19 +8411,6 @@ msgstr "Перевіряти лише стабільні оновлення" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Автоматична синхронізація користувацьких профілів (принтер/філамент/процес)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "" @@ -8292,6 +8423,16 @@ msgstr "" msgid "Color only" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +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 "Bambu network plug-in" msgstr "" @@ -8304,30 +8445,6 @@ 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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Асоціювати файли з OrcaSlicer" @@ -8376,7 +8493,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Пропустити перевірку чорного списку AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8384,12 +8510,6 @@ 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 "" @@ -8416,24 +8536,6 @@ msgstr "налагодження" msgid "trace" msgstr "слід" -msgid "Network plug-in" -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 "" @@ -8449,25 +8551,6 @@ 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 "Інший" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Колісок миші реверсує при масштабуванні" - msgid "Enable SSL(MQTT)" msgstr "Увімкнути SSL (MQTT)" @@ -9170,6 +9253,12 @@ msgstr "Видалити цей профіль" msgid "Search in preset" msgstr "Пошук у профілі" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Натисніть, щоб скинути всі налаштування до останньої збереженої попередньої установки." @@ -9462,6 +9551,18 @@ msgstr "Коефіцієнт потоку та Випередження тиск msgid "Print chamber temperature" msgstr "Температура в камері друку" +msgid "Chamber temperature" +msgstr "Температура в камері" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Температура друку" @@ -9792,11 +9893,21 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, c-format, boost-format -msgid "Right: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." @@ -9817,7 +9928,7 @@ msgid "Transfer or discard changes" msgstr "Відкинути або зберегти зміни" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Старе значення" msgid "New Value" @@ -9939,6 +10050,12 @@ msgstr "" msgid "Capabilities" msgstr "Можливості" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Показувати всі профілі (включаючи несумісні)" @@ -11177,6 +11294,12 @@ msgstr "" msgid "Generating skirt & brim" msgstr "Генерація спідниці та кайми" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Експорт G-code" @@ -12026,6 +12149,23 @@ msgstr "Звичайний друк" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Прискорення за умовчанням як для звичайного друку, так і для переміщення за виключенням першого шару" +msgid "Acceleration of travel moves." +msgstr "Прискорення холостого руху" + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +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 "Default filament profile" msgstr "Профіль стандартного філаменту" @@ -12234,6 +12374,12 @@ msgstr "Хорди Архімеда" msgid "Octagram Spiral" msgstr "Спіральна октограма" +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 "" + msgid "Bottom surface pattern" msgstr "Шаблон нижньої поверхні" @@ -12241,6 +12387,14 @@ msgstr "Шаблон нижньої поверхні" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Шаблон ліній заповнення нижньої поверхні, крім заповнення мостів" +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 "" + msgid "Internal solid infill pattern" msgstr "Шаблон внутрішнього суцільного заповнення" @@ -12266,6 +12420,18 @@ msgstr "Поріг малих периметрів" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "При цьому встановлюється поріг для невеликої довжини периметра. Порігове за замовчуванням - 0 мм" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Послідовність друку стінок" @@ -12453,25 +12619,26 @@ msgstr "" "2. Запишіть оптимальне значення PA для кожної об'ємної швидкості подачі та прискорення. Ви можете знайти значення подачі, вибравши \"Flow\" у випадаючому списку колірної схеми та пересуваючи горизонтальний повзунок по лініях шаблону PA. Значення повинне відображатися внизу сторінки. Ідеальне значення PA має зменшуватися зі збільшенням об'ємної швидкості подачі. Якщо це не так, переконайтеся, що ваш екструдер працює коректно. Чим повільніше друкуєте і з меншим прискоренням, тим ширший діапазон допустимих значень PA. Якщо різниця не помітна, використовуйте значення PA із швидшого тесту.\n" "3. Введіть трійки значень PA, Flow і Acceleration у це текстове поле та збережіть профіль філамента." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Випередження тиску для мостів" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n" -"\n" -"Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати." 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. Якщо виражено у %, вона буде розрахована за діаметром сопла." @@ -12542,18 +12709,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12861,6 +13016,22 @@ msgstr "Напрямок cуцільного заповнення" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Кут шаблону суцільного заповнення, який контролює початок або основний напрямок лінії" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Щільність часткового заповнення" @@ -12891,7 +13062,7 @@ msgstr "" msgid "Z-buckling bias optimization (experimental)" msgstr "" -#, c-format, boost-format +#, no-c-format, no-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 "" @@ -12959,79 +13130,6 @@ 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 "Кут першого набору 2D-решіткових елементів у напрямку Z. Нуль означає вертикальне розташування." - -msgid "Lateral lattice angle 2" -msgstr "Кут решітки 1" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Кут другого набору 2D-решіткових елементів у напрямку Z. Нуль означає вертикальне розташування." - -msgid "Infill overhang angle" -msgstr "" - -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 "Довжина прив’язки часткового заповнення" - -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 "1000 (необмежено)" - -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, буде використано старий алгоритм для Підключення заповнення, він повинен створити той же результат, що і для 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (просте підключення)" - -msgid "Acceleration of inner walls." -msgstr "Прискорення внутрішніх периметрів" - -msgid "Acceleration of travel moves." -msgstr "Прискорення холостого руху" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Прискорення заповнення верхньої поверхні. Використання меншого значенняможе покращити якість верхньої поверхні" @@ -13040,11 +13138,8 @@ 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 inner walls." +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%), воно буде розраховане на основі прискорення за умовчанням." @@ -13056,14 +13151,6 @@ msgstr "Прискорення заповнення внутрішнього т msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "" - msgid "Enable accel_to_decel" msgstr "Увімкнути прискорення до уповільнення" @@ -13158,6 +13245,17 @@ msgstr "Швидкість вентилятора лінійно збільшу msgid "layer" msgstr "шар" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Швидкість вентилятора під час друку підтримки" @@ -13670,6 +13768,73 @@ msgstr "" msgid "Probing exclude area of clumping." 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 "Кут першого набору 2D-решіткових елементів у напрямку Z. Нуль означає вертикальне розташування." + +msgid "Lateral lattice angle 2" +msgstr "Кут решітки 1" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Кут другого набору 2D-решіткових елементів у напрямку Z. Нуль означає вертикальне розташування." + +msgid "Infill overhang angle" +msgstr "" + +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 "Довжина прив’язки часткового заповнення" + +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 "1000 (необмежено)" + +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, буде використано старий алгоритм для Підключення заповнення, він повинен створити той же результат, що і для 1000 & 0." + +msgid "0 (Simple connect)" +msgstr "0 (просте підключення)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14539,6 +14704,18 @@ msgstr "Direct Drive" msgid "Bowden" 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 "" + msgid "Extra length on restart" msgstr "Додаткова довжина під час перезавантаження" @@ -14593,6 +14770,10 @@ msgstr "Вирівняне" msgid "Aligned back" msgstr "" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Ззаду" + msgid "Random" msgstr "Випадкове" @@ -14966,6 +15147,9 @@ msgstr "Під час розрізання тріщини на трикутну msgid "Slicing Mode" msgstr "Режим нарізки" +msgid "Other" +msgstr "Інший" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Використовуйте «парний-непарний» для моделей літаків 3DLabPrint. Використовуйте «Закрити отвори», щоб закрити всі отвори в моделі." @@ -15324,9 +15508,6 @@ msgstr "" "\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" @@ -15342,6 +15523,17 @@ msgstr "" "PRINT_START (інші змінні) CHAMBER_TEMP=[chamber_temperature].\n" "Це може бути корисним, якщо ваш принтер не підтримує команди M141/M191 або якщо ви хочете керувати прогрівом камери у макросі запуску друку за відсутності активного нагрівача камери." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Температура сопла для шарів після першого" @@ -15387,20 +15579,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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 "" - -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 "" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Швидкість переміщення, яка є швидше і без екструзії" @@ -15644,6 +15822,14 @@ msgstr "Скручування полігонів" msgid "Rotate the polyhole every layer." msgstr "Повертайте полігон кожен шар." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Мініатюри G-code" @@ -15787,9 +15973,6 @@ 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, інші-неприпустимі" @@ -18009,6 +18192,132 @@ msgstr "Вхід/Тест" msgid "Connection to printers connected via the print host failed." msgstr "Не вдалося підключитися до принтерів, підключених через вузол друку." +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18091,6 +18400,19 @@ msgstr "З’єднання з MKS працює коректно." msgid "Could not connect to MKS" msgstr "Не вдалося підключитися до MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Підключення до OctoPrint працює правильно." @@ -18842,6 +19164,12 @@ msgstr "Кількість трикутних граней" msgid "Calculating, please wait..." msgstr "Розрахунок, будь ласка, зачекайте…" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19247,6 +19575,55 @@ msgstr "" "Уникнення деформації\n" "Чи знаєте ви, що при друку матеріалами, схильними до деформації, такими як ABS, відповідне підвищення температури гарячого ліжка може зменшити ймовірність деформації?" +#~ msgid "Print" +#~ msgstr "Друк" + +#~ msgid "in" +#~ msgstr "в" + +#~ msgid "Object coordinates" +#~ msgstr "Координати об'єкта" + +#~ msgid "World coordinates" +#~ msgstr "Глобальні координати" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Обертання (абсолютне)" + +#~ msgid "Part coordinates" +#~ msgstr "Координати частини" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Увімкнути адаптивне випередження тиску для нависань (бета)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Випередження тиску для мостів" + +#~ 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 "" +#~ "Значення випередження тиску для мостів. Встановіть 0, щоб вимкнути.\n" +#~ "\n" +#~ "Нижче значення випередження тиску при друкуванні мостів допомагає зменшити прояви незначної недоекструзії одразу після друку мостів. Це спричинено падінням тиску в соплі під час друку в повітрі, і зменшене значення випередження тиску допомагає це компенсувати." + +#~ msgid "View control settings" +#~ msgstr "Перегляд параметрів керування" + +#~ msgid "Rotate view" +#~ msgstr "Повернути вигляд" + +#~ msgid "Pan view" +#~ msgstr "Панорамний вигляд" + +#~ msgid "Zoom view" +#~ msgstr "Перегляд масштабу" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Колісок миші реверсує при масштабуванні" + #~ msgid "Enable network plug-in" #~ msgstr "Увімкнути мережевий плагін" diff --git a/localization/i18n/vi/OrcaSlicer_vi.po b/localization/i18n/vi/OrcaSlicer_vi.po index f3a6cb6212..a25cc186c6 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2025-10-02 17:43+0700\n" "Last-Translator: \n" "Language-Team: hainguyen.ts13@gmail.com\n" @@ -328,6 +328,7 @@ msgstr "Gizmo - Xoay" msgid "Optimize orientation" msgstr "Tối ưu định hướng" +msgctxt "Verb" msgid "Scale" msgstr "Tỷ lệ" @@ -337,8 +338,9 @@ msgstr "Gizmo - Tỷ lệ" msgid "Error: Please close all toolbar menus first" msgstr "Lỗi: Vui lòng đóng tất cả menu thanh công cụ trước" +msgctxt "inches" msgid "in" -msgstr "in" +msgstr "" msgid "mm" msgstr "mm" @@ -371,6 +373,9 @@ msgstr "Tỷ lệ co giãn" msgid "Object operations" msgstr "Thao tác vật thể" +msgid "Scale" +msgstr "Tỷ lệ" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "Thao tác thể tích" @@ -398,26 +403,33 @@ msgstr "Đặt lại vị trí" msgid "Reset rotation" msgstr "Đặt lại xoay" -msgid "Object coordinates" -msgstr "Tọa độ vật thể" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "Tọa độ thế giới" +msgid "Object" +msgstr "Vật thể" -msgid "Translate(Relative)" +msgid "Part" +msgstr "Phần" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" msgstr "" msgid "Reset current rotation to the value when open the rotation tool." msgstr "Đặt lại xoay hiện tại về giá trị khi mở công cụ xoay." -msgid "Rotate (absolute)" -msgstr "Xoay (tuyệt đối)" - msgid "Reset current rotation to real zeros." msgstr "Đặt lại xoay hiện tại về số không thực." -msgid "Part coordinates" -msgstr "Tọa độ phần" +msgctxt "Noun" +msgid "Scale" +msgstr "Tỷ lệ" #. TRN - Input label. Be short as possible msgid "Size" @@ -522,12 +534,6 @@ msgstr "" msgid "Spacing" msgstr "Khoảng cách" -msgid "Part" -msgstr "Phần" - -msgid "Object" -msgstr "Vật thể" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1712,6 +1718,25 @@ msgstr "OrcaSlicer gặp ngoại lệ không xử lý được: %1%" msgid "Untitled" msgstr "Không tiêu đề" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"Kể từ phiên bản 2.4.0, OrcaSlicer đồng bộ hồ sơ người dùng thông qua Orca Cloud thay vì Bambu Cloud.\n" +"\n" +"Để di chuyển các hồ sơ hiện có của bạn, hãy đăng nhập vào Orca Cloud và chúng sẽ được chuyển tự động. Để tìm hiểu thêm về cách OrcaSlicer lưu trữ và đồng bộ hồ sơ của bạn, hoặc để di chuyển các cài đặt sẵn theo cách thủ công, hãy xem wiki của chúng tôi.\n" +"\n" +"Nếu bạn không sử dụng Bambu Cloud để đồng bộ hồ sơ, thay đổi này không ảnh hưởng đến bạn và bạn có thể bỏ qua thông báo này." + +msgid "Profile syncing change" +msgstr "" + +msgid "Learn more" +msgstr "" + msgid "Reloading network plug-in..." msgstr "" @@ -1741,6 +1766,12 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "Đường dẫn tài nguyên không tồn tại hoặc không phải thư mục: %s" @@ -1846,23 +1877,30 @@ msgstr "Mở dự án" 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 "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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" +msgstr "" + msgid "" -"Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" +"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" +"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 sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" @@ -1871,6 +1909,12 @@ msgid "" "Do you want to continue?" msgstr "" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "" @@ -1938,7 +1982,8 @@ msgstr "Số lượng preset người dùng đã lưu trong cloud vượt quá g msgid "Sync user presets" msgstr "Đồng bộ preset người dùng" -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." +#, c-format, boost-format +msgid "The preset \"%s\" 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 "" #, c-format, boost-format @@ -2159,6 +2204,9 @@ msgstr "" msgid "OrcaSliced Combo" msgstr "" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "" @@ -3590,7 +3638,7 @@ msgstr "Hiệu chỉnh hoàn tất. Vui lòng tìm đường đùn đồng đề msgid "Save" msgstr "Lưu" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "Sau" @@ -4052,6 +4100,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "Nhiệt độ buồng hiện tại cao hơn nhiệt độ an toàn của vật liệu, điều này có thể dẫn đến vật liệu mềm và tắc nghẽn. Nhiệt độ an toàn tối đa cho vật liệu là %d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4957,6 +5009,7 @@ msgstr "" msgid "Color change" msgstr "Đổi màu" +msgctxt "Noun" msgid "Print" msgstr "In" @@ -5118,11 +5171,15 @@ msgstr "Tránh vùng hiệu chỉnh đùn" msgid "Align to Y axis" msgstr "Căn theo trục Y" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "Sau" + +msgctxt "Camera View" msgid "Left" msgstr "Trái" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "Phải" @@ -5171,6 +5228,12 @@ msgstr "Tất cả plate" msgid "Stats" msgstr "Thống kê" +msgid "Slice" +msgstr "" + +msgid "Review" +msgstr "" + msgid "Assembly Return" msgstr "Trở về lắp ráp" @@ -5195,6 +5258,9 @@ msgstr "Phần nhô" msgid "Outline" msgstr "" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "" @@ -5437,6 +5503,10 @@ msgstr "In plate" msgid "Export G-code file" msgstr "Xuất file G-code" +msgctxt "Verb" +msgid "Print" +msgstr "In" + msgid "Export plate sliced file" msgstr "Xuất file plate đã slice" @@ -7809,6 +7879,45 @@ msgstr "" msgid "Choose Download Directory" msgstr "Chọn thư mục tải xuống" +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 "" + +msgid "Download Network Plug-in" +msgstr "" + +msgid "Reload the network plug-in without restarting the application" +msgstr "" + +msgid "Network plug-in reloaded successfully." +msgstr "" + +msgid "Reload" +msgstr "" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "" + +msgid "Reload Failed" +msgstr "" + msgid "Associate" msgstr "Liên kết" @@ -7863,12 +7972,6 @@ msgstr "Hiển thị màn hình khởi động" msgid "Show the splash screen during startup." msgstr "Hiển thị màn hình khởi động trong khi khởi động." -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 "" @@ -7899,6 +8002,13 @@ msgstr "" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "Có nên tải cài đặt máy in/filament/quy trình khi mở file 3MF?" +msgid "Auto backup" +msgstr "" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng." + msgid "Maximum recent files" msgstr "Số file gần đây tối đa" @@ -7917,12 +8027,52 @@ msgstr "" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "Nếu được bật, hộp thoại cài đặt tham số sẽ xuất hiện trong quá trình nhập file STEP." -msgid "Auto backup" +msgid "STEP importing: linear deflection" msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "Sao lưu dự án của bạn định kỳ để khôi phục từ sự cố thỉnh thoảng." +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +msgstr "" + +msgid "Quality level for Draco export" +msgstr "" + +msgid "bits" +msgstr "bits" + +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 "" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "Cài đặt sẵn" @@ -7954,6 +8104,12 @@ msgstr "" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "" @@ -7966,18 +8122,6 @@ msgstr "Với tùy chọn này được bật, bạn có thể gửi tác vụ msgid "Pop up to select filament grouping mode" msgstr "" -msgid "Quality level for Draco export" -msgstr "" - -msgid "bits" -msgstr "bits" - -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 "" - msgid "Behaviour" msgstr "" @@ -8205,19 +8349,6 @@ msgstr "Chỉ kiểm tra cập nhật ổn định" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "Tự động đồng bộ preset người dùng (Máy in/Filament/Quy trình)" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Update built-in presets automatically." -msgstr "Cập nhật preset tích hợp tự động." - -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 "" @@ -8230,6 +8361,16 @@ msgstr "Sợi và Màu sắc" msgid "Color only" msgstr "Chỉ màu" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Update built-in presets automatically." +msgstr "Cập nhật preset tích hợp tự động." + +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 "Bambu network plug-in" msgstr "" @@ -8242,30 +8383,6 @@ 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 "" - -msgid "Download Network Plug-in" -msgstr "" - msgid "Associate files to OrcaSlicer" msgstr "Liên kết file với OrcaSlicer" @@ -8311,7 +8428,16 @@ msgstr "" msgid "Skip AMS blacklist check" msgstr "Bỏ qua kiểm tra danh sách đen AMS" -msgid "(Experimental) Keep painted feature after mesh change" +msgid "Show unsupported presets" +msgstr "" + +msgid "Show incompatible/unsupported presets in the printer and filament dropdown lists. These presets cannot be selected." +msgstr "" + +msgid "Experimental Features" +msgstr "" + +msgid "Keep painted feature after mesh change" msgstr "" msgid "" @@ -8319,12 +8445,6 @@ 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 "" @@ -8351,24 +8471,6 @@ msgstr "gỡ lỗi" msgid "trace" msgstr "theo dõi" -msgid "Network plug-in" -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 "" @@ -8384,25 +8486,6 @@ msgstr "Đồng bộ preset" msgid "Preferences sync" msgstr "Đồng bộ tùy chọn" -msgid "View control settings" -msgstr "Cài đặt điều khiển chế độ xem" - -msgid "Rotate view" -msgstr "Xoay chế độ xem" - -msgid "Pan view" -msgstr "Kéo chế độ xem" - -msgid "Zoom view" -msgstr "Thu phóng chế độ xem" - -msgid "Other" -msgstr "Khác" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "Con lăn chuột đảo ngược khi thu phóng" - msgid "Enable SSL(MQTT)" msgstr "Bật SSL(MQTT)" @@ -9105,6 +9188,12 @@ msgstr "Xóa preset này" msgid "Search in preset" msgstr "Tìm kiếm trong preset" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "Nhấp để đặt lại tất cả cài đặt về preset đã lưu cuối cùng." @@ -9389,6 +9478,18 @@ msgstr "Tỷ lệ lưu lượng và áp suất nâng cao" msgid "Print chamber temperature" msgstr "Nhiệt độ buồng in" +msgid "Chamber temperature" +msgstr "Nhiệt độ buồng" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "Nhiệt độ in" @@ -9709,11 +9810,21 @@ msgid "Don't warn again for this preset" msgstr "" #, c-format, boost-format -msgid "Left: %s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" msgstr "" #, c-format, boost-format -msgid "Right: %s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" msgstr "" msgid "Click to reset current value and attach to the global value." @@ -9734,7 +9845,7 @@ msgid "Transfer or discard changes" msgstr "Chuyển hoặc loại bỏ thay đổi" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "Giá trị cũ" msgid "New Value" @@ -9856,6 +9967,12 @@ msgstr "Số lượng đầu đùn" msgid "Capabilities" msgstr "Khả năng" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "Hiển thị tất cả preset (bao gồm cả không tương thích)" @@ -11095,6 +11212,12 @@ msgstr "Co ngót filament sẽ không được sử dụng vì co ngót filament msgid "Generating skirt & brim" msgstr "Đang tạo viền & brim" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" + msgid "Exporting G-code" msgstr "Đang xuất G-code" @@ -11939,6 +12062,23 @@ msgstr "In bình thường" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "Gia tốc mặc định của cả in bình thường và di chuyển ngoại trừ lớp đầu tiên." +msgid "Acceleration of travel moves." +msgstr "Gia tốc của di chuyển." + +msgid "First layer travel" +msgstr "" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" + +msgid "mm/s² or %" +msgstr "mm/s² hoặc %" + +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 "Gia tốc của cầu. Nếu giá trị được biểu thị dưới dạng phần trăm (ví dụ 50%), nó sẽ được tính dựa trên gia tốc thành ngoài." + msgid "Default filament profile" msgstr "Hồ sơ filament mặc định" @@ -12145,6 +12285,12 @@ msgstr "Dây cung Archimedes" msgid "Octagram Spiral" msgstr "Xoắn ốc bát giác" +msgid "Top surface density" +msgstr "Mật độ bề mặt trên" + +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 "Mật độ lớp bề mặt trên. Giá trị 100% tạo ra lớp trên hoàn toàn đặc, mịn . Giảm giá trị này dẫn đến bề mặt trên có kết cấu, theo mẫu bề mặt trên được chọn. Giá trị 0% sẽ dẫn đến chỉ thành trên lớp trên được tạo. Dành cho mục đích thẩm mỹ hoặc chức năng , không phải để sửa các vấn đề như đùn dư." + msgid "Bottom surface pattern" msgstr "Mẫu bề mặt dưới" @@ -12152,6 +12298,16 @@ msgstr "Mẫu bề mặt dưới" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "Mẫu đường của infill bề mặt dưới, không phải infill cầu." +msgid "Bottom surface density" +msgstr "Mật độ bề mặt dưới" + +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 "" +"Mật độ lớp bề mặt dưới. Dành cho mục đích thẩm mỹ hoặc chức năng , không phải để sửa các vấn đề như đùn dư.\n" +"CẢNH BÁO: Giảm giá trị này có thể ảnh hưởng tiêu cực đến độ bám dính bàn in." + msgid "Internal solid infill pattern" msgstr "Mẫu infill đặc bên trong" @@ -12177,6 +12333,18 @@ msgstr "Ngưỡng chu vi nhỏ" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "Điều này đặt ngưỡng cho độ dài chu vi nhỏ. Ngưỡng mặc định là 0mm." +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "Thứ tự in thành" @@ -12361,25 +12529,26 @@ msgstr "" "2. Ghi chú giá trị PA tối ưu cho mỗi tốc độ lưu lượng thể tích và gia tốc. Bạn có thể tìm số lưu lượng bằng cách chọn lưu lượng từ menu thả xuống sơ đồ màu và di chuyển thanh trượt ngang qua các đường mẫu PA. Số nên hiển thị ở cuối trang. Giá trị PA lý tưởng nên giảm xuống khi lưu lượng thể tích càng cao. Nếu không, hãy xác nhận rằng extruder của bạn đang hoạt động chính xác. Càng chậm và với gia tốc ít hơn bạn in, phạm vi giá trị PA chấp nhận được càng lớn. Nếu không thấy sự khác biệt, hãy sử dụng giá trị PA từ kiểm tra nhanh hơn\n" "3. Nhập bộ ba giá trị PA, Lưu lượng và Gia tốc vào hộp văn bản ở đây và lưu hồ sơ filament của bạn." -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "Áp suất nâng cao cho cầu" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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." +"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 "" -"Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n" -"\n" -"Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này." 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 "Độ rộng đường mặc định nếu độ rộng đường khác được đặt thành 0. Nếu được biểu thị dưới dạng %, nó sẽ được tính trên đường kính đầu phun." @@ -12450,18 +12619,6 @@ 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 "" - msgid "Flush temperature" msgstr "" @@ -12771,6 +12928,22 @@ msgstr "Hướng infill đặc" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "Góc cho mẫu infill đặc, điều khiển hướng bắt đầu hoặc chính của đường." +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "Mật độ infill thưa" @@ -12801,7 +12974,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 +#, no-c-format, no-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 "" @@ -12869,79 +13042,6 @@ msgstr "TPMS-FK" msgid "Gyroid" msgstr "" -msgid "Lateral lattice angle 1" -msgstr "Góc lattice bên 1" - -msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Góc của bộ phần tử lattice bên đầu tiên theo hướng Z. Không là dọc." - -msgid "Lateral lattice angle 2" -msgstr "Góc lattice bên 2" - -msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." -msgstr "Góc của bộ phần tử lattice bên thứ hai theo hướng Z. Không là dọc." - -msgid "Infill overhang angle" -msgstr "Góc nhô infill" - -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" - -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 "" -"Kết nối đường infill với chu vi bên trong bằng một đoạn ngắn của chu vi bổ sung. Nếu được biểu thị dưới dạng phần trăm (ví dụ: 15%) nó được tính trên độ rộng đùn infill. Orca Slicer cố gắng kết nối hai đường infill gần với một đoạn chu vi ngắn. Nếu không tìm thấy đoạn chu vi ngắn hơn infill_anchor_max, đường infill được kết nối với đoạn chu vi chỉ ở một phía và độ dài của đoạn chu vi được lấy bị giới hạn ở tham số này, nhưng không dài hơn anchor_length_max.\n" -"Đặt tham số này thành không để tắt neo chu vi được kết nối với một đường infill đơn." - -msgid "0 (no open anchors)" -msgstr "0 (không có neo mở)" - -msgid "1000 (unlimited)" -msgstr "1000 (không giới hạn)" - -msgid "Maximum length of the infill anchor" -msgstr "Độ dài tối đa của neo infill" - -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 "" -"Kết nối đường infill với chu vi bên trong bằng một đoạn ngắn của chu vi bổ sung. Nếu được biểu thị dưới dạng phần trăm (ví dụ: 15%) nó được tính trên độ rộng đùn infill. Orca Slicer cố gắng kết nối hai đường infill gần với một đoạn chu vi ngắn. Nếu không tìm thấy đoạn chu vi ngắn hơn tham số này, đường infill được kết nối với đoạn chu vi chỉ ở một phía và độ dài của đoạn chu vi được lấy bị giới hạn ở infill_anchor, nhưng không dài hơn tham số này.\n" -"Nếu đặt thành 0, thuật toán cũ cho kết nối infill sẽ được sử dụng, nó nên tạo ra kết quả giống như với 1000 & 0." - -msgid "0 (Simple connect)" -msgstr "0 (Kết nối đơn giản)" - -msgid "Acceleration of inner walls." -msgstr "Gia tốc của thành trong." - -msgid "Acceleration of travel moves." -msgstr "Gia tốc của di chuyển." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "Gia tốc của infill bề mặt trên. Sử dụng giá trị thấp hơn có thể cải thiện chất lượng bề mặt trên." @@ -12950,11 +13050,8 @@ msgstr "Gia tốc của infill bề mặt trên. Sử dụng giá trị thấp h msgid "Acceleration of outer wall: using a lower value can improve quality." msgstr "Gia tốc của thành ngoài. Sử dụng giá trị thấp hơn có thể cải thiện chất lượng." -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 "Gia tốc của cầu. Nếu giá trị được biểu thị dưới dạng phần trăm (ví dụ 50%), nó sẽ được tính dựa trên gia tốc thành ngoài." - -msgid "mm/s² or %" -msgstr "mm/s² hoặc %" +msgid "Acceleration of inner walls." +msgstr "Gia tốc của thành trong." 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 "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." @@ -12966,14 +13063,6 @@ msgstr "Gia tốc của infill đặc bên trong. Nếu giá trị được bi msgid "This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion." msgstr "Gia tốc của lớp đầu tiên. Sử dụng giá trị thấp hơn có thể cải thiện độ bám dính bàn in." -msgid "First layer travel" -msgstr "" - -msgid "" -"Travel acceleration of first layer.\n" -"The percentage value is relative to Travel Acceleration." -msgstr "" - msgid "Enable accel_to_decel" msgstr "Bật accel_to_decel" @@ -13068,6 +13157,17 @@ msgstr "Tốc độ quạt sẽ được tăng tuyến tính từ không tại l msgid "layer" msgstr "lớp" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "Tốc độ quạt giao diện support" @@ -13587,6 +13687,73 @@ msgstr "" msgid "Probing exclude area of clumping." msgstr "" +msgid "Lateral lattice angle 1" +msgstr "Góc lattice bên 1" + +msgid "The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Góc của bộ phần tử lattice bên đầu tiên theo hướng Z. Không là dọc." + +msgid "Lateral lattice angle 2" +msgstr "Góc lattice bên 2" + +msgid "The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical." +msgstr "Góc của bộ phần tử lattice bên thứ hai theo hướng Z. Không là dọc." + +msgid "Infill overhang angle" +msgstr "Góc nhô infill" + +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" + +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 "" +"Kết nối đường infill với chu vi bên trong bằng một đoạn ngắn của chu vi bổ sung. Nếu được biểu thị dưới dạng phần trăm (ví dụ: 15%) nó được tính trên độ rộng đùn infill. Orca Slicer cố gắng kết nối hai đường infill gần với một đoạn chu vi ngắn. Nếu không tìm thấy đoạn chu vi ngắn hơn infill_anchor_max, đường infill được kết nối với đoạn chu vi chỉ ở một phía và độ dài của đoạn chu vi được lấy bị giới hạn ở tham số này, nhưng không dài hơn anchor_length_max.\n" +"Đặt tham số này thành không để tắt neo chu vi được kết nối với một đường infill đơn." + +msgid "0 (no open anchors)" +msgstr "0 (không có neo mở)" + +msgid "1000 (unlimited)" +msgstr "1000 (không giới hạn)" + +msgid "Maximum length of the infill anchor" +msgstr "Độ dài tối đa của neo infill" + +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 "" +"Kết nối đường infill với chu vi bên trong bằng một đoạn ngắn của chu vi bổ sung. Nếu được biểu thị dưới dạng phần trăm (ví dụ: 15%) nó được tính trên độ rộng đùn infill. Orca Slicer cố gắng kết nối hai đường infill gần với một đoạn chu vi ngắn. Nếu không tìm thấy đoạn chu vi ngắn hơn tham số này, đường infill được kết nối với đoạn chu vi chỉ ở một phía và độ dài của đoạn chu vi được lấy bị giới hạn ở infill_anchor, nhưng không dài hơn tham số này.\n" +"Nếu đặt thành 0, thuật toán cũ cho kết nối infill sẽ được sử dụng, nó nên tạo ra kết quả giống như với 1000 & 0." + +msgid "0 (Simple connect)" +msgstr "0 (Kết nối đơn giản)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14452,6 +14619,18 @@ msgstr "Direct Drive" msgid "Bowden" msgstr "Bowden" +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 "" + msgid "Extra length on restart" msgstr "Độ dài bổ sung khi khởi động lại" @@ -14506,6 +14685,10 @@ msgstr "Căn chỉnh" msgid "Aligned back" msgstr "Căn chỉnh sau" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "Sau" + msgid "Random" msgstr "Ngẫu nhiên" @@ -14875,6 +15058,9 @@ msgstr "Vết nứt nhỏ hơn 2x bán kính đóng khe được lấp trong sli msgid "Slicing Mode" msgstr "Chế độ slice" +msgid "Other" +msgstr "Khác" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "Sử dụng \"Chẵn-lẻ\" cho model máy bay 3DLabPrint. Sử dụng \"Đóng lỗ\" để đóng tất cả các lỗ trong model." @@ -15235,9 +15421,6 @@ msgstr "" "\n" "Tùy chọn này dựa vào firmware hỗ trợ lệnh M191 và M141 thông qua macro hoặc gốc và thường được sử dụng khi bộ sưởi buồng hoạt động được cài đặt." -msgid "Chamber temperature" -msgstr "Nhiệt độ buồng" - 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" @@ -15251,6 +15434,17 @@ msgstr "" "\n" "Nếu được bật, tham số này cũng đặt biến G-code có tên chamber_temperature, có thể được sử dụng để truyền nhiệt độ buồng mong muốn cho macro bắt đầu in của bạn, hoặc macro ngâm nhiệt như thế này: PRINT_START (các biến khác) CHAMBER_TEMP=[chamber_temperature]. Điều này có thể hữu ích nếu máy in của bạn không hỗ trợ lệnh M141/M191, hoặc nếu bạn muốn xử lý ngâm nhiệt trong macro bắt đầu in nếu không có bộ sưởi buồng hoạt động được cài đặt." +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "Nhiệt độ đầu phun cho các lớp sau lớp đầu tiên." @@ -15296,22 +15490,6 @@ msgstr "Độ dày vỏ trên" 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of top shell layers." msgstr "Số lượng lớp đặc trên được tăng lên khi slice nếu độ dày được tính bởi lớp vỏ trên mỏng hơn giá trị này. Điều này có thể tránh vỏ quá mỏng khi chiều cao lớp nhỏ. 0 có nghĩa là cài đặt này bị tắt và độ dày vỏ trên được xác định tuyệt đối bởi lớp vỏ trên." -msgid "Top surface density" -msgstr "Mật độ bề mặt trên" - -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 "Mật độ lớp bề mặt trên. Giá trị 100% tạo ra lớp trên hoàn toàn đặc, mịn . Giảm giá trị này dẫn đến bề mặt trên có kết cấu, theo mẫu bề mặt trên được chọn. Giá trị 0% sẽ dẫn đến chỉ thành trên lớp trên được tạo. Dành cho mục đích thẩm mỹ hoặc chức năng , không phải để sửa các vấn đề như đùn dư." - -msgid "Bottom surface density" -msgstr "Mật độ bề mặt dưới" - -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 "" -"Mật độ lớp bề mặt dưới. Dành cho mục đích thẩm mỹ hoặc chức năng , không phải để sửa các vấn đề như đùn dư.\n" -"CẢNH BÁO: Giảm giá trị này có thể ảnh hưởng tiêu cực đến độ bám dính bàn in." - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "Tốc độ di chuyển nhanh hơn và không có đùn." @@ -15559,6 +15737,14 @@ msgstr "Xoắn polyhole" msgid "Rotate the polyhole every layer." msgstr "Xoay polyhole mỗi lớp." +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "Hình thu nhỏ G-code" @@ -15705,9 +15891,6 @@ msgstr "Xuất nhiều STL" msgid "Export the objects as multiple STLs to directory." msgstr "Xuất các đối tượng dưới dạng nhiều STL vào thư mục." -msgid "Slice" -msgstr "" - msgid "Slice the plates: 0-all plates, i-plate i, others-invalid" msgstr "Slice các bản: 0-tất cả bản, i-bản i, khác-không hợp lệ" @@ -17930,6 +18113,132 @@ 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 "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "" @@ -18012,6 +18321,19 @@ msgstr "Kết nối với MKS hoạt động chính xác." msgid "Could not connect to MKS" msgstr "Không thể kết nối với MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "Kết nối với OctoPrint hoạt động chính xác." @@ -18763,6 +19085,12 @@ msgstr "" msgid "Calculating, please wait..." msgstr "" +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "" @@ -19168,6 +19496,55 @@ msgstr "" "Tránh cong vênh\n" "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 "Print" +#~ msgstr "In" + +#~ msgid "in" +#~ msgstr "in" + +#~ msgid "Object coordinates" +#~ msgstr "Tọa độ vật thể" + +#~ msgid "World coordinates" +#~ msgstr "Tọa độ thế giới" + +#~ msgid "Rotate (absolute)" +#~ msgstr "Xoay (tuyệt đối)" + +#~ msgid "Part coordinates" +#~ msgstr "Tọa độ phần" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "Bật áp suất nâng cao thích ứng cho phần nhô (beta)" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "Áp suất nâng cao cho cầu" + +#~ 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 "" +#~ "Giá trị áp suất nâng cao cho cầu. Đặt thành 0 để tắt.\n" +#~ "\n" +#~ "Giá trị PA thấp hơn khi in cầu giúp giảm sự xuất hiện của đùn thiếu nhỏ ngay sau cầu. Điều này được gây ra bởi áp suất giảm trong đầu phun khi in trong không khí và PA thấp hơn giúp chống lại điều này." + +#~ msgid "View control settings" +#~ msgstr "Cài đặt điều khiển chế độ xem" + +#~ msgid "Rotate view" +#~ msgstr "Xoay chế độ xem" + +#~ msgid "Pan view" +#~ msgstr "Kéo chế độ xem" + +#~ msgid "Zoom view" +#~ msgstr "Thu phóng chế độ xem" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "Con lăn chuột đảo ngược khi thu phóng" + #~ msgid "Enable network plug-in" #~ msgstr "Bật plugin mạng" diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po index 34e44eb505..d40c72b758 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2026-06-11 12:37-0300\n" "Last-Translator: Handle \n" "Language-Team: \n" @@ -249,7 +249,7 @@ msgid "Reset" msgstr "重置" msgid "Enter" -msgstr "" +msgstr "回车" msgid "Shortcut Key " msgstr "快捷键 " @@ -330,6 +330,7 @@ msgstr "Gizmo-旋转" msgid "Optimize orientation" msgstr "优化朝向" +msgctxt "Verb" msgid "Scale" msgstr "缩放" @@ -339,8 +340,9 @@ msgstr "缩放工具" msgid "Error: Please close all toolbar menus first" msgstr "错误:请先关闭所有工具栏菜单" +msgctxt "inches" msgid "in" -msgstr "在" +msgstr "" msgid "mm" msgstr "mm" @@ -373,6 +375,9 @@ msgstr "缩放比例" msgid "Object operations" msgstr "对象操作" +msgid "Scale" +msgstr "缩放" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "零件操作" @@ -400,26 +405,33 @@ msgstr "重置位置" msgid "Reset rotation" msgstr "重置旋转" -msgid "Object coordinates" -msgstr "物体坐标" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "世界坐标" +msgid "Object" +msgstr "对象" -msgid "Translate(Relative)" -msgstr "转换(相对)" +msgid "Part" +msgstr "零件" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "零件坐标" +msgctxt "Noun" +msgid "Scale" +msgstr "缩放" #. TRN - Input label. Be short as possible msgid "Size" @@ -524,12 +536,6 @@ msgstr "间隙" msgid "Spacing" msgstr "间距" -msgid "Part" -msgstr "零件" - -msgid "Object" -msgstr "对象" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -1454,7 +1460,7 @@ msgid "Restart selection" msgstr "重新选择" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Cancel a feature until exit" msgstr "取消一个特征直到退出" @@ -1710,6 +1716,25 @@ msgstr "OrcaSlicer 捕捉到一个未处理的异常:%1%" msgid "Untitled" msgstr "未命名" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"自 2.4.0 版本起,OrcaSlicer 通过 Orca Cloud(而非 Bambu Cloud)同步用户配置文件。\n" +"\n" +"要迁移您现有的配置文件,请登录 Orca Cloud,配置文件将被自动转移。若要进一步了解 OrcaSlicer 如何存储和同步您的配置文件,或手动迁移您的预设,请查看我们的 Wiki。\n" +"\n" +"如果您此前未使用 Bambu Cloud 同步配置文件,则此变更不会影响您,您可以放心忽略此消息。" + +msgid "Profile syncing change" +msgstr "配置文件同步方式变更" + +msgid "Learn more" +msgstr "了解更多" + msgid "Reloading network plug-in..." msgstr "正在重新加载网络插件..." @@ -1739,6 +1764,15 @@ msgstr "" msgid "WebView2 Runtime" msgstr "WebView2 运行库" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"无法安装 Microsoft WebView2 运行库。\n" +"在安装之前,包括设置向导在内的部分功能可能显示为空白。\n" +"请从 https://developer.microsoft.com/microsoft-edge/webview2/ 手动安装,然后重启 Orca Slicer。" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "资源路径不存在或不是目录:%s" @@ -1811,7 +1845,7 @@ msgid "Choose one file (GCODE/3MF):" msgstr "选择一个文件(GCODE/3MF):" msgid "Ext" -msgstr "" +msgstr "外置" msgid "Some presets are modified." msgstr "预设已被修改。" @@ -1841,33 +1875,32 @@ 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 "此逆戟鲸切片器的版本过低,需更新至最新版本方可正常使用" -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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" msgstr "" -"云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n" -"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。" msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"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" -"拉取将下载云端副本。强制推送将用您的本地预设覆盖它。" msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"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 "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"云同步冲突:之前已从云端删除了同名预设。\n" -"“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"云同步冲突:发生了意外或无法识别的预设冲突。\n" -"“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。" msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1876,6 +1909,12 @@ msgstr "" "强制推送将用您本地的预设更改覆盖云端副本。\n" "是否继续?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "解决云同步冲突" @@ -1955,8 +1994,9 @@ 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 "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2177,6 +2217,9 @@ msgstr "Orca方块" msgid "OrcaSliced Combo" msgstr "OrcaSliced 复合模型" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca误差测试" @@ -2820,7 +2863,7 @@ msgid "Plate" msgstr "盘" msgid "Brim" -msgstr "" +msgstr "Brim" msgid "Object/Part Settings" msgstr "对象/零件设置" @@ -3604,7 +3647,7 @@ msgstr "校准完成。如下图中的示例,请在您的热床上找到最均 msgid "Save" msgstr "保存" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "背面" @@ -4033,11 +4076,11 @@ msgstr "热床形状" #, c-format, boost-format msgid "A minimum temperature above %d℃ is recommended for %s.\n" -msgstr "" +msgstr "建议最低温度高于 %d℃(适用于 %s)。\n" #, c-format, boost-format msgid "A maximum temperature below %d℃ is recommended for %s.\n" -msgstr "" +msgstr "建议最高温度低于 %d℃(适用于 %s)。\n" msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n" msgstr "推荐最低温度不能大于推荐最高温度。\n" @@ -4060,7 +4103,7 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "该耗材的推荐喷嘴温度是[%d, %d]摄氏度" msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "自适应压力提前模型验证失败:\n" # TODO: Review, changed by lang refactor. PR 14254 msgid "" @@ -4075,6 +4118,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "当前腔体温度高于材料的安全温度,这可能导致材料软化和堵塞。该材料的最高安全温度为 %d。" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4644,7 +4691,7 @@ msgid "Invalid format. Expected vector format: \"%1%\"" msgstr "无效格式,应该是\"%1%\"这种数组格式" msgid "N/A" -msgstr "" +msgstr "不适用" msgid "Pick" msgstr "选择" @@ -4975,6 +5022,7 @@ msgstr "工具更换" msgid "Color change" msgstr "颜色更换" +msgctxt "Noun" msgid "Print" msgstr "打印" @@ -5139,11 +5187,15 @@ msgstr "避开挤出校准区域" msgid "Align to Y axis" msgstr "对齐到Y轴" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "背面" + +msgctxt "Camera View" msgid "Left" msgstr "左" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "右" @@ -5192,6 +5244,12 @@ msgstr "所有打印板" msgid "Stats" msgstr "统计" +msgid "Slice" +msgstr "切片" + +msgid "Review" +msgstr "查看" + msgid "Assembly Return" msgstr "退出装配体视图" @@ -5216,6 +5274,9 @@ msgstr "悬垂" msgid "Outline" msgstr "轮廓线" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "写实渲染" @@ -5462,6 +5523,10 @@ msgstr "打印单盘" msgid "Export G-code file" msgstr "导出G-code文件" +msgctxt "Verb" +msgid "Print" +msgstr "打印" + msgid "Export plate sliced file" msgstr "导出单盘切片文件" @@ -7828,6 +7893,45 @@ msgstr "选择下载项目的文件夹" msgid "Choose Download Directory" 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。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。" + +msgid "Download Network Plug-in" +msgstr "下载网络插件" + +msgid "Reload the network plug-in without restarting the application" +msgstr "重新加载网络插件而不重新启动应用程序" + +msgid "Network plug-in reloaded successfully." +msgstr "网络插件已成功重新加载。" + +msgid "Reload" +msgstr "重新加载" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "无法重新加载网络插件。请重新启动应用程序。" + +msgid "Reload Failed" +msgstr "重新加载失败" + msgid "Associate" msgstr "相关的" @@ -7883,12 +7987,6 @@ 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 "将窗口按钮置于左侧" @@ -7919,6 +8017,13 @@ msgstr "加载 交互项" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "printter/filament/process 设置项文件能否以 .3mf后缀方式打开" +msgid "Auto backup" +msgstr "自动备份" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。" + msgid "Maximum recent files" msgstr "最大最近使用文件数" @@ -7937,12 +8042,55 @@ msgstr "显示STEP网格参数设置对话框" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "如果启用,在导入STEP文件时将出现参数设置对话框" -msgid "Auto backup" -msgstr "自动备份" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期备份你的项目,以便从偶尔的崩溃中恢复过来。" +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +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 "" +"控制将网格压缩为 Draco 格式时使用的量化位深度。\n" +"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n" +"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "预设" @@ -7974,6 +8122,12 @@ msgstr "耗材丝" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "特性" @@ -7986,21 +8140,6 @@ 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 "" -"控制将网格压缩为 Draco 格式时使用的量化位深度。\n" -"0 = 无损压缩(以全精度保留几何形状)。有效有损值范围为 8 到 30。\n" -"较低的值会生成较小的文件,但会丢失更多的几何细节;较高的值可保留更多细节,但代价是文件较大。" - msgid "Behaviour" msgstr "行为" @@ -8131,13 +8270,16 @@ msgid "Renders cast shadows on the plate in realistic view." msgstr "在写实渲染中渲染投射到打印板上的阴影。" msgid "Smooth normals" -msgstr "" +msgstr "平滑法线" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"在写实渲染中应用平滑法线。\n" +"\n" +"需要手动重新加载场景才能生效(在 3D 视图中右键单击 →“重新加载全部”)。" msgid "Anti-aliasing" msgstr "抗锯齿" @@ -8242,19 +8384,6 @@ msgstr "仅检测正式版的更新" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "同步用户预设(打印机/耗材丝/工艺)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "耗材丝同步模式" @@ -8267,11 +8396,21 @@ msgstr "耗材丝及颜色" msgid "Color only" msgstr "仅颜色" +# TODO: Review, changed by lang refactor. PR 14254 +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 "Bambu network plug-in" -msgstr "" +msgstr "Bambu网络插件" msgid "Enable Bambu network plug-in" -msgstr "" +msgstr "启用Bambu网络插件" msgid "Network plug-in version" msgstr "网络插件版本" @@ -8279,30 +8418,6 @@ 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。 您想立即下载并安装此版本吗? 注意:安装后应用程序可能需要重新启动。" - -msgid "Download Network Plug-in" -msgstr "下载网络插件" - msgid "Associate files to OrcaSlicer" msgstr "逆戟鲸切片器文件关联" @@ -8348,8 +8463,17 @@ msgstr "开发者" msgid "Skip AMS blacklist check" msgstr "跳过AMS黑名单检查" -msgid "(Experimental) Keep painted feature after mesh change" -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 "Experimental Features" +msgstr "" + +msgid "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" @@ -8358,12 +8482,6 @@ 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 "允许异常存储" @@ -8392,24 +8510,6 @@ msgstr "调试" msgid "trace" msgstr "跟踪" -msgid "Network plug-in" -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 "调试" @@ -8425,25 +8525,6 @@ 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 "其他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "缩放时鼠标滚轮反转" - msgid "Enable SSL(MQTT)" msgstr "启用SSL(MQTT)" @@ -9150,6 +9231,12 @@ msgstr "删除此预设" msgid "Search in preset" msgstr "在预设中搜索" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "点击以将所有设置还原到最后一次保存的版本。" @@ -9441,6 +9528,18 @@ msgstr "流量和压力提前" msgid "Print chamber temperature" msgstr "打印仓温度" +msgid "Chamber temperature" +msgstr "机箱温度" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "打印温度" @@ -9774,12 +9873,22 @@ msgid "Don't warn again for this preset" msgstr "不再为此预设警告" #, c-format, boost-format -msgid "Left: %s" -msgstr "左:%s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "右:%s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "点击该图标,恢复到全局的配置数值,并与全局配置同步变化。" @@ -9799,7 +9908,7 @@ msgid "Transfer or discard changes" msgstr "放弃或保留更改" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "旧值" msgid "New Value" @@ -9932,6 +10041,12 @@ msgstr "挤出机数量" msgid "Capabilities" msgstr "能力" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "显示所有预设(包括不兼容的)" @@ -11174,7 +11289,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "当壁序列为外内或内外内时,精确墙壁选项将被忽略。" msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "一个或多个挤出机的自适应压力提前模型可能包含无效值。" msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "不会使用耗材收缩率,因为所用耗材的耗材收缩率不匹配。" @@ -11182,6 +11297,15 @@ msgstr "不会使用耗材收缩率,因为所用耗材的耗材收缩率不匹 msgid "Generating skirt & brim" msgstr "正在生成裙边和brim" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"在“逐件”打印顺序下,物体之间无法容纳逐物体裙边。\n" +"\n" +"请增大物体之间的距离、减小 brim/裙边尺寸、将裙边类型切换为“组合”,或将打印顺序切换为“逐层”。" + msgid "Exporting G-code" msgstr "正在导出G-code" @@ -12090,6 +12214,25 @@ msgstr "普通打印" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "除首层之外的默认的打印和空驶的加速度" +msgid "Acceleration of travel moves." +msgstr "空驶加速度" + +msgid "First layer travel" +msgstr "首层空驶" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"首层的空驶加速度。\n" +"百分比值相对于空驶加速度。" + +msgid "mm/s² or %" +msgstr "mm/s² 或 %" + +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 "Default filament profile" msgstr "默认耗材配置" @@ -12302,6 +12445,15 @@ msgstr "阿基米德和弦" msgid "Octagram Spiral" msgstr "八角螺旋" +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 "" +"顶层表面的密度。\n" +"100% 的值会创建一个完全实心、平滑的顶面。降低此值会根据所选的顶面图案生成有纹理的顶面。0% 的值将只生成顶层的墙。\n" +"此选项仅为美观或功能性目的,而不是为了解决过量挤出等问题。" + msgid "Bottom surface pattern" msgstr "底面图案" @@ -12309,6 +12461,17 @@ msgstr "底面图案" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "除了桥接外的底面填充的走线图案" +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" +"此功能是为了美观或功能性目的,而是为了解决过量挤出等问题。\n" +"警告:降低此值会对热床粘接力产生负面影响。" + msgid "Internal solid infill pattern" msgstr "内部实心填充图案" @@ -12334,6 +12497,18 @@ msgstr "微小部位周长阈值" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "这将设置微小部位周长的阈值。默认阈值为0mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "墙顺序" @@ -12514,22 +12689,26 @@ msgstr "" "2. 记下每个体积流速和加速度的最佳 PA 值。您可以通过从配色方案下拉列表中选择流量并将水平滑块移动到 PA 图案线上来找到流量编号。该数字应该在页面底部可见。理想的 PA 值应该随着体积流量的增加而减小。如果不是,请确认您的挤出机运行正常。打印速度越慢且加速度越小,可接受的 PA 值范围就越大。如果没有明显差异,请使用更快测试中的 PA 值\n" "3. 在此处的文本框中输入 PA 值、流量和加速度的三元组并保存耗材丝配置文件" -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "为悬垂启用自适应压力提前(试验)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "为搭桥启用压力提前" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。" +"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 "" 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时走线的默认线宽。如果以%表示,它将基于喷嘴直径来计算。" @@ -12600,18 +12779,6 @@ 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 "冲洗温度" @@ -12913,7 +13080,7 @@ msgid "Filament price, for statistical purposes only." msgstr "耗材丝的价格。只用于统计信息。" msgid "money/kg" -msgstr "" +msgstr "金额/kg" msgid "Vendor" msgstr "供应商" @@ -12937,6 +13104,22 @@ msgstr "实心填充方向" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "实心填充图案的角度,决定走线的开始或整体方向。" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "稀疏填充密度" @@ -12969,8 +13152,7 @@ msgstr "如果填充图案支持,使用多线进行填充。" msgid "Z-buckling bias optimization (experimental)" msgstr "Z 轴屈曲偏置优化(实验性)" -# TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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(垂直)轴收紧螺旋(Gyroid)波形,以缩短有效的垂直柱长,提升 Z 轴抗压屈曲能力。耗材用量保持不变。在约 30% 及以上的稀疏填充密度下无效果。仅当稀疏填充图案设置为 Gyroid 时适用。" @@ -13038,77 +13220,6 @@ 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 "" -"控制对短的或无支撑的闪电分支进行修剪的力度。\n" -"此角度在内部会被转换为每层的距离。" - -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%)表示,则计算填充拉伸宽度。OrcaSlicer 试图将两条紧密的填充线连接到一个短的周长段。如果找不到短于“填充”和“锚点”最大值的周长线段,则填充线仅在一侧连接到周长线段,并且所取周长线段的长度仅限于此参数,但不超过“锚点长度”最大值。将此参数设置为零,以禁用连接到单个填充线的锚点周长。" - -msgid "0 (no open anchors)" -msgstr "0 (无锚线)" - -msgid "1000 (unlimited)" -msgstr "1000(无限制)" - -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%)表示,则计算填充拉伸宽度。OrcaSlicer 试图将两条紧密的填充线连接到一个短的周长段。如果找不到比此参数短的周长线段,则填充线仅在一侧连接到周长线段,并且所采用的周长线段的长度仅限于 infl_anchor,但不超过此参数。将此参数设置为零以禁用锚点。" - -msgid "0 (Simple connect)" -msgstr "0(简单连接)" - -msgid "Acceleration of inner walls." -msgstr "内圈墙加速度,使用较低值可以改善质量。" - -msgid "Acceleration of travel moves." -msgstr "空驶加速度" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "顶面填充的加速度。使用较低值可能会改善顶面质量" @@ -13117,11 +13228,8 @@ 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 "mm/s² 或 %" +msgid "Acceleration of inner walls." +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%),则将根据默认加速度进行计算。" @@ -13133,16 +13241,6 @@ msgstr "内部实心填充的加速度。如果该值以百分比表示(例如 msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "启用制动速度" @@ -13219,7 +13317,7 @@ msgid "Travel speed of the first layer." msgstr "首层空驶速度" msgid "Number of slow layers" -msgstr "" +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 "" @@ -13245,6 +13343,17 @@ msgstr "" msgid "layer" msgstr "层" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "支撐接触面风扇" @@ -13780,6 +13889,71 @@ msgstr "结块检测排除区域" msgid "Probing exclude area of clumping." 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 "" +"控制对短的或无支撑的闪电分支进行修剪的力度。\n" +"此角度在内部会被转换为每层的距离。" + +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%)表示,则计算填充拉伸宽度。OrcaSlicer 试图将两条紧密的填充线连接到一个短的周长段。如果找不到短于“填充”和“锚点”最大值的周长线段,则填充线仅在一侧连接到周长线段,并且所取周长线段的长度仅限于此参数,但不超过“锚点长度”最大值。将此参数设置为零,以禁用连接到单个填充线的锚点周长。" + +msgid "0 (no open anchors)" +msgstr "0 (无锚线)" + +msgid "1000 (unlimited)" +msgstr "1000(无限制)" + +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%)表示,则计算填充拉伸宽度。OrcaSlicer 试图将两条紧密的填充线连接到一个短的周长段。如果找不到比此参数短的周长线段,则填充线仅在一侧连接到周长线段,并且所采用的周长线段的长度仅限于 infl_anchor,但不超过此参数。将此参数设置为零以禁用锚点。" + +msgid "0 (Simple connect)" +msgstr "0(简单连接)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14671,6 +14845,18 @@ msgstr "直驱(近程)" msgid "Bowden" 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 "Extra length on restart" msgstr "额外回填长度" @@ -14727,6 +14913,10 @@ msgstr "对齐" msgid "Aligned back" msgstr "背部对齐" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "背面" + msgid "Random" msgstr "随机" @@ -15102,6 +15292,9 @@ msgstr "在三角形网格切片过程中,小于2倍间隙闭合半径的裂 msgid "Slicing Mode" msgstr "切片模式" +msgid "Other" +msgstr "其他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "对3DLabPrint的飞机模型使用 \"奇偶\"。使用 \"闭孔 \"来关闭模型上的所有孔。" @@ -15469,9 +15662,6 @@ msgid "" "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 "启用此选项可实现自动室温度控制。该选项激活在“machine_start_gcode”之前发出 M191 命令 它设置腔室温度并等待达到该温度。此外,它还会在打印结束时发出 M141 命令以关闭腔室加热器(如果有)。 此选项依赖于通过宏或本机支持 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" @@ -15480,6 +15670,17 @@ msgid "" "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 的空气过滤效率。 对于 PLA、PETG、TPU、PVA 等低温材料,应禁用此选项(设置为 0),因为腔室温度应较低,以避免热断时材料软化导致挤出机堵塞。 如果启用,此参数还会设置一个名为 chamber_temple 的 G-code 变量,该变量可用于将所需的腔室温度传递给打印启动宏,或热浸宏,如下所示:PRINT_START(其他变量)CHAMBER_TEMP=[cham​​ber_Temperature]。如果您的打印机不支持 M141/M191 命令,或者如果您希望在未安装活动室加热器的情况下在打印启动宏中处理热浸,则这可能很有用。" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "除首层外的其它层的喷嘴温度" @@ -15524,26 +15725,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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 "" -"顶层表面的密度。\n" -"100% 的值会创建一个完全实心、平滑的顶面。降低此值会根据所选的顶面图案生成有纹理的顶面。0% 的值将只生成顶层的墙。\n" -"此选项仅为美观或功能性目的,而不是为了解决过量挤出等问题。" - -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" -"此功能是为了美观或功能性目的,而是为了解决过量挤出等问题。\n" -"警告:降低此值会对热床粘接力产生负面影响。" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "空驶的速度。空驶是无挤出量的快速移动。" @@ -15792,6 +15973,14 @@ msgstr "扭曲多边型孔" msgid "Rotate the polyhole every layer." msgstr "按层旋转多边形孔。" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-code缩略图尺寸" @@ -15940,9 +16129,6 @@ 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个板,其他-无效" @@ -18091,7 +18277,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 "需要选择打印机" @@ -18187,6 +18373,132 @@ msgstr "登录/测试" msgid "Connection to printers connected via the print host failed." msgstr "无法通过打印机主机连接到打印机。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS 云上传选项" @@ -18269,6 +18581,19 @@ msgstr "与 MKS 的连接正常。" msgid "Could not connect to MKS" msgstr "无法连接到 MKS。" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "成功连接到 OctoPrint。" @@ -19017,6 +19342,12 @@ msgstr "三角面片数量" msgid "Calculating, please wait..." msgstr "正在计算,请稍候..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "预设包" @@ -19427,6 +19758,110 @@ msgstr "" "避免翘曲\n" "您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。" +#~ msgid "Print" +#~ msgstr "打印" + +#~ msgid "in" +#~ msgstr "在" + +#~ msgid "Object coordinates" +#~ msgstr "物体坐标" + +#~ msgid "World coordinates" +#~ msgstr "世界坐标" + +#~ msgid "Translate(Relative)" +#~ msgstr "转换(相对)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "旋转(绝对)" + +#~ msgid "Part coordinates" +#~ msgstr "零件坐标" + +#~ 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 "" +#~ "云同步冲突:此预设在 OrcaCloud 中存在更新的版本。\n" +#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。" + +#~ 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 "" +#~ "云同步冲突:OrcaCloud 中已存在同名预设。\n" +#~ "拉取将下载云端副本。强制推送将用您的本地预设覆盖它。" + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "云同步冲突:之前已从云端删除了同名预设。\n" +#~ "“删除”将删除您的本地预设。“强制推送”将用您的本地预设覆盖它。" + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "云同步冲突:发生了意外或无法识别的预设冲突。\n" +#~ "“拉取”将下载云端副本。“强制推送”将用您的本地预设覆盖它。" + +#~ 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)。请通过移除自定义配置来缩减预设大小,或仅在本地使用。" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "为悬垂启用自适应压力提前(试验)" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "针对悬垂以及同一特征内的流量变化启用自适应 PA。这是一个实验性选项,因为如果未准确设置 PA 配置文件,将导致悬垂前后外表面出现均匀性问题。\n" +#~ "与 Prusa 打印机不兼容,因为它们会暂停以处理 PA 变化,从而导致延迟和瑕疵。" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "为搭桥启用压力提前" + +#~ 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 "桥梁的压力提前值。设置为 0 以禁用。 打印桥接时较低的 PA 值有助于减少桥接后立即出现的轻微挤压不足现象。这是由在空气中打印时喷嘴中的压力下降引起的,较低的 PA 有助于抵消这种情况。" + +#~ msgid "Filament Sync Options" +#~ msgstr "耗材丝同步选项" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(实验性) 在网格更改后保留绘制的特征" + +#~ msgid "Network plug-in" +#~ msgstr "网络插件" + +#~ msgid "View control settings" +#~ msgstr "视图控制设置" + +#~ msgid "Rotate view" +#~ msgstr "旋转视角" + +#~ msgid "Pan view" +#~ msgstr "移动视角" + +#~ msgid "Zoom view" +#~ msgstr "缩放视角" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "缩放时鼠标滚轮反转" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "左:%s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "右:%s" + #~ msgid "Enable network plug-in" #~ msgstr "启用网络插件" diff --git a/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po index 16b323b5f5..2dad906eff 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-06-22 20:13-0300\n" +"POT-Creation-Date: 2026-07-07 16:46-0300\n" "PO-Revision-Date: 2025-11-28 13:48-0600\n" "Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n" "Language-Team: \n" @@ -252,7 +252,7 @@ msgid "Reset" msgstr "重設" msgid "Enter" -msgstr "" +msgstr "Enter" msgid "Shortcut Key " msgstr "快捷鍵 " @@ -333,6 +333,7 @@ msgstr "Gizmo-旋轉" msgid "Optimize orientation" msgstr "最佳化方向" +msgctxt "Verb" msgid "Scale" msgstr "縮放" @@ -342,8 +343,9 @@ msgstr "Gizmo 比例" msgid "Error: Please close all toolbar menus first" msgstr "錯誤:請先關閉所有工具欄選單" +msgctxt "inches" msgid "in" -msgstr "在" +msgstr "" msgid "mm" msgstr "mm" @@ -376,6 +378,9 @@ msgstr "縮放比例" msgid "Object operations" msgstr "物件操作" +msgid "Scale" +msgstr "縮放" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Volume operations" msgstr "零件操作" @@ -403,26 +408,33 @@ msgstr "重設位置" msgid "Reset rotation" msgstr "重設旋轉" -msgid "Object coordinates" -msgstr "物件座標" +msgid "World" +msgstr "" -msgid "World coordinates" -msgstr "世界座標" +msgid "Object" +msgstr "物件" -msgid "Translate(Relative)" -msgstr "平移(相對)" +msgid "Part" +msgstr "零件" + +msgid "Relative" +msgstr "" + +msgid "Coordinate system used for transform actions." +msgstr "" + +msgid "Absolute" +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 "零件座標" +msgctxt "Noun" +msgid "Scale" +msgstr "縮放" #. TRN - Input label. Be short as possible msgid "Size" @@ -527,12 +539,6 @@ msgstr "間隙" msgid "Spacing" msgstr "間距" -msgid "Part" -msgstr "零件" - -msgid "Object" -msgstr "物件" - msgid "" "Click to flip the cut plane\n" "Drag to move the cut plane" @@ -874,13 +880,13 @@ msgid "ITALIC" msgstr "斜體" msgid "SWISS" -msgstr "" +msgstr "瑞士體" msgid "MODERN" -msgstr "" +msgstr "現代" msgid "First font" -msgstr "" +msgstr "第一個字型" msgid "Default font" msgstr "預設字型" @@ -1458,7 +1464,7 @@ msgid "Restart selection" msgstr "重新開始選取" msgid "Esc" -msgstr "" +msgstr "Esc" msgid "Cancel a feature until exit" msgstr "在退出前取消功能" @@ -1712,6 +1718,25 @@ msgstr "Orca Slicer 遭遇到一個未處理的例外:%1%" msgid "Untitled" msgstr "未命名" +msgid "" +"Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n" +"\n" +"To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n" +"\n" +"If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message." +msgstr "" +"自 2.4.0 版本起,OrcaSlicer 透過 Orca Cloud(而非 Bambu Cloud)同步使用者設定檔。\n" +"\n" +"若要移轉您現有的設定檔,請登入 Orca Cloud,設定檔將會自動轉移。若要進一步了解 OrcaSlicer 如何儲存與同步您的設定檔,或手動移轉您的預設,請參閱我們的 wiki。\n" +"\n" +"若您先前並未使用 Bambu Cloud 同步設定檔,則此變更不會影響您,您可以放心忽略此訊息。" + +msgid "Profile syncing change" +msgstr "設定檔同步方式變更" + +msgid "Learn more" +msgstr "了解更多" + msgid "Reloading network plug-in..." msgstr "正在重新載入網路外掛程式..." @@ -1739,6 +1764,15 @@ msgstr "Orca Slicer 需要 Microsoft WebView2 Runtime 才能操作某些功能 msgid "WebView2 Runtime" msgstr "WebView2 Runtime" +msgid "" +"The Microsoft WebView2 Runtime could not be installed.\n" +"Some features, including the setup wizard, may appear blank until it is installed.\n" +"Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer." +msgstr "" +"無法安裝 Microsoft WebView2 Runtime。\n" +"在安裝完成前,包括設定精靈在內的部分功能可能顯示為空白。\n" +"請從 https://developer.microsoft.com/microsoft-edge/webview2/ 手動安裝,然後重新啟動 Orca Slicer。" + #, c-format, boost-format msgid "Resources path does not exist or is not a directory: %s" msgstr "資源路徑不存在或並非目錄:%s" @@ -1843,33 +1877,32 @@ 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." +msgid "Cloud sync conflict:" +msgstr "" + +#, c-format, boost-format +msgid "Cloud sync conflict for preset \"%s\":" msgstr "" -"雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n" -"拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。" msgid "" -"Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" +"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" -"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。" msgid "" -"Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +"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 "" +"A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset." msgstr "" -"雲端同步衝突:先前已從雲端刪除同名的預設。\n" -"「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。" msgid "" -"Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +"There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset." msgstr "" -"雲端同步衝突:發生了未預期或無法識別的預設衝突。\n" -"拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。" msgid "" "Force push will overwrite the cloud copy with your local preset changes.\n" @@ -1878,6 +1911,12 @@ msgstr "" "強制推送會以您本機的預設變更覆寫雲端副本。\n" "您要繼續嗎?" +#, c-format, boost-format +msgid "" +"Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\n" +"Do you want to continue?" +msgstr "" + msgid "Resolve cloud sync conflict" msgstr "解決雲端同步衝突" @@ -1957,8 +1996,9 @@ 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 "The preset \"%s\" 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 "" #, c-format, boost-format msgid "%s updated from %s to %s" @@ -2153,7 +2193,7 @@ msgid "Delete the selected object" msgstr "刪除所選物件" msgid "Backspace" -msgstr "" +msgstr "Backspace" msgid "Load..." msgstr "載入..." @@ -2179,6 +2219,9 @@ msgstr "Orca 立方體" msgid "OrcaSliced Combo" msgstr "OrcaSliced 複合模型" +msgid "Orca Badge" +msgstr "" + msgid "Orca Tolerance Test" msgstr "Orca 誤差測試" @@ -2537,7 +2580,7 @@ msgid "Center" msgstr "居中" msgid "Drop" -msgstr "" +msgstr "下降" msgid "Edit Process Settings" msgstr "編輯列印參數" @@ -2946,7 +2989,7 @@ msgid "Check the status of current system services" msgstr "請檢查目前系統服務狀態" msgid "code" -msgstr "" +msgstr "代碼" msgid "Failed to connect to cloud service" msgstr "無法連接到雲端服務" @@ -3471,7 +3514,7 @@ msgid "Orca Slicer is based on PrusaSlicer and BambuStudio" msgstr "Orca Slicer 基於 PrusaSlicer 與 BambuStudio" msgid "Libraries" -msgstr "" +msgstr "函式庫" msgid "This software uses open source components whose copyright and other proprietary rights belong to their respective owners" msgstr "本軟體採用了開源組件,其版權及相關專有權歸屬於各自的所有者" @@ -3615,7 +3658,7 @@ msgstr "校正完成。如下圖中的範例,請在您的熱床上找到最均 msgid "Save" msgstr "儲存" -# TODO: Review, changed by lang refactor. PR 14254 +msgctxt "Navigation" msgid "Back" msgstr "背面" @@ -4078,7 +4121,7 @@ msgid "The recommended nozzle temperature for this filament type is [%d, %d] deg msgstr "該線材的推薦噴嘴溫度是攝氏 [%d, %d] 度" msgid "Adaptive Pressure Advance model validation failed:\n" -msgstr "" +msgstr "自適應壓力補償模型驗證失敗:\n" # TODO: Review, changed by lang refactor. PR 14254 msgid "" @@ -4094,6 +4137,10 @@ msgstr "" msgid "Current chamber temperature is higher than the material's safe temperature; this may result in material softening and nozzle clogs. The maximum safe temperature for the material is %d" msgstr "目前列印設備內部溫度高於線材的安全溫度,可能會導致線材軟化和堵塞。線材的最高安全溫度為:%d" +#, c-format, boost-format +msgid "The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, so it should not exceed it. It will be clamped to the target." +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "" "Layer height too small\n" @@ -4686,7 +4733,7 @@ msgid "Invalid format. Expected vector format: \"%1%\"" msgstr "無效格式,應該是「%1%」這種格式" msgid "N/A" -msgstr "" +msgstr "不適用" msgid "Pick" msgstr "選取" @@ -4785,7 +4832,7 @@ msgid "Gap infill" msgstr "填縫" msgid "Skirt" -msgstr "" +msgstr "Skirt" msgid "Support interface" msgstr "支撐面" @@ -5017,6 +5064,7 @@ msgstr "取代工具" msgid "Color change" msgstr "顏色更換" +msgctxt "Noun" msgid "Print" msgstr "列印" @@ -5181,11 +5229,15 @@ msgstr "避開擠出校正區域" msgid "Align to Y axis" msgstr "與 Y 軸對齊" -msgctxt "Camera" +msgctxt "Camera View" +msgid "Back" +msgstr "背面" + +msgctxt "Camera View" msgid "Left" msgstr "左" -msgctxt "Camera" +msgctxt "Camera View" msgid "Right" msgstr "右" @@ -5234,6 +5286,12 @@ msgstr "所有列印板" msgid "Stats" msgstr "統計" +msgid "Slice" +msgstr "切片" + +msgid "Review" +msgstr "檢視" + msgid "Assembly Return" msgstr "退出組裝視角" @@ -5258,6 +5316,9 @@ msgstr "懸空" msgid "Outline" msgstr "輪廓線" +msgid "Wireframe" +msgstr "" + msgid "Realistic View" msgstr "擬真檢視" @@ -5505,6 +5566,10 @@ msgstr "列印單一列印板" msgid "Export G-code file" msgstr "匯出 G-code 檔案" +msgctxt "Verb" +msgid "Print" +msgstr "列印" + msgid "Export plate sliced file" msgstr "匯出單一列印板切片檔案" @@ -7885,6 +7950,50 @@ msgstr "選擇下載項目的目標資料夾" msgid "Choose Download Directory" 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 "Reload the network plug-in without restarting the application" +msgstr "重新載入網路外掛程式而無需重新啟動應用程式" + +msgid "Network plug-in reloaded successfully." +msgstr "網路外掛程式重新載入成功。" + +msgid "Reload" +msgstr "重新載入" + +msgid "Failed to reload network plug-in. Please restart the application." +msgstr "無法重新載入網路外掛程式。請重新啟動應用程式。" + +msgid "Reload Failed" +msgstr "重新載入失敗" + msgid "Associate" msgstr "關聯" @@ -7940,12 +8049,6 @@ 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 "將視窗按鈕置於左側" @@ -7976,6 +8079,13 @@ msgstr "載入方式" msgid "Should printer/filament/process settings be loaded when opening a 3MF file?" msgstr "開啟 .3mf 檔案時,是否需要載入列印設備、線材和參數設定?" +msgid "Auto backup" +msgstr "自動備份" + +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Backup your project periodically to help with restoring from an occasional crash." +msgstr "定期備份專案,以便從未預期的錯誤中恢復。" + msgid "Maximum recent files" msgstr "最近開啟的檔案上限" @@ -7994,12 +8104,55 @@ msgstr "顯示 STEP 網格參數設定視窗。" msgid "If enabled, a parameter settings dialog will appear during STEP file import." msgstr "啟用後,匯入 STEP 檔案時會顯示參數設定視窗。" -msgid "Auto backup" -msgstr "自動備份" +msgid "STEP importing: linear deflection" +msgstr "" -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Backup your project periodically to help with restoring from an occasional crash." -msgstr "定期備份專案,以便從未預期的錯誤中恢復。" +msgid "" +"Linear deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.003 mm." +msgstr "" + +msgid "STEP importing: angle deflection" +msgstr "" + +msgid "" +"Angle deflection used when meshing imported STEP files.\n" +"Smaller values produce higher-quality meshes but increase processing time.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: 0.5." +msgstr "" + +msgid "STEP importing: Split into multiple objects" +msgstr "" + +msgid "" +"If enabled, compound and compsolid shapes in imported STEP files are split into multiple objects.\n" +"Used as the default in the import dialog, or directly when the import dialog is disabled.\n" +"Default: disabled." +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 "" +"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n" +"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n" +"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。" + +msgid "Store full source file paths in projects" +msgstr "" + +msgid "If enabled, saved projects store the absolute path to imported source files (STEP/STL/...), so \"Reload from disk\" still works when the source file is kept in a different folder than the project. If disabled, only the filename is stored, which keeps projects portable and avoids embedding absolute paths." +msgstr "" msgid "Preset" msgstr "預設" @@ -8031,6 +8184,12 @@ msgstr "線材" msgid "Optimizes filament area maximum height by chosen filament count." 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 "Features" msgstr "功能" @@ -8043,21 +8202,6 @@ 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 "" -"控制將網格壓縮為 Draco 格式時使用的量化位元深度。\n" -"0 = 無損壓縮(幾何資料以完整精度保留)。有效的有損值範圍為 8 至 30。\n" -"較低的值會產生較小的檔案但損失更多幾何細節;較高的值會保留更多細節但檔案較大。" - msgid "Behaviour" msgstr "行為" @@ -8188,13 +8332,16 @@ msgid "Renders cast shadows on the plate in realistic view." msgstr "在擬真檢視中於列印板上算繪投射陰影。" msgid "Smooth normals" -msgstr "" +msgstr "平滑法線" msgid "" "Applies smooth normals to the realistic view.\n" "\n" "Requires manual scene reload to take effect (right-click on 3D view → \"Reload All\")." msgstr "" +"將平滑法線套用至擬真檢視。\n" +"\n" +"需要手動重新載入場景才能生效(在 3D 檢視中按一下滑鼠右鍵 →「重新載入所有物件」)。" msgid "Anti-aliasing" msgstr "抗鋸齒" @@ -8299,19 +8446,6 @@ msgstr "僅檢查穩定版更新" msgid "Auto sync user presets (Printer/Filament/Process)" msgstr "自動同步使用者預設(列印設備/線材/列印品質參數)" -# TODO: Review, changed by lang refactor. PR 14254 -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 "線材同步模式" @@ -8324,11 +8458,21 @@ msgstr "線材與顏色" msgid "Color only" msgstr "僅顏色" +# TODO: Review, changed by lang refactor. PR 14254 +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 "Bambu network plug-in" -msgstr "" +msgstr "Bambu 網路外掛程式" msgid "Enable Bambu network plug-in" -msgstr "" +msgstr "啟用 Bambu 網路外掛程式" msgid "Network plug-in version" msgstr "網路外掛程式版本" @@ -8336,35 +8480,6 @@ 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 "Orca Slicer 檔案關聯" @@ -8410,8 +8525,17 @@ msgstr "開發者" msgid "Skip AMS blacklist check" msgstr "跳過 AMS 黑名單檢查" -msgid "(Experimental) Keep painted feature after mesh change" -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 "Experimental Features" +msgstr "" + +msgid "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" @@ -8420,12 +8544,6 @@ msgstr "" "嘗試在變更物件網格(例如切割/從磁碟重新載入/簡化/修復等)後,保留已繪製的特徵(顏色/Z 縫/支撐/絨毛等)。\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 "允許異常儲存空間" @@ -8454,24 +8572,6 @@ msgstr "除錯" msgid "trace" msgstr "跟蹤" -msgid "Network plug-in" -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 "除錯" @@ -8487,25 +8587,6 @@ 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 "其他" - -# TODO: Review, changed by lang refactor. PR 14254 -msgid "Reverse scroll direction while zooming" -msgstr "縮放時滑鼠滾輪反轉" - msgid "Enable SSL(MQTT)" msgstr "啟用SSL(MQTT)" @@ -9214,6 +9295,12 @@ msgstr "刪除此預設" msgid "Search in preset" msgstr "在預設中搜尋" +msgid "Synchronization of different extruder drives or nozzle volume types is not supported." +msgstr "" + +msgid "Synchronize the modification of parameters to the corresponding parameters of another extruder." +msgstr "" + msgid "Click to reset all settings to the last saved preset." msgstr "點擊以將所有設定還原到最後一次儲存的版本。" @@ -9503,6 +9590,18 @@ msgstr "流量比與壓力補償" msgid "Print chamber temperature" msgstr "列印設備內部溫度" +msgid "Chamber temperature" +msgstr "列印設備內部溫度" + +msgid "Target chamber temperature, and the minimal chamber temperature at which printing should start" +msgstr "" + +msgid "Target" +msgstr "" + +msgid "Minimal" +msgstr "" + msgid "Print temperature" msgstr "列印溫度" @@ -9836,12 +9935,22 @@ msgid "Don't warn again for this preset" msgstr "不再為此預設顯示警告" #, c-format, boost-format -msgid "Left: %s" -msgstr "左:%s" +msgid "%s: %s" +msgstr "" + +msgid "No modifications need to be copied." +msgstr "" + +msgid "Copy paramters" +msgstr "" #, c-format, boost-format -msgid "Right: %s" -msgstr "右:%s" +msgid "Modify paramters of %s" +msgstr "" + +#, c-format, boost-format +msgid "Do you want to modify the following parameters of the %s to that of the %s?" +msgstr "" msgid "Click to reset current value and attach to the global value." msgstr "點擊該圖示,恢復到全域的設定數值,並與全域設定同步變化。" @@ -9861,7 +9970,7 @@ msgid "Transfer or discard changes" msgstr "放棄或保留更改" # TODO: Review, changed by lang refactor. PR 14254 -msgid "Old value" +msgid "Old Value" msgstr "舊值" msgid "New Value" @@ -9994,6 +10103,12 @@ msgstr "擠出機數量" msgid "Capabilities" msgstr "能力" +msgid "Left: " +msgstr "" + +msgid "Right: " +msgstr "" + msgid "Show all presets (including incompatible)" msgstr "顯示所有預設(包括不相容的)" @@ -11235,7 +11350,7 @@ msgid "The precise wall option will be ignored for outer-inner or inner-outer-in msgstr "當壁序列為外內或內外內時,精確牆壁選項將被忽略。" msgid "The Adaptive Pressure Advance model for one or more extruders may contain invalid values." -msgstr "" +msgstr "一個或多個擠出機的自適應壓力補償模型可能包含無效值。" msgid "Filament shrinkage will not be used because filament shrinkage for the used filaments does not match." msgstr "線材收縮補償將被停用,因為所使用的線材之間的收縮率差異過大。" @@ -11243,6 +11358,15 @@ msgstr "線材收縮補償將被停用,因為所使用的線材之間的收縮 msgid "Generating skirt & brim" msgstr "正在產生 Skirt 和 Brim" +msgid "" +"Per-object skirts cannot fit between the objects in By object print sequence.\n" +"\n" +"Move the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer." +msgstr "" +"在「逐件」列印順序下,物件之間無法容納各別物件的 Skirt。\n" +"\n" +"請加大物件之間的距離、縮小 Brim/Skirt 尺寸、將 Skirt 類型切換為「合併」,或將列印順序切換為「逐層」。" + msgid "Exporting G-code" msgstr "正在匯出 G-code" @@ -12160,6 +12284,25 @@ msgstr "普通列印" msgid "This is the default acceleration for both normal printing and travel after the first layer." msgstr "除首層之外的預設的列印和空駛的加速度" +msgid "Acceleration of travel moves." +msgstr "空駛加速度" + +msgid "First layer travel" +msgstr "首層空駛" + +msgid "" +"Travel acceleration of first layer.\n" +"The percentage value is relative to Travel Acceleration." +msgstr "" +"首層的空駛加速度。\n" +"百分比數值是相對於空駛加速度。" + +msgid "mm/s² or %" +msgstr "mm/s² 或 %" + +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 "Default filament profile" msgstr "預設線材設定檔" @@ -12372,6 +12515,12 @@ msgstr "阿基米德和弦" msgid "Octagram Spiral" msgstr "八角螺旋" +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 pattern" msgstr "底面圖案" @@ -12379,6 +12528,16 @@ msgstr "底面圖案" msgid "This is the line pattern of bottom surface infill, not including bridge infill." msgstr "除了橋接外的底面填充的走線圖案" +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 "Internal solid infill pattern" msgstr "內部實心填充圖案" @@ -12404,6 +12563,18 @@ msgstr "微小部位周長臨界值" msgid "This sets the threshold for small perimeter length. Default threshold is 0mm." msgstr "這設定了微小部位周長的臨界值。 預設臨界值是 0mm" +msgid "Small support perimeters" +msgstr "" + +msgid "Same as \"Small perimeters\", but for supports. This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. Set to zero for auto." +msgstr "" + +msgid "Small support perimeters threshold" +msgstr "" + +msgid "This sets the threshold for small support perimeter length. The default threshold is 0mm." +msgstr "" + msgid "Walls printing order" msgstr "牆列印順序" @@ -12586,22 +12757,26 @@ msgstr "" "2. 記錄每個體積流速和加速度的最佳壓力補償 (PA) 值。您可以通過從顏色方案下拉選單中選擇流量,並將水平滑桿移動到 PA 測試線的圖案來找到流量數值。該數值應顯示在頁面底部。理想的 PA 值應隨著體積流速的增加而減小。如果不是,請檢查您的擠出機是否正常工作。當列印速度較慢且加速度較低時,可接受的 PA 值範圍會更大。如果看不出差異,請採用最快測試的 PA 值。\n" "3. 將 PA 值、流量和加速度的三組資料輸入到此文字框中,然後保存您的線材設定檔" -msgid "Enable adaptive pressure advance for overhangs (beta)" -msgstr "啟用懸挑自適應壓力補償 (beta)" - -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" -"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +msgid "Enable adaptive pressure advance within features (beta)" msgstr "" -msgid "Pressure advance for bridges" -msgstr "橋接的壓力補償" +msgid "" +"Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n" +"\n" +"Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n" +"\n" +"This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues." +msgstr "" + +msgid "Static pressure advance for bridges" +msgstr "" msgid "" -"Pressure advance value for bridges. Set to 0 to disable.\n" +"Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" +"equivalent walls (using adaptive settings if enabled).\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 "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。" +"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 "" 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 時走線的預設線寬。如果以 % 表示,將以噴嘴直徑為基準來計算。" @@ -12672,18 +12847,6 @@ 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 "清理溫度" @@ -12995,6 +13158,22 @@ msgstr "實心填充方向" msgid "Angle for solid infill pattern, which controls the start or main direction of line." msgstr "實心填充圖案的角度設定,用於決定線條的起始方向或主要列印方向" +msgid "Top layer direction" +msgstr "" + +msgid "" +"Fixed angle for the top solid infill and ironing lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + +msgid "Bottom layer direction" +msgstr "" + +msgid "" +"Fixed angle for the bottom solid infill lines.\n" +"Set to -1 to follow the default solid infill direction." +msgstr "" + msgid "Sparse infill density" msgstr "稀疏填充密度" @@ -13028,7 +13207,7 @@ msgid "Z-buckling bias optimization (experimental)" msgstr "Z 軸挫曲偏置最佳化(實驗性)" # TODO: Review, changed by lang refactor. PR 14254 -#, fuzzy, c-format, boost-format +#, no-c-format, no-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% 稀疏填充密度及以上時無效果。僅在稀疏填充圖案設為螺旋體時適用。" @@ -13096,79 +13275,6 @@ 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 軸方向第一組 2D 網格結構的角度,0° 表示垂直方向。" - -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 軸方向第二組 2D 網格結構的角度,0° 表示垂直方向。" - -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 "" -"控制短的或無支撐的閃電分支被修剪的積極程度。\n" -"此角度會在內部轉換為每層的距離。" - -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" -"將此參數設為 0 可停用單條填充線與牆的錨接功能。" - -msgid "0 (no open anchors)" -msgstr "0(無錨線)" - -msgid "1000 (unlimited)" -msgstr "1000(無限制)" - -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 限制,但不會超過此參數的設定值。若此參數設定為 0,將啟用舊版填充連接算法,並產生與設置為 1000 和 0 相同的結果。" - -msgid "0 (Simple connect)" -msgstr "0(簡單連接)" - -msgid "Acceleration of inner walls." -msgstr "內牆加速度,使用較低值可以改善列印品質" - -msgid "Acceleration of travel moves." -msgstr "空駛加速度" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the acceleration of top surface infill. Using a lower value may improve top surface quality." msgstr "頂面填充的加速度。使用較低值可能會改善頂面列印品質" @@ -13177,11 +13283,8 @@ 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 "mm/s² 或 %" +msgid "Acceleration of inner walls." +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%),則將根據預設加速度進行計算。" @@ -13193,16 +13296,6 @@ msgstr "內部實心填充加速度。 如果該值以百分比表示(例如 1 msgid "This is the printing acceleration for the first layer. Using limited acceleration 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 "啟用煞車速度" @@ -13277,7 +13370,7 @@ msgid "Travel speed of the first layer." msgstr "首層空駛速度" msgid "Number of slow layers" -msgstr "" +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 "減慢前幾層的列印速度。列印速度會逐漸加速到滿速。" @@ -13299,6 +13392,17 @@ msgstr "風扇速度會從第「close_fan_the_first_x_layers」層開始,從 msgid "layer" msgstr "層" +msgid "First layer fan speed" +msgstr "" + +msgid "" +"Sets an exact fan speed for the first layer, overriding all other cooling settings. Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from a hot bed. A small amount of airflow cools the ducts down, without using full cooling that may in certain conditions hurt first-layer adhesion.\n" +"From the second layer onwards, normal cooling resumes.\n" +"If \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value on the first layer up to your target by the chosen layer.\n" +"Only available when \"No cooling for the first\" is 0.\n" +"Set to -1 to disable it." +msgstr "" + msgid "Support interface fan speed" msgstr "支撐界面風扇速度" @@ -13836,6 +13940,73 @@ msgstr "結塊檢測排除區域" msgid "Probing exclude area of clumping." 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 軸方向第一組 2D 網格結構的角度,0° 表示垂直方向。" + +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 軸方向第二組 2D 網格結構的角度,0° 表示垂直方向。" + +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 "" +"控制短的或無支撐的閃電分支被修剪的積極程度。\n" +"此角度會在內部轉換為每層的距離。" + +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" +"將此參數設為 0 可停用單條填充線與牆的錨接功能。" + +msgid "0 (no open anchors)" +msgstr "0(無錨線)" + +msgid "1000 (unlimited)" +msgstr "1000(無限制)" + +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 限制,但不會超過此參數的設定值。若此參數設定為 0,將啟用舊版填充連接算法,並產生與設置為 1000 和 0 相同的結果。" + +msgid "0 (Simple connect)" +msgstr "0(簡單連接)" + msgid "" "Filament to print internal sparse infill.\n" "\"Default\" uses the active object/part filament." @@ -14735,6 +14906,18 @@ msgstr "直驅(近程)" msgid "Bowden" 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 "Extra length on restart" msgstr "額外回填長度" @@ -14791,6 +14974,10 @@ msgstr "對齊" msgid "Aligned back" msgstr "背部對齊" +# TODO: Review, changed by lang refactor. PR 14254 +msgid "Back" +msgstr "背面" + msgid "Random" msgstr "隨機" @@ -15155,6 +15342,9 @@ msgstr "在三角網格切片過程中,寬度小於 2 倍間隙閉合半徑的 msgid "Slicing Mode" msgstr "切片模式" +msgid "Other" +msgstr "其他" + msgid "Use \"Even-odd\" for 3DLabPrint airplane models. Use \"Close holes\" to close all holes in the model." msgstr "針對 3DLabPrint 飛機模型,請選擇『奇偶』模式。若需閉合模型中的所有孔洞,請啟用『閉合孔洞』選項。" @@ -15520,9 +15710,6 @@ msgid "" "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 "啟用此選項後,將自動控制機箱溫度。此功能會在執行『machine_start_gcode』之前發送 M191 指令,用於設定機箱溫度並等待達到設定值。此外,在列印結束時會傳送 M141 指令以關閉機箱加熱器(若設備有加熱器)。此功能需要韌體原生支援或通過宏指令支援 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" @@ -15531,6 +15718,17 @@ msgid "" "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 的空氣過濾效率。對於 PLA、PETG、TPU、PVA 和其他低溫材料,建議將此選項停用(設為 0),因機箱溫度應保持較低,以避免因材料在熱端軟化而導致擠出機堵塞。啟用此選項後,會設置一個名為 chamber_temperature 的 G-code 變數,可用於將所需的機箱溫度傳遞給列印開始宏,或像以下的熱浸泡宏(預熱):PRINT_START (其他變數) CHAMBER_TEMP=[chamber_temperature]。這對於不支援 M141/M191 指令的列印設備,或者希望在列印開始宏中處理熱浸泡(預熱)但未安裝主動機箱加熱器的情況下非常實用。" +msgid "" +"This is the chamber temperature at which printing should start, while the chamber continues heating toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n" +"\n" +"It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n" +"\n" +"Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes the value to your custom G-code. It should not exceed the \"Target\" chamber temperature." +msgstr "" + +msgid "Chamber minimal temperature" +msgstr "" + # TODO: Review, changed by lang refactor. PR 14254 msgid "Nozzle temperature after the first layer" msgstr "除首層外的其它層的噴嘴溫度" @@ -15575,22 +15773,6 @@ 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 a shell when layer height is small. 0 means that this setting is disabled and thickness of top shell is determined simply by the number of 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" -"警告:降低此數值可能會對熱床附著力產生負面影響" - # TODO: Review, changed by lang refactor. PR 14254 msgid "This is the speed at which traveling is done." msgstr "空駛的速度。空駛是無擠出量的快速移動" @@ -15838,6 +16020,14 @@ msgstr "扭曲多邊形孔" msgid "Rotate the polyhole every layer." msgstr "依層旋轉多邊形孔。" +msgid "Maximum Polyhole edge count" +msgstr "" + +msgid "" +"Maximum number of polyhole edges\n" +"This setting limits the amount of edges a polyhole can have" +msgstr "" + msgid "G-code thumbnails" msgstr "G-code 縮圖" @@ -15983,9 +16173,6 @@ 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 塊板,其餘則為無效輸入" @@ -18138,7 +18325,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 "需要選擇列印設備" @@ -18234,6 +18421,132 @@ msgstr "登入/測試" msgid "Connection to printers connected via the print host failed." msgstr "經由列印主機連接的列印設備連接失敗。" +msgid "Detect Creality K-series printer" +msgstr "" + +msgid "Click Scan to look for K-series printers on your network." +msgstr "" + +msgid "Use Selected" +msgstr "" + +msgid "Scanning the LAN for K-series printers... this takes a few seconds." +msgstr "" + +msgid "No K-series printers found. Make sure the printer is on the same network and not blocked by Wi-Fi client isolation, then click Scan again." +msgstr "" + +#, c-format +msgid "Found %zu Creality printer(s). Select one and click Use Selected." +msgstr "" + +msgid "Active" +msgstr "" + +msgid "Printers" +msgstr "" + +msgid "Processes" +msgstr "" + +msgid "Show/Hide system information" +msgstr "" + +msgid "Copy system information to clipboard" +msgstr "" + +msgid "We need information for diagnosing source of the issue. Check wiki page for detailed guide." +msgstr "" + +msgid "Pack button collects project file and logs of current session onto a zip file." +msgstr "" + +msgid "Any additional visual examples like images or screen recordings might be helpful while reporting the issue." +msgstr "" + +msgid "Report issue" +msgstr "" + +msgid "Pack" +msgstr "" + +msgid "Cleans and rebuilds system profiles cache on next launch" +msgstr "" + +msgid "Clean system profiles cache" +msgstr "" + +msgid "Clean" +msgstr "" + +msgid "Loaded profiles overview" +msgstr "" + +msgid "This section shows information for loaded profiles" +msgstr "" + +msgid "Exports detailed overview of loaded profiles in json format" +msgstr "" + +msgid "Configurations folder" +msgstr "" + +msgid "Opens configurations folder" +msgstr "" + +msgid "Log level" +msgstr "" + +msgid "Stored logs" +msgstr "" + +msgid "Packs all stored logs onto a zip file." +msgstr "" + +msgid "Profiles" +msgstr "" + +msgid "Select NO to close dialog and review project" +msgstr "" + +msgid "No project file on current session. Only logs will be included to package" +msgstr "" + +msgid "Select NO to close dialog and review project." +msgstr "" + +msgid "Please make sure any instances of OrcaSlicer are not running" +msgstr "" + +msgid "System folder cannot be deleted because some files are in use by another application. Please close any applications using these files and try again." +msgstr "" + +msgid "Failed to delete system folder..." +msgstr "" + +msgid "Failed to determine executable path." +msgstr "" + +msgid "Failed to launch a new instance." +msgstr "" + +msgid "log(s)" +msgstr "" + +msgid "Choose where to save the exported JSON file" +msgstr "" + +msgid "" +"Export failed\n" +"Please check write permissions or file in use by another application" +msgstr "" + +msgid "Choose where to save the exported ZIP file" +msgstr "" + +msgid "File already exists. Overwrite?" +msgstr "" + msgid "3DPrinterOS Cloud upload options" msgstr "3DPrinterOS 雲端上傳選項" @@ -18316,6 +18629,19 @@ msgstr "成功連接到 MKS。" msgid "Could not connect to MKS" msgstr "無法連接到 MKS" +msgid "Connection to Moonraker is working correctly." +msgstr "" + +msgid "Could not connect to Moonraker" +msgstr "" + +msgid "The host responded but it doesn't look like Moonraker (missing result.klippy_state)." +msgstr "" + +#, c-format, boost-format +msgid "Could not parse Moonraker server response: %s" +msgstr "" + msgid "Connection to OctoPrint is working correctly." msgstr "與 OctoPrint 的連接工作正常。" @@ -19066,6 +19392,12 @@ msgstr "三角面片數量" msgid "Calculating, please wait..." msgstr "正在計算,請稍候..." +msgid "Save these settings as default" +msgstr "" + +msgid "If enabled, the values above are stored as the defaults used for future STEP imports (and shown in Preferences)." +msgstr "" + msgid "PresetBundle" msgstr "設定檔組" @@ -19497,6 +19829,110 @@ msgstr "" "您知道嗎?當列印容易翹曲的材料(如 ABS)時,適當提高熱床溫度\n" "可以降低翹曲的機率。" +#~ msgid "Print" +#~ msgstr "列印" + +#~ msgid "in" +#~ msgstr "在" + +#~ msgid "Object coordinates" +#~ msgstr "物件座標" + +#~ msgid "World coordinates" +#~ msgstr "世界座標" + +#~ msgid "Translate(Relative)" +#~ msgstr "平移(相對)" + +#~ msgid "Rotate (absolute)" +#~ msgstr "旋轉(絕對)" + +#~ msgid "Part coordinates" +#~ msgstr "零件座標" + +#~ 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 "" +#~ "雲端同步衝突:此預設在 OrcaCloud 中有較新的版本。\n" +#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫雲端版本。" + +#~ 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 "" +#~ "雲端同步衝突:OrcaCloud 中已有同名的預設。\n" +#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。" + +#~ msgid "" +#~ "Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" +#~ "Delete will delete your local preset. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "雲端同步衝突:先前已從雲端刪除同名的預設。\n" +#~ "「刪除」將刪除您的本機預設。「強制推送」會以您的本機預設覆寫它。" + +#~ msgid "" +#~ "Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" +#~ "Pull downloads the cloud copy. Force push overwrites it with your local preset." +#~ msgstr "" +#~ "雲端同步衝突:發生了未預期或無法識別的預設衝突。\n" +#~ "拉取會下載雲端副本。強制推送會以您的本機預設覆寫它。" + +#~ 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)。請移除自訂設定以減少預設大小,或僅在本機使用。" + +#~ msgid "Enable adaptive pressure advance for overhangs (beta)" +#~ msgstr "啟用懸挑自適應壓力補償 (beta)" + +#~ 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" +#~ "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects." +#~ msgstr "" +#~ "針對懸空以及同一特徵內的流量變化啟用自適應壓力補償 (PA)。這是一個實驗性選項,因為若 PA 設定檔設定不準確,將會導致懸空前後的外表面出現均勻性問題。\n" +#~ "與 Prusa 印表機不相容,因為它們會暫停以處理 PA 變更,進而導致延遲與瑕疵。" + +#~ msgid "Pressure advance for bridges" +#~ msgstr "橋接的壓力補償" + +#~ 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 "橋接的壓力補償值。設為 0 以停用此功能。降低橋接時的壓力補償值有助於減少橋接結束後立即出現的輕微欠擠出現象。這種現象是由於在空中列印時噴嘴內壓力下降引起的,而降低壓力補償值有助於抵消這一影響。" + +#~ msgid "Filament Sync Options" +#~ msgstr "線材同步選項" + +#~ msgid "(Experimental) Keep painted feature after mesh change" +#~ msgstr "(實驗性)在網格變更後保留繪製的特徵" + +#~ msgid "Network plug-in" +#~ msgstr "網路外掛程式" + +#~ msgid "View control settings" +#~ msgstr "視角控制設定" + +#~ msgid "Rotate view" +#~ msgstr "旋轉視角" + +#~ msgid "Pan view" +#~ msgstr "移動視角" + +#~ msgid "Zoom view" +#~ msgstr "縮放視角" + +# TODO: Review, changed by lang refactor. PR 14254 +#~ msgid "Reverse scroll direction while zooming" +#~ msgstr "縮放時滑鼠滾輪反轉" + +#, c-format, boost-format +#~ msgid "Left: %s" +#~ msgstr "左:%s" + +#, c-format, boost-format +#~ msgid "Right: %s" +#~ msgstr "右:%s" + #~ msgid "Enable network plug-in" #~ msgstr "啟用網路外掛程式" diff --git a/resources/handy_models/OrcaBadge.3mf b/resources/handy_models/OrcaBadge.3mf new file mode 100644 index 0000000000..936c7f038b Binary files /dev/null and b/resources/handy_models/OrcaBadge.3mf differ diff --git a/resources/handy_models/OrcaSliced.drc b/resources/handy_models/OrcaSliced.drc deleted file mode 100644 index 1dc9072b35..0000000000 Binary files a/resources/handy_models/OrcaSliced.drc and /dev/null differ diff --git a/resources/hms/hms_lt_093.json b/resources/hms/hms_lt_093.json new file mode 100644 index 0000000000..e5e8e8fea5 --- /dev/null +++ b/resources/hms/hms_lt_093.json @@ -0,0 +1,20905 @@ +{ + "result": 0, + "t": 1755870814, + "ver": 202508192303, + "data": { + "device_hms": { + "ver": 202508191204, + "lt": [ + { + "ecode": "0C00020000010001", + "intro": "Aukščio matavimo lazeris nesuveikia. Patikrinkite, ar nėra kliūčių arba ar nėra atsipalaidavęs įrankio galvutės kameros kabelis." + }, + { + "ecode": "0300D70000020001", + "intro": "Ketvirtoji lazerio ašis nėra prijungta" + }, + { + "ecode": "0300D80000010002", + "intro": "Lazerinio įrenginio ketvirtosios ašies variklio klaida. Išjunkite ir vėl įjunkite įrenginį, kad iš naujo paleistumėte lazerio ketvirtąją ašį." + }, + { + "ecode": "0300D80000010001", + "intro": "Lazerinio įrenginio ketvirtosios ašies variklis turi atvirą grandinę. Gali būti, kad jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0500050000010021", + "intro": "Nepavyko patvirtinti „Time-lapse“ rinkinio. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0300D50000020004", + "intro": "Gaisro gesintuvo balionas neįmontuotas. Prašome patikrinti gesintuvo puslapyje." + }, + { + "ecode": "0501040000030002", + "intro": "Sriegines strypus dabar reikia sutepti." + }, + { + "ecode": "0500050000020030", + "intro": "" + }, + { + "ecode": "0300910000010008", + "intro": "kameros šildytuvas nepasiekė nustatytos temperatūros." + }, + { + "ecode": "030018000001000C", + "intro": "Aptiktas neįprastas ekstruderių ekstruzijos jėgos jutiklio duomenų šuolis, kurį galėjo sukelti prastas jutiklio kontaktas arba jutiklio gedimas." + }, + { + "ecode": "0C00040000020029", + "intro": "Lazerinis arba pjovimo modulis nėra kalibruotas. Pirmiausia jį kalibruokite spausdintuve." + }, + { + "ecode": "0501040000030004", + "intro": "Prašome išvalyti ir sutepti X ašies linijinę bėgį bei YZ ašių linijines strypus." + }, + { + "ecode": "0501040000030010", + "intro": "Lazerinis modulis yra užsidengęs dulkėmis ir jį reikia nedelsiant išvalyti." + }, + { + "ecode": "0300180000030009", + "intro": "Atliekamas pirminis aukštos temperatūros pagrindo išlyginimas." + }, + { + "ecode": "03002D0000030009", + "intro": "Atliekamas pirminis aukštos temperatūros pagrindo išlyginimas." + }, + { + "ecode": "0300D60000010007", + "intro": "Gaisro gesintuvo variklio atstatymo mechanizmas užstrigo. Prašome atsargiai pasukti avarinį rankinį ratą į kairę ir į dešinę, kol pasipriešinimas sumažės. Tada išjunkite gaisro gesintuvą ir vėl jį įjunkite." + }, + { + "ecode": "0C0001000002000E", + "intro": "" + }, + { + "ecode": "0500030000010053", + "intro": "" + }, + { + "ecode": "0500040000030054", + "intro": "Aptikta automatinė gaisro gesinimo sistema. Rekomenduojama surengti gaisrinę pratybą, kad susipažintumėte su jos veikimo tvarka." + }, + { + "ecode": "1800020000020002", + "intro": "AMS-HT A jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0500050000010009", + "intro": "" + }, + { + "ecode": "0500050000010008", + "intro": "" + }, + { + "ecode": "050005000001000B", + "intro": "" + }, + { + "ecode": "050005000001000A", + "intro": "" + }, + { + "ecode": "050005000001000C", + "intro": "" + }, + { + "ecode": "0C00010000020016", + "intro": "" + }, + { + "ecode": "0C00010000020015", + "intro": "" + }, + { + "ecode": "0500010000020003", + "intro": "" + }, + { + "ecode": "0500030000020012", + "intro": "" + }, + { + "ecode": "0500030000020013", + "intro": "" + }, + { + "ecode": "0500030000020014", + "intro": "" + }, + { + "ecode": "0500030000020015", + "intro": "" + }, + { + "ecode": "0500030000020016", + "intro": "" + }, + { + "ecode": "0500030000020017", + "intro": "" + }, + { + "ecode": "0500030000020018", + "intro": "" + }, + { + "ecode": "0500060000020007", + "intro": "" + }, + { + "ecode": "0500010000020009", + "intro": "" + }, + { + "ecode": "05000600000200A1", + "intro": "" + }, + { + "ecode": "0500060000020013", + "intro": "" + }, + { + "ecode": "0500060000020012", + "intro": "" + }, + { + "ecode": "0500060000020023", + "intro": "" + }, + { + "ecode": "0500060000020005", + "intro": "" + }, + { + "ecode": "0500060000020024", + "intro": "" + }, + { + "ecode": "0500060000020011", + "intro": "" + }, + { + "ecode": "0500060000020008", + "intro": "" + }, + { + "ecode": "0500060000020022", + "intro": "" + }, + { + "ecode": "0500010000020008", + "intro": "" + }, + { + "ecode": "0500060000020014", + "intro": "" + }, + { + "ecode": "0C00010000020019", + "intro": "" + }, + { + "ecode": "0500060000020051", + "intro": "" + }, + { + "ecode": "0500060000020054", + "intro": "" + }, + { + "ecode": "0500060000020043", + "intro": "" + }, + { + "ecode": "0500060000020053", + "intro": "" + }, + { + "ecode": "0500060000020044", + "intro": "" + }, + { + "ecode": "0500060000020061", + "intro": "" + }, + { + "ecode": "0C0001000002001B", + "intro": "" + }, + { + "ecode": "0C0001000002001A", + "intro": "" + }, + { + "ecode": "0500060000020041", + "intro": "" + }, + { + "ecode": "0500060000020062", + "intro": "" + }, + { + "ecode": "0C00040000030028", + "intro": "Nepavyko atlikti pjovimo modulio poslinkio kalibravimo, dėl to pjūviai gali būti netikslūs. Įsitikinkite, kad 80 g baltas spausdinimo popierius (letter formato storio) yra tinkamai įdėtas, ir patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0C00040000030026", + "intro": "Siekiant padidinti liepsnos aptikimo tikslumą, dešinioji kameros lemputė buvo automatiškai išjungta." + }, + { + "ecode": "0500030000020010", + "intro": "" + }, + { + "ecode": "0500030000020011", + "intro": "" + }, + { + "ecode": "0500030000030007", + "intro": "" + }, + { + "ecode": "0500010000030009", + "intro": "" + }, + { + "ecode": "05000600000200A0", + "intro": "" + }, + { + "ecode": "0500060000020021", + "intro": "" + }, + { + "ecode": "0300D50000020005", + "intro": "Gaisro gesintuvo dujų balionas yra tuščias. Prašome pakeisti dujų balioną ir po to patvirtinti jo pakeitimą puslapyje „Automatinė gaisro gesinimo sistema“." + }, + { + "ecode": "0300D10000010002", + "intro": "Gaisro gesintuvo variklio gedimas. Išjunkite ir vėl įjunkite gesintuvą, kad jį paleistumėte iš naujo." + }, + { + "ecode": "0300D40000010002", + "intro": "Gaisro gesintuvo buvimo jutiklis veikia netinkamai. Patikrinkite, ar jutiklio kabelis nėra atsipalaidavęs ar pažeistas." + }, + { + "ecode": "0300D30000020001", + "intro": "Gaisrinis gesintuvas neaptiktas. Patikrinkite, ar signalinis kabelis yra tvirtai prijungtas, o kištukas – iki galo įkištas." + }, + { + "ecode": "0300D60000010006", + "intro": "Nepavyko iš naujo paleisti gesintuvo variklio. Norėdami iš naujo paleisti gesintuvą, išjunkite ir vėl įjunkite maitinimą." + }, + { + "ecode": "03002D0000010006", + "intro": "Nepavyko išlyginti šildomo spausdinimo stalo – galbūt dėl ant jo esančių svetimkūnių arba dėl to, kad stalas yra pasviręs. Tęsiant spausdinimą, gali būti pažeistas spausdinimo stalas. Prieš bandant dar kartą, pašalinkite visus nešvarumus arba rankiniu būdu išlyginkite stalą." + }, + { + "ecode": "0500030000020055", + "intro": "Vartotojo duomenų galiojimo laikas baigėsi, prašome prisijungti iš naujo." + }, + { + "ecode": "0300D10000010001", + "intro": "Gaisro gesintuvo variklis turi atvirą grandinę. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300290000010001", + "intro": "Vaizdo kodavimo šablonai negali būti atpažinti; galimos priežastys – vaizdo kodavimo šablono iškraipymas, per didelė apšvieta ir plokštelės netinkamas padėties nustatymas." + }, + { + "ecode": "0500050000010019", + "intro": "Gaisro gesintuvo modulio sertifikavimas nepavyko. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500050000010018", + "intro": "Nepavyko sertifikuoti lazerio ketvirtosios ašies modulio. Prašome iš naujo prijungti modulio kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1803900000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807910000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800910000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800900000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0704900000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1803910000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0705900000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1805900000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0706900000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1804900000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0707900000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1802900000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1805910000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1804910000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806900000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0700910000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702900000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0706910000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0701910000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801910000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806910000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0703910000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0700900000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0704910000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0705910000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702910000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0703900000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801900000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807900000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1802910000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0702960000020004", + "intro": "AMS C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1800960000020004", + "intro": "AMS-HT A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0704960000020004", + "intro": "AMS E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1801250000020001", + "intro": "AMS-HT B spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1803250000020001", + "intro": "AMS-HT D spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1807250000020001", + "intro": "AMS-HT H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1806250000020001", + "intro": "AMS-HT G spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0703960000020004", + "intro": "AMS D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0707960000020004", + "intro": "AMS H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1802960000020004", + "intro": "AMS-HT C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1803960000020004", + "intro": "AMS-HT D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0706960000020004", + "intro": "AMS G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804960000020004", + "intro": "AMS-HT E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0701960000020004", + "intro": "AMS B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1807960000020004", + "intro": "AMS-HT H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804250000020001", + "intro": "AMS-HT E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1805960000020004", + "intro": "AMS-HT F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1805250000020001", + "intro": "AMS-HT F spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1800250000020001", + "intro": "AMS-HT A spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1801960000020004", + "intro": "AMS-HT B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1806960000020004", + "intro": "AMS-HT G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1802250000020001", + "intro": "AMS-HT C spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700960000020004", + "intro": "AMS A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0705960000020004", + "intro": "AMS F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0703250000020001", + "intro": "AMS D spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700250000020001", + "intro": "AMS A spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0701250000020001", + "intro": "AMS B spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0706250000020001", + "intro": "„AMS G“ spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0702250000020001", + "intro": "„AMS C“ spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0705250000020001", + "intro": "AMS F spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prašome prijungti maitinimo adapterį." + }, + { + "ecode": "0707250000020001", + "intro": "AMS H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0704250000020001", + "intro": "AMS E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0500060000020001", + "intro": "„Toolhead“ kamera nėra įtaisyta; patikrinkite aparatūros jungtį." + }, + { + "ecode": "0701900000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0707910000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0700610000020001", + "intro": "AMS A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701610000020001", + "intro": "AMS B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701620000020001", + "intro": "AMS B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701630000020001", + "intro": "AMS B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702600000020001", + "intro": "AMS C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802620000020001", + "intro": "AMS-HT C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707620000020001", + "intro": "AMS H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803620000020001", + "intro": "AMS-HT D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804610000020001", + "intro": "AMS-HT E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804630000020001", + "intro": "AMS-HT E lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707630000020001", + "intro": "AMS H Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807600000020001", + "intro": "AMS-HT H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705630000020001", + "intro": "AMS F Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704600000020001", + "intro": "AMS E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800600000020001", + "intro": "AMS-HT A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707600000020001", + "intro": "AMS H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801610000020001", + "intro": "AMS-HT B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706600000020001", + "intro": "AMS G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706630000020001", + "intro": "AMS G Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802600000020001", + "intro": "AMS-HT C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801630000020001", + "intro": "AMS-HT B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806630000020001", + "intro": "AMS-HT G lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704630000020001", + "intro": "AMS E Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805610000020001", + "intro": "AMS-HT F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802630000020001", + "intro": "AMS-HT C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804620000020001", + "intro": "AMS-HT E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805620000020001", + "intro": "AMS-HT F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800620000020001", + "intro": "AMS-HT A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706610000020001", + "intro": "AMS G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705620000020001", + "intro": "AMS F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805600000020001", + "intro": "AMS-HT F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803610000020001", + "intro": "AMS-HT D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801600000020001", + "intro": "AMS-HT B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807620000020001", + "intro": "AMS-HT H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807630000020001", + "intro": "AMS-HT H lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804600000020001", + "intro": "AMS-HT E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707610000020001", + "intro": "AMS H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806620000020001", + "intro": "AMS-HT G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0300180000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių. Taip pat įsitikinkite, kad spausdinimo plokštė yra teisingai įdėta, kad būtų išvengta susidūrimų su aplinkinėmis konstrukcijomis." + }, + { + "ecode": "0700600000020001", + "intro": "AMS A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700620000020001", + "intro": "AMS A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700630000020001", + "intro": "AMS A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701600000020001", + "intro": "AMS B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702610000020001", + "intro": "AMS C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702620000020001", + "intro": "AMS C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702630000020001", + "intro": "AMS C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703600000020001", + "intro": "AMS D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703610000020001", + "intro": "AMS D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703620000020001", + "intro": "AMS D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703630000020001", + "intro": "AMS D Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806600000020001", + "intro": "AMS-HT G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706620000020001", + "intro": "AMS G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805630000020001", + "intro": "AMS-HT F lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803630000020001", + "intro": "AMS-HT D lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705610000020001", + "intro": "AMS F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806610000020001", + "intro": "AMS-HT G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704620000020001", + "intro": "AMS E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800630000020001", + "intro": "AMS-HT A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807610000020001", + "intro": "AMS-HT H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803600000020001", + "intro": "AMS-HT D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802610000020001", + "intro": "AMS-HT C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800610000020001", + "intro": "AMS-HT A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801620000020001", + "intro": "AMS-HT B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705600000020001", + "intro": "AMS F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704610000020001", + "intro": "AMS E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "050003000002000E", + "intro": "Kai kurie moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos naudojimui. Prisijungę prie interneto, eikite į puslapį „Aparatinė programinė įranga“ ir atnaujinkite aparatinę programinę įrangą; taip pat galite atnaujinti aparatinę programinę įrangą neprisijungę prie interneto, vadovaudamiesi wiki nurodymais." + }, + { + "ecode": "0C00030000020015", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Nustatyta, kad „Live View“ kamera buvo pakeista. Jei įdiegtas lazerinis arba pjovimo modulis, išimkite jį, spustelėkite spausdintuvo ekrane „Nustatymai > Kalibravimas“ ir iš naujo kalibruokite „Live View“ kamerą." + }, + { + "ecode": "0500050000010007", + "intro": "Nepavyko patikrinti MQTT komandos. Atnaujinkite „Studio“ (įskaitant tinklo įskiepį) arba „Handy“ iki naujausios versijos, tada iš naujo paleiskite programą ir pabandykite dar kartą." + }, + { + "ecode": "030095000001000A", + "intro": "Lazerinio modulio apačioje esantis aplinkos temperatūros jutiklis veikia netinkamai; jutiklyje yra atvira grandinė." + }, + { + "ecode": "0300950000010009", + "intro": "Lazerinio modulio apačioje esantis aplinkos temperatūros jutiklis veikia netinkamai; jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0706230000020025", + "intro": "AMS G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800220000020025", + "intro": "AMS-HT A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1800230000020025", + "intro": "AMS-HT A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807210000020025", + "intro": "AMS-HT H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0707230000020025", + "intro": "AMS H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700230000020025", + "intro": "AMS A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701210000020025", + "intro": "AMS B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807200000020025", + "intro": "AMS-HT H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801230000020025", + "intro": "AMS-HT B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706230000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702220000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804230000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705210000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805220000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702210000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804210000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805230000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020015", + "intro": "AMS B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0701230000020012", + "intro": "AMS B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020013", + "intro": "AMS-HT F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020012", + "intro": "AMS-HT H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020016", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020012", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020015", + "intro": "AMS-HT B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800200000020014", + "intro": "AMS-HT „lizdo Nr. 1“ gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020016", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020013", + "intro": "AMS-HT G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805220000020015", + "intro": "AMS-HT F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020013", + "intro": "AMS-HT F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020014", + "intro": "AMS E lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0707200000020015", + "intro": "AMS H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1807210000020015", + "intro": "AMS-HT H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700210000020014", + "intro": "AMS A lizdo Nr. 2 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020013", + "intro": "AMS-HT D lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020013", + "intro": "AMS-HT C lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807220000020015", + "intro": "AMS-HT H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700210000020016", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706230000020013", + "intro": "AMS G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020013", + "intro": "AMS E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020015", + "intro": "AMS-HT E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803230000020015", + "intro": "AMS-HT D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707210000020015", + "intro": "AMS H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707230000020013", + "intro": "AMS H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803220000020012", + "intro": "AMS-HT D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703210000020015", + "intro": "AMS D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1800220000020015", + "intro": "AMS-HT A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020013", + "intro": "AMS-HT D lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020012", + "intro": "AMS G lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020016", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020015", + "intro": "AMS E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020014", + "intro": "AMS-HT A lizdo Nr. 4 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020014", + "intro": "AMS C lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802200000020012", + "intro": "AMS-HT C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020016", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020015", + "intro": "AMS lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806230000020015", + "intro": "AMS-HT G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700220000020012", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020015", + "intro": "AMS G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803200000020015", + "intro": "AMS-HT D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "0705230000020012", + "intro": "AMS F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806210000020014", + "intro": "AMS-HT G lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700220000020014", + "intro": "AMS A lizdo Nr. 3 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020015", + "intro": "AMS B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803210000020012", + "intro": "AMS-HT D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020014", + "intro": "AMS-HT E lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020015", + "intro": "AMS-HT E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800230000020012", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020015", + "intro": "AMS-HT G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0706220000020015", + "intro": "AMS G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0701200000020013", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800220000020012", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020013", + "intro": "AMS-HT E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801220000020015", + "intro": "AMS-HT B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020012", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020014", + "intro": "AMS-HT F lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705200000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804200000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703200000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700200000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701200000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807210000020016", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020013", + "intro": "AMS-HT H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020013", + "intro": "AMS-HT C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707200000020014", + "intro": "AMS H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020012", + "intro": "AMS-HT E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020014", + "intro": "AMS C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703200000020013", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702200000020012", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020013", + "intro": "AMS-HT E lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800210000020014", + "intro": "AMS-HT A tipo 2 lizdo gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0706230000020015", + "intro": "AMS G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020015", + "intro": "AMS-HT B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0704200000020013", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020015", + "intro": "AMS F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1802200000020013", + "intro": "AMS-HT C lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700220000020015", + "intro": "AMS A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702230000020016", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020014", + "intro": "AMS-HT H lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802220000020016", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020012", + "intro": "AMS E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020014", + "intro": "AMS-HT B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020016", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020012", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020014", + "intro": "AMS-HT C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0700220000020013", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700200000020012", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800230000020015", + "intro": "AMS-HT A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800220000020013", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800230000020016", + "intro": "AMS-HT: lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707200000020013", + "intro": "AMS H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020012", + "intro": "AMS-HT C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020015", + "intro": "AMS C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806220000020014", + "intro": "AMS-HT G lizdo Nr. 3 gijų Gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802200000020015", + "intro": "AMS-HT C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1805220000020016", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707230000020012", + "intro": "AMS H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800210000020016", + "intro": "AMS-HT: lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020016", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704210000020014", + "intro": "AMS E lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703230000020016", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020012", + "intro": "AMS-HT B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0701200000020012", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020012", + "intro": "AMS-HT B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020015", + "intro": "AMS H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020014", + "intro": "AMS D lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700200000020013", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704200000020016", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707210000020013", + "intro": "AMS H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806230000020012", + "intro": "AMS-HT G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704200000020014", + "intro": "AMS E lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704230000020016", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020013", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703220000020012", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805220000020012", + "intro": "AMS-HT F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020012", + "intro": "AMS-HT H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020013", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020016", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020014", + "intro": "AMS-HT D lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704200000020012", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020016", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803200000020016", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020012", + "intro": "AMS-HT H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804230000020016", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020013", + "intro": "AMS G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020014", + "intro": "AMS-HT H lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020014", + "intro": "AMS B lizdo Nr. 2-ojo gijos jutiklio signalas negaunamas; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806200000020012", + "intro": "AMS-HT G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703200000020016", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020014", + "intro": "AMS D lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704220000020013", + "intro": "AMS E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703210000020013", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701230000020013", + "intro": "AMS B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020014", + "intro": "AMS-HT E lizdo Nr. 4 gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020016", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020014", + "intro": "AMS-HT F lizdo Nr. 3 gijų gijų skaitiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "1806210000020012", + "intro": "AMS-HT G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020013", + "intro": "AMS E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020014", + "intro": "AMS-HT H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020016", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020013", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020012", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705210000020015", + "intro": "AMS F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0707200000020012", + "intro": "AMS H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800220000020016", + "intro": "AMS-HT: lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020015", + "intro": "AMS D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0702210000020016", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701220000020016", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703200000020015", + "intro": "AMS D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700200000020014", + "intro": "AMS A lizdo Nr. 1 Gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0705200000020012", + "intro": "AMS F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704230000020012", + "intro": "AMS E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020016", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020015", + "intro": "AMS-HT: lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0705230000020016", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802220000020014", + "intro": "AMS-HT C lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020015", + "intro": "AMS-HT E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020013", + "intro": "AMS-HT D lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706200000020015", + "intro": "AMS G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020013", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801200000020014", + "intro": "AMS-HT B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806210000020013", + "intro": "AMS-HT G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801220000020025", + "intro": "AMS-HT B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701220000020025", + "intro": "AMS B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705220000020025", + "intro": "AMS F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ir pernelyg išlenktas." + }, + { + "ecode": "1804210000020025", + "intro": "AMS-HT E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0704220000020025", + "intro": "AMS E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0701200000020025", + "intro": "AMS B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804220000020025", + "intro": "AMS-HT E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802220000020025", + "intro": "AMS-HT C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803200000020025", + "intro": "AMS-HT D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1802200000020025", + "intro": "AMS-HT C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804200000020025", + "intro": "AMS-HT E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707210000020025", + "intro": "AMS H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705200000020025", + "intro": "AMS F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700220000020025", + "intro": "AMS A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700210000020025", + "intro": "AMS A lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801200000020025", + "intro": "AMS-HT B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706210000020025", + "intro": "AMS G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707220000020025", + "intro": "AMS H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805230000020025", + "intro": "AMS-HT F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1801210000020025", + "intro": "AMS-HT B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704200000020025", + "intro": "AMS E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1802220000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807210000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800230000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706220000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704230000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700210000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800220000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801230000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707220000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704220000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704210000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803220000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701210000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703220000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806230000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707210000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807230000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802210000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703210000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802200000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807200000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801200000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707200000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806200000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800200000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805200000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706200000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704200000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803210000020015", + "intro": "AMS-HT D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0705230000020013", + "intro": "AMS F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707230000020016", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020016", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700220000020016", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1804220000020013", + "intro": "AMS-HT E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020016", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020016", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805210000020013", + "intro": "AMS-HT F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706210000020014", + "intro": "AMS G lizdo Nr. 2 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701220000020014", + "intro": "AMS B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1800220000020014", + "intro": "AMS-HT A lizdo Nr. 3 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802210000020016", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704200000020015", + "intro": "AMS E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020014", + "intro": "AMS A lizdo Nr. 4 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0702200000020013", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802210000020014", + "intro": "AMS-HT C lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707210000020016", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703210000020012", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020014", + "intro": "AMS-HT G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704210000020012", + "intro": "AMS E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020012", + "intro": "AMS G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020014", + "intro": "AMS H lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700210000020012", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705220000020015", + "intro": "AMS F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800210000020012", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020015", + "intro": "AMS-HT F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0703230000020015", + "intro": "AMS D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020014", + "intro": "AMS D lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805210000020012", + "intro": "AMS-HT F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020016", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705200000020016", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020014", + "intro": "AMS E lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804210000020012", + "intro": "AMS-HT E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020016", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705210000020012", + "intro": "AMS F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020016", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803230000020012", + "intro": "AMS-HT D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020016", + "intro": "AMS: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801220000020016", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706210000020013", + "intro": "AMS G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807200000020015", + "intro": "AMS-HT H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020012", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806220000020013", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020012", + "intro": "AMS-HT C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020014", + "intro": "AMS-HT B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802220000020015", + "intro": "AMS-HT C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0706230000020012", + "intro": "AMS G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020016", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020015", + "intro": "AMS-HT G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1805230000020015", + "intro": "AMS-HT F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1802230000020015", + "intro": "AMS-HT C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1806210000020015", + "intro": "AMS-HT G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702210000020015", + "intro": "AMS C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020016", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704230000020015", + "intro": "AMS E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806200000020013", + "intro": "AMS-HT G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701220000020013", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805210000020016", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020013", + "intro": "AMS F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805200000020014", + "intro": "AMS-HT F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020012", + "intro": "AMS-HT E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020013", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700230000020013", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020013", + "intro": "AMS-HT H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707220000020012", + "intro": "AMS H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707220000020015", + "intro": "AMS H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700230000020016", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020015", + "intro": "AMS B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1801200000020016", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707220000020014", + "intro": "AMS H lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020012", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807220000020016", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020015", + "intro": "AMS-HT A lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0706230000020014", + "intro": "AMS G lizdo Nr. 4-osios gijos jutiklis neperduoda signalo, o tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020013", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806200000020016", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020014", + "intro": "AMS G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1803230000020014", + "intro": "AMS-HT D lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1805200000020015", + "intro": "AMS-HT F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801210000020015", + "intro": "AMS-HT B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800200000020013", + "intro": "AMS-HT A lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020014", + "intro": "AMS-HT B lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705220000020016", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020016", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020016", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020014", + "intro": "AMS B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801200000020013", + "intro": "AMS-HT B lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020015", + "intro": "AMS-HT E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1805200000020012", + "intro": "AMS-HT F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020015", + "intro": "AMS C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0702230000020012", + "intro": "AMS C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702220000020015", + "intro": "AMS C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020014", + "intro": "AMS-HT D lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805230000020016", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020016", + "intro": "AMS-HT: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802230000020014", + "intro": "AMS-HT C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1801220000020013", + "intro": "AMS-HT B lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020014", + "intro": "AMS-HT E lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806220000020016", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702230000020013", + "intro": "AMS C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020016", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020013", + "intro": "AMS-HT B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705230000020015", + "intro": "AMS F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1802210000020015", + "intro": "AMS-HT C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0701220000020012", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706220000020014", + "intro": "AMS G lizdo Nr. 3 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0706220000020016", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020013", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020013", + "intro": "AMS-HT H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020014", + "intro": "AMS F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020014", + "intro": "AMS-HT D lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020013", + "intro": "AMS H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020013", + "intro": "AMS F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705210000020013", + "intro": "AMS F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020012", + "intro": "AMS-HT E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805200000020025", + "intro": "AMS-HT F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705210000020025", + "intro": "AMS F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806210000020025", + "intro": "AMS-HT G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703230000020025", + "intro": "AMS D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807230000020025", + "intro": "AMS-HT H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800200000020025", + "intro": "AMS-HT A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806200000020025", + "intro": "AMS-HT G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807220000020025", + "intro": "AMS-HT H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806220000020025", + "intro": "AMS-HT G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806230000020025", + "intro": "AMS-HT G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707200000020025", + "intro": "AMS H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702210000020025", + "intro": "AMS C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805220000020025", + "intro": "AMS-HT F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703220000020025", + "intro": "AMS D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1803220000020025", + "intro": "AMS-HT D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704230000020025", + "intro": "AMS E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706220000020025", + "intro": "AMS G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1804230000020025", + "intro": "AMS-HT E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704210000020025", + "intro": "AMS E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705230000020025", + "intro": "AMS F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706210000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800210000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803230000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702230000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703230000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806210000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806220000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804220000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705230000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802230000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803210000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700230000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "07FFA00000020001", + "intro": "Pasibaigė purkštuko ištraukimo šaltuoju būdu laiko limitas. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "0702230000020025", + "intro": "AMS C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800210000020025", + "intro": "AMS-HT: lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702220000020025", + "intro": "AMS C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802210000020025", + "intro": "AMS-HT C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805210000020025", + "intro": "AMS-HT F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703210000020025", + "intro": "AMS D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706200000020025", + "intro": "AMS G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803230000020025", + "intro": "AMS-HT D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802230000020025", + "intro": "AMS-HT C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703200000020025", + "intro": "AMS D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701230000020025", + "intro": "AMS B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700200000020025", + "intro": "AMS A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702200000020025", + "intro": "AMS C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803210000020025", + "intro": "AMS-HT D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707230000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805210000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700220000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807220000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801210000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801220000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705220000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020016", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020014", + "intro": "AMS-HT H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0703230000020014", + "intro": "AMS D lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020013", + "intro": "AMS-HT D lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020016", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702210000020012", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806230000020014", + "intro": "AMS-HT G lizdo Nr. 4-gijų gijų skaitiklis negauna signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "0707210000020012", + "intro": "AMS H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706230000020016", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020014", + "intro": "AMS B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020013", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020013", + "intro": "AMS G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803200000020012", + "intro": "AMS-HT D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707200000020016", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020013", + "intro": "AMS-HT F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800200000020012", + "intro": "AMS-HT A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707210000020014", + "intro": "AMS H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020014", + "intro": "AMS F lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020014", + "intro": "AMS C lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020016", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020014", + "intro": "AMS F lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801210000020013", + "intro": "AMS-HT B lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804220000020014", + "intro": "AMS-HT E lizdo Nr. 3 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1807220000020013", + "intro": "AMS-HT H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803210000020016", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807230000020015", + "intro": "AMS-HT H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020012", + "intro": "AMS-HT B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700230000020015", + "intro": "AMS A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020012", + "intro": "AMS-HT F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705230000020014", + "intro": "AMS F lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806210000020016", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807210000020012", + "intro": "AMS-HT H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805230000020014", + "intro": "AMS-HT F lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020013", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020012", + "intro": "AMS-HT B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706200000020012", + "intro": "AMS G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020015", + "intro": "AMS lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0705220000020012", + "intro": "AMS F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020012", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804220000020016", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702200000020014", + "intro": "AMS C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701200000020015", + "intro": "AMS B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1804230000020013", + "intro": "AMS-HT E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704210000020015", + "intro": "AMS E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020015", + "intro": "AMS-HT D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803200000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "07FF450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "18FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "03002C0000010001", + "intro": "Po šildomojo pagrindo aptikta kliūtis. Prašome ją pašalinti, kad spausdinimas vyktų sklandžiai." + }, + { + "ecode": "0300A70000030001", + "intro": "kameros temperatūra yra aukšta, todėl sistema padidino ventiliatoriaus greitį, o tai gali sukelti didesnį triukšmą. Rekomenduojama sumažinti kameros temperatūrą arba atidaryti priekinės dureles / viršutinį dangtį, kad įrenginys greičiau atvėstų." + }, + { + "ecode": "0300930000010006", + "intro": "Kameros temperatūra yra nenormali. Galbūt oro įvado vietoje esantis kameros temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300930000010005", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300960000010003", + "intro": "Priekinės durų prieškameros jutiklis (apatinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300970000010003", + "intro": "Viršutinio dangčio Hall jutiklis (galinis kairysis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300970000010002", + "intro": "Viršutinio dangčio Hall jutiklis (priekyje dešinėje) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300960000010002", + "intro": "Priekinės durų prieškameros jutiklis (viršutinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0C00040000020017", + "intro": "Vykdant „PrintThenCut“ funkciją nebuvo aptiktas vizualinis žymeklis; prašome medžiagą vėl priklijuoti į teisingą vietą. Tuo pačiu prašome nuvalyti įrankio galvutės kamerą, kad išvengtumėte užteršimo, ir pašalinti visus daiktus, kurie gali trukdyti matomumui." + }, + { + "ecode": "1803400000020001", + "intro": "Prarastas AMS-HT D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0701400000020001", + "intro": "Prarastas AMS B gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "050003000001000E", + "intro": "Kai kurie išoriniai moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos normaliam veikimui. Norėdami atnaujinti aparatinę programinę įrangą, prisijunkite prie interneto ir eikite į puslapį „Aparatinė programinė įranga“." + }, + { + "ecode": "1801400000020001", + "intro": "AMS-HT B prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0705400000020001", + "intro": "Prarastas AMS F gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1805400000020001", + "intro": "AMS-HT F prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0706400000020001", + "intro": "Prarastas AMS G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0702400000020001", + "intro": "Prarastas AMS C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0703400000020001", + "intro": "Prarastas AMS D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0704400000020001", + "intro": "AMS E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0707400000020001", + "intro": "Prarastas AMS H gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1806400000020001", + "intro": "Prarastas AMS-HT G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1802400000020001", + "intro": "Prarastas AMS-HT C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1804400000020001", + "intro": "AMS-HT E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1807400000020001", + "intro": "AMS-HT H Gijos buferio padėties signalas prarastas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0700400000020001", + "intro": "AMS A. Prarastas gijos buferio padėties signalas: galbūt sutrikęs kabelis arba padėties jutiklis." + }, + { + "ecode": "1800400000020001", + "intro": "AMS-HT A – prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0700900000010002", + "intro": "AMS A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701910000010002", + "intro": "AMS B: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703900000010002", + "intro": "AMS D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702910000010002", + "intro": "AMS C: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701900000010002", + "intro": "AMS B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703910000010002", + "intro": "AMS D: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702900000010002", + "intro": "AMS C: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804910000010002", + "intro": "AMS-HT E 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801910000010002", + "intro": "AMS-HT B 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806900000010002", + "intro": "AMS-HT G 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805910000010002", + "intro": "AMS-HT F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807900000010002", + "intro": "AMS-HT H 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805900000010002", + "intro": "AMS-HT F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800900000010002", + "intro": "AMS-HT A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704900000010002", + "intro": "AMS E: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800910000010002", + "intro": "AMS-HT A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802900000010002", + "intro": "AMS-HT C 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705910000010002", + "intro": "AMS F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707900000010002", + "intro": "AMS H: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706910000010002", + "intro": "AMS G: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807910000010002", + "intro": "AMS-HT H 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707910000010002", + "intro": "AMS H: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802910000010002", + "intro": "AMS-HT C 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804900000010002", + "intro": "AMS-HT E 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705900000010002", + "intro": "AMS F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706900000010002", + "intro": "AMS G: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704910000010002", + "intro": "AMS E: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801900000010002", + "intro": "AMS-HT B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803900000010002", + "intro": "AMS-HT D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803910000010002", + "intro": "AMS-HT D 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806910000010002", + "intro": "AMS-HT G 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700910000010002", + "intro": "AMS A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0C00040000020026", + "intro": "Nepavyko inicijuoti „Liveview“ kameros, todėl kai kurios AI funkcijos, pvz., „Spaghetti Detection“, bus išjungtos. Prašome iš naujo paleisti spausdintuvą. Jei problema neišsprendžiama, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "1801200000020023", + "intro": "AMS-HT B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804200000020023", + "intro": "AMS-HT E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707220000020023", + "intro": "AMS H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700230000020023", + "intro": "AMS: 4-oje lizdoje esanti AMS vidinė lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701230000020023", + "intro": "AMS B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803200000020023", + "intro": "AMS-HT D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802200000020023", + "intro": "AMS-HT C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707210000020023", + "intro": "AMS H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801230000020023", + "intro": "AMS-HT B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706200000020023", + "intro": "AMS G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806220000020023", + "intro": "AMS-HT G lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706220000020023", + "intro": "AMS G lizdo Nr. 3: AMS viduje esanti lempa yra sudaužyta arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806210000020023", + "intro": "AMS-HT G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti kaitinamosios gijos." + }, + { + "ecode": "1802230000020023", + "intro": "AMS-HT C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805220000020023", + "intro": "AMS-HT F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800220000020023", + "intro": "AMS-HT A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707200000020023", + "intro": "AMS H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805210000020023", + "intro": "AMS-HT F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703230000020023", + "intro": "AMS D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804230000020023", + "intro": "AMS-HT E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704230000020023", + "intro": "AMS E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704210000020023", + "intro": "AMS E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807210000020023", + "intro": "AMS-HT H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807220000020023", + "intro": "AMS-HT H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707230000020023", + "intro": "AMS H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702210000020023", + "intro": "AMS C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802210000020023", + "intro": "AMS-HT C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704220000020023", + "intro": "AMS E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701210000020023", + "intro": "AMS B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800230000020023", + "intro": "AMS-HT: lizdo Nr. 4 vamzdelis AMS viduje, yra sulaužyta arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701220000020023", + "intro": "AMS B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807200000020023", + "intro": "AMS-HT H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701200000020023", + "intro": "AMS B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800200000020023", + "intro": "AMS-HT A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705200000020023", + "intro": "AMS F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705230000020023", + "intro": "AMS F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700210000020023", + "intro": "AMS A lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801220000020023", + "intro": "AMS-HT B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705210000020023", + "intro": "AMS F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704200000020023", + "intro": "AMS E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803210000020023", + "intro": "AMS-HT D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803220000020023", + "intro": "AMS-HT D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702230000020023", + "intro": "AMS C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706230000020023", + "intro": "AMS G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700220000020023", + "intro": "AMS A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705220000020023", + "intro": "AMS F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807230000020023", + "intro": "AMS-HT H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706210000020023", + "intro": "AMS G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702200000020023", + "intro": "AMS C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703200000020023", + "intro": "AMS D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805230000020023", + "intro": "AMS-HT F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804220000020023", + "intro": "AMS-HT E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806230000020023", + "intro": "AMS-HT G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804210000020023", + "intro": "AMS-HT E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801210000020023", + "intro": "AMS-HT B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703220000020023", + "intro": "AMS D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700200000020023", + "intro": "AMS A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800210000020023", + "intro": "AMS-HT A lizdo Nr. 2: AMS viduje esanti lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702220000020023", + "intro": "AMS C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805200000020023", + "intro": "AMS-HT F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803230000020023", + "intro": "AMS-HT D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802220000020023", + "intro": "AMS-HT C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703210000020023", + "intro": "AMS D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806200000020023", + "intro": "AMS-HT G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "050001000001000A", + "intro": "" + }, + { + "ecode": "0500060000020003", + "intro": "„BirdsEye“ kamera nėra įdiegta; patikrinkite įrangos jungtį" + }, + { + "ecode": "0C0003000002001C", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "030001000003000F", + "intro": "Šiuo metu kameros temperatūra yra aukšta, o šildomasis pagrindas atvėsta lėtai. Norint pagreitinti atvėsinimo procesą, rekomenduojama atidaryti viršutinį dangtį arba priekines dureles." + }, + { + "ecode": "030001000002000F", + "intro": "Nustatyta per aukšta kameros tikslinė temperatūra, o šildomojo pagrindo tikslinė temperatūra – per žema. Šildomojo pagrindo aušinimas buvo praleistas. Rekomenduojama nustatyti suderintas kameros ir šildomojo pagrindo temperatūras." + }, + { + "ecode": "0300930000010004", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, turi atvirą grandinę." + }, + { + "ecode": "0500030000010004", + "intro": "Modulis „Filament Buffer“ veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0700980000020001", + "intro": "AMS A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583040000010045", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0500050000010013", + "intro": "Lazerinio modulio sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C0003000003001A", + "intro": "Svetimkūnio aptikimo funkcija neveikė, galbūt dėl to, kad ji buvo nutraukta rankiniu būdu (pvz., paspaudus stabdymo mygtuką arba atidarius dureles, kai veikė lazerio režimas). Jei taip ir yra, galite į tai nekreipti dėmesio. Kitais atvejais pabandykite iš naujo paleisti spausdintuvą arba atnaujinti aparatinę programinę įrangą, kad atkurtumėte šią funkciją." + }, + { + "ecode": "1803980000020001", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0703980000020001", + "intro": "AMS D Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "050005000001000D", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0705980000020001", + "intro": "AMS F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582040000010045", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0703980000020002", + "intro": "AMS D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020002", + "intro": "AMS G Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586040000010045", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0500040000010048", + "intro": "Pjaustymo modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0700980000020002", + "intro": "AMS A Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502050000010014", + "intro": "AMS C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0702980000020002", + "intro": "AMS C Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1802980000020002", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020001", + "intro": "AMS E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020001", + "intro": "AMS G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502040000010044", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0585040000010045", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0501050000010014", + "intro": "AMS B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0585050000010017", + "intro": "AMS-HT F sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010047", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1807980000020002", + "intro": "AMS-HT H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0587040000010045", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1802980000020001", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586050000010017", + "intro": "AMS-HT G sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0707980000020002", + "intro": "AMS H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0500050000010015", + "intro": "Oro siurblio sertifikavimas nepavyko. Prašome iš naujo prijungti laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701980000020001", + "intro": "AMS B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0503050000010014", + "intro": "AMS D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500050000010016", + "intro": "Nepavyko sertifikuoti pjovimo modulio. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0503040000010044", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1800980000020002", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020001", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0500050000010014", + "intro": "Nepavyko atlikti AMS A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701980000020002", + "intro": "AMS B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0581040000010045", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0707980000020001", + "intro": "AMS H Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1800980000020001", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1804980000020002", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0702980000020001", + "intro": "AMS C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020002", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1807980000020001", + "intro": "AMS-HT H Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0501040000010044", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0580040000010045", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0584040000010045", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1805980000020001", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0584050000010017", + "intro": "AMS-HT E sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010046", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587050000010017", + "intro": "AMS-HT H sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010044", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0581050000010017", + "intro": "AMS-HT B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1804980000020001", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020002", + "intro": "AMS E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582050000010017", + "intro": "AMS-HT C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0580050000010017", + "intro": "Nepavyko atlikti AMS-HT A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0705980000020002", + "intro": "AMS F Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1805980000020002", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583050000010017", + "intro": "AMS-HT D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1803980000020002", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020001", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020002", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per didelė, dėl to gali būti sugadinta šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0C00010000010018", + "intro": "" + }, + { + "ecode": "0C00010000010001", + "intro": "„Toolhead Camera“ neveikia. Patikrinkite įrangos jungtį." + }, + { + "ecode": "0C00010000010003", + "intro": "Neteisingai sinchronizuojasi spausdinimo galvutės kamera ir MC. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C00010000010004", + "intro": "Atrodo, kad įrankio galvutės kameros objektyvas yra nešvarus. Prašome nuvalyti objektyvą." + }, + { + "ecode": "0C00010000010005", + "intro": "„Toolhead Camera“ parametras yra nenormalus. Prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0300A40000010008", + "intro": "Kameros temperatūros jutiklis veikia netinkamai. Prieš iš naujo paleidžiant užduotį, pašalinkite šią problemą." + }, + { + "ecode": "0C00040000010025", + "intro": "Įrenginys neveikia tinkamai; prašome jį iš naujo paleisti." + }, + { + "ecode": "0C00040000030018", + "intro": "Nepavyko atlikti pjovimo peilio poslinkio kalibravimo. Tai gali turėti įtakos pjovimo tikslumui. Prašome pasitikrinti „Wiki“ puslapyje, ar peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0C00040000020018", + "intro": "Nepavyko atlikti pjovimo peilio poslinkio kalibravimo. Tai gali turėti įtakos pjovimo tikslumui. Prašome pasinaudoti „Assistant“ programa, kad patikrintumėte, ar peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0500040000020043", + "intro": "„Toolhead“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti darbą." + }, + { + "ecode": "0C00040000020023", + "intro": "Nepavyko išmatuoti storio – matavimo galvutės kamera negalėjo aptikti medžiagos paviršiaus." + }, + { + "ecode": "03000F0000010001", + "intro": "Aptikti neįprasti akselerometro duomenys. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500020000020008", + "intro": "Laiko sinchronizavimas nepavyko" + }, + { + "ecode": "0300A40000010005", + "intro": "Šildomojo pagrindo temperatūros jutiklis veikia netinkamai. Prieš iš naujo paleidžiant užduotį, išspręskite šią problemą." + }, + { + "ecode": "0300A50000010003", + "intro": "3-iasis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1806930000020003", + "intro": "AMS-HT G šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1806920000020003", + "intro": "AMS-HT G šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707920000020003", + "intro": "AMS H šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705920000020003", + "intro": "AMS F šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701930000020003", + "intro": "AMS B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704930000020003", + "intro": "AMS E heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0582050000010010", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "050005000001000E", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0505050000010010", + "intro": "AMS F Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501050000010010", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0507050000010010", + "intro": "AMS H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "03009B0000010003", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "050005000001000F", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0502050000010010", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0506050000010010", + "intro": "AMS G Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0504050000010010", + "intro": "AMS E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0503050000010010", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500050000010012", + "intro": "Pjaustymo modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500050000010011", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0584050000010010", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587050000010010", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0586050000010010", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0585050000010010", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0580050000010010", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0300A50000010004", + "intro": "4-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "0706930000020003", + "intro": "AMS G heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807920000020003", + "intro": "AMS-HT H šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010002", + "intro": "2-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1800920000020003", + "intro": "AMS-HT A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0706920000020003", + "intro": "AMS G šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702920000020003", + "intro": "AMS C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0C00030000020019", + "intro": "„Vision Encoder Plate“ plokštė nėra uždėta arba uždėta netinkamai. Prašome įsitikinti, kad ji būtų teisingai pritvirtinta ant šildomojo pagrindo." + }, + { + "ecode": "1801920000020003", + "intro": "AMS-HT B šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704920000020003", + "intro": "AMS E heater 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805920000020003", + "intro": "AMS-HT F šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010005", + "intro": "5-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1804920000020003", + "intro": "AMS-HT E šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010001", + "intro": "1-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "0703930000020003", + "intro": "AMS D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1804930000020003", + "intro": "AMS-HT E šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707930000020003", + "intro": "AMS H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807930000020003", + "intro": "AMS-HT H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0703920000020003", + "intro": "AMS D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700930000020003", + "intro": "AMS A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805930000020003", + "intro": "AMS-HT F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702930000020003", + "intro": "AMS C šildytuvo Nr. 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802920000020003", + "intro": "AMS-HT C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803930000020003", + "intro": "AMS-HT D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803920000020003", + "intro": "AMS-HT D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1800930000020003", + "intro": "AMS-HT A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705930000020003", + "intro": "AMS F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701920000020003", + "intro": "AMS B šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700920000020003", + "intro": "AMS A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802930000020003", + "intro": "AMS-HT C šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1801930000020003", + "intro": "AMS-HT B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0583050000010010", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0581050000010010", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0C00030000020014", + "intro": "Svetimų objektų aptikimo tikslumas sumažėjo. Jei tai pasikartoja dažnai, atlikite „Live View“ kameros kalibravimą (spausdintuvo ekrane pasirinkite „Nustatymai“ > „Kalibravimas“). Jei įrengtas lazeris arba pjovimo modulis, prieš tęsdami pašalinkite jį." + }, + { + "ecode": "0500050000010010", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500040000020034", + "intro": "Lazerinis modulis aptiktas pirmą kartą. Prieš naudojimą atlikite nustatymus (~4 min.), kad pjovimas ir graviravimas būtų tikslūs. Taip pat įsitikinkite, kad gale esanti H2.0 varžtė, tvirtinanti oro siurblį, yra išsukta." + }, + { + "ecode": "1804200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0704210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0707230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0700210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1803210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0703230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0701210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704230000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0702230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1800210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0705230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1807230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1805220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0701220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1803220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Ištraukite gijas ir pabandykite dar kartą." + }, + { + "ecode": "1807210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1806230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1806230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1801200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1800210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801200000010085", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir bandyti dar kartą." + }, + { + "ecode": "0702200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS-HT G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1803200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0706230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1806220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir bandyti dar kartą." + }, + { + "ecode": "1805200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1803200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1803200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0705210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010082", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0704230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir bandyti dar kartą." + }, + { + "ecode": "1801210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0700210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0702230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0C0003000003000D", + "intro": "Nustatyta, kad ekstruderiui gali nefunkcionuoti tinkamai. Prašome patikrinti ir nuspręsti, ar reikia sustabdyti spausdinimą." + }, + { + "ecode": "0C00030000020018", + "intro": "Nustatyta, kad nepakanka sistemos atminties, todėl svetimkūnių aptikimo funkcija neveikė. Užbaigus užduotį, prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą" + }, + { + "ecode": "1807230000020021", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701210000020011", + "intro": "AMS B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020022", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806210000020018", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801220000020017", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707210000020024", + "intro": "AMS H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020019", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020011", + "intro": "AMS G lizdo Nr. 1 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "0706210000020011", + "intro": "AMS G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020021", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020010", + "intro": "AMS E lizdo Nr. 2 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020011", + "intro": "AMS D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0705210000020010", + "intro": "AMS F lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804210000020024", + "intro": "AMS-HT E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705210000020011", + "intro": "AMS F lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020024", + "intro": "AMS H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700230000020011", + "intro": "AMS A lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705220000020020", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706230000020010", + "intro": "AMS G lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803230000020010", + "intro": "AMS-HT D lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0700200000020021", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706230000020018", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1805230000020019", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1806220000020020", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700200000020019", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701220000020024", + "intro": "AMS B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020011", + "intro": "AMS-HT H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020011", + "intro": "AMS-HT F lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0703210000020022", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805200000020017", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807230000020010", + "intro": "AMS-HT H lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0700220000020020", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0707230000020021", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020022", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020011", + "intro": "AMS-HT G lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803200000020017", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020019", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1800210000020021", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijos buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020011", + "intro": "AMS F lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020022", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020017", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020010", + "intro": "AMS B lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802230000020021", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020021", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020017", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705200000020017", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020018", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703230000020021", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020018", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807200000020018", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020019", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020018", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803220000020010", + "intro": "AMS-HT D lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0707220000020019", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020018", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020020", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700210000020021", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020022", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804230000020024", + "intro": "AMS-HT E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020022", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020011", + "intro": "AMS-HT G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704210000020022", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803220000020019", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0703210000020010", + "intro": "AMS D lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801220000020010", + "intro": "AMS-HT B lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704220000020019", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020022", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020019", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020019", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1804220000020022", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020022", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803210000020021", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020021", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020024", + "intro": "AMS-HT H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020021", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020019", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020011", + "intro": "AMS-HT B lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806220000020022", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020020", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806210000020010", + "intro": "AMS-HT G lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700230000020018", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020021", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701230000020011", + "intro": "AMS B lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702220000020011", + "intro": "AMS C lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703220000020024", + "intro": "AMS D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020024", + "intro": "AMS D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020017", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705210000020017", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800230000020022", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020021", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020021", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020019", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020020", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700230000020021", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020011", + "intro": "AMS E lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020022", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020021", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801220000020022", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702220000020022", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020020", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703220000020017", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020019", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020022", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020019", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707230000020019", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020017", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706210000020022", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801210000020020", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805200000020010", + "intro": "AMS-HT F lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807220000020022", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020022", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800210000020011", + "intro": "AMS-HT A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802200000020017", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706200000020019", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020022", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020019", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802220000020020", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020022", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803230000020019", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020019", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705230000020018", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020017", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700210000020017", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020024", + "intro": "AMS F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020024", + "intro": "AMS-HT F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020010", + "intro": "AMS C lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806220000020017", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803200000020020", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807200000020010", + "intro": "AMS-HT H lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0705210000020021", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701220000020011", + "intro": "AMS B lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805220000020024", + "intro": "AMS-HT F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020010", + "intro": "AMS A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020020", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020010", + "intro": "AMS G lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020010", + "intro": "AMS-HT D lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020010", + "intro": "AMS-HT G lizdo Nr. 1 išstumia giją, kai pasibaigia AMS laiko limitas." + }, + { + "ecode": "1805210000020024", + "intro": "AMS-HT F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020019", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802200000020018", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704200000020010", + "intro": "AMS E lizdo Nr. 1 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020022", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020024", + "intro": "AMS E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020020", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0701220000020022", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020024", + "intro": "AMS-HT A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702220000020017", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800210000020019", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020024", + "intro": "AMS G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020019", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702210000020011", + "intro": "AMS C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802230000020018", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020022", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020022", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703230000020011", + "intro": "AMS D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1806200000020021", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020024", + "intro": "AMS-HT D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804220000020011", + "intro": "AMS-HT E lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020010", + "intro": "AMS-HT A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800210000020020", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020024", + "intro": "AMS E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020019", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020020", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0700220000020022", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020024", + "intro": "AMS-HT A lizdas: nepavyko pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020020", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803220000020020", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804210000020021", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020017", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020020", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801230000020018", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020022", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020021", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805220000020017", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701230000020017", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020024", + "intro": "AMS-HT C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020021", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020017", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020020", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700210000020022", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020020", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801210000020022", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705200000020011", + "intro": "AMS F lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020017", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020018", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020022", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020017", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805200000020021", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704230000020010", + "intro": "AMS E lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806210000020020", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0705230000020019", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702200000020018", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0700210000020011", + "intro": "AMS A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0300020000010009", + "intro": "Purkštuko temperatūros reguliavimas veikia netinkamai. Galbūt nėra įmontuotas kaitinimo galvutės. Norėdami įkaitinti kaitinimo bloką be kaitinimo galvutės, nustatymuose įjunkite techninės priežiūros režimą." + }, + { + "ecode": "0704200000020024", + "intro": "AMS E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706210000020024", + "intro": "AMS G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703210000020024", + "intro": "AMS D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020011", + "intro": "AMS-HT A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020021", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020021", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020024", + "intro": "AMS A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020018", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020018", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020022", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804220000020010", + "intro": "AMS-HT E lizdo Nr. 3 išstumia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700200000020020", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701220000020017", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800220000020018", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020024", + "intro": "AMS B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706220000020017", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020010", + "intro": "AMS-HT C lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1801200000020021", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020019", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020024", + "intro": "AMS-HT H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703220000020021", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020011", + "intro": "AMS-HT B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805210000020018", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020010", + "intro": "AMS-HT C lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1804200000020020", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1806210000020017", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020019", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702230000020024", + "intro": "AMS C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020018", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701210000020018", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706200000020021", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702200000020024", + "intro": "AMS C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020022", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020018", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705210000020020", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802210000020021", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800220000020010", + "intro": "AMS-HT A lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020024", + "intro": "AMS F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020018", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020022", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707230000020018", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0703220000020020", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804200000020010", + "intro": "AMS-HT E lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801230000020020", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805210000020011", + "intro": "AMS-HT F lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020018", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020021", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020024", + "intro": "AMS-HT E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020018", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803220000020022", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020019", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020024", + "intro": "AMS H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701220000020021", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020018", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020010", + "intro": "AMS C lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704220000020010", + "intro": "AMS E lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1807200000020019", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700220000020011", + "intro": "AMS A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020010", + "intro": "AMS-HT E lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0701230000020010", + "intro": "AMS B lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1805220000020019", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1803220000020021", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020010", + "intro": "AMS-HT F lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702220000020024", + "intro": "AMS C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802220000020011", + "intro": "AMS-HT C lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803220000020011", + "intro": "AMS-HT D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020017", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707220000020022", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020024", + "intro": "AMS-HT C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801200000020024", + "intro": "AMS-HT B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020021", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020020", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "1805220000020010", + "intro": "AMS-HT F lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701220000020018", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020021", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020011", + "intro": "AMS-HT D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1807220000020017", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020011", + "intro": "AMS-HT H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702230000020019", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703210000020019", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802210000020011", + "intro": "AMS-HT C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801220000020021", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020020", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800230000020020", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1803200000020019", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1802230000020024", + "intro": "AMS-HT C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802230000020022", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020021", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020020", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707200000020017", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1806220000020010", + "intro": "AMS-HT G lizdo Nr. 3 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0702220000020010", + "intro": "AMS C lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1802230000020020", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703200000020017", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020021", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803230000020021", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803220000020018", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020010", + "intro": "AMS F lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702200000020020", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020021", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020019", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0700200000020017", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020020", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707210000020011", + "intro": "AMS H lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0706200000020010", + "intro": "AMS G lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702230000020017", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801230000020022", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020018", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020018", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020024", + "intro": "AMS-HT H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020011", + "intro": "AMS-HT G lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020018", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020011", + "intro": "AMS D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020020", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800220000020021", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020022", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020017", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020022", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020020", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807230000020022", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020019", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703200000020010", + "intro": "AMS D lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803200000020021", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020022", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020022", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805230000020018", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020020", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806230000020019", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800200000020019", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020024", + "intro": "AMS-HT B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020020", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020019", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801200000020010", + "intro": "AMS-HT B lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706210000020018", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020020", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020021", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020020", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0705230000020010", + "intro": "AMS F lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700230000020017", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020024", + "intro": "AMS A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700200000020011", + "intro": "AMS A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800220000020017", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020021", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir spausdinimo galvutės." + }, + { + "ecode": "1803220000020024", + "intro": "AMS-HT D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704210000020017", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020021", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707200000020011", + "intro": "AMS H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020024", + "intro": "AMS-HT B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705200000020020", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1800200000020011", + "intro": "AMS-HT A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801230000020010", + "intro": "AMS-HT B lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0703200000020024", + "intro": "AMS D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705230000020022", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703210000020011", + "intro": "AMS D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1807210000020010", + "intro": "AMS-HT H lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807230000020024", + "intro": "AMS-HT H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020019", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801230000020021", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300030000020002", + "intro": "Kaitinimo galvutės aušinimo ventiliatorius veikia lėtai. Gali būti, kad jis užsikimšęs. Patikrinkite, ar nėra nešvarumų, ir, jei reikia, išvalykite." + }, + { + "ecode": "1800200000020021", + "intro": "AMS-HT A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020017", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020020", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1807200000020022", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706200000020017", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805210000020010", + "intro": "AMS-HT F lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807210000020018", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1800220000020020", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1804220000020024", + "intro": "AMS-HT E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801230000020011", + "intro": "AMS-HT B lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020010", + "intro": "AMS-HT A lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0701200000020011", + "intro": "AMS B lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020017", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707230000020017", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804200000020022", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020011", + "intro": "AMS-HT B lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020024", + "intro": "AMS-HT F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020024", + "intro": "AMS B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020022", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020021", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804220000020017", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020020", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0703230000020017", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800200000020017", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703230000020022", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020018", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020018", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020018", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020011", + "intro": "AMS-HT D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020022", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020017", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020018", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020018", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020010", + "intro": "AMS-HT B lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806230000020010", + "intro": "AMS-HT G lizdo Nr. 4 tiekia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701210000020010", + "intro": "AMS B lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020021", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020024", + "intro": "AMS-HT G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020010", + "intro": "AMS D lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1807210000020021", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706210000020021", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020019", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1804210000020011", + "intro": "AMS-HT E lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805220000020022", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020011", + "intro": "AMS-HT C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020019", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704200000020019", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704230000020011", + "intro": "AMS E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020011", + "intro": "AMS H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801230000020024", + "intro": "AMS-HT B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704220000020017", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704210000020024", + "intro": "AMS E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020017", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020021", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802220000020018", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020022", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020020", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1801210000020018", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806200000020024", + "intro": "AMS-HT G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020017", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803220000020017", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020021", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020010", + "intro": "AMS-HT A lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702200000020011", + "intro": "AMS C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700220000020010", + "intro": "AMS A lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701200000020017", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803230000020017", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020021", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020010", + "intro": "AMS-HT E lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0703220000020010", + "intro": "AMS D lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020019", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020019", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020024", + "intro": "AMS H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020019", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800230000020011", + "intro": "AMS-HT A lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0700230000020022", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700200000020010", + "intro": "AMS A lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800230000020019", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020019", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0705220000020022", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020021", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020021", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020010", + "intro": "AMS C lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802200000020021", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707210000020010", + "intro": "AMS H lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702230000020018", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020019", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020017", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020017", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020011", + "intro": "AMS E lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803210000020011", + "intro": "AMS-HT D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705210000020018", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020021", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800230000020021", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020024", + "intro": "AMS F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020024", + "intro": "AMS-HT D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1804200000020019", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020019", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706210000020010", + "intro": "AMS G lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020021", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020011", + "intro": "AMS-HT E lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1806200000020019", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0704210000020020", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020018", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0705210000020024", + "intro": "AMS F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020020", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702210000020024", + "intro": "AMS C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701230000020020", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020010", + "intro": "AMS H lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803230000020018", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805220000020011", + "intro": "AMS-HT F lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1807230000020018", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020020", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700220000020018", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje šalia AMS." + }, + { + "ecode": "0706220000020020", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803210000020019", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020022", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700220000020024", + "intro": "AMS A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802200000020024", + "intro": "AMS-HT C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020019", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020022", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020022", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020018", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701200000020018", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020011", + "intro": "AMS H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020018", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701200000020024", + "intro": "AMS B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807220000020010", + "intro": "AMS-HT H lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1802230000020011", + "intro": "AMS-HT C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020024", + "intro": "AMS-HT A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800200000020018", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705220000020010", + "intro": "AMS F lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020019", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806210000020011", + "intro": "AMS-HT G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020022", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706230000020011", + "intro": "AMS G lizdo Nr. 4 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "1800230000020024", + "intro": "AMS-HT A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704200000020017", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702230000020020", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020017", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020017", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803210000020010", + "intro": "AMS-HT D lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020020", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020017", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020021", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706220000020024", + "intro": "AMS G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020024", + "intro": "AMS-HT G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800230000020018", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806220000020018", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802210000020017", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020020", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinimo elemento buferio." + }, + { + "ecode": "0700230000020010", + "intro": "AMS A lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701230000020019", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704200000020018", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0704230000020021", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020010", + "intro": "AMS-HT C lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704230000020018", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020017", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701220000020019", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020024", + "intro": "AMS-HT G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707200000020010", + "intro": "AMS H lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0707230000020010", + "intro": "AMS H lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700210000020019", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700200000020024", + "intro": "AMS A lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020017", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020019", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020019", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705220000020021", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020021", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300900000010003", + "intro": "Nesuveikė kameros šildymas. Galbūt maitinimo šaltinio temperatūra yra per aukšta." + }, + { + "ecode": "0300900000010001", + "intro": "Nesuveikė kameros šildymas. Šildytuvas gali nepūsti karšto oro." + }, + { + "ecode": "0300900000010002", + "intro": "Kameros šildymas neveikia. Galimos priežastys: kamera nėra visiškai uždara, aplinkos temperatūra per žema arba užsikimšęs maitinimo bloko šilumos išsklaidymo angos ventiliacijos kanalas." + }, + { + "ecode": "0700230000020020", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807210000020011", + "intro": "AMS-HT H lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704200000020022", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020020", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703210000020017", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020022", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020020", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704230000020020", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0702220000020020", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702200000020017", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703200000020018", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0702220000020019", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020020", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020019", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020021", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020017", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020018", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020011", + "intro": "AMS C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805200000020011", + "intro": "AMS-HT F lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020018", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020010", + "intro": "AMS B lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1807200000020011", + "intro": "AMS-HT H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020019", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020022", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020018", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803210000020020", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1805200000020022", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805220000020020", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803200000020018", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020020", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020018", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806230000020020", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0706220000020011", + "intro": "AMS G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1802210000020018", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020024", + "intro": "AMS-HT D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020022", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020019", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1800210000020017", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804220000020019", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802230000020010", + "intro": "AMS-HT C lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706230000020024", + "intro": "AMS G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020018", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704230000020022", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705220000020011", + "intro": "AMS F lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800200000020020", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1802220000020017", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801220000020020", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704220000020011", + "intro": "AMS E lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020017", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020018", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020011", + "intro": "AMS-HT E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701230000020022", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701200000020020", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020019", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020017", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020022", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0C00040000030024", + "intro": "Nustatyta, kad „BirdsEye“ kameros padėtis yra nukrypusi. Siekiant užtikrinti graviravimo tikslumą, rekomenduojama pakartotinai atlikti „BirdsEye“ kameros nustatymą." + }, + { + "ecode": "0500040000020041", + "intro": "Lazerinis modulis naudojamas jau ilgą laiką. Prašome jį nedelsiant išvalyti, kad nebūtų sutrikdyta lazerio veikla." + }, + { + "ecode": "0500040000020042", + "intro": "„Live View“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "03009C0000010001", + "intro": "Oro siurblys neaptiktas. Patikrinkite, ar jungtis tinkamai įjungta." + }, + { + "ecode": "1807700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1805700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0706700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1806700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0700700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0703700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0500060000020031", + "intro": "„ToolHead“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0700700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0703700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0500060000020032", + "intro": "„Nozzle“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300C10000010003", + "intro": "„Airflow System“ nepavyko įjungti lazerio režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0500010000030006", + "intro": "USB atmintinė nėra suformatuota arba į ją negalima įrašyti; prašome suformatuoti USB atmintinę." + }, + { + "ecode": "03009C0000010002", + "intro": "Oro siurblys veikia netinkamai ir gali būti sugadintas." + }, + { + "ecode": "1807700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0705700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1806700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0705700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0706700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1805700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0C00040000020007", + "intro": "„BirdsEye“ kamera ruošiasi darbui. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo tarpu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "0300C00000010002", + "intro": "Oro sklendės su filtru perjungimo sklendės gedimas: ji gali būti užstrigusi." + }, + { + "ecode": "0300C10000010001", + "intro": "„Airflow System“ nepavyko įjungti aušinimo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C10000010002", + "intro": "„Airflow System“ nepavyko įjungti šildymo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C00000010003", + "intro": "Automatinių viršutinių ventiliacijos angų sklendžių gedimas: jos gali būti užstrigusios." + }, + { + "ecode": "0300C00000010001", + "intro": "Aktyviosios kameros išmetamo oro vožtuvo gedimas: jis gali būti užstrigęs." + }, + { + "ecode": "0500040000020037", + "intro": "Pjovimo modulis turi būti kalibruotas, kad būtų nustatyta įrankio padėtis. Prieš naudojimą atlikite montavimo kalibravimą. (trukmė – apie 2–4 minutes)" + }, + { + "ecode": "1806700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0705700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1800700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "03009D0000020003", + "intro": "Graviravimo lazerio židinio taško Z kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus. Jei problema kartojasi, prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0C00010000020002", + "intro": "Kamera ant spausdinimo galvutės veikia netinkamai. Jei ši problema pasikartoja keletą kartų spausdinimo metu, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "1803700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1805700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1802700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1807700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300280000010003", + "intro": "Ryšio sutrikimas tarp pjovimo modulio ir įrankio galvutės atliekant Z ašies grįžimą į pradinę padėtį. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs ar sugadintas, arba įsitikinkite, ar jėgos jutiklio ritė yra nesugadinta." + }, + { + "ecode": "0500010000020001", + "intro": "Medijos tiekimo kanalas veikia netinkamai. Prašome iš naujo paleisti spausdintuvą. Jei keletas bandymų nepavyks, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0700700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0701700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0702700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0703700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300280000010001", + "intro": "Pjovimo modulio jėgos jutiklio rodmenys yra nenormalūs. Gali būti, kad nuo įrankio laikiklio nukrito magnetas arba jėgos jutiklis yra sugadintas." + }, + { + "ecode": "0300180000010007", + "intro": "Ekstruzijos jėgos jutiklio dažnis yra per didelis. Jutiklis gali būti sugadintas arba purkštuvo šilumokaitis gali būti per arti jutiklio." + }, + { + "ecode": "0300180000010004", + "intro": "Ekstruzijos jėgos jutiklio signalas yra nenormalus. Gali būti, kad jutiklis yra sugadintas arba kad ryšys su MC-TH yra sutrikęs." + }, + { + "ecode": "0300280000010004", + "intro": "Pjovimo modulio jėgos jutiklis veikia netinkamai. Galbūt atsijungė jėgos jutiklio kabelis arba jutiklis yra sugadintas." + }, + { + "ecode": "0C00040000010005", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0300180000010008", + "intro": "Purkštukas netinkamai liečiasi su šildomuoju pagrindu. Patikrinkite, ar ant purkštuko nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukas liečiasi su pagrindu." + }, + { + "ecode": "0300280000010007", + "intro": "Nesėkmingas ryšys tarp pjovimo modulio ir įrankio galvutės modulio. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs arba sugadintas. Taip pat priežastis gali būti sugadinta jėgos jutiklio ritė." + }, + { + "ecode": "0300180000010001", + "intro": "Ekstruzijos jėgos jutiklio dažnis yra per mažas. Galbūt nėra sumontuotas purkštukas arba purkštuko šilumokaitis yra per toli nuo jutiklio." + }, + { + "ecode": "0C00010000010012", + "intro": "Nepavyko kalibruoti „Live View“ kameros, todėl kalibravimo rezultato nebuvo galima išsaugoti. Prašome pabandyti kalibruoti iš naujo. Jei kalibravimas nuolat nepavyksta, kreipkitės į klientų aptarnavimo komandą." + }, + { + "ecode": "1804700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0707700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0706700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0704700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1801700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0707810000010004", + "intro": "AMS H Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1805810000010004", + "intro": "AMS-HT F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1804810000010004", + "intro": "AMS-HT E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1801800000010004", + "intro": "AMS-HT B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0705810000010004", + "intro": "AMS F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1800510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0705700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1803700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0C00020000020006", + "intro": "Atrodo, kad purkštuko aukštis yra per didelis. Patikrinkite, ar prie purkštuko nėra likusių Gijos likučių." + }, + { + "ecode": "0702800000010004", + "intro": "AMS C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0702810000010004", + "intro": "AMS C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701800000010004", + "intro": "AMS B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0704800000010004", + "intro": "AMS E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1803810000010004", + "intro": "AMS-HT D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300910000010002", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad šildytuve yra atvira grandinė arba perdegė terminis saugiklis." + }, + { + "ecode": "0700400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "0700510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0700700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0701700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0702700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0703700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0700800000010004", + "intro": "AMS A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0300C30000010001", + "intro": "„Active Chamber Exhaust“ srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0700810000010004", + "intro": "AMS A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0703810000010004", + "intro": "AMS D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701810000010004", + "intro": "AMS B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300950000010006", + "intro": "Lazerinis modulis neaptiktas: modulis galėjo nukristi arba greito atsegimo svirtis gali būti neužfiksuota." + }, + { + "ecode": "1800810000010004", + "intro": "AMS-HT A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0705800000010004", + "intro": "AMS F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1805800000010004", + "intro": "AMS-HT F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800800000010004", + "intro": "AMS-HT A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802810000010004", + "intro": "AMS-HT C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0704810000010004", + "intro": "AMS E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1807800000010004", + "intro": "AMS-HT H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802800000010004", + "intro": "AMS-HT C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1804800000010004", + "intro": "AMS-HT E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0707800000010004", + "intro": "AMS H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1807810000010004", + "intro": "AMS-HT H Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "0706810000010004", + "intro": "AMS G Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "1806810000010004", + "intro": "AMS-HT G Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1806800000010004", + "intro": "AMS-HT G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706800000010004", + "intro": "AMS G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "1802700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0707700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1805700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1806700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1807700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0704700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1801700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0500040000020050", + "intro": "Lazerinio saugos langelis nėra įmontuotas." + }, + { + "ecode": "0C00030000020017", + "intro": "Nepavyko atlikti lazerinio graviravimo Z ašies fokusavimo kalibravimo. Patikrinkite, ar lazerio bandymo medžiaga (350 g kartonas) yra tinkamai padėta, o jos paviršius – švarus ir nesugadintas." + }, + { + "ecode": "1803800000010004", + "intro": "AMS-HT D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1804700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0300970000030001", + "intro": "Viršutinis dangtis yra atidarytas." + }, + { + "ecode": "0703800000010004", + "intro": "AMS D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1801810000010004", + "intro": "AMS-HT B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300A40000010002", + "intro": "Kaitinimo galvutės temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010004", + "intro": "Kameros temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010001", + "intro": "Šildomojo pagrindo temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0700010000010005", + "intro": "AMS A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0702010000010005", + "intro": "AMS C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701010000010005", + "intro": "AMS B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0703010000010005", + "intro": "AMS D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800010000010005", + "intro": "AMS-HT A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1803010000010005", + "intro": "AMS-HT D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1805010000010005", + "intro": "AMS-HT F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1802010000010005", + "intro": "AMS-HT C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0705010000010005", + "intro": "AMS F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1801010000010005", + "intro": "AMS-HT B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0706010000010005", + "intro": "AMS G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1806010000010005", + "intro": "AMS-HT G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0707010000010005", + "intro": "AMS H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800240000020009", + "intro": "AMS-HT: Atidarytas priekinis dangtelis. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1807240000020009", + "intro": "AMS-HT H priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1801240000020009", + "intro": "AMS-HT B priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1806240000020009", + "intro": "AMS-HT G priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1802240000020009", + "intro": "AMS-HT C priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1805240000020009", + "intro": "AMS-HT F priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti, kad gija sugertų drėgmę." + }, + { + "ecode": "1804240000020009", + "intro": "AMS-HT E priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1803240000020009", + "intro": "AMS-HT D priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "0707730000020004", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706700000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701710000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704700000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020005", + "intro": "Nepavyko įtraukti AMS E 3-iojo lizdo gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702710000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803720000020002", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805730000020001", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806710000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704730000020004", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020004", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0702720000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020001", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804720000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800720000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020005", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020005", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701700000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020002", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802730000020004", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704720000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801730000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020001", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700720000020002", + "intro": "Nepavyko įtraukti AMS A 3-iojo lizdo gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705700000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804710000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020004", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020005", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807700000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020002", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020001", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700710000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700710000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020005", + "intro": "Nepavyko įtraukti AMS-HT G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801710000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020004", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020004", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705710000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807710000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020005", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805720000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020005", + "intro": "Nepavyko įtraukti AMS C Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020001", + "intro": "Nepavyko ištraukti AMS-HT B Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020005", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020004", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705700000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020001", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804730000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020005", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020002", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0707720000020002", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700720000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801710000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806730000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706720000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801730000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802710000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020002", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020004", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020005", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų. Prašome nukirpti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706720000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020002", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807720000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803700000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701710000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707730000020005", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801720000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020002", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020002", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020001", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801720000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802700000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703710000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706730000020001", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806700000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020002", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800720000020005", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706700000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1800700000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707720000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802710000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020005", + "intro": "Nepavyko įtraukti AMS G 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702720000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020002", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807700000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804730000020004", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijų. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705730000020001", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704720000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0704710000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707700000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020005", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805720000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0701730000020001", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700710000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803730000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804700000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703700000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0701710000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807010000010005", + "intro": "AMS-HT H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0704010000010005", + "intro": "AMS E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701710000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707700000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701730000020004", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020001", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020005", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1802700000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804710000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804730000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705720000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804730000020001", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700730000020001", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802720000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1806710000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703730000020005", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020002", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803720000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700700000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705730000020004", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700710000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805710000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1807730000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020005", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805710000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700730000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020004", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020004", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020001", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0702700000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800710000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702700000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0700700000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020004", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020002", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020001", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705710000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020001", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807710000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704700000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804010000010005", + "intro": "AMS-HT E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0C00030000020016", + "intro": "Svetimų objektų aptikimo funkcija neveikia, o „Live View“ kameros serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "0300950000010008", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0500030000010021", + "intro": "Įranga nesuderinama; patikrinkite „Toolhead“ kamerą." + }, + { + "ecode": "0C00010000020008", + "intro": "Nepavyko gauti vaizdo iš „Live View“ kameros. Šiuo metu negalima naudotis spagečių ir šiukšlių šachtos užsikimšimo aptikimo funkcija." + }, + { + "ecode": "0C00040000010012", + "intro": "„Live View“ kameros duomenų perdavimo ryšys yra sutrikęs." + }, + { + "ecode": "0300950000010001", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti trumpai sujungtas." + }, + { + "ecode": "0C00040000020003", + "intro": "Lazerinė platforma nėra tinkamai išlyginta. Prašome įsitikinti, kad visi keturi kampai būtų išlyginti su šildomuoju pagrindu." + }, + { + "ecode": "0300950000010005", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0500060000020004", + "intro": "„Live View“ kamera nėra įdėta; patikrinkite, ar įranga yra tinkamai prijungta." + }, + { + "ecode": "0C00040000020002", + "intro": "Nepastebėta pjovimo platforma. Prašome uždėti užduočiai reikalingą pjovimo kilimėlį ir tęsti." + }, + { + "ecode": "0300950000010003", + "intro": "Lazerinio modulio perkaitimas" + }, + { + "ecode": "0300950000010004", + "intro": "Lazerinio modulio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0500060000020033", + "intro": "„BirdsEye“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300950000010002", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti atjungtas." + }, + { + "ecode": "0C00030000020012", + "intro": "Svetimų objektų aptikimo funkcija neveikia. „Live View“ kamera turi būti kalibruota. Spauskite spausdintuvo ekrane „Nustatymai > Kalibravimas“. Jei įdiegtas lazerinis arba pjovimo modulis, prieš kalibravimą jį išimkite." + }, + { + "ecode": "0500040000020031", + "intro": "Prieš pradedant naudoti lazerio/pjaustymo modulį, reikia nustatyti „BirdsEye“ kameros padėtį. Atlikite nustatymus, kad kalibruotumėte kamerą." + }, + { + "ecode": "1800200000020007", + "intro": "AMS-HT: A lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0703210000020007", + "intro": "AMS D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701210000020007", + "intro": "AMS B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0703200000020007", + "intro": "AMS D lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702200000020007", + "intro": "AMS C lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701200000020007", + "intro": "AMS B lizdo Nr. 1 išvedimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703230000020007", + "intro": "AMS D lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700220000020007", + "intro": "AMS: A lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0300990000010004", + "intro": "Nerastas reikiamas lazerio saugos langelis. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0300960000010004", + "intro": "Priekinis lazerio apsauginis langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0C00040000020019", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, prašome kreiptis į „Wiki“." + }, + { + "ecode": "0300980000010004", + "intro": "Kairysis lazerio saugos langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "1804210000020007", + "intro": "AMS-HT E lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706230000020007", + "intro": "AMS G lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "1802230000020007", + "intro": "AMS-HT C lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800220000020007", + "intro": "AMS-HT: 3-iojo lizdo išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707200000020007", + "intro": "AMS H lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807230000020007", + "intro": "AMS-HT H Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704210000020007", + "intro": "AMS E lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0707220000020007", + "intro": "AMS H lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802220000020007", + "intro": "AMS-HT C lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707210000020007", + "intro": "AMS H lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803200000020007", + "intro": "AMS-HT D lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806200000020007", + "intro": "AMS-HT G lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705230000020007", + "intro": "AMS F Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1805220000020007", + "intro": "AMS-HT F lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802210000020007", + "intro": "AMS-HT C lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803220000020007", + "intro": "AMS-HT D lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704220000020007", + "intro": "AMS E lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706210000020007", + "intro": "AMS G lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "03009E0000030001", + "intro": "Šio spausdinimo užduoties „Atvirų durų aptikimo“ lygis bus nustatytas kaip „Pranešimas“." + }, + { + "ecode": "1807200000020007", + "intro": "AMS-HT H lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807220000020007", + "intro": "AMS-HT H lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800230000020007", + "intro": "AMS-HT: lizdo Nr. 4 išvestinis „Hall“ jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806230000020007", + "intro": "AMS-HT G lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801220000020007", + "intro": "AMS-HT B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707230000020007", + "intro": "AMS H Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1801200000020007", + "intro": "AMS-HT B lizdo Nr. 1 išvedimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807210000020007", + "intro": "AMS-HT H lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1803210000020007", + "intro": "AMS-HT D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706220000020007", + "intro": "AMS G 3-iojo lizdo išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804200000020007", + "intro": "AMS-HT E lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805210000020007", + "intro": "AMS-HT F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1804220000020007", + "intro": "AMS-HT E lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009D0000020001", + "intro": "Nepavyko atlikti graviravimo lazerio židinio taško XY kalibravimo. Prašome nuvalyti lazerio platformos lazerio grįžimo į pradinę padėtį zoną ir pakartotinai atlikti lazerio modulio tvirtinimo kalibravimą." + }, + { + "ecode": "0702210000020007", + "intro": "AMS C lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700230000020007", + "intro": "AMS: A lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701230000020007", + "intro": "AMS B lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0300970000010004", + "intro": "Viršutinė lazerio apsauginė plokštė neaptikta. Įdiekite ją pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0704200000020007", + "intro": "AMS E lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705220000020007", + "intro": "AMS F lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705200000020007", + "intro": "AMS F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702230000020007", + "intro": "AMS C lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701220000020007", + "intro": "AMS B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702220000020007", + "intro": "AMS C lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703220000020007", + "intro": "AMS D lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700210000020007", + "intro": "AMS: A lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700200000020007", + "intro": "AMS: lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804230000020007", + "intro": "AMS-HT E Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801210000020007", + "intro": "AMS-HT B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805230000020007", + "intro": "AMS-HT F lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704230000020007", + "intro": "AMS E Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806220000020007", + "intro": "AMS-HT G lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800210000020007", + "intro": "AMS-HT: lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805200000020007", + "intro": "AMS-HT F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806210000020007", + "intro": "AMS-HT G lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705210000020007", + "intro": "AMS F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801230000020007", + "intro": "AMS-HT B lizdo Nr. 4 išėjimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803230000020007", + "intro": "AMS-HT D lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802200000020007", + "intro": "AMS-HT C lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706200000020007", + "intro": "AMS G lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009B0000010002", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009B0000010001", + "intro": "Avarinio stabdymo mygtukas nėra įdiegtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009D0000020002", + "intro": "Graviravimo lazerio židinio taško XY kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus." + }, + { + "ecode": "0C00010000010011", + "intro": "Nepavyko kalibruoti „Live View“ kameros, prašome kalibruoti iš naujo. Įsitikinkite, kad spausdinimo plokštė yra tuščia, o kameros vaizdas – aiškus ir tinkamai orientuotas. Jei gedimai kartojasi, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500040000010052", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0500040000010051", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0300090000010001", + "intro": "Ekstruderiui skirto servovariklio grandinė yra atvira. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300090000010002", + "intro": "Ekstruderiui skirtas servovariklis yra trumpai sujungęs. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300090000010003", + "intro": "Ekstruderių servovariklio varža neatitinka normos; galbūt variklis sugedo." + }, + { + "ecode": "0300160000010001", + "intro": "Ekstruderių servovariklio srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300410000010001", + "intro": "Sistemos įtampa yra nestabili. Įjungiama apsaugos nuo elektros tiekimo sutrikimų funkcija." + }, + { + "ecode": "1803240000010007", + "intro": "AMS-HT D durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1806240000010007", + "intro": "AMS-HT G durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1801240000010007", + "intro": "AMS-HT B durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1805240000010007", + "intro": "AMS-HT F durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1802240000010007", + "intro": "AMS-HT C durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1804240000010007", + "intro": "AMS-HT E durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1807240000010007", + "intro": "AMS-HT H durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1800240000010007", + "intro": "AMS-HT: nustatyta durų aptikimo anomalija; galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "07FF700000020003", + "intro": "Patikrinkite, ar gija išeina iš purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl išspausti." + }, + { + "ecode": "0300D00000010002", + "intro": "Peilio laikiklis nukrito; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300D00000010001", + "intro": "Nukrito pjovimo modulio pagrindas; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300280000010005", + "intro": "Pjovimo režimu nepavyko atlikti Z ašies grįžimo į pradinę padėtį. Patikrinkite, ar Z ašies slankiklyje ir Z ašies sinchroniniame skriemulyje nėra svetimkūnių." + }, + { + "ecode": "18FF600000020001", + "intro": "Išorinė ritė gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "07FF600000020001", + "intro": "Išorinė ritė gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0300280000010008", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties. Patikrinkite, ar peilio laikiklis juda sklandžiai, ir įsitikinkite, kad šildomojo pagrindo kontaktinėje vietoje nėra jokių svetimkūnių." + }, + { + "ecode": "0500030000020020", + "intro": "USB atmintinės talpa yra per maža, kad būtų galima išsaugoti spausdinimo failus tarpinėje atmintyje." + }, + { + "ecode": "1802010000020006", + "intro": "AMS-HT C Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806010000020006", + "intro": "AMS-HT G Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704010000020006", + "intro": "AMS E: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1800010000020006", + "intro": "AMS-HT A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805010000020006", + "intro": "AMS-HT F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0702010000020006", + "intro": "AMS C: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0703010000020006", + "intro": "AMS D: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0705010000020006", + "intro": "AMS F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701010000020006", + "intro": "AMS B: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0700010000020006", + "intro": "AMS A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801010000020006", + "intro": "AMS-HT B Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807010000020006", + "intro": "AMS-HT H Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804010000020006", + "intro": "AMS-HT E Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803010000020006", + "intro": "AMS-HT D Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706010000020006", + "intro": "AMS G: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707010000020006", + "intro": "AMS H: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020036", + "intro": "Prijungtas naujas pjovimo modulis. Kad pjovimas būtų tikslesnis, prieš naudojimą jį reikia sukonfigūruoti (trunka apie 3 minutes)." + }, + { + "ecode": "0500040000020035", + "intro": "Norint nustatyti fokusavimo padėtį, reikia kalibruoti lazerinį modulį. Prieš naudojimą atlikite montavimo kalibravimą. (trunka apie 2 minutes)" + }, + { + "ecode": "0300C30000010002", + "intro": "Filtro perjungimo sklendės srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300A10000010001", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad įrenginys atvėstų, arba sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0500010000030005", + "intro": "USB atmintinė veikia tik skaitymo režimu. Vaizdo įrašymo ir „Timelapse“ įrašymo funkcijos neveikia. Pagalbos ieškokite „Wiki“ puslapyje." + }, + { + "ecode": "0500040000020038", + "intro": "Įstumkite pjovimo modulį ir užfiksuokite greito atsegimo svirtį. Jei modulis jau buvo įmontuotas, jis gali būti netinkamai išlygintas. Pabandykite jį įmontuoti iš naujo." + }, + { + "ecode": "0300D00000010003", + "intro": "Atsijungė pjovimo modulio kabelis; patikrinkite kabelio jungtį." + }, + { + "ecode": "0500010000020002", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0500060000020034", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "1805200000020009", + "intro": "Nepavyko išspausti AMS-HT F lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803200000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805210000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804210000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804220000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "180620000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070522000002000A", + "intro": "Nepavyko sureguliuoti AMS F 3-iojo lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180022000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 3 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180722000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180421000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180422000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "1803210000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 2 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806230000020009", + "intro": "Nepavyko išspausti „AMS-HT G Slot 4“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800220000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807230000020009", + "intro": "Nepavyko išspausti AMS-HT H Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802200000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801210000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807210000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800210000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802210000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806220000020009", + "intro": "Nepavyko išspausti „AMS-HT G lizdo Nr. 3“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806200000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804230000020009", + "intro": "Nepavyko išspausti „AMS-HT E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801220000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802220000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803230000020009", + "intro": "Nepavyko išspausti AMS-HT D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807200000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800230000020009", + "intro": "Nepavyko išspausti AMS-HT A Slot 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806210000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805220000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807220000020009", + "intro": "Nepavyko išspausti „AMS-HT H lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803220000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805230000020009", + "intro": "Nepavyko išspausti „AMS-HT F Slot 4“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804200000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801200000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800200000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802230000020009", + "intro": "Nepavyko išspausti AMS-HT C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801230000020009", + "intro": "Nepavyko išspausti AMS-HT B Slot 4 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "070723000002000A", + "intro": "Nepavyko sureguliuoti AMS H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180222000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070223000002000A", + "intro": "Nepavyko sureguliuoti AMS C 4-osios lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180522000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F 3-iojo lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070722000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070023000002000A", + "intro": "Nepavyko sureguliuoti AMS A 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180020000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180120000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180322000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 3 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180321000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180720000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070122000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070123000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070620000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070321000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070623000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180023000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180521000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180122000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070221000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070323000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070422000002000A", + "intro": "Nepavyko sureguliuoti AMS E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070420000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070121000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070721000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070523000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180420000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180123000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070622000002000A", + "intro": "Nepavyko sureguliuoti AMS G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180323000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070322000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070220000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070320000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180721000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070521000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180520000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070120000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180623000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070720000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180223000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070520000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180320000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070421000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180220000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180621000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180523000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070621000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070020000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070222000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180021000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070423000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070022000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0C0003000002000E", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "180221000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070021000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180622000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180423000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180723000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180121000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0703200000030001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800220000020001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000030001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705200000030001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020005", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1807220000020008", + "intro": "AMS-HT H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020008", + "intro": "AMS-HT F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802220000020005", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT D lizdo Nr. 1 gija." + }, + { + "ecode": "1804130000010001", + "intro": "AMS-HT E lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1805120000010001", + "intro": "AMS-HT F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706210000020008", + "intro": "AMS G lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705200000020002", + "intro": "AMS F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020001", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707100000010001", + "intro": "AMS H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0704200000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1801130000010001", + "intro": "AMS-HT B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802110000020002", + "intro": "AMS-HT C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805200000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705130000010001", + "intro": "AMS F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806200000020001", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000020008", + "intro": "AMS D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020008", + "intro": "AMS-HT D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 1 gija." + }, + { + "ecode": "0707210000020001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1804210000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 3 gija." + }, + { + "ecode": "1804560000030001", + "intro": "AMS-HT E šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0707220000030001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704120000010003", + "intro": "AMS E lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705120000010003", + "intro": "AMS F lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704100000010003", + "intro": "AMS E lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1806310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705210000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707220000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701130000010001", + "intro": "AMS B lizdo Nr. 4-asis variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020005", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000010001", + "intro": "AMS C lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020005", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020008", + "intro": "AMS D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804210000020008", + "intro": "AMS-HT E lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800130000010001", + "intro": "AMS-HT A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800230000030002", + "intro": "AMS-HT: 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804220000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807100000010003", + "intro": "AMS-HT H lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802220000020001", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0705210000020005", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705220000020002", + "intro": "AMS F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806200000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1807230000020002", + "intro": "AMS-HT H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807210000020002", + "intro": "AMS-HT H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802560000030001", + "intro": "AMS-HT C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0700120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000030001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701100000010001", + "intro": "AMS B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701110000010003", + "intro": "AMS B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702220000030001", + "intro": "Baigėsi AMS C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703210000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703220000020001", + "intro": "AMS D lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801220000020001", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030002", + "intro": "AMS-HT F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000030002", + "intro": "AMS F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000020008", + "intro": "AMS F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020005", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1805210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 2 gija." + }, + { + "ecode": "0707220000020005", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801120000020002", + "intro": "AMS-HT B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020001", + "intro": "AMS-HT H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 3 gija." + }, + { + "ecode": "1800220000030001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000020001", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803210000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "0707560000030001", + "intro": "AMS H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1801230000030001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000010003", + "intro": "AMS G slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804110000010001", + "intro": "AMS-HT E lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803230000020005", + "intro": "Baigėsi AMS-HT D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707230000020008", + "intro": "AMS H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704130000010001", + "intro": "AMS E slot 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801200000030002", + "intro": "AMS-HT B 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020008", + "intro": "AMS-HT H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000020008", + "intro": "AMS H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701210000020008", + "intro": "AMS B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801130000020002", + "intro": "AMS-HT B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803120000010003", + "intro": "AMS-HT D lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803130000020002", + "intro": "AMS-HT D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807110000010003", + "intro": "AMS-HT H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 2 gija elementas." + }, + { + "ecode": "0705200000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806100000010003", + "intro": "AMS-HT G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800210000030002", + "intro": "AMS-HT: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703560000030001", + "intro": "AMS D šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT G lizdo Nr. 1 gija yra nutrūkusi." + }, + { + "ecode": "0704210000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "1807200000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804230000030001", + "intro": "Baigėsi AMS-HT E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704110000010001", + "intro": "AMS E lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800210000020004", + "intro": "AMS-HT A: lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0704210000030001", + "intro": "Baigėsi „AMS E lizdo Nr. 2“ gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000020002", + "intro": "AMS G slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804210000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "1806210000020002", + "intro": "AMS-HT G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805210000020001", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0706110000010001", + "intro": "AMS G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 1 gija." + }, + { + "ecode": "0706130000010001", + "intro": "AMS G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802210000030002", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807130000020002", + "intro": "AMS-HT H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020008", + "intro": "AMS D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0704200000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700100000010003", + "intro": "AMS A lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0701220000020001", + "intro": "AMS B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020005", + "intro": "Baigėsi AMS C Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703210000020001", + "intro": "AMS D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703220000020005", + "intro": "Baigėsi AMS D 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000030001", + "intro": "Baigėsi AMS D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000030002", + "intro": "AMS-HT G 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804130000010003", + "intro": "AMS-HT E lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806110000010003", + "intro": "AMS-HT G lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805130000010003", + "intro": "AMS-HT F lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802110000010001", + "intro": "AMS-HT C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0701230000030001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702210000020001", + "intro": "AMS C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702210000030001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703110000010001", + "intro": "AMS D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020001", + "intro": "AMS D lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700200000020008", + "intro": "AMS: „lizdo Nr. 1“ įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701200000020008", + "intro": "AMS B lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000030001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000020005", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705210000020001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802100000020002", + "intro": "AMS-HT C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000010001", + "intro": "AMS-HT F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000030002", + "intro": "AMS H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705100000020002", + "intro": "AMS F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800210000020008", + "intro": "AMS-HT: lizdo Nr. 2 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020002", + "intro": "AMS H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704130000020002", + "intro": "AMS E slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803230000030001", + "intro": "Baigėsi AMS-HT D Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020002", + "intro": "AMS-HT B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704230000020003", + "intro": "Gali būti, kad AMS E Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000030001", + "intro": "Baigėsi AMS G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705210000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1806200000030002", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704220000020001", + "intro": "AMS E 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803120000010001", + "intro": "AMS-HT D lizdo Nr. 3 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT D lizdo Nr. 2 gija yra nutrūkusi." + }, + { + "ecode": "0706210000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707120000010001", + "intro": "AMS H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801120000010001", + "intro": "AMS-HT B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801210000020002", + "intro": "AMS-HT B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000030002", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800230000020004", + "intro": "AMS-HT A: 4-oje lizdoje esančioje įrankio galvutėje gali būti nutrūkęs gija." + }, + { + "ecode": "1800230000020005", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806130000010003", + "intro": "AMS-HT G slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1802230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C Slot 4 gija." + }, + { + "ecode": "0705200000020001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1807230000020005", + "intro": "Baigėsi AMS-HT H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805560000030001", + "intro": "AMS-HT F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805210000020008", + "intro": "AMS-HT F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805210000030002", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020004", + "intro": "Gali būti, kad AMS-HT D Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0707200000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000020001", + "intro": "AMS G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807120000010003", + "intro": "AMS-HT H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800220000030002", + "intro": "AMS-HT: 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806560000030001", + "intro": "AMS-HT G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0701230000020008", + "intro": "AMS B lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1806350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1801210000030002", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020005", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1807110000020002", + "intro": "AMS-HT H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707100000010003", + "intro": "AMS H lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020004", + "intro": "Gali būti, kad AMS G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705220000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806210000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020001", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800120000020002", + "intro": "AMS-HT A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802210000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1800220000020002", + "intro": "AMS-HT A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706210000020002", + "intro": "AMS G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801220000020005", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800200000020008", + "intro": "AMS-HT: lizdo Nr. 1 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000030002", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020002", + "intro": "AMS-HT C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706220000020004", + "intro": "Gali būti, kad AMS G 3-iojo lizdo gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020002", + "intro": "AMS G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800110000010003", + "intro": "AMS-HT A lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805230000020005", + "intro": "Baigėsi AMS-HT F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804110000010003", + "intro": "AMS-HT E lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806220000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000030002", + "intro": "AMS E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804200000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1801230000020005", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705200000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FF200000020002", + "intro": "Trūksta išorinio gijos; įdėkite naują giją." + }, + { + "ecode": "1807350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700110000020002", + "intro": "AMS A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700200000020003", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700200000020004", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000020001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701100000020002", + "intro": "AMS B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701110000020002", + "intro": "AMS B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000030001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702200000020001", + "intro": "AMS C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703200000020001", + "intro": "AMS D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000030002", + "intro": "AMS D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000030002", + "intro": "AMS D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1801220000030002", + "intro": "AMS-HT B 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802220000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1804120000010001", + "intro": "AMS-HT E 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806210000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700110000010001", + "intro": "AMS A lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702200000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702210000020005", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0703110000010003", + "intro": "AMS D lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801210000020001", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700560000030001", + "intro": "AMS A šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805120000020002", + "intro": "AMS-HT F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806210000030002", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805100000010003", + "intro": "AMS-HT F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707220000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0704120000010001", + "intro": "AMS E lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020001", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802130000010001", + "intro": "AMS-HT C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1806230000030001", + "intro": "Baigėsi AMS-HT G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000030001", + "intro": "Baigėsi AMS H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800130000020002", + "intro": "AMS-HT A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803200000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800230000020002", + "intro": "AMS-HT A 4-oji lizda yra tuščia; įdėkite naują giją." + }, + { + "ecode": "1801100000010001", + "intro": "AMS-HT B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807100000020002", + "intro": "AMS-HT H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000020002", + "intro": "AMS H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802220000020008", + "intro": "AMS-HT C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801230000020001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805230000030002", + "intro": "AMS-HT F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804200000020004", + "intro": "Gali būti, kad AMS-HT E lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802120000020002", + "intro": "AMS-HT C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000020002", + "intro": "AMS F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805110000010003", + "intro": "AMS-HT F lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030002", + "intro": "AMS-HT H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807210000020008", + "intro": "AMS-HT H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030002", + "intro": "AMS-HT H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "18FF200000020001", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "1800450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1805310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704230000020009", + "intro": "Nepavyko išspausti „AMS E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706220000020005", + "intro": "Baigėsi AMS G 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant galvutės." + }, + { + "ecode": "1806110000010001", + "intro": "AMS-HT G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802220000030002", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0707200000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1803230000020001", + "intro": "AMS-HT D Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802100000010003", + "intro": "AMS-HT C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "0705130000020002", + "intro": "AMS F slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803220000030002", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805230000020002", + "intro": "AMS-HT F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 1 gija." + }, + { + "ecode": "1800200000020004", + "intro": "AMS-HT A: galbūt įrankio galvutėje nutrūko lizdo Nr. 1 gija elementas." + }, + { + "ecode": "1803200000020002", + "intro": "AMS-HT D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800120000010003", + "intro": "AMS-HT A lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000010003", + "intro": "AMS E lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804110000020002", + "intro": "AMS-HT E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000020002", + "intro": "AMS-HT F lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804130000020002", + "intro": "AMS-HT E 4-osios lizdo variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800220000020003", + "intro": "AMS-HT A lizdo Nr. 3 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "0706210000020001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "0705220000020005", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707220000020008", + "intro": "AMS H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801210000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1803300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "1802300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1802310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700210000020003", + "intro": "Gali būti, kad AMS A lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0700230000020003", + "intro": "Gali būti, kad AMS A Slot 4 gija yra nutrūkęs AMS." + }, + { + "ecode": "0701200000030002", + "intro": "AMS B lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 spausdinimo gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803120000020002", + "intro": "AMS-HT D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801110000010001", + "intro": "AMS-HT B lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706220000020001", + "intro": "AMS G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803230000020002", + "intro": "AMS-HT D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803110000010003", + "intro": "AMS-HT D lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700100000010001", + "intro": "AMS A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700100000020002", + "intro": "AMS A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000020002", + "intro": "AMS C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702210000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0702220000030002", + "intro": "AMS C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1805210000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802200000030002", + "intro": "AMS-HT C 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804220000020008", + "intro": "AMS-HT E lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705230000020002", + "intro": "AMS F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800200000020005", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805220000020002", + "intro": "AMS-HT F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020008", + "intro": "AMS G lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "0706200000020002", + "intro": "AMS G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702220000020008", + "intro": "AMS C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030001", + "intro": "Baigėsi AMS-HT H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020002", + "intro": "AMS H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000030002", + "intro": "AMS H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0705100000010003", + "intro": "AMS F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803210000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805210000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800210000020001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803210000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020002", + "intro": "AMS E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802130000010003", + "intro": "AMS-HT C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804210000030002", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800200000030002", + "intro": "AMS-HT: 1-oje lizdoje baigėsi gijos medžiaga, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gijos medžiaga." + }, + { + "ecode": "0705220000030002", + "intro": "AMS F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1802210000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020008", + "intro": "AMS-HT G Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805220000020001", + "intro": "AMS-HT F lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802200000020001", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705230000020009", + "intro": "Nepavyko išspausti „AMS F Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705110000010001", + "intro": "AMS F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807210000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1803220000020001", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707210000020008", + "intro": "AMS H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000030001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800120000010001", + "intro": "AMS-HT A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020008", + "intro": "AMS-HT B lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707120000020002", + "intro": "AMS H lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010003", + "intro": "AMS F lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807110000010001", + "intro": "AMS-HT H lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801560000030001", + "intro": "AMS-HT B šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706200000030001", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804200000020001", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000030002", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706220000030001", + "intro": "Baigėsi AMS G 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ spausdinimo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0706230000020009", + "intro": "Nepavyko išspausti „AMS G Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "18FF200000020004", + "intro": "Prašome ištraukti išorinius gijus iš ekstruderio." + }, + { + "ecode": "0705350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706210000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700200000020001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700210000030002", + "intro": "AMS: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701110000010001", + "intro": "AMS B lizdo Nr. 2-ojo variklio sukimasis sutriko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702230000020003", + "intro": "Gali būti, kad AMS C Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0704100000020002", + "intro": "AMS E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807200000020001", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704560000030001", + "intro": "AMS E šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804230000030002", + "intro": "AMS-HT E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803110000020002", + "intro": "AMS-HT D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0703100000010003", + "intro": "AMS D lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703230000020003", + "intro": "Gali būti, kad AMS D Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705230000020004", + "intro": "Gali būti, kad AMS F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800220000020008", + "intro": "AMS-HT: 3-iojo lizdo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707130000010003", + "intro": "AMS H slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806200000020002", + "intro": "AMS-HT G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 spuldzė yra sulūžusi AMS." + }, + { + "ecode": "0706100000020002", + "intro": "AMS G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704210000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "0705220000030001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707210000030001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020003", + "intro": "Gali būti, kad „AMS-HT G Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1806230000020005", + "intro": "Baigėsi AMS-HT G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804100000010003", + "intro": "AMS-HT E lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020008", + "intro": "AMS D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802220000030001", + "intro": "Baigėsi AMS-HT C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020002", + "intro": "AMS-HT E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020008", + "intro": "AMS-HT G lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704120000020002", + "intro": "AMS E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000010001", + "intro": "AMS F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800100000010003", + "intro": "AMS-HT A lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801200000020001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801230000020008", + "intro": "AMS-HT B lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804220000030002", + "intro": "AMS-HT E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706110000010003", + "intro": "AMS G lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707120000010003", + "intro": "AMS H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807200000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020008", + "intro": "AMS-HT G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705100000010001", + "intro": "AMS F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804230000020002", + "intro": "AMS-HT E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800220000020005", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707130000020002", + "intro": "AMS H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804200000020002", + "intro": "AMS-HT E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700210000020008", + "intro": "AMS A lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020008", + "intro": "AMS-HT C lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801110000020002", + "intro": "AMS-HT B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B Slot 4 gija." + }, + { + "ecode": "1803220000030001", + "intro": "Baigėsi AMS-HT D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807560000030001", + "intro": "AMS-HT H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706110000020002", + "intro": "AMS G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0706230000020005", + "intro": "Baigėsi AMS G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705130000010003", + "intro": "AMS F slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804220000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801200000020002", + "intro": "AMS-HT B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801110000010003", + "intro": "AMS-HT B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020004", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706200000020001", + "intro": "AMS G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803200000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706120000010001", + "intro": "AMS G lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806230000020001", + "intro": "AMS-HT G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802230000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706230000030002", + "intro": "AMS G lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1805300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000020005", + "intro": "AMS A 3-iojo lizdo gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020001", + "intro": "AMS B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020003", + "intro": "Gali būti, kad AMS B Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000030002", + "intro": "AMS C lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020001", + "intro": "AMS C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020004", + "intro": "Gali būti, kad AMS C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0703100000010001", + "intro": "AMS D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000030002", + "intro": "AMS D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000020004", + "intro": "Gali būti, kad AMS D Slot 4 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0703230000020005", + "intro": "Baigėsi AMS D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802220000020002", + "intro": "AMS-HT C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803100000020002", + "intro": "AMS-HT D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803210000020001", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020005", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0701210000030002", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701230000020001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701230000020005", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020008", + "intro": "AMS C lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707130000010001", + "intro": "AMS H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704220000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0704210000020002", + "intro": "AMS E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801100000010003", + "intro": "AMS-HT B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000030002", + "intro": "AMS G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704130000010003", + "intro": "AMS E slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706560000030001", + "intro": "AMS G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806120000010003", + "intro": "AMS-HT G lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705230000020005", + "intro": "Baigėsi AMS F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0706120000010003", + "intro": "AMS G lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000030002", + "intro": "AMS-HT B 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807220000020002", + "intro": "AMS-HT H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707210000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 kaitinamoji gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "1802230000020002", + "intro": "AMS-HT C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806120000010001", + "intro": "AMS-HT G 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704230000020008", + "intro": "AMS E Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805120000010003", + "intro": "AMS-HT F lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020008", + "intro": "AMS-HT F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800100000010001", + "intro": "AMS-HT A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705230000020003", + "intro": "Gali būti, kad AMS F Slot 4 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0707110000010003", + "intro": "AMS H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705210000020002", + "intro": "AMS F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800210000020002", + "intro": "AMS-HT A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806110000020002", + "intro": "AMS-HT G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806130000020002", + "intro": "AMS-HT G lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800230000020001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707210000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802100000010001", + "intro": "AMS-HT C lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706210000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "0704200000020001", + "intro": "AMS E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000030001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805230000020001", + "intro": "AMS-HT F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806230000020004", + "intro": "Gali būti, kad AMS-HT G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706210000030002", + "intro": "AMS G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1806100000020002", + "intro": "AMS-HT G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801130000010003", + "intro": "AMS-HT B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804210000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804220000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0704100000010001", + "intro": "AMS E lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020008", + "intro": "AMS E lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0706120000020002", + "intro": "AMS G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802230000020004", + "intro": "Gali būti, kad AMS-HT C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707110000020002", + "intro": "AMS H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706100000010001", + "intro": "AMS G lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1800210000020003", + "intro": "AMS-HT A lizdo Nr. 2 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1800110000020002", + "intro": "AMS-HT A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020004", + "intro": "Gali būti, kad AMS-HT H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0704230000020001", + "intro": "AMS E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704210000020005", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803130000010001", + "intro": "AMS-HT D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707230000020009", + "intro": "Nepavyko išspausti „AMS H Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700200000030002", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0700210000020004", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000030001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700220000020003", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701100000010003", + "intro": "AMS B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703100000020002", + "intro": "AMS D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1801200000020004", + "intro": "AMS-HT B lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0706100000010003", + "intro": "AMS G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020001", + "intro": "AMS-HT E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803220000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0700200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020004", + "intro": "AMS A Slot 4 gija įrankio galvutėje gali būti nutrūkęs." + }, + { + "ecode": "0700230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0701220000020005", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703220000030002", + "intro": "AMS D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1803230000030002", + "intro": "AMS-HT D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020002", + "intro": "AMS-HT H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000020004", + "intro": "Gali būti, kad AMS-HT F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H Slot 4 gija." + }, + { + "ecode": "1804120000020002", + "intro": "AMS-HT E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000020008", + "intro": "AMS F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020002", + "intro": "AMS-HT D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807220000020001", + "intro": "AMS-HT H lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 3 spuldzės gijas." + }, + { + "ecode": "1800230000020008", + "intro": "AMS-HT: lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707230000020005", + "intro": "Baigėsi AMS H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707200000020005", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802230000030002", + "intro": "AMS-HT C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805200000020002", + "intro": "AMS-HT F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801200000020005", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705210000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705210000030001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705220000020008", + "intro": "AMS F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802120000010001", + "intro": "AMS-HT C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B lizdo Nr. 3 gija." + }, + { + "ecode": "0707210000020005", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1803350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0704210000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807120000020002", + "intro": "AMS-HT H lizdo Nr. 3 variklis yra perkrautas. Galbūt gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000030002", + "intro": "AMS H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020008", + "intro": "AMS-HT D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1807220000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1806220000020002", + "intro": "AMS-HT G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807130000010001", + "intro": "AMS-HT H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000020001", + "intro": "AMS H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801210000020008", + "intro": "AMS-HT B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802210000020001", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0707210000020002", + "intro": "AMS H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704200000030002", + "intro": "AMS E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804210000020002", + "intro": "AMS-HT E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0705220000020001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000020003", + "intro": "AMS-HT A lizdo Nr. 1 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1805230000020003", + "intro": "Gali būti, kad „AMS-HT F Slot 4“ spausdintuvo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1802230000020001", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804230000020003", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "0704300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704220000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1806300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700120000010003", + "intro": "AMS A lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700200000030001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700210000020005", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant spausdintuvo galvutės." + }, + { + "ecode": "0700230000030002", + "intro": "AMS A 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0702220000020001", + "intro": "AMS C lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801100000020002", + "intro": "AMS-HT B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806100000010001", + "intro": "AMS-HT G lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805110000010001", + "intro": "AMS-HT F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803110000010001", + "intro": "AMS-HT D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700200000020005", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700220000030002", + "intro": "AMS A 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0701230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gijos gija įtrūko įrankio galvutėje." + }, + { + "ecode": "0702130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000020005", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1801210000020005", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801210000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020001", + "intro": "AMS-HT E lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803560000030001", + "intro": "AMS-HT D šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805100000020002", + "intro": "AMS-HT F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020002", + "intro": "AMS E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704210000030002", + "intro": "AMS E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801120000010003", + "intro": "AMS-HT B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803220000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806210000020008", + "intro": "AMS-HT G lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706200000020008", + "intro": "AMS G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807100000010001", + "intro": "AMS-HT H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1804100000020002", + "intro": "AMS-HT E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804100000010001", + "intro": "AMS-HT E lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807120000010001", + "intro": "AMS-HT H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705200000020008", + "intro": "AMS F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704230000030001", + "intro": "Baigėsi AMS E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000030001", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701560000030001", + "intro": "AMS B šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1800130000010003", + "intro": "AMS-HT A lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707100000020002", + "intro": "AMS H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030002", + "intro": "AMS F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0706220000030002", + "intro": "AMS G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0704230000020005", + "intro": "Baigėsi AMS E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704200000020008", + "intro": "AMS E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707210000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "1806210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT G lizdo Nr. 2 gija." + }, + { + "ecode": "0700220000020008", + "intro": "AMS A 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000030001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705110000020002", + "intro": "AMS F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0707200000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0706220000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0706350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804210000020001", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000020008", + "intro": "AMS-HT B lizdo Nr. 1 įvesties Hallo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803210000020002", + "intro": "AMS-HT D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020005", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020005", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1800200000020001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806230000020002", + "intro": "AMS-HT G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020008", + "intro": "AMS A Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020001", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807210000030002", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801220000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803200000030002", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800110000010001", + "intro": "AMS-HT A lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706220000020008", + "intro": "AMS G 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801230000020004", + "intro": "Gali būti, kad AMS-HT B Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1806220000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803210000030002", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805210000020002", + "intro": "AMS-HT F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020002", + "intro": "AMS-HT C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1804230000020005", + "intro": "Baigėsi AMS-HT E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804200000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000020008", + "intro": "AMS C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805100000010001", + "intro": "AMS-HT F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800220000020004", + "intro": "AMS-HT A lizdo Nr. 3 gija įrankio galvutėje gali būti nutrūkusi." + }, + { + "ecode": "0704220000020008", + "intro": "AMS E lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020005", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805230000020008", + "intro": "AMS-HT F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000020005", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT D lizdo Nr. 3 gija elementas." + }, + { + "ecode": "1804300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700110000010003", + "intro": "AMS A lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701120000010001", + "intro": "AMS B lizdo Nr. 3-iojo variklio padėtis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702100000020002", + "intro": "AMS C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702210000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702220000020005", + "intro": "Baigėsi AMS C 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703110000020002", + "intro": "AMS D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703210000030001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800560000030001", + "intro": "AMS-HT A šiuo metu aušinamas sausuoju būdu; prieš pradėdami jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0700220000020001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000030001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703210000020005", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802210000020008", + "intro": "AMS-HT C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800100000020002", + "intro": "AMS-HT A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707210000030002", + "intro": "AMS H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020008", + "intro": "AMS C lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801200000020003", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1802130000020002", + "intro": "AMS-HT C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800200000020002", + "intro": "AMS-HT A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803130000010003", + "intro": "AMS-HT D lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706210000020005", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705230000020001", + "intro": "AMS F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805200000020001", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000020008", + "intro": "AMS-HT E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704220000030002", + "intro": "AMS E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806130000010001", + "intro": "AMS-HT G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804120000010003", + "intro": "AMS-HT E lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 2 gija." + }, + { + "ecode": "1804210000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1802200000020008", + "intro": "AMS-HT C lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706210000030001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705200000030002", + "intro": "AMS F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0707200000020001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1805210000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000020002", + "intro": "AMS E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020002", + "intro": "AMS G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802110000010003", + "intro": "AMS-HT C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020003", + "intro": "Gali būti, kad AMS G Slot 4 gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803230000020003", + "intro": "Gali būti, kad „AMS-HT D Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0704230000020004", + "intro": "Gali būti, kad AMS E Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702560000030001", + "intro": "AMS C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1803210000020008", + "intro": "AMS-HT D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000020003", + "intro": "AMS-HT A Slot 4 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1806120000020002", + "intro": "AMS-HT G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030001", + "intro": "Baigėsi AMS F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805110000020002", + "intro": "AMS-HT F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707230000020003", + "intro": "Gali būti, kad AMS H Slot 4 kaitinamoji gija yra sulūžusi AMS." + }, + { + "ecode": "1801310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1807300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705220000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0705200000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1802120000010003", + "intro": "AMS-HT C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000020002", + "intro": "AMS-HT B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000030001", + "intro": "Baigėsi AMS-HT F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020005", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804230000020008", + "intro": "AMS-HT E Slot 4 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0705560000030001", + "intro": "AMS F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0705220000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1807200000030002", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807230000020008", + "intro": "AMS-HT H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803100000010003", + "intro": "AMS-HT D lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000020002", + "intro": "AMS E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704200000030001", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020004", + "intro": "Gali būti, kad AMS H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1803100000010001", + "intro": "AMS-HT D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706200000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 1“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700130000010003", + "intro": "AMS A lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija yra nutrūkusi spausdinimo galvutėje." + }, + { + "ecode": "0702100000010003", + "intro": "AMS C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702110000010001", + "intro": "AMS C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000010003", + "intro": "AMS C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000030001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000030002", + "intro": "AMS C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702230000030002", + "intro": "AMS C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0703210000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707110000010001", + "intro": "AMS H lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807130000010003", + "intro": "AMS-HT H lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000020008", + "intro": "AMS B lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020008", + "intro": "AMS-HT D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705200000020005", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806220000020003", + "intro": "Gali būti, kad „AMS-HT G lizdo Nr. 3“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0300C20000010002", + "intro": "Filtro perjungimo sklendės Hallo jutiklio gedimas: patikrinkite, ar laidai nėra atsipalaidavę." + }, + { + "ecode": "0C00010000010010", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Patikrinkite, ar šildomasis stalas yra švarus, ir įsitikinkite, kad kameros vaizdas yra aiškus ir be nešvarumų. Atlikę šiuos veiksmus, atlikite kalibravimą iš naujo." + }, + { + "ecode": "0C0001000001000F", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00010000010013", + "intro": "Nepavyko kalibruoti „Live View“ kameros, o jos serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "050004000001004F", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0C00030000020013", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00040000010020", + "intro": "Šildomojo pagrindo vizualusis žymeklis yra sugadintas, prašome kreiptis į garantinio aptarnavimo tarnybą." + }, + { + "ecode": "1805970000030001", + "intro": "AMS-HT F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1800970000030001", + "intro": "AMS-HT Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID nuskaitymo." + }, + { + "ecode": "1807970000030001", + "intro": "AMS-HT H Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0706970000030001", + "intro": "AMS G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0705970000030001", + "intro": "AMS F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1803970000030001", + "intro": "AMS-HT D Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "0707970000030001", + "intro": "AMS H kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1806970000030001", + "intro": "AMS-HT G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1804970000030001", + "intro": "AMS-HT E Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "1801970000030001", + "intro": "AMS-HT B kameros temperatūra per aukšta; šiuo metu negalima naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1200300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS A." + }, + { + "ecode": "1201300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS B." + }, + { + "ecode": "1202300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS C." + }, + { + "ecode": "1203300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS D." + }, + { + "ecode": "0702970000030001", + "intro": "AMS C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0703970000030001", + "intro": "AMS D kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0700970000030001", + "intro": "AMS: Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0701970000030001", + "intro": "AMS B kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0704970000030001", + "intro": "AMS E kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1802970000030001", + "intro": "AMS-HT C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0300180000000000", + "intro": "" + }, + { + "ecode": "0C00040000020006", + "intro": "" + }, + { + "ecode": "1807960000010003", + "intro": "AMS-HT H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1806960000010003", + "intro": "AMS-HT G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000010003", + "intro": "AMS E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1803960000020002", + "intro": "AMS-HT D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1803960000010003", + "intro": "AMS-HT D Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804960000020002", + "intro": "AMS-HT E Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1800960000020002", + "intro": "AMS-HT A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1801960000020002", + "intro": "AMS-HT B Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807960000020002", + "intro": "AMS-HT H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806960000020002", + "intro": "AMS-HT G Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1805960000020002", + "intro": "AMS-HT F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1805960000010003", + "intro": "AMS-HT F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0707960000010003", + "intro": "AMS H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1800960000010003", + "intro": "AMS-HT A Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000020002", + "intro": "AMS E Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0705960000010003", + "intro": "AMS F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1801960000010003", + "intro": "AMS-HT B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0705960000020002", + "intro": "AMS F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1802960000010003", + "intro": "AMS-HT C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1802960000020002", + "intro": "AMS-HT C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0706960000010003", + "intro": "AMS G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0706960000020002", + "intro": "AMS G Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0700960000020002", + "intro": "AMS A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0701960000020002", + "intro": "AMS B: Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0500050000010001", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0702960000020002", + "intro": "AMS C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0703960000010003", + "intro": "AMS D Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0500400000010039", + "intro": "Lazerinio modulio serijinio numerio klaida" + }, + { + "ecode": "0702960000010003", + "intro": "AMS C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0703960000020002", + "intro": "AMS D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300950000010007", + "intro": "Graviravimo lazerio modulis veikia netinkamai; lazeryje gali būti atvira grandinė arba jis gali būti sugadintas." + }, + { + "ecode": "0500400000010040", + "intro": "Pjovimo modulio serijinio numerio klaida" + }, + { + "ecode": "0701960000010003", + "intro": "AMS B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0700960000010003", + "intro": "AMS A Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300180000010006", + "intro": "Šildomojo pagrindo išlyginimo duomenys yra nenormalūs. Patikrinkite, ar ant šildomojo pagrindo ir Z slankiklio nėra svetimkūnių. Jei yra, pašalinkite juos ir pabandykite dar kartą." + }, + { + "ecode": "0500010000030004", + "intro": "USB atmintinėje nepakanka vietos; prašome išlaisvinti šiek tiek vietos." + }, + { + "ecode": "0707960000020002", + "intro": "AMS H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1804960000010003", + "intro": "AMS-HT E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300180000010003", + "intro": "Ekstruzijos jėgos jutiklis neveikia; galbūt nutrūko ryšys tarp MC ir TH, arba sugadėjo pats jutiklis." + }, + { + "ecode": "0500020000020003", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700310000020002", + "intro": "AMS A izdo Nr. 2 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703300000020002", + "intro": "AMS D izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700800000010003", + "intro": "AMS A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300960000010001", + "intro": "Atrodo, kad pagrindinis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0703900000010003", + "intro": "AMS D Išmetimo vožtuvas 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700800000010002", + "intro": "AMS A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806310000020002", + "intro": "AMS-HT G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705010000020008", + "intro": "AMS F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806810000010002", + "intro": "AMS-HT G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805330000020002", + "intro": "„AMS-HT F lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705320000020002", + "intro": "AMS F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803810000010002", + "intro": "AMS-HT D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704950000010001", + "intro": "AMS E Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801350000010002", + "intro": "AMS-HT B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802310000020002", + "intro": "AMS-HT C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806800000010003", + "intro": "AMS-HT G Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707800000010003", + "intro": "AMS H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805010000020008", + "intro": "AMS-HT F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0707300000020002", + "intro": "AMS H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010003", + "intro": "AMS H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705940000010001", + "intro": "AMS F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707310000020002", + "intro": "AMS H izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803010000020007", + "intro": "AMS-HT D Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707950000010001", + "intro": "AMS H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800330000020002", + "intro": "„AMS-HT A lizdo Nr. 4“ įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705310000020002", + "intro": "AMS F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803940000010001", + "intro": "AMS-HT D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807900000010003", + "intro": "AMS-HT H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706910000010003", + "intro": "AMS G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706940000010001", + "intro": "AMS G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804950000010001", + "intro": "AMS-HT E 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806010000020008", + "intro": "AMS-HT G Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705300000020002", + "intro": "AMS F izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800910000010003", + "intro": "AMS-HT A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803900000010003", + "intro": "AMS-HT D Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807310000020002", + "intro": "„AMS-HT H izdo Nr. 2“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803800000010002", + "intro": "AMS-HT D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801330000020002", + "intro": "AMS-HT B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804310000020002", + "intro": "„AMS-HT E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804800000010003", + "intro": "AMS-HT E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1803800000010003", + "intro": "AMS-HT D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801320000020002", + "intro": "AMS-HT B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "030001000001000D", + "intro": "Anksčiau šildomojo pagrindo šildymo moduliuose įvyko gedimas. Norėdami toliau naudotis spausdintuvu, gedimo šalinimo instrukcijas rasite wiki puslapyje." + }, + { + "ecode": "0300040000020001", + "intro": "Detalės aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300080000010003", + "intro": "„Motor-Z“ varžos rodmenys neatitinka normos; variklis galėjo sugesti." + }, + { + "ecode": "0500040000010002", + "intro": "Nepavyko pranešti apie spausdinimo būseną; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000030008", + "intro": "Atrodo, kad durys yra atidarytos." + }, + { + "ecode": "0500040000030009", + "intro": "Spausdinimo platformos temperatūra viršija gijos stiklėjimo temperatūrą, dėl ko gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras. Durelių atidarymo jutiklis laikinai išjungtas." + }, + { + "ecode": "0500050000030002", + "intro": "Prietaisas yra bandymo etape; prašome atkreipti dėmesį į su informacijos saugumu susijusius klausimus." + }, + { + "ecode": "0700300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701310000020002", + "intro": "AMS B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702310000020002", + "intro": "AMS C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010005", + "intro": "Aptiktas naujas „Micro Lidar“ įrenginys. Prieš naudodami jį, kalibruokite jį kalibravimo puslapyje." + }, + { + "ecode": "12FF200000020004", + "intro": "Prašome ištraukti iš ekstruderių ant ritės laikiklio esantį giją." + }, + { + "ecode": "0702950000010001", + "intro": "AMS C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0702010000020008", + "intro": "AMS C Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0703910000010003", + "intro": "AMS D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702810000010003", + "intro": "AMS C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0702350000010002", + "intro": "AMS C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701010000020007", + "intro": "AMS B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000010011", + "intro": "Nepavyko išmatuoti medžiagos storio: prietaiso parametrai neatitinka normos; prašome iš naujo nustatyti „BirdsEye“ kamerą." + }, + { + "ecode": "0C0003000002000C", + "intro": "Nepavyko aptikti spausdinimo plokštės padėties žymės. Patikrinkite, ar spausdinimo plokštė yra tinkamai išlyginta." + }, + { + "ecode": "0702900000010003", + "intro": "AMS C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700810000010002", + "intro": "AMS A Šildytuvas 2 yra atjungtas, o tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300A20000010001", + "intro": "MC modulio temperatūra yra per aukšta, galbūt dėl to, kad spausdintuvo kamera yra per karšta. Prieš naudojimą galite pabandyti sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0300360000010001", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010013", + "intro": "„BirdsEye“ kameros ekspozicijos parametrai yra netinkami; prašome bandyti dar kartą." + }, + { + "ecode": "1804910000010003", + "intro": "AMS-HT E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705950000010001", + "intro": "AMS F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802910000010003", + "intro": "AMS-HT C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706350000010002", + "intro": "AMS G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800900000010003", + "intro": "AMS-HT A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802800000010002", + "intro": "AMS-HT C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "03001B0000010002", + "intro": "Šildomojo pagrindo pagreičio jutiklyje užfiksuotas išorinis trikdys. Gali būti, kad jutiklio signalo laidas nėra tinkamai pritvirtintas." + }, + { + "ecode": "030091000001000C", + "intro": "Kameros šildytuvas Nr. 1 ilgą laiką veikė esant pilnai apkrovai. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300940000030001", + "intro": "kameros aušinimas gali vykti pernelyg lėtai. Jei kambaryje esantis oras nėra toksiškas, galite atidaryti priekines dureles arba viršutinį dangtį, kad pagreitintumėte aušinimą." + }, + { + "ecode": "0500020000020005", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010003", + "intro": "Spausdinimo failo turinys yra neskaitomas; prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "0500050000010006", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0700330000020002", + "intro": "AMS A lizdo Nr. 4 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701330000020002", + "intro": "AMS B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0702300000020002", + "intro": "AMS C izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702320000020002", + "intro": "AMS C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702330000020002", + "intro": "AMS C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000020002", + "intro": "AMS D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C0001000001000B", + "intro": "Nepavyko kalibruoti „Micro Lidar“. Įsitikinkite, kad kalibravimo lentelė yra švari ir niekas jos neužstoja. Tada vėl atlikite įrenginio kalibravimą." + }, + { + "ecode": "0702810000010002", + "intro": "AMS C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703010000020008", + "intro": "AMS D Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050003000001000A", + "intro": "Sistemos būsena yra nenormali; prašome atkurti gamyklinius nustatymus." + }, + { + "ecode": "0702800000010003", + "intro": "AMS C Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba pačio šildytuvo gedimu." + }, + { + "ecode": "0701350000010002", + "intro": "AMS B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0702940000010001", + "intro": "AMS C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700010000020008", + "intro": "AMS A Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "030001000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; šildomasis stalas išjungtas." + }, + { + "ecode": "0300330000010001", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0703810000010003", + "intro": "AMS D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706330000020002", + "intro": "„AMS G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805310000020002", + "intro": "AMS-HT F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807010000020007", + "intro": "AMS-HT H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707800000010002", + "intro": "AMS H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804800000010002", + "intro": "AMS-HT E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706800000010002", + "intro": "AMS G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805320000020002", + "intro": "AMS-HT F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704310000020002", + "intro": "„AMS E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705810000010003", + "intro": "AMS F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0704350000010002", + "intro": "AMS E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806940000010001", + "intro": "AMS-HT G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801950000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807350000010002", + "intro": "AMS-HT H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0705910000010003", + "intro": "AMS F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020007", + "intro": "AMS-HT E Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707910000010003", + "intro": "AMS H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802900000010003", + "intro": "AMS-HT C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801810000010002", + "intro": "AMS-HT B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801310000020002", + "intro": "AMS-HT B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704800000010002", + "intro": "AMS E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020007", + "intro": "AMS G: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706810000010003", + "intro": "AMS G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804810000010003", + "intro": "AMS-HT E Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1802350000010002", + "intro": "AMS-HT C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800810000010002", + "intro": "AMS-HT A Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706810000010002", + "intro": "AMS G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806950000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800950000010001", + "intro": "AMS-HT A 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706320000020002", + "intro": "AMS G lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807810000010003", + "intro": "AMS-HT H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705800000010002", + "intro": "AMS F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706800000010003", + "intro": "AMS G Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707010000020008", + "intro": "AMS H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010002", + "intro": "AMS E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806300000020002", + "intro": "RFID žymė, esanti AMS-HT G izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806910000010003", + "intro": "AMS-HT G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804320000020002", + "intro": "„AMS-HT E lizdo Nr. 3“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805010000020007", + "intro": "AMS-HT F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805910000010003", + "intro": "AMS-HT F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706310000020002", + "intro": "AMS G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705330000020002", + "intro": "„AMS F lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0706010000020008", + "intro": "AMS G: Pagalbinio variklio fazės apvijos grandinė yra atvira. Galbūt pagalbinis variklis sugedęs." + }, + { + "ecode": "1807910000010003", + "intro": "AMS-HT H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800010000020007", + "intro": "AMS-HT A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704800000010003", + "intro": "AMS E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1802940000010001", + "intro": "AMS-HT C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707010000020007", + "intro": "AMS H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803350000010002", + "intro": "AMS-HT D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803310000020002", + "intro": "AMS-HT D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802300000020002", + "intro": "RFID žymė, esanti AMS-HT C izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807320000020002", + "intro": "AMS-HT H lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805810000010002", + "intro": "AMS-HT F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010002", + "intro": "AMS-HT C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803810000010003", + "intro": "AMS-HT D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804350000010002", + "intro": "AMS-HT E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707900000010003", + "intro": "AMS H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704900000010003", + "intro": "AMS E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802010000020007", + "intro": "AMS-HT C Pagalbinio variklio enkoderio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807950000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705010000020007", + "intro": "AMS F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801800000010002", + "intro": "AMS-HT B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704300000020002", + "intro": "„AMS E izdo Nr. 1“ esanti RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1801900000010003", + "intro": "AMS-HT B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706900000010003", + "intro": "AMS G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803300000020002", + "intro": "RFID žymė, esanti AMS-HT D izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802950000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801800000010003", + "intro": "AMS-HT B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1807010000020008", + "intro": "AMS-HT H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805950000010001", + "intro": "AMS-HT F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020008", + "intro": "AMS-HT B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806320000020002", + "intro": "„AMS-HT G lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803950000010001", + "intro": "AMS-HT D 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705800000010003", + "intro": "AMS F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804900000010003", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010003", + "intro": "AMS-HT C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1800300000020002", + "intro": "AMS-HT A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0300010000010008", + "intro": "Šildomojo pagrindo kaitinimo proceso metu atsiranda gedimas; galbūt sugedo kaitinimo moduliai." + }, + { + "ecode": "0300020000010006", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700320000020002", + "intro": "AMS A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0702310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0703300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C0003000002000F", + "intro": "Dalys, praleistos prieš pirmojo sluoksnio patikrinimą; šiam spausdinimui patikrinimas nėra palaikomas." + }, + { + "ecode": "12FF200000020006", + "intro": "Nepavyko išspausti gijos; ekstruderiui gali būti užsikimšęs." + }, + { + "ecode": "0C00040000010014", + "intro": "Nepastebėta pjovimo apsaugos pagrindo, dėl ko\ngali būti pažeistas šildomasis stalas. Prašome jį uždėti ir tęsti." + }, + { + "ecode": "030091000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; kameros šildytuvas Nr. 1 išjungtas." + }, + { + "ecode": "0703950000010001", + "intro": "AMS D Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703350000010002", + "intro": "AMS D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701910000010003", + "intro": "AMS B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700940000010001", + "intro": "AMS A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700350000010002", + "intro": "AMS A Drėgmės jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703810000010002", + "intro": "AMS D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0700010000020007", + "intro": "AMS A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701800000010002", + "intro": "AMS B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300C30000010003", + "intro": "Automatinio viršutinio ventiliacijos angos srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos matavimo grandinės gedimu." + }, + { + "ecode": "0703940000010001", + "intro": "AMS D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701800000010003", + "intro": "AMS B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700910000010003", + "intro": "AMS A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0703010000020007", + "intro": "AMS D: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0300090000020002", + "intro": "Ekstruzijos pasipriešinimas yra neįprastas. Ekstruderius gali būti užsikimšęs arba į antgalį įstrigo gija." + }, + { + "ecode": "0300970000010001", + "intro": "Atrodo, kad viršutinis dangtelis yra atidarytas; užduotis sustabdyta" + }, + { + "ecode": "0300310000010001", + "intro": "Dalies aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300320000010001", + "intro": "Pagalbinio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0702010000020007", + "intro": "AMS C: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805810000010003", + "intro": "AMS-HT F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801940000010001", + "intro": "AMS-HT B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804330000020002", + "intro": "„AMS-HT E lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807940000010001", + "intro": "AMS-HT H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "030001000001000A", + "intro": "Šildomojo pagrindo temperatūros reguliavimas veikia netinkamai; galbūt sugedo kintamosios srovės plokštė." + }, + { + "ecode": "0300030000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300060000010003", + "intro": "Variklio A varžos rodmenys neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "0300070000010003", + "intro": "„Motor-B“ variklio varža neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "03001A0000020001", + "intro": "Purkštukas užsikimšęs gijomis arba spausdinimo plokštė yra kreiva." + }, + { + "ecode": "03001D0000010001", + "intro": "Ekstruzijos variklio padėties jutiklis veikia netinkamai. Galbūt jungtis su jutikliu yra laisva." + }, + { + "ecode": "0500040000010001", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700300000020002", + "intro": "AMS A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701320000020002", + "intro": "AMS B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703320000020002", + "intro": "AMS D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703330000020002", + "intro": "„AMS D lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C00010000020007", + "intro": "„Micro Lidar“ lazerio parametrai nukrypo. Prašome iš naujo kalibruoti spausdintuvą." + }, + { + "ecode": "0C00020000020004", + "intro": "Atrodo, kad purkštuvo aukštis yra per mažas. Patikrinkite, ar purkštuvas nėra susidėvėjęs arba pasviręs. Jei purkštuvas buvo pakeistas, iš naujo kalibruokite „Lidar“." + }, + { + "ecode": "0C00020000020009", + "intro": "Vertikalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00030000020010", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti šildomąjį pagrindą." + }, + { + "ecode": "0703800000010002", + "intro": "AMS D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701010000020008", + "intro": "AMS B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500040000020033", + "intro": "Prašome prijungti modulio jungtį." + }, + { + "ecode": "0700950000010001", + "intro": "AMS A Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0300350000010001", + "intro": "MC modulio aušinimo ventiliatoriaus greitis per mažas arba ventiliatorius sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010010", + "intro": "Dėl lazerio modulio gedimo nepavyko išmatuoti medžiagos storio." + }, + { + "ecode": "0700810000010003", + "intro": "AMS A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700900000010003", + "intro": "AMS A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701900000010003", + "intro": "AMS B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701950000010001", + "intro": "AMS B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805940000010001", + "intro": "AMS-HT F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010002", + "intro": "AMS-HT H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704010000020008", + "intro": "AMS E: Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010003", + "intro": "AMS E Šildytuvas Nr. 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805800000010002", + "intro": "AMS-HT F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706300000020002", + "intro": "AMS G izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707350000010002", + "intro": "AMS H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801300000020002", + "intro": "AMS-HT B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800010000020008", + "intro": "AMS-HT A Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000020007", + "intro": "AMS-HT G Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804300000020002", + "intro": "„AMS-HT E izdo Nr. 1“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704940000010001", + "intro": "AMS E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806900000010003", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800800000010003", + "intro": "AMS-HT A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705810000010002", + "intro": "AMS F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800810000010003", + "intro": "AMS-HT A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1807300000020002", + "intro": "AMS-HT H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804810000010002", + "intro": "AMS-HT E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807810000010002", + "intro": "AMS-HT H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705350000010002", + "intro": "AMS F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803010000020008", + "intro": "AMS-HT D Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802800000010003", + "intro": "AMS-HT C Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801910000010003", + "intro": "AMS-HT B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805900000010003", + "intro": "AMS-HT F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010003", + "intro": "AMS-HT H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706950000010001", + "intro": "AMS G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805350000010002", + "intro": "AMS-HT F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802320000020002", + "intro": "AMS-HT C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800940000010001", + "intro": "AMS-HT A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704330000020002", + "intro": "„AMS E lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802330000020002", + "intro": "AMS-HT C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800800000010002", + "intro": "AMS-HT A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704910000010003", + "intro": "AMS E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806800000010002", + "intro": "AMS-HT G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804940000010001", + "intro": "AMS-HT E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020007", + "intro": "AMS-HT B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707940000010001", + "intro": "AMS H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020008", + "intro": "AMS-HT E Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800350000010002", + "intro": "AMS-HT A Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803910000010003", + "intro": "AMS-HT D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806810000010003", + "intro": "AMS-HT G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0704010000020007", + "intro": "AMS E: Pagalbinio variklio kodavimo daviklio laidai nėra prijungti. Gali būti, kad pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707320000020002", + "intro": "AMS H lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707330000020002", + "intro": "„AMS H lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805300000020002", + "intro": "RFID žymė, esanti AMS-HT F izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010002", + "intro": "AMS H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806350000010002", + "intro": "AMS-HT G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0704320000020002", + "intro": "„AMS E lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800320000020002", + "intro": "AMS-HT A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803320000020002", + "intro": "AMS-HT D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807330000020002", + "intro": "„AMS-HT H lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800310000020002", + "intro": "AMS-HT A izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805800000010003", + "intro": "AMS-HT F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801810000010003", + "intro": "AMS-HT B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0500020000020001", + "intro": "Nepavyko prisijungti prie interneto. Patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010006", + "intro": "Nepavyko atnaujinti ankstesnio spausdinimo" + }, + { + "ecode": "0700310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0701300000020002", + "intro": "AMS B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000020003", + "intro": "Horizontalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00020000020007", + "intro": "Vertikalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0702910000010003", + "intro": "AMS C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701810000010003", + "intro": "AMS B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300090000020003", + "intro": "Ekstruderiui kyla veikimo sutrikimų. Jis gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0703800000010003", + "intro": "AMS D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0701940000010001", + "intro": "AMS B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701810000010002", + "intro": "AMS B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702800000010002", + "intro": "AMS C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803330000020002", + "intro": "„AMS-HT D lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806330000020002", + "intro": "„AMS-HT G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802010000020008", + "intro": "AMS-HT C Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705900000010003", + "intro": "AMS F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703200000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702230000020009", + "intro": "Nepavyko išspausti AMS C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700200000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 1 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701220000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701230000020009", + "intro": "Nepavyko išspausti AMS B Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701200000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 1 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0701210000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702220000020009", + "intro": "Nepavyko išspausti „AMS C lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700210000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702210000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703230000020009", + "intro": "Nepavyko išspausti AMS D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702200000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700220000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703220000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703210000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700230000020009", + "intro": "Nepavyko išspausti „AMS A Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700310000010001", + "intro": "Plokštėje „AMS A RFID 2“ yra klaida." + }, + { + "ecode": "1800010000010003", + "intro": "AMS-HT A pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706120000020004", + "intro": "AMS G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807130000020004", + "intro": "AMS-HT H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807960000010001", + "intro": "AMS-HT H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1804920000020002", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805910000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802920000020002", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800310000010001", + "intro": "Plokštėje „AMS-HT A RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020010", + "intro": "AMS-HT D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800930000010001", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801910000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1803020000020002", + "intro": "AMS-HT D jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801300000010001", + "intro": "Plokštėje „AMS-HT B RFID 1“ yra klaida." + }, + { + "ecode": "1800810000010001", + "intro": "AMS-HT A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801100000020004", + "intro": "AMS-HT B Šepetėlinis variklis Nr. 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706130000020004", + "intro": "AMS G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707020000020002", + "intro": "AMS H jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0704010000020011", + "intro": "AMS E: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707010000020011", + "intro": "AMS H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000010003", + "intro": "AMS-HT C pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707930000010001", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704010000020002", + "intro": "AMS E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800010000010001", + "intro": "Pagalbinis variklis „AMS-HT A“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706010000010001", + "intro": "AMS G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803930000020002", + "intro": "AMS-HT D 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803130000020004", + "intro": "AMS-HT D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803110000020004", + "intro": "AMS-HT D Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702310000010001", + "intro": "Plokštėje „AMS C RFID 2“ yra klaida." + }, + { + "ecode": "0701310000010001", + "intro": "Plokštėje „AMS B RFID 2“ yra klaida." + }, + { + "ecode": "0706010000020011", + "intro": "AMS G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000010003", + "intro": "AMS G pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705010000020011", + "intro": "AMS F: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1800110000020004", + "intro": "AMS-HT A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000010003", + "intro": "AMS H pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805110000020004", + "intro": "AMS-HT F Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805810000010001", + "intro": "AMS-HT F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803120000020004", + "intro": "AMS-HT D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801900000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1805010000010001", + "intro": "Pagalbinis variklis „AMS-HT F“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804010000020011", + "intro": "AMS-HT E: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020011", + "intro": "AMS-HT C: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806120000020004", + "intro": "AMS-HT G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803020000010001", + "intro": "AMS-HT D. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0706010000020009", + "intro": "AMS G: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000010003", + "intro": "AMS-HT G pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807500000020001", + "intro": "AMS-HT H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1803960000010001", + "intro": "AMS-HT D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806300000010001", + "intro": "Plokštėje „AMS-HT G RFID 1“ yra klaida." + }, + { + "ecode": "0707800000010001", + "intro": "AMS H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000020011", + "intro": "AMS-HT B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705800000010001", + "intro": "AMS F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000010003", + "intro": "AMS-HT F pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804120000020004", + "intro": "AMS-HT E Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807010000020010", + "intro": "AMS-HT H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802900000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807900000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704310000010001", + "intro": "Plokštėje „AMS E RFID 2“ yra klaida." + }, + { + "ecode": "0707120000020004", + "intro": "AMS H Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803500000020001", + "intro": "AMS-HT D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1804500000020001", + "intro": "AMS-HT E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800020000010001", + "intro": "AMS-HT A. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0704010000010004", + "intro": "AMS E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803100000020004", + "intro": "AMS-HT D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806010000010004", + "intro": "AMS-HT G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1801130000020004", + "intro": "AMS-HT B Šepetėlinis variklis 4 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706110000020004", + "intro": "AMS G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705920000020002", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varža." + }, + { + "ecode": "0707810000010001", + "intro": "AMS H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801020000020002", + "intro": "AMS-HT B jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802010000010001", + "intro": "AMS-HT C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706930000020002", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0707010000020002", + "intro": "AMS H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800910000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807110000020004", + "intro": "AMS-HT H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801810000010001", + "intro": "AMS-HT B 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704020000010001", + "intro": "AMS E. Gijos greičio ir ilgio paklaida: Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1802310000010001", + "intro": "Plokštėje „AMS-HT C RFID 2“ yra klaida." + }, + { + "ecode": "0706100000020004", + "intro": "AMS G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800130000020004", + "intro": "AMS-HT A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000020002", + "intro": "AMS-HT E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704810000010001", + "intro": "AMS E: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705110000020004", + "intro": "AMS F Šepetėlinis variklis 2 negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801020000010001", + "intro": "AMS-HT B. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "1802020000020002", + "intro": "AMS-HT C jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805020000010001", + "intro": "AMS-HT F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806800000010001", + "intro": "AMS-HT G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704930000010001", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020010", + "intro": "AMS-HT B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806900000020001", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704010000010011", + "intro": "AMS E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804110000020004", + "intro": "AMS-HT E Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800100000020004", + "intro": "AMS-HT A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802130000020004", + "intro": "AMS-HT C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806500000020001", + "intro": "AMS-HT G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806010000020002", + "intro": "AMS-HT G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804010000010003", + "intro": "AMS-HT E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706960000010001", + "intro": "AMS G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1801920000020002", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0705100000020004", + "intro": "AMS F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803800000010001", + "intro": "AMS-HT D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000020002", + "intro": "AMS-HT D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804920000010001", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000010004", + "intro": "AMS-HT B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803910000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802910000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806020000010001", + "intro": "AMS-HT G. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000010001", + "intro": "AMS-HT D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707310000010001", + "intro": "Plokštėje „AMS H RFID 2“ yra klaida." + }, + { + "ecode": "0707020000010001", + "intro": "AMS H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010001", + "intro": "AMS-HT H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705010000010001", + "intro": "„AMS F“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801930000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807930000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800930000020002", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0702010000010011", + "intro": "AMS C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804960000010001", + "intro": "AMS-HT E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1805920000020002", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706920000010001", + "intro": "AMS G Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1803930000010001", + "intro": "AMS-HT D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800120000020004", + "intro": "AMS-HT A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803920000010001", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704300000010001", + "intro": "Plokštėje „AMS E RFID 1“ yra klaida." + }, + { + "ecode": "0706930000010001", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1802800000010001", + "intro": "AMS-HT C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804100000020004", + "intro": "AMS-HT E Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705930000020002", + "intro": "AMS F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0707110000020004", + "intro": "AMS H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800900000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806010000020011", + "intro": "AMS-HT G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807910000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704020000020002", + "intro": "AMS E: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1804010000020009", + "intro": "AMS-HT E Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807010000020011", + "intro": "AMS-HT H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020009", + "intro": "AMS-HT C Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807920000020002", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0705010000020002", + "intro": "AMS F pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807020000020002", + "intro": "AMS-HT H jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805800000010001", + "intro": "AMS-HT F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705920000010001", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801800000010001", + "intro": "AMS-HT B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706020000010001", + "intro": "AMS G: Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806960000010001", + "intro": "AMS-HT G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1803310000010001", + "intro": "Plokštėje „AMS-HT D RFID 2“ yra klaida." + }, + { + "ecode": "0704930000020002", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802930000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020002", + "intro": "Pagalbinis variklis „AMS-HT B“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705900000020001", + "intro": "AMS F Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707930000020002", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1801310000010001", + "intro": "Plokštėje „AMS-HT B RFID 2“ yra klaida." + }, + { + "ecode": "1806310000010001", + "intro": "Plokštėje „AMS-HT G RFID 2“ yra klaida." + }, + { + "ecode": "1805310000010001", + "intro": "Plokštėje „AMS-HT F RFID 2“ yra klaida." + }, + { + "ecode": "1804800000010001", + "intro": "AMS-HT E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010003", + "intro": "AMS-HT H pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705020000020002", + "intro": "AMS F jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1805960000010001", + "intro": "AMS-HT F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807010000020002", + "intro": "AMS-HT H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701300000010001", + "intro": "Plokštėje „AMS B RFID 1“ yra klaida." + }, + { + "ecode": "0702300000010001", + "intro": "Plokštėje „AMS C RFID 1“ yra klaida." + }, + { + "ecode": "0700300000010001", + "intro": "Plokštėje „AMS A RFID 1“ yra klaida." + }, + { + "ecode": "1805920000010001", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0706910000020001", + "intro": "AMS G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707960000010001", + "intro": "AMS H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806020000020002", + "intro": "AMS-HT G jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802020000010001", + "intro": "AMS-HT C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0704010000020010", + "intro": "AMS E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1803010000010004", + "intro": "AMS-HT D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803810000010001", + "intro": "AMS-HT D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020009", + "intro": "AMS-HT F Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800010000020002", + "intro": "Pagalbinis variklis AMS-HT A yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704010000020009", + "intro": "AMS E: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705960000010001", + "intro": "AMS F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807300000010001", + "intro": "Plokštėje „AMS-HT H RFID 1“ yra klaida." + }, + { + "ecode": "1806010000010001", + "intro": "AMS-HT G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800920000010001", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801110000020004", + "intro": "AMS-HT B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705010000020009", + "intro": "AMS F: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801120000020004", + "intro": "AMS-HT B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803010000010011", + "intro": "AMS-HT D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704910000020001", + "intro": "AMS E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1801500000020001", + "intro": "AMS-HT B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1807120000020004", + "intro": "AMS-HT H Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800960000010001", + "intro": "AMS-HT A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1800010000020010", + "intro": "AMS-HT A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000010011", + "intro": "AMS-HT F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704960000010001", + "intro": "AMS E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0707010000020009", + "intro": "AMS H: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801010000020009", + "intro": "AMS-HT B Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705010000010004", + "intro": "AMS F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0704920000010001", + "intro": "AMS E Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0707500000020001", + "intro": "AMS H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800800000010001", + "intro": "AMS-HT A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000010004", + "intro": "AMS-HT E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1806010000010011", + "intro": "AMS-HT G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705300000010001", + "intro": "Plokštėje „AMS F RFID 1“ yra klaida." + }, + { + "ecode": "1802120000020004", + "intro": "AMS-HT C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707300000010001", + "intro": "AMS H RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0706920000020002", + "intro": "AMS G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704110000020004", + "intro": "AMS E Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707910000020001", + "intro": "AMS H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807010000010011", + "intro": "AMS-HT H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1805900000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802300000010001", + "intro": "Plokštėje „AMS-HT C RFID 1“ yra klaida." + }, + { + "ecode": "1805120000020004", + "intro": "AMS-HT F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805300000010001", + "intro": "Plokštėje „AMS-HT F RFID 1“ yra klaida." + }, + { + "ecode": "1803010000020011", + "intro": "AMS-HT D Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705310000010001", + "intro": "Plokštėje „AMS F RFID 2“ yra klaida." + }, + { + "ecode": "1800010000020009", + "intro": "AMS-HT A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000020002", + "intro": "Pagalbinis variklis „AMS-HT F“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000010011", + "intro": "AMS B – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0500040000020030", + "intro": "„BirdsEye“ kamera nėra įdiegta. Išjunkite spausdintuvą ir tada įdiekite kamerą." + }, + { + "ecode": "0704920000020002", + "intro": "AMS E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706810000010001", + "intro": "AMS G: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705120000020004", + "intro": "AMS F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800010000020011", + "intro": "AMS-HT A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704010000010003", + "intro": "AMS E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706300000010001", + "intro": "Plokštėje „AMS G RFID 1“ yra klaida." + }, + { + "ecode": "1807010000020009", + "intro": "AMS-HT H Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705130000020004", + "intro": "AMS F Šepetėlinis variklis 4 negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802110000020004", + "intro": "AMS-HT C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000020010", + "intro": "AMS H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806100000020004", + "intro": "AMS-HT G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801960000010001", + "intro": "AMS-HT B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0705010000010011", + "intro": "AMS F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807010000010004", + "intro": "AMS-HT H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1805930000020002", + "intro": "AMS-HT F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704900000020001", + "intro": "AMS E Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707100000020004", + "intro": "AMS H Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706010000020010", + "intro": "AMS G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804020000010001", + "intro": "AMS-HT E. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "0707920000010001", + "intro": "AMS H Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0705910000020001", + "intro": "AMS F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0706010000020002", + "intro": "AMS G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800300000010001", + "intro": "„AMS-HT A RFID 1“ plokštėje yra klaida." + }, + { + "ecode": "0707010000010004", + "intro": "AMS H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803900000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1804310000010001", + "intro": "Plokštėje „AMS-HT E RFID 2“ yra klaida." + }, + { + "ecode": "1800920000020002", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806910000020001", + "intro": "AMS-HT G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707010000010011", + "intro": "AMS H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804930000020002", + "intro": "AMS-HT E 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805100000020004", + "intro": "AMS-HT F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805130000020004", + "intro": "AMS-HT F Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706310000010001", + "intro": "Plokštėje „AMS G RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020009", + "intro": "AMS-HT D Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706900000020001", + "intro": "AMS G Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806930000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807920000010001", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010011", + "intro": "AMS A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804910000020001", + "intro": "AMS-HT E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0705930000010001", + "intro": "AMS F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804900000020001", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 veikia netinkamai; tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807020000010001", + "intro": "AMS-HT H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1804810000010001", + "intro": "AMS-HT E 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020010", + "intro": "AMS-HT F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704010000010001", + "intro": "„AMS E“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803300000010001", + "intro": "Plokštėje „AMS-HT D RFID 1“ yra klaida." + }, + { + "ecode": "1806010000020010", + "intro": "AMS-HT G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706500000020001", + "intro": "AMS G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800010000010011", + "intro": "AMS-HT A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705020000010001", + "intro": "AMS F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1802920000010001", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807100000020004", + "intro": "AMS-HT H Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703310000010001", + "intro": "Plokštėje „AMS D RFID 2“ yra klaida." + }, + { + "ecode": "0704800000010001", + "intro": "AMS E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0707010000010001", + "intro": "AMS H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806010000020009", + "intro": "AMS-HT G Pagalbinis variklis turi nesubalansuotą trifazę varžą. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804130000020004", + "intro": "AMS-HT E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704100000020004", + "intro": "AMS E Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806110000020004", + "intro": "AMS-HT G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805930000010001", + "intro": "AMS-HT F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704500000020001", + "intro": "AMS E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0704130000020004", + "intro": "AMS E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704120000020004", + "intro": "AMS E Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802810000010001", + "intro": "AMS-HT C 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000010011", + "intro": "AMS-HT B – pagalbinio variklio kalibravimo parametrų klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707130000020004", + "intro": "AMS H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000010011", + "intro": "AMS-HT E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1801010000010003", + "intro": "AMS-HT B pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807930000020002", + "intro": "AMS-HT H 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805020000020002", + "intro": "AMS-HT F jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806920000010001", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804020000020002", + "intro": "AMS-HT E jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1800500000020001", + "intro": "AMS-HT: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0705010000020010", + "intro": "AMS F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805500000020001", + "intro": "AMS-HT F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0707900000020001", + "intro": "AMS H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802500000020001", + "intro": "AMS-HT C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1805010000010004", + "intro": "AMS-HT F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703300000010001", + "intro": "AMS D RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0703010000010011", + "intro": "AMS D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707920000020002", + "intro": "AMS H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803920000020002", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1803010000010003", + "intro": "AMS-HT D pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705500000020001", + "intro": "AMS F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806920000020002", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800010000010004", + "intro": "AMS-HT A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020010", + "intro": "AMS-HT C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706010000010011", + "intro": "AMS G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1805010000020011", + "intro": "AMS-HT F Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806930000020002", + "intro": "AMS-HT G 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1807810000010001", + "intro": "AMS-HT H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804300000010001", + "intro": "Plokštėje „AMS-HT E RFID 1“ yra klaida." + }, + { + "ecode": "1801920000010001", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807310000010001", + "intro": "Plokštėje „AMS-HT H RFID 2“ yra klaida." + }, + { + "ecode": "1804930000010001", + "intro": "AMS-HT E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804010000010001", + "intro": "AMS-HT E pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705810000010001", + "intro": "AMS F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000020010", + "intro": "AMS-HT E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802100000020004", + "intro": "AMS-HT C Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802930000020002", + "intro": "AMS-HT C 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806810000010001", + "intro": "AMS-HT G 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706010000010004", + "intro": "AMS G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000010011", + "intro": "AMS-HT C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705010000010003", + "intro": "AMS F pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807800000010001", + "intro": "AMS-HT H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706800000010001", + "intro": "AMS G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1806130000020004", + "intro": "AMS-HT G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801930000020002", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802010000010004", + "intro": "AMS-HT C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020002", + "intro": "AMS-HT C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801010000010001", + "intro": "AMS-HT B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706020000020002", + "intro": "AMS G: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802960000010001", + "intro": "AMS-HT C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500010000030007", + "intro": "Jei neįdėta USB atmintinė, negalima įrašyti laiko tarpo fotografijos." + }, + { + "ecode": "0300110000020002", + "intro": "Y ašies rezonansinis dažnis labai skiriasi nuo paskutinio kalibravimo rezultato. Prašome nuvalyti Y ašies kreipiamąją strypą ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0300200000010002", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: patikrinkite, ar įstrigo įrankio galvutė, ar Y ašies vežimėlis susiduria su per dideliu pasipriešinimu." + }, + { + "ecode": "0500030000010007", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "0500030000010026", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "0300200000010001", + "intro": "X ašies grįžimo į pradinę padėtį sutrikimas: patikrinkite, ar neužstrigo įrankio galvutė arba ar X ašies linijinio bėgio pasipriešinimas nėra per didelis." + }, + { + "ecode": "0300100000020002", + "intro": "X ašies rezonansinis dažnis žymiai skiriasi nuo paskutinio kalibravimo rezultatų. Prašome nuvalyti X ašies linijinę bėgelę ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0500040000020039", + "intro": "Prašome prijungti modulio jungtį" + }, + { + "ecode": "0701010000010001", + "intro": "AMS B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200220000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201220000020005", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202110000010003", + "intro": "AMS C izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203820000020001", + "intro": "AMS D lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701960000010001", + "intro": "AMS B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700100000020004", + "intro": "AMS A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702010000020002", + "intro": "AMS C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201300000010001", + "intro": "AMS B lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201320000010001", + "intro": "AMS B lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202210000020005", + "intro": "Baigėsi AMS C izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202230000030002", + "intro": "AMS C lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203300000010001", + "intro": "AMS D lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703800000010001", + "intro": "AMS D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0300010000010001", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0703810000010001", + "intro": "AMS D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010001", + "intro": "AMS C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200330000020002", + "intro": "AMS A lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1201200000030001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1202720000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1203210000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0C0003000003000B", + "intro": "Pirmojo sluoksnio tikrinimas: prašome palaukti akimirką." + }, + { + "ecode": "0701900000020001", + "intro": "AMS B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0702920000010001", + "intro": "AMS C Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0300360000020002", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "1200100000020002", + "intro": "AMS A izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020003", + "intro": "AMS A izdo Nr. 1 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200720000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1200830000020001", + "intro": "AMS A lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202300000020002", + "intro": "AMS C lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000010001", + "intro": "AMS C lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202830000020001", + "intro": "AMS C lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020010", + "intro": "AMS B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200230000030002", + "intro": "AMS A lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202210000020001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1202230000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203100000010001", + "intro": "AMS D izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203110000010003", + "intro": "AMS D izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203220000020005", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703010000020009", + "intro": "AMS D: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0C0003000001000A", + "intro": "Jūsų spausdintuvas veikia gamykliniame režime. Kreipkitės į techninę pagalbą." + }, + { + "ecode": "050004000002001A", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 3." + }, + { + "ecode": "1200200000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1200820000020001", + "intro": "AMS A lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202330000020002", + "intro": "AMS C lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1203130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700130000020004", + "intro": "AMS A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700920000020002", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0702910000020001", + "intro": "AMS C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703110000020004", + "intro": "AMS D Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701010000020011", + "intro": "AMS B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0700810000010001", + "intro": "AMS A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1200210000030001", + "intro": "AMS A izdo Nr. 2 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1201200000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202710000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020004", + "intro": "AMS D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300330000020002", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0500040000020032", + "intro": "Įdėkite lazerinį modulį ir užfiksuokite greito atsegimo svirtį." + }, + { + "ecode": "0701920000010001", + "intro": "AMS B Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0701020000010001", + "intro": "AMS B. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010003", + "intro": "AMS C pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000030002", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702920000020002", + "intro": "AMS C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0701930000010001", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010004", + "intro": "AMS A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0700500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202230000020003", + "intro": "AMS C lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1203200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203210000020001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "0702110000020004", + "intro": "AMS C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703910000020001", + "intro": "AMS D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020015", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 2." + }, + { + "ecode": "0702020000010001", + "intro": "AMS C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200710000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201130000010001", + "intro": "AMS B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201300000030003", + "intro": "AMS B izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201330000010001", + "intro": "AMS B lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010003", + "intro": "AMS C izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202310000030003", + "intro": "AMS C izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020003", + "intro": "AMS A lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200230000020004", + "intro": "AMS A lizdo Nr. 4 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200330000010001", + "intro": "AMS A Slot 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202220000020001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000030001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0300350000020002", + "intro": "MC modulio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0703020000020002", + "intro": "AMS D Kilometražo skaitiklis negauna signalo. Gali būti, kad kilometražo skaitiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000020004", + "intro": "Šiai užduočiai tokio tipo platforma nėra palaikoma. Norėdami tęsti, pasirinkite tinkamą platformą." + }, + { + "ecode": "1200210000020003", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi PTFE vamzdyje." + }, + { + "ecode": "1200220000020005", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Vykdomas senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200300000010001", + "intro": "AMS A lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1201220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija PTFE vamzdelyje yra nutrūkusi." + }, + { + "ecode": "1201320000030003", + "intro": "AMS B lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203230000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1203230000020005", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0700020000020002", + "intro": "AMS A jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "050004000002001C", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 1 lizde." + }, + { + "ecode": "1200110000010001", + "intro": "AMS A izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200310000020002", + "intro": "AMS A lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1200500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201210000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202100000020002", + "intro": "AMS C izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203110000010001", + "intro": "AMS D izdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0703010000020011", + "intro": "AMS D. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0701910000020001", + "intro": "AMS B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0300320000020002", + "intro": "Pagalbinio dalinio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0701110000020004", + "intro": "AMS B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703930000010001", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1200220000030001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200800000020001", + "intro": "AMS A izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000020001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1201200000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1201220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202200000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0703010000020010", + "intro": "AMS D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700010000020010", + "intro": "AMS A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701100000020004", + "intro": "AMS B Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1201300000020002", + "intro": "AMS B lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1201310000030003", + "intro": "AMS B izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201710000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 2-osios lizdo gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202200000030002", + "intro": "AMS C izdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020005", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203330000030003", + "intro": "AMS D lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0700930000020002", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020011", + "intro": "AMS C: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0300960000030001", + "intro": "Priekinės durys yra atidarytos." + }, + { + "ecode": "050003000002000C", + "intro": "Belaidžio ryšio įrangos klaida: išjunkite ir vėl įjunkite „Wi-Fi“ arba iš naujo paleiskite įrenginį." + }, + { + "ecode": "0300090000020001", + "intro": "Ekstruzijos variklis yra perkrautas. Ekstruderius gali būti užsikimšęs arba gijos medžiaga gali būti įstrigusi antgalyje." + }, + { + "ecode": "0703930000020002", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1200200000030001", + "intro": "AMS A izdo Nr. 1 gija baigėsi. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201700000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201730000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1202220000030001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202310000020002", + "intro": "AMS C lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000020002", + "intro": "AMS C lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203220000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0C00040000010015", + "intro": "Nenustatytas lazerio apsauginis įdėklas. Įdėkite jį ir tęskite." + }, + { + "ecode": "0703120000020004", + "intro": "AMS D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700800000010001", + "intro": "AMS A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0500040000020011", + "intro": "Neįmanoma atpažinti AMS A izdo Nr. 2 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0500040000020017", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 4." + }, + { + "ecode": "0701500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000010003", + "intro": "AMS „A lizdo Nr. 3“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200320000010001", + "intro": "AMS A lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202300000030003", + "intro": "AMS C izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203700000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203800000020001", + "intro": "AMS D izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020009", + "intro": "AMS B: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701020000020002", + "intro": "AMS B: jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020018", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 1 lizde." + }, + { + "ecode": "0703010000010003", + "intro": "AMS D pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1201210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201220000020001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1203300000030003", + "intro": "AMS D izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200210000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201210000020005", + "intro": "Baigėsi AMS B izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030002", + "intro": "AMS C izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202230000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000030002", + "intro": "AMS D izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203220000030002", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203320000010001", + "intro": "AMS D lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203330000010001", + "intro": "AMS D lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0701810000010001", + "intro": "AMS B: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0701120000020004", + "intro": "AMS B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200110000010003", + "intro": "AMS „A izdo Nr. 2“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201820000020001", + "intro": "AMS B lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000020004", + "intro": "AMS C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702810000010001", + "intro": "AMS C: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702800000010001", + "intro": "AMS C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703960000010001", + "intro": "AMS D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700010000010003", + "intro": "AMS A pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703020000010001", + "intro": "AMS D. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200100000010001", + "intro": "AMS A izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200210000020001", + "intro": "AMS A izdo Nr. 2 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200220000030002", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201330000020002", + "intro": "AMS B lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1202110000020002", + "intro": "AMS C izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1202120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700010000020009", + "intro": "AMS A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701010000020002", + "intro": "AMS B pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203230000020003", + "intro": "AMS D lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "050004000002001F", + "intro": "Neįmanoma atpažinti „AMS D lizdo Nr. 4“ esančios RFID žymės." + }, + { + "ecode": "1200130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201210000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201220000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201230000020001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1201230000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202210000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203210000030002", + "intro": "AMS D izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203720000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0500040000020013", + "intro": "AMS A lizdo Nr. 4 įrenginyje esančios RFID žymės negalima atpažinti." + }, + { + "ecode": "1200130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201720000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202330000030003", + "intro": "AMS C lizdo Nr. 4 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203210000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203210000030001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0700960000010001", + "intro": "AMS A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500040000020010", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS A izdo Nr. 1." + }, + { + "ecode": "050004000002001E", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 3." + }, + { + "ecode": "0700010000010001", + "intro": "AMS A pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020005", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1200320000020002", + "intro": "AMS A 3-iojo lizdo RFID žymė yra sugadinta." + }, + { + "ecode": "1202200000020005", + "intro": "Baigėsi AMS C izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202320000030003", + "intro": "AMS C lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203300000020002", + "intro": "AMS D lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1203330000020002", + "intro": "AMS D lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "0703100000020004", + "intro": "AMS D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0C00040000020008", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0701930000020002", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201200000020005", + "intro": "Baigėsi AMS B izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203100000010003", + "intro": "AMS D izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203110000020002", + "intro": "AMS D izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700110000020004", + "intro": "AMS A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300310000020002", + "intro": "Dalies aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0702960000010001", + "intro": "AMS C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700120000020004", + "intro": "AMS A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200230000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201810000020001", + "intro": "AMS B izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020005", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203220000020001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203230000030002", + "intro": "AMS D lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203310000010001", + "intro": "AMS D lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703010000010001", + "intro": "AMS D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020001", + "intro": "AMS A izdo Nr. 1 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200210000030002", + "intro": "AMS A izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203810000020001", + "intro": "AMS D izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203830000020001", + "intro": "AMS D lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0C00040000010016", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0701920000020002", + "intro": "AMS B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702130000020004", + "intro": "AMS C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020019", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 2 lizde." + }, + { + "ecode": "0703500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200130000010003", + "intro": "AMS „lizdo Nr. 4“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020003", + "intro": "AMS A lizdo Nr. 3 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1202210000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203710000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1200210000020005", + "intro": "AMS A izdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201100000010003", + "intro": "AMS B izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201100000020002", + "intro": "AMS B izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201310000020002", + "intro": "AMS B lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1201800000020001", + "intro": "AMS B izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202800000020001", + "intro": "AMS C izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203310000020002", + "intro": "AMS D lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000020002", + "intro": "AMS D lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000030003", + "intro": "AMS D lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "0703920000010001", + "intro": "AMS D Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1201110000010003", + "intro": "AMS B izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020005", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201830000020001", + "intro": "AMS B lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202200000020004", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202730000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203210000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 2 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "1203500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000020009", + "intro": "AMS C: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050004000002001B", + "intro": "Neįmanoma atpažinti AMS C lizdo Nr. 4 įrenginyje esančios RFID žymės." + }, + { + "ecode": "050004000002001D", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 2 lizde." + }, + { + "ecode": "1201210000030002", + "intro": "AMS B izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203100000020002", + "intro": "AMS D izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203230000020001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203310000030003", + "intro": "AMS D izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702020000020002", + "intro": "AMS C: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0703920000020002", + "intro": "AMS D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0700020000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0702010000010004", + "intro": "AMS C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703010000010004", + "intro": "AMS D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1202110000010001", + "intro": "AMS C izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1202700000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203200000020005", + "intro": "Baigėsi AMS D izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "050003000001000B", + "intro": "Ekranas veikia netinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500040000020016", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 3." + }, + { + "ecode": "0701010000010003", + "intro": "AMS B pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200200000030002", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1200210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200700000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201110000010001", + "intro": "AMS B izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201120000010001", + "intro": "AMS B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201320000020002", + "intro": "AMS B lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1202330000010001", + "intro": "AMS C lizdo Nr. 4 RFID ritė yra sugadinta arba RFID (RF) įrangos grandinėje yra gedimas." + }, + { + "ecode": "0702930000020002", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020010", + "intro": "AMS C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200300000030003", + "intro": "AMS A izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201210000030001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1202210000020004", + "intro": "Gali būti, kad „AMS C izdo Nr. 2“ gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202310000010001", + "intro": "AMS C lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203730000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0701800000010001", + "intro": "AMS B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703900000020001", + "intro": "AMS D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703010000020002", + "intro": "AMS D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200210000020004", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200330000030003", + "intro": "AMS A lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200730000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: 4-osios lizdo Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201310000010001", + "intro": "AMS B lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010001", + "intro": "AMS C izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202200000030001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203210000020005", + "intro": "Baigėsi AMS D izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000020004", + "intro": "AMS C Šepetėlinis variklis Nr. 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702900000020001", + "intro": "AMS C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0701130000020004", + "intro": "AMS B Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020014", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 1 lizde." + }, + { + "ecode": "0700010000020002", + "intro": "AMS A pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200310000010001", + "intro": "AMS A lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1200320000030003", + "intro": "AMS A lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1202220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202300000010001", + "intro": "AMS C lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202810000020001", + "intro": "AMS C izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0700910000020001", + "intro": "AMS A Išmetimo vožtuvo 2 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0700920000010001", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "050003000001000C", + "intro": "MC variklio valdymo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtis ir vėl jį įjunkite." + }, + { + "ecode": "0700900000020001", + "intro": "AMS A Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020012", + "intro": "Neįmanoma atpažinti AMS A lizdo Nr. 3 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0701010000010004", + "intro": "AMS B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1200100000010003", + "intro": "AMS „A izdo Nr. 1“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200110000020002", + "intro": "AMS A izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020004", + "intro": "AMS A izdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1202820000020001", + "intro": "AMS C lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000030001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700930000010001", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000020011", + "intro": "AMS A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1200230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200300000020002", + "intro": "AMS A lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1200310000030003", + "intro": "AMS A izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200810000020001", + "intro": "AMS A izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201100000010001", + "intro": "AMS B izdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201110000020002", + "intro": "AMS B izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000030002", + "intro": "AMS B izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201330000030003", + "intro": "AMS B lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702930000010001", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "12FF200000020001", + "intro": "Spool laikiklyje baigėsi gija; įdėkite naują giją." + }, + { + "ecode": "12FF200000020002", + "intro": "Spool laikiklyje nėra gijos; įdėkite naują giją." + }, + { + "ecode": "12FF200000020005", + "intro": "Gali būti nutrūkęs gija įrankio galvutėje." + }, + { + "ecode": "12FF200000020007", + "intro": "Nepavyko patikrinti gijos padėties įrankio galvutėje; spustelėkite čia, jei reikia pagalbos." + }, + { + "ecode": "12FF200000030007", + "intro": "Tikrinama visų AMS lizdų gijų padėtis, prašome palaukti." + }, + { + "ecode": "12FF800000020001", + "intro": "Spool laikiklyje esanti gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1200450000020001", + "intro": "Gijų pjovimo jutiklis veikia netinkamai. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1200450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. X ašies variklis gali praleisti žingsnius." + }, + { + "ecode": "1200450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1200510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0C0001000001000A", + "intro": "Gali būti, kad „Micro Lidar“ šviesos diodas yra sugedęs." + }, + { + "ecode": "0C00020000020002", + "intro": "Horizontali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00020000020008", + "intro": "Vertikali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00030000010009", + "intro": "Pirmojo sluoksnio tikrinimo modulis netikėtai perkrautas. Tikrinimo rezultatas gali būti netikslus." + }, + { + "ecode": "0C00030000020001", + "intro": "Nepavyko atlikti gijų ekspozicijos matavimo, nes šioje medžiagoje lazerio atspindys yra per silpnas. Pirmojo sluoksnio patikra gali būti netiksli." + }, + { + "ecode": "0C00030000020002", + "intro": "Pirmojo sluoksnio patikrinimas nutrauktas dėl nenormalių LIDAR duomenų." + }, + { + "ecode": "0C00030000020004", + "intro": "Dabartiniam spausdinimo užsakymui pirmojo sluoksnio patikra nepalaikoma." + }, + { + "ecode": "0C00030000020005", + "intro": "Pirmojo sluoksnio patikrinimas baigėsi neįprastai, todėl dabartiniai rezultatai gali būti netikslūs." + }, + { + "ecode": "0C00030000030006", + "intro": "Atliekų šachtoje galėjo susikaupti pašalintas gijos medžiaga. Prašome patikrinti ir išvalyti šachtą." + }, + { + "ecode": "0C00030000030007", + "intro": "Aptikti galimi pirmojo sluoksnio defektai. Prašome patikrinti pirmojo sluoksnio kokybę ir nuspręsti, ar reikia sustabdyti užduotį." + }, + { + "ecode": "0C00030000030008", + "intro": "Aptikti galimi spageti defektai. Prašome patikrinti spausdinimo kokybę ir nuspręsti, ar užduotį reikia nutraukti." + }, + { + "ecode": "0C00030000030010", + "intro": "Atrodo, kad jūsų spausdintuvas spausdina neišspaudžiant medžiagos." + }, + { + "ecode": "07FF200000020001", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "07FF200000020002", + "intro": "Trūksta išorinio gijos; įdėkite naują giją." + }, + { + "ecode": "07FF200000020004", + "intro": "Prašome ištraukti išorinius gijus iš ekstruderio." + }, + { + "ecode": "0703300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0702300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0701300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0700450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0500040000020020", + "intro": "" + }, + { + "ecode": "0300930000010007", + "intro": "Kameros temperatūra yra nenormali. Galbūt maitinimo bloke esantis temperatūros jutiklis yra trumpai sujungęs." + }, + { + "ecode": "0300930000010008", + "intro": "Kameros temperatūra yra nenormali. Gali būti, kad maitinimo bloke esantis temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300940000020003", + "intro": "Kameroje nepavyko pasiekti reikiamos temperatūros. Įrenginys sustos ir lauks, kol pasieks reikiamą kameros temperatūrą." + }, + { + "ecode": "0300940000030002", + "intro": "Jei kameros temperatūros nustatymo vertė viršys ribą, bus nustatyta ribinė vertė." + }, + { + "ecode": "0500020000020002", + "intro": "Nepavyko prisijungti prie įrenginio; patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020004", + "intro": "Nesankcionuotas vartotojas: patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020006", + "intro": "Įvyko srautinio perdavimo funkcijos klaida. Patikrinkite tinklo ryšį ir pabandykite dar kartą. Jei problema neišsprendžiama, galite iš naujo paleisti arba atnaujinti spausdintuvą." + }, + { + "ecode": "0500020000020007", + "intro": "Nepavyko prisijungti prie „Liveview“ paslaugos; patikrinkite savo interneto ryšį." + }, + { + "ecode": "0500030000010001", + "intro": "MC modulis veikia netinkamai; prašome iš naujo paleisti įrenginį arba patikrinti įrenginio laidų jungtis." + }, + { + "ecode": "0500030000010002", + "intro": "Įrankio galvutė veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010003", + "intro": "AMS modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010005", + "intro": "Vidinė paslauga veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010006", + "intro": "Įvyko sistemos avarinė situacija. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010008", + "intro": "Įvyko sistemos įšalimas. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010009", + "intro": "Įvyko sistemos įšalimas. Sistema buvo atkurta automatiškai ją perkrovus." + }, + { + "ecode": "0500030000010023", + "intro": "kameros temperatūros reguliavimo modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010025", + "intro": "Dabartinė Aparatinė programinė įranga veikia netinkamai. Prašome ją atnaujinti dar kartą." + }, + { + "ecode": "0500040000010004", + "intro": "Spausdinimo failas yra neteisėtas." + }, + { + "ecode": "0500040000020007", + "intro": "Spausdinimo platformos temperatūra viršija gijos vitrifikacijos temperatūrą, dėl to gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras arba sumažinti spausdinimo platformos temperatūrą." + }, + { + "ecode": "0300400000020001", + "intro": "Duomenų perdavimas per nuoseklųjį prievadą vyksta netinkamai; galbūt Aparatinė programinė įranga veikia netinkamai." + }, + { + "ecode": "0300900000010004", + "intro": "Kameros šildymas neveikia. Šildymo ventiliatoriaus greitis per mažas." + }, + { + "ecode": "0300900000010005", + "intro": "Kameros šildymas neveikia. Šiluminė varža per didelė." + }, + { + "ecode": "0300900000010010", + "intro": "kameros temperatūros reguliatoriaus ryšys sutrikęs." + }, + { + "ecode": "0300910000010001", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300910000010003", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300910000010006", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300910000010007", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "030091000001000A", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti sugedusi kintamosios srovės plokštė." + }, + { + "ecode": "0300920000010001", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300920000010002", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad šildytuve įvyko grandinės pertrauka arba suveikė terminis saugiklis." + }, + { + "ecode": "0300920000010003", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300920000010006", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300920000010007", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "030092000001000A", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti sugedusi oro kondicionavimo plokštė." + }, + { + "ecode": "0300930000010001", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300930000010002", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklio grandinė yra atvira." + }, + { + "ecode": "0300930000010003", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, yra trumpai sujungtas." + }, + { + "ecode": "0300050000010001", + "intro": "Variklio valdiklis perkaista. Galbūt jo aušintuvas yra laisvas arba aušinimo ventiliatorius sugadintas." + }, + { + "ecode": "0300060000010001", + "intro": "Variklis „A“ turi atvirą grandinę. Gali būti, kad jungtis yra laisva arba variklis sugedęs." + }, + { + "ecode": "0300060000010002", + "intro": "Variklis „A“ yra trumpai sujungtas. Jis galbūt sugedo." + }, + { + "ecode": "0300070000010001", + "intro": "„Motor-B“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300070000010002", + "intro": "„Motor-B“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300080000010001", + "intro": "„Motor-Z“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300080000010002", + "intro": "„Motor-Z“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "03000A0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 1 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000A0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000A0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000A0000010004", + "intro": "Jėgos jutiklyje Nr. 1 užfiksuotas išorinis trikdys. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000A0000010005", + "intro": "Jėgos jutiklis Nr. 1 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000B0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 2 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000B0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000B0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra per silpnas. Galbūt nutrūko elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000B0000010004", + "intro": "Jėgos jutiklyje Nr. 2 užfiksuotas išorinis trikdys. Šildomojo pagrindo plokštė galėjo paliesti kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000B0000010005", + "intro": "Jėgos jutiklis Nr. 2 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000C0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 3 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000C0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000C0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000C0000010004", + "intro": "Jėgos jutiklyje Nr. 3 užfiksuotas išorinis trikdis. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000C0000010005", + "intro": "Jėgos jutiklis Nr. 3 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "0300100000020001", + "intro": "X ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300110000020001", + "intro": "Y ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300130000010001", + "intro": "Variklio A srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos diskretizavimo grandinės gedimu." + }, + { + "ecode": "0300140000010001", + "intro": "„Motor-B“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300150000010001", + "intro": "„Motor-Z“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300170000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300170000020002", + "intro": "Hotendo aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "03001B0000010001", + "intro": "Šildomojo pagrindo pagreičio jutiklio signalas yra silpnas. Jutiklis galėjo nukristi arba būti pažeistas." + }, + { + "ecode": "03001B0000010003", + "intro": "Šildomojo pagrindo pagreičio jutiklis užfiksavo netikėtą nuolatinę jėgą. Gali būti, kad jutiklis užstrigo arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03001C0000010001", + "intro": "Ekstruzijos variklio valdiklis veikia netinkamai. Gali būti, kad MOSFET trumpojo jungimo." + }, + { + "ecode": "0300200000010003", + "intro": "X ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300200000010004", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300010000010002", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuvo grandinė yra atvira arba termininis jungiklis yra atviras." + }, + { + "ecode": "0300010000010003", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; šildytuvas perkaitęs." + }, + { + "ecode": "0300010000010006", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300010000010007", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "030001000001000C", + "intro": "Šildomasis stalas ilgą laiką veikė esant maksimaliam apkrovimui. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300010000030008", + "intro": "Šildomo pagrindo temperatūra viršija ribinę vertę ir automatiškai prisitaiko prie ribinės temperatūros." + }, + { + "ecode": "0300020000010001", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0300020000010002", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "0300020000010003", + "intro": "Purkštuvo temperatūra yra nenormali; kaitinimo elementas perkaitęs." + }, + { + "ecode": "0300020000010007", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + } + ] + }, + "device_error": { + "ver": 202508192303, + "lt": [ + { + "ecode": "0502C014", + "intro": "AMS likusio gijos įvertinimo funkcija yra įjungta pagal numatytuosius nustatymus ir jos negalima išjungti." + }, + { + "ecode": "050040A1", + "intro": "Įrenginys negali aptikti gesintuvo. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "050040A0", + "intro": "Įrenginys negali aptikti „Laser Fourth Axis“. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500807E", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „StrongGrip“ pjovimo kilimėlį." + }, + { + "ecode": "0500409F", + "intro": "Įrenginys negali aptikti oro siurblio. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05004097", + "intro": "Įrenginys negali aptikti lazerinio modulio. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05864096", + "intro": "Įrenginys negali aptikti AMS-HT G. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05024098", + "intro": "Įrenginys negali aptikti AMS C. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05014098", + "intro": "Įrenginys negali aptikti AMS B. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05814096", + "intro": "Įrenginys negali aptikti AMS-HT B. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05844096", + "intro": "Įrenginys negali aptikti AMS-HT F. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05824096", + "intro": "Įrenginys negali aptikti AMS-HT C. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05034098", + "intro": "Įrenginys negali aptikti AMS D. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05854096", + "intro": "Įrenginys negali aptikti AMS-HT E. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05804096", + "intro": "Įrenginys negali aptikti AMS-HT A. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05834096", + "intro": "Įrenginys negali aptikti AMS-HT D. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500409E", + "intro": "Įrenginys negali aptikti pjovimo modulio. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05874096", + "intro": "Įrenginys negali aptikti AMS-HT H. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05004098", + "intro": "Įrenginys negali aptikti AMS A. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05008062", + "intro": "Spausdinimo plokštės žymeklis nebuvo aptiktas. Patikrinkite, ar spausdinimo plokštė teisingai padėta ant šildomojo pagrindo, ar visi keturi kampai suderinti ir ar matomas žymeklis. Jei ant spausdinimo plokštės krinta stipri šviesa, apsvarstykite galimybę uždaryti priekinę durelę ir uždengti išorinius šviesos šaltinius." + }, + { + "ecode": "0502C012", + "intro": "Užduoties negalima pristabdyti." + }, + { + "ecode": "0500808B", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir kilimėlį nuo šildomojo pagrindo, kad būtų matomi šildomojo pagrindo žymekliai. Be to, įsitikinkite, kad „BirdsEye“ kamera yra tinkamai sumontuota, ir pašalinkite viską, kas gali užstoti kameros matymo lauką." + }, + { + "ecode": "07FFC010", + "intro": "Įdėkite giją (ilgesnę nei 30 cm) iki galo. Praplovimo metu gali pasirodyti šiek tiek dūmų. Įdėjus giją, uždarykite priekines dureles ir viršutinį dangtį." + }, + { + "ecode": "03008081", + "intro": "Gaisro gesintuvo balionas neįmontuotas. Prašome patikrinti gesintuvo puslapyje." + }, + { + "ecode": "05024013", + "intro": "Šis įrenginys nesuderinamas su 40 W galios lazeriniu moduliu. Prašome jį pakeisti 10 W galios lazeriniu moduliu arba jį pašalinti." + }, + { + "ecode": "0300C070", + "intro": "Prijungus lazerinį modulį, gesintuvas buvo aptiktas ir yra paruoštas naudoti." + }, + { + "ecode": "05008092", + "intro": "Nepavyko inicijuoti spausdinimo galvutės kameros. Spausdinimas vis tiek gali būti tęsiamas, tačiau kai kurios AI funkcijos bus išjungtos. Jei po perkrovimo ši problema pasikartos, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05024002", + "intro": "Prieš įjungdami judesio tikslumo gerinimo režimą, eikite į „Nustatymai > Kalibravimas“ ir atlikite judesio tikslumo gerinimo kalibravimą." + }, + { + "ecode": "05008041", + "intro": "Filamentas Kaitinimo galvutės yra per šaltas. Ekstruzija gali sugadinti ekstruderį. Ar vis dar įdedate ir ištraukiate filamentą?" + }, + { + "ecode": "0300404B", + "intro": "Užduotis nutraukta, nes atidarytos priekinės durys arba viršutinis dangtis." + }, + { + "ecode": "0502C011", + "intro": "Šiuo metu veikia 2D gamybos režimas. Prašome tęsti operaciją spausdintuve" + }, + { + "ecode": "0300807E", + "intro": "Neaptiktas gesintuvas, todėl automatinė gesinimo funkcija neveiks." + }, + { + "ecode": "0300807D", + "intro": "Neaptiktas gesintuvas, todėl automatinė gesinimo funkcija neveiks." + }, + { + "ecode": "05008091", + "intro": "Nepavyko atlikti pjovimo modulio poslinkio kalibravimo, dėl to pjūviai gali būti netikslūs. Įsitikinkite, kad 80 g baltas spausdinimo popierius (letter formato storio) yra tinkamai įdėtas, ir patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0500808D", + "intro": "Nepavyko atlikti pjovimo modulio poslinkio kalibravimo, dėl to pjūviai gali būti netikslūs. Įsitikinkite, kad pjaunama medžiaga yra tinkamai išdėstyta, ir patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "05024008", + "intro": "" + }, + { + "ecode": "0502400A", + "intro": "" + }, + { + "ecode": "05024007", + "intro": "" + }, + { + "ecode": "0C008002", + "intro": "" + }, + { + "ecode": "0502400C", + "intro": "" + }, + { + "ecode": "05024009", + "intro": "" + }, + { + "ecode": "0502400B", + "intro": "" + }, + { + "ecode": "0300807F", + "intro": "Gaisrinis gesintuvas neveikia." + }, + { + "ecode": "03008082", + "intro": "Gaisro gesintuvo dujų balionas yra tuščias." + }, + { + "ecode": "03008080", + "intro": "Nepavyko iš naujo paleisti gesintuvo variklio." + }, + { + "ecode": "07FF8030", + "intro": "Sliceryje nurodyta gija baigėsi. Spausdinimas sustabdytas. Prašome prieiti prie spausdintuvo, pakeisti medžiagą ir tęsti spausdinimą." + }, + { + "ecode": "07FE8030", + "intro": "Sliceryje nurodyta gija baigėsi. Spausdinimas sustabdytas. Prašome prieiti prie spausdintuvo, pakeisti medžiagą ir tęsti spausdinimą." + }, + { + "ecode": "0300C056", + "intro": "Kameros viduje buvo aptiktas nedidelis gaisras, todėl automatinio gesinimo procesas buvo nutrauktas." + }, + { + "ecode": "05004030", + "intro": "Šiuo metu įrenginys atnaujinamas. Prašome pabandyti dar kartą, kai jis nebus užimtas." + }, + { + "ecode": "0300C012", + "intro": "Prašome įkaitinti purkštuką iki temperatūros, viršijančios 170 °C." + }, + { + "ecode": "05004010", + "intro": "AMS šiuo metu atnaujinamas ir negali būti atnaujintas. Prašome pabandyti vėliau." + }, + { + "ecode": "05004011", + "intro": "Spausdintuvas šiuo metu įkelia arba iškelia giją, todėl jo atnaujinti šiuo metu negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "05004012", + "intro": "Įrenginys šiuo metu spausdina, todėl jo atnaujinti negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "0500400F", + "intro": "AMS šiuo metu paleidžiama, todėl jos atnaujinti kol kas negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "05004013", + "intro": "AMS šiuo metu veikia, todėl jo atnaujinti negalima. Prašome pabandyti vėl, kai sistema neveiks." + }, + { + "ecode": "07008023", + "intro": "AMS: Įvyko aušinimo gedimas. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07028023", + "intro": "AMS C aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07038023", + "intro": "AMS D aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07018023", + "intro": "AMS B aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07058023", + "intro": "AMS F aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07048023", + "intro": "AMS E aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18018023", + "intro": "AMS-HT B aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07068023", + "intro": "AMS G aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07078023", + "intro": "AMS H aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18048023", + "intro": "AMS-HT E aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18068023", + "intro": "AMS-HT G aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18038023", + "intro": "AMS-HT D aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18058023", + "intro": "AMS-HT F aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18008023", + "intro": "AMS-HT – sutriko aušinimas. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18078023", + "intro": "AMS-HT H aušinimas neveikia. Galbūt aplinkos temperatūra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18028023", + "intro": "AMS-HT C aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "03008022", + "intro": "Šildomoji platforma, judėdama žemyn, gali užstrigti. Prašome pašalinti visus daiktus, esančius po šildomąja platforma, ir patikrinti, ar jos judėjimo metu nekyla pasipriešinimo ar užstrigimo." + }, + { + "ecode": "05004042", + "intro": "Dėl energijos apribojimų, pradėjus AMS džiovinimą, bus sustabdytos dabartinės operacijos, pavyzdžiui, purkštukų kaitinimas ir ventiliatoriaus veikimas. Ar norite tęsti džiovinimą?" + }, + { + "ecode": "05004040", + "intro": "Spausdintuvas pasiekė maitinimo ribą. Norėdami įjungti džiovinimo funkciją, prie šio AMS prijunkite specialų maitinimo adapterį." + }, + { + "ecode": "05004041", + "intro": "Spausdinimo metu negalima pradėti AMS džiovinimo." + }, + { + "ecode": "0500806B", + "intro": "Greito atjungimo svirtis nėra užfiksuota. Prašome nuspausti išorinį įrankio galvutės modulį, kad įsitikintumėte, jog jis tinkamai įsitaisė, tada nuspaudžiant svirtį užfiksuokite ją vietoje." + }, + { + "ecode": "0502C010", + "intro": "Dėl spausdintuvo galios apribojimų AMS džiovinimo metu negalima atlikti spausdinimo, kalibravimo, valdymo ir kitų veiksmų. Prieš pradėdami bet kokią kitą operaciją, sustabdykite džiovinimo procesą." + }, + { + "ecode": "03004014", + "intro": "Nepavyko atlikti Z ašies grįžimo į pradinę padėtį: temperatūros reguliavimo sutrikimas." + }, + { + "ecode": "07FFC011", + "intro": "Laikykite varomojo rato laikiklį, lėtai ištraukite giją iš ekstruderių, tada spustelėkite „Tęsti“." + }, + { + "ecode": "0502C00F", + "intro": "Įrenginys užimtas ir negali atlikti purkštukų atpažinimo." + }, + { + "ecode": "05008090", + "intro": "Prašome pritvirtinti 80 g baltą spausdinimo popierių prie platformos vidurio." + }, + { + "ecode": "05004007", + "intro": "Įrenginys turi būti atnaujintas remonto metu, todėl šiuo metu spausdinti negalima." + }, + { + "ecode": "18068005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18018004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18038005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18078004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18078005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18008005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18038004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18018005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18028004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18028005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18058005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18068004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07FF8025", + "intro": "Pasibaigė šalto ištraukimo laiko limitas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "18018006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18008006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18078006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18028006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18048006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18058006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18038006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18068006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "0502400E", + "intro": "Nepavyko pradėti naujos užduoties: nebuvo užbaigtas purkštuko šaltasis traukimas." + }, + { + "ecode": "18068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07068004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07048005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18FF8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07048006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07058006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07028006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07008004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07028005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07038005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07FF8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07008005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07018005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07028004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07008006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07038006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07018006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07068006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "050080A0", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar plokštė yra tinkamai įdėta ir išlyginta visuose keturiuose kampuose, taip pat įsitikinkite, kad padėties žymės yra aiškios ir nesusidėvėjusios." + }, + { + "ecode": "0502400D", + "intro": "Nepavyko paleisti naujos užduoties: gijų įkėlimas/iškėlimas nebaigtas." + }, + { + "ecode": "03008050", + "intro": "Šis įrenginys nepalaiko 40 W galios lazerio modulio. Prašome jį išimti arba pakeisti 10 W galios lazerio moduliu." + }, + { + "ecode": "05008079", + "intro": "Prašome padėti lazerinio bandymo medžiagą (350 g kartoną) ir po ja išdėstyti atramines juosteles, kad medžiaga neišsikreiptų." + }, + { + "ecode": "0580409C", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0582409C", + "intro": "AMS-HT C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0584409C", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501409D", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500409B", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587409C", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0503409D", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0581409C", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0585409C", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0502409D", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500409D", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500409A", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo; prietaisas negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0586409C", + "intro": "AMS-HT G Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "03004050", + "intro": "Pasibaigė „Liveview“ kameros kalibravimo laiko limitas; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05004099", + "intro": "Pjovimo modulio Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0583409C", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0C008034", + "intro": "Nepavyko inicijuoti „Liveview“ kameros. Spausdinimas vis tiek gali būti tęsiamas, tačiau kai kurios AI funkcijos bus išjungtos. Jei po perkrovimo ši problema pasikartos, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004035", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0C008043", + "intro": "Dirbtinis intelektas aptiko purkštuko užsikimšimą. Patikrinkite purkštuko būklę. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0500808E", + "intro": "Nepavyko inicijuoti „BirdsEye“ kameros. Įrankio galvutės kamera neaptiko šildomojo pagrindo žymių. Prašome nuvalyti kaitinamą pagrindą, pašalinti visus objektus ir pagalvėles bei užtikrinti, kad pagrindo žymės būtų matomos. Išsamų sprendimą rasite programoje „Assistant“." + }, + { + "ecode": "0500808F", + "intro": "Purkštuvo kameros objektyvas yra nešvarus, o tai trukdo dirbtinio intelekto stebėjimui. Nuvalykite objektyvą neaustine šluoste, užteptą nedideliu kiekiu alkoholio. Saugokitės karšto spausdintuvo galvutės; prieš liesti palaukite, kol ji atvės." + }, + { + "ecode": "03004008", + "intro": "AMS nepavyko pakeisti gijos." + }, + { + "ecode": "0C00402A", + "intro": "Vizualusis žymeklis nebuvo aptiktas. Prašome vėl įklijuoti popierių į tinkamą vietą." + }, + { + "ecode": "05008086", + "intro": "Įrankio galvutės kamera yra nešvari, o tai trukdo dirbti dirbtinio intelekto funkcijai; prašome nuvalyti objektyvo paviršių." + }, + { + "ecode": "05004033", + "intro": "AMS Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004031", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004034", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05008085", + "intro": "Kamera ant įrankio galvutės uždengta" + }, + { + "ecode": "05004044", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "03004044", + "intro": "Liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas. Prieš pradėdami spausdinimo užduotį, pašalinkite šią problemą." + }, + { + "ecode": "07FF8007", + "intro": "Atkreipkite dėmesį į purkštuką. Jei gija jau išspaustas, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "0C00402C", + "intro": "Įrenginio duomenų perdavimo klaida. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "07FF8002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "0500403C", + "intro": "Purkštuko nustatymai neatitinka pjaustymo failo. Prašome pradėti spausdinimą po pakartotinio pjaustymo." + }, + { + "ecode": "0500808C", + "intro": "Nustatytas spausdinimo plokštės poslinkis. Prašome suderinti spausdinimo plokštę su šildomuoju pagrindu ir tada tęsti." + }, + { + "ecode": "07FFC012", + "intro": "Paspauskite juodą PTFE vamzdžio jungtį ir atjunkite PTFE vamzdį. Baigę šią operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "05004039", + "intro": "Dėl esamos užduoties negalima įdiegti lazerio/pjaustymo modulio, todėl užduotis buvo sustabdyta." + }, + { + "ecode": "0500403B", + "intro": "Šiuo metu įrenginyje negalima pradėti lazerio pjovimo užduočių. Prašome naudoti kompiuterinę aparatinę programinę įrangą, kad pradėtumėte užduotį." + }, + { + "ecode": "07044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "03008055", + "intro": "Ant įrankio galvutės sumontuotas modulis neatitinka užduoties. Įdiekite tinkamą modulį." + }, + { + "ecode": "0300800D", + "intro": "Nustatyta, kad ekstruderiui kyla veikimo sutrikimų. Jei šie trūkumai yra priimtini, pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500C036", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0300804F", + "intro": "Šiuo metu vyksta pakrovimo/iškrovimo procesas. Prašome sustabdyti procesą arba išimti lazerinį/pjaustymo modulį." + }, + { + "ecode": "0300804E", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0500808A", + "intro": "„BirdsEye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į pagalbininką." + }, + { + "ecode": "05008089", + "intro": "Užduotis sustabdyta, nes nepavyko atlikti buvimo patikrinimo. Norėdami tęsti, patikrinkite spausdintuvą." + }, + { + "ecode": "05008074", + "intro": "Lazerinė platforma yra pasislinkusi. Įsitikinkite, kad visi keturi platformos kampai būtų suderinti su šildomuoju pagrindu ir kad žymeklis nebūtų užstotas." + }, + { + "ecode": "05FE8081", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05FF8081", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FF8080", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FE8080", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05008080", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008081", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008088", + "intro": "„Birdseye“ kamera yra nešvari" + }, + { + "ecode": "05008087", + "intro": "„BirdsEye“ kamera užstota" + }, + { + "ecode": "03004002", + "intro": "Automatinis pagrindo išlyginimas nepavyko; užduotis buvo sustabdyta." + }, + { + "ecode": "0C004020", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo pačiu metu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "03008021", + "intro": "Gali būti, kad purkštukas nėra įmontuotas arba įmontuotas netinkamai. Prieš tęsdami darbą, įsitikinkite, kad purkštukas įmontuotas teisingai." + }, + { + "ecode": "03008048", + "intro": "Pasibaigė lazerinio modulio atrakinimo laiko limitas, todėl užduotis negali būti tęsiama. Prašome iš naujo paleisti spausdintuvą ir pabandyti dar kartą." + }, + { + "ecode": "03008061", + "intro": "Nepavyko įjungti „Airflow System“ režimo; patikrinkite oro sklendės būklę." + }, + { + "ecode": "0300801A", + "intro": "Kilo gijų ekstruzijos klaida; prašome patikrinti pagalbinę programą, kad išspręstumėte šią problemą. Išsprendę problemą, atsižvelgdami į faktinę spausdinimo būklę, nuspręskite, ar atšaukti, ar tęsti spausdinimo užduotį." + }, + { + "ecode": "05008084", + "intro": "„Live View“ kamera yra nešvari; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "0500401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "18068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "10018003", + "intro": "Pjaustymo faile laiko sulėtinimo režimas nustatytas kaip „Tradicinis“. Dėl to gali atsirasti paviršiaus defektų. Ar norite jį įjungti?" + }, + { + "ecode": "18008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004065", + "intro": "Užduočiai atlikti reikalinga lazerinė platforma, tačiau šiuo metu naudojama pjovimo platforma. Prašome ją pakeisti, programoje išmatuoti medžiagos storį ir tada iš naujo paleisti užduotį." + }, + { + "ecode": "05004075", + "intro": "Nenustatyta jokia lazerio platforma, o tai gali turėti įtakos storio matavimo tikslumui. Prašome teisingai pastatyti lazerio platformą ir įsitikinti, kad galiniai žymekliai nebūtų uždengti, tada prieš pradedant užduotį programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807D", + "intro": "Šiai užduočiai reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „StrongGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "03008014", + "intro": "Ant purkštuko yra susikaupęs gijos medžiaga arba spausdinimo plokštė įtaisyta netinkamai. Atšaukite šį spausdinimą ir išvalykite purkštuką arba sureguliuokite spausdinimo plokštę atsižvelgdami į esamą padėtį. Taip pat galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "03008017", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai. Patikrinkite ir išvalykite kaitinamą pagrindą. Tada pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8011", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "0300801C", + "intro": "Ekstruzijos pasipriešinimas yra nenormalus. Ekstruderius gali būti užsikimšęs; kreipkitės į asistentą. Išsprendus problemą, galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "05008055", + "intro": "Lazerinis modulis yra įdiegtas, tačiau aptikta pjovimo platforma. Įdėkite lazerinę platformą ir atlikite lazerio kalibravimą." + }, + { + "ecode": "03004020", + "intro": "Nepavyko nustatyti, ar yra antgalis. Daugiau informacijos rasite „Assistant“ programoje." + }, + { + "ecode": "0500402E", + "intro": "Sistema nepalaiko failų sistemos, kurią šiuo metu naudoja USB atmintinė. Prašome pakeisti USB atmintinę arba ją suformatuoti į FAT32." + }, + { + "ecode": "05008063", + "intro": "Kalibravimo metu platforma neaptikta; įsitikinkite, kad lazerinė platforma yra tinkamai pastatyta." + }, + { + "ecode": "05008066", + "intro": "Užduočiai atlikti reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „LightGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "07FF8010", + "intro": "Patikrinkite, ar neužstrigo išorinė gijų ritė arba gija." + }, + { + "ecode": "03008000", + "intro": "Spausdinimas buvo sustabdytas dėl nežinomos priežasties. Norėdami tęsti spausdinimo užduotį, pasirinkite „Tęsti“." + }, + { + "ecode": "03008016", + "intro": "Purkštukas užsikimšęs gijomis. Prašome atšaukti šį spausdinimą ir išvalyti purkštuką arba pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FFC00A", + "intro": "Atkreipkite dėmesį į purkštuką. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "05008064", + "intro": "Prašome teisingai pastatyti lazerinę platformą ir užtikrinti, kad galiniai žymekliai nebūtų užstoti, kad būtų galima atlikti lazerio kalibravimą." + }, + { + "ecode": "18038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004076", + "intro": "Prieš pradėdami užduotį, tinkamai pastatykite lazerinę platformą ir įsitikinkite, kad galiniai žymekliai nėra užstoti, tada programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807A", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba pasitikrinti pagalbinę programą, kad išspręstumėte šią problemą." + }, + { + "ecode": "03004000", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties; užduotis buvo sustabdyta." + }, + { + "ecode": "0300800A", + "intro": "„AI Print Monitoring“ aptiko susikaupusį filamentą. Prašome pašalinti filamentą iš atliekų išmetimo angos." + }, + { + "ecode": "0300800B", + "intro": "Pjovimo galvutė įstrigo. Įsitikinkite, kad pjovimo galvutės rankena yra išstumta, ir patikrinkite gijos jutiklio laido jungtį." + }, + { + "ecode": "03008065", + "intro": "MC modulio temperatūra per aukšta. Galimas priežastis rasite „Wiki“ puslapyje." + }, + { + "ecode": "05004070", + "intro": "Lazerinis arba pjovimo modulis yra prijungtas, todėl įrenginys negali pradėti 3D spausdinimo užduoties." + }, + { + "ecode": "0300400B", + "intro": "Vidaus komunikacijos išimtis" + }, + { + "ecode": "03008001", + "intro": "Spausdinimas sustabdytas dėl spausdinimo faile įrašytos sustabdymo komandos." + }, + { + "ecode": "05014038", + "intro": "Regioniniai nustatymai neatitinka spausdintuvo; patikrinkite spausdintuvo regioninius nustatymus." + }, + { + "ecode": "03008051", + "intro": "Pjovimo modulis nukrito arba jo kabelis atjungtas; patikrinkite modulį." + }, + { + "ecode": "0C004024", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į asistentą." + }, + { + "ecode": "0300804B", + "intro": "Užduotis sustabdyta. Atidarytas langas „Lazerinė sauga“." + }, + { + "ecode": "03004042", + "intro": "Lazerinės saugos langas nėra tinkamai sumontuotas. Užduotis buvo sustabdyta." + }, + { + "ecode": "0300404D", + "intro": "Šiuo metu Kaitinimo galvutės, šildomojo pagrindo arba Kameros temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "10018004", + "intro": "„Prime Tower“ funkcija neįjungta, o failo pjaustymo metu laiko sulėtinimo režimas nustatytas kaip „Smooth“. Dėl to gali atsirasti paviršiaus defektų. Ar norite ją įjungti?" + }, + { + "ecode": "03008041", + "intro": "Platformos aptikimo laiko limitas pasibaigęs: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03004067", + "intro": "Kalibravimo rezultatas viršija ribinę vertę." + }, + { + "ecode": "18008011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18078011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18038011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18018011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18058011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18068011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18048011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18028011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "03004011", + "intro": "„Flow Dynamics“ kalibravimas nepavyko; prašome iš naujo pradėti spausdinimą arba kalibravimą." + }, + { + "ecode": "05008072", + "intro": "„Live View“ kamera užblokuota" + }, + { + "ecode": "05008083", + "intro": "Montavimo kalibravimo metu medžiaga neleidžiama. Prašome pašalinti medžiagą nuo platformos." + }, + { + "ecode": "0C004041", + "intro": "Nepavyko kalibruoti įrankio galvutės kameros. Įsitikinkite, kad kalibravimo žymė ant šildomojo pagrindo arba aukščio kalibravimo žymė grįžimo į pradinę padėtį zonoje yra švari ir nepažeista, tada pakartokite kalibravimo procesą." + }, + { + "ecode": "1800C06A", + "intro": "AMS-HT A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06A", + "intro": "AMS-HT F nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06C", + "intro": "AMS-HT H veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06C", + "intro": "AMS-HT A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06B", + "intro": "AMS-HT H keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014002", + "intro": "„Timelapse“ funkcija nepalaikoma, nes spausdinimo seka nustatyta kaip „Pagal objektą“." + }, + { + "ecode": "1800C06D", + "intro": "AMS-HT A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06A", + "intro": "AMS-HT D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06C", + "intro": "AMS-HT D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06C", + "intro": "AMS-HT F veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C069", + "intro": "AMS-HT D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C06A", + "intro": "AMS-HT C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06E", + "intro": "Variklis „AMS-HT F“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06C", + "intro": "AMS-HT G veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06D", + "intro": "AMS-HT G padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06E", + "intro": "AMS-HT Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C069", + "intro": "AMS-HT F džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1807C06D", + "intro": "AMS-HT H padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06C", + "intro": "AMS-HT C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06A", + "intro": "AMS-HT H nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06A", + "intro": "AMS-HT B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C069", + "intro": "AMS-HT H džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1803C06E", + "intro": "AMS-HT D variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06D", + "intro": "AMS-HT B padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06B", + "intro": "AMS-HT F keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06D", + "intro": "AMS-HT C padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06E", + "intro": "Variklis „AMS-HT C“ atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06C", + "intro": "AMS-HT E veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06A", + "intro": "AMS-HT E nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C069", + "intro": "AMS-HT G džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06D", + "intro": "AMS-HT E padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06B", + "intro": "AMS-HT G keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C069", + "intro": "AMS-HT A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C069", + "intro": "AMS-HT C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06C", + "intro": "AMS-HT B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06E", + "intro": "AMS-HT H variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1000C003", + "intro": "„Timelapse“ funkcijos įjungimas tradiciniame režime gali sukelti gedimus; šią funkciją įjunkite tik prireikus." + }, + { + "ecode": "1804C069", + "intro": "AMS-HT E džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06E", + "intro": "Variklis „AMS-HT B“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06D", + "intro": "AMS-HT F padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06D", + "intro": "AMS-HT D padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06B", + "intro": "AMS-HT B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06E", + "intro": "Variklis „AMS-HT G“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C069", + "intro": "AMS-HT B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06E", + "intro": "AMS-HT E variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06B", + "intro": "AMS-HT D keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06B", + "intro": "AMS-HT E keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06A", + "intro": "AMS-HT G nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06B", + "intro": "AMS-HT C keičia giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06B", + "intro": "AMS-HT A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014001", + "intro": "„Timelapse“ funkcija nepalaikoma, nes pjaustymo nustatymuose įjungtas „Spiral Vase“ režimas." + }, + { + "ecode": "0500806E", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti kaitinamą pagrindą." + }, + { + "ecode": "05004004", + "intro": "Įrenginys užimtas ir negali pradėti naujos užduoties. Prieš siunčiant naują užduotį, palaukite, kol bus užbaigta dabartinė užduotis." + }, + { + "ecode": "0C004025", + "intro": "„Birdseye“ kamera yra nešvari. Prašome ją nuvalyti ir iš naujo paleisti procesą." + }, + { + "ecode": "05008061", + "intro": "Nerasta spausdinimo plokštės. Patikrinkite, ar ji įdėta teisingai." + }, + { + "ecode": "0300804A", + "intro": "Avarinio stabdymo mygtukas įmontuotas netinkamai. Prieš tęsdami, prašome jį įmontuoti iš naujo pagal „Wiki“ nurodymus." + }, + { + "ecode": "0701C06C", + "intro": "AMS B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C069", + "intro": "AMS B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0700C06E", + "intro": "AMS Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06C", + "intro": "AMS D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C069", + "intro": "AMS D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06B", + "intro": "AMS B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06C", + "intro": "AMS A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C069", + "intro": "AMS C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0703C06B", + "intro": "AMS D keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "03008054", + "intro": "Prašome įdėti popierių, reikalingą funkcijai „Spausdinti ir iškirpti“." + }, + { + "ecode": "0703C06D", + "intro": "AMS D padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06D", + "intro": "AMS B padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06A", + "intro": "AMS C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06E", + "intro": "AMS C variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06C", + "intro": "AMS C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06B", + "intro": "AMS C keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06D", + "intro": "AMS A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06A", + "intro": "AMS B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06D", + "intro": "AMS C padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008082", + "intro": "Prieš apdorojant, nuimkite apsauginę plėvelę nuo matinio blizgaus akrilo." + }, + { + "ecode": "0703C06A", + "intro": "AMS D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06B", + "intro": "AMS A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008060", + "intro": "Dabartinis įrankio galvutėje esantis modulis neatitinka reikalavimų. Prašome pakeisti modulį, vadovaudamiesi ekrane pateiktomis instrukcijomis." + }, + { + "ecode": "0700C069", + "intro": "AMS A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06E", + "intro": "AMS B variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06A", + "intro": "AMS A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06E", + "intro": "AMS D variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0500C07F", + "intro": "Įrenginys užimtas ir negali atlikti šios operacijos. Norėdami tęsti, sustabdykite arba nutraukite dabartinę užduotį." + }, + { + "ecode": "05008056", + "intro": "Pjovimo modulis įdiegtas, tačiau aptikta lazerio platforma. Prašome pastatyti pjovimo platformą kalibravimui." + }, + { + "ecode": "0C008016", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba ieškoti sprendimų pagalbos skyriuje." + }, + { + "ecode": "07FF8001", + "intro": "Nepavyko nupjauti gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "18FF8001", + "intro": "Nepavyko nupjauti gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "07018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0C004021", + "intro": "Nepavyko įdiegti „BirdsEye“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C004026", + "intro": "Nepavyko inicijuoti „Live View“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "07008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0500C032", + "intro": "Prie įrankio galvutės prijungtas lazerio/pjaustymo modulis. Džiovinimo procesas buvo automatiškai sustabdytas." + }, + { + "ecode": "0C00402D", + "intro": "Įrankio galvutės kamera neveikia tinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500806C", + "intro": "Prašome teisingai pastatyti pjovimo platformą ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "07018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500805A", + "intro": "Prašome pjaustymo kilimėlį uždėti ant pjaustymo apsauginio pagrindo." + }, + { + "ecode": "07068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "05008071", + "intro": "Pjovimo platforma nerasta. Prašome patikrinti, ar ji buvo teisingai pastatyta." + }, + { + "ecode": "05008073", + "intro": "Šildomojo pagrindo ribotuvas užblokuotas arba užterštas. Prašome jį išvalyti ir užtikrinti, kad ribotuvas būtų matomas, nes priešingu atveju platformos padėties nuokrypio nustatymas gali būti netikslus." + }, + { + "ecode": "05008068", + "intro": "Prašome teisingai uždėti gerai priglundančią pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807C", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „StrongGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "05008067", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „LightGrip“ pjovimo kilimėlį." + }, + { + "ecode": "07018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8004", + "intro": "Nepavyko atitraukti gijos iš spausdinimo galvutės į AMS. Patikrinkite, ar gija arba ritė nėra užstrigusi." + }, + { + "ecode": "03008042", + "intro": "Užduotis sustabdyta, nes durys arba viršutinis dangtis yra atidaryti." + }, + { + "ecode": "0500805C", + "intro": "Pjaustymo kilimėlio tipo „Grip“ neatitinka reikalavimų; prašome uždėti „LightGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "05008059", + "intro": "Pjovimo platformos pagrindas nėra tinkamai išlygintas. Prašome įsitikinti, kad keturi platformos kampai sutampa su šildomuoju pagrindu." + }, + { + "ecode": "07038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500806F", + "intro": "Pjaustymo kilimėlio tipo paviršius neatitinka reikalavimų; prašome uždėti „StrongGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "18068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "03004052", + "intro": "Nepavyko nustatyti peilio Z ašies pradinės padėties" + }, + { + "ecode": "05008058", + "intro": "Prašome teisingai uždėti „Light Grip“ pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807B", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „LightGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "0C008018", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba peržiūrėti pagalbinę informaciją, kaip išspręsti šią problemą." + }, + { + "ecode": "0500805B", + "intro": "Pjaustymo kilimėlio tipas nežinomas; prašome jį pakeisti tinkamu pjaustymo kilimėliu." + }, + { + "ecode": "03008064", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų. (Šio spausdinimo užduoties durelių atidarymo aptikimas bus nustatytas į „Pranešimo“ lygį)" + }, + { + "ecode": "0C008017", + "intro": "Platformoje aptikti svetimkūniai; prašome juos laiku pašalinti." + }, + { + "ecode": "05008077", + "intro": "Vizualinis žymeklis nebuvo aptiktas. Prašome įsitikinti, kad popierius yra tinkamai įdėtas." + }, + { + "ecode": "05008078", + "intro": "Dabartinė medžiaga neatitinka supjaustyto failo nustatymų. Įdėkite tinkamą medžiagą ir įsitikinkite, kad ant jos esantis QR kodas nėra pažeistas ar nešvarus." + }, + { + "ecode": "0500403F", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500403D", + "intro": "Įrankio galvutės modulis nėra sukonfigūruotas. Prieš pradėdami užduotį, jį sukonfigūruokite." + }, + { + "ecode": "0300400C", + "intro": "Užduotis buvo atšaukta." + }, + { + "ecode": "05008051", + "intro": "Nustatyta, kad spausdinimo plokštė neatitinka Gcode failo. Prašome pakoreguoti pjaustymo programos nustatymus arba naudoti tinkamą plokštę." + }, + { + "ecode": "18038017", + "intro": "AMS-HT D džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07078010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18048010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18038010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18008010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018017", + "intro": "AMS-HT B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18078010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028017", + "intro": "AMS-HT C džiūsta. Prieš pakraunant ar iškraunant medžiagą, sustabdykite džiovinimo procesą." + }, + { + "ecode": "18008017", + "intro": "AMS-HT A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07068011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C004027", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Daugiau informacijos rasite pagalbos vadove; po apdorojimo pakalibruokite kamerą iš naujo." + }, + { + "ecode": "07058010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18068010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18058010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07048010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07068010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07078011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07058011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07048011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C008015", + "intro": "Platformoje aptikti daiktai; prašome juos laiku pašalinti." + }, + { + "ecode": "05024006", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "07018017", + "intro": "AMS B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07028017", + "intro": "AMS C džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "03004013", + "intro": "Kol AMS džiūsta, spausdinimo procesą pradėti negalima." + }, + { + "ecode": "07038017", + "intro": "AMS D džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07008017", + "intro": "AMS A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "05024003", + "intro": "Spausdintuvas šiuo metu spausdina, todėl judesio tikslumo didinimo funkcijos neįmanoma įjungti ar išjungti." + }, + { + "ecode": "05024005", + "intro": "AMS dar nebuvo kalibruotas, todėl spausdinimo pradėti negalima." + }, + { + "ecode": "07FFC003", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "07FFC008", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį)" + }, + { + "ecode": "0500405D", + "intro": "Lazerinio modulio serijinio numerio klaida: nepavyksta atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500805E", + "intro": "Pjovimo modulio serijinio numerio klaida: nepavyko atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500C010", + "intro": "Išskirtinė USB atmintinės skaitymo ir rašymo klaida; įdėkite ją iš naujo arba pakeiskite." + }, + { + "ecode": "0500402F", + "intro": "USB atmintinės sektorių duomenys yra sugadinti; prašome ją suformatuoti. Jei ji vis tiek nebus atpažinta, prašome pakeisti USB atmintinę." + }, + { + "ecode": "05008053", + "intro": "Spausdinimo metu buvo nustatytas netinkamas purkštukas. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštuką. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "07FF8003", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "03008049", + "intro": "Dabartinis numeris yra negaliojantis." + }, + { + "ecode": "05004008", + "intro": "Nepavyko pradėti spausdinti; išjunkite ir vėl įjunkite spausdintuvą, tada iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "0500400B", + "intro": "Kilo problemų atsisiunčiant failą. Patikrinkite savo interneto ryšį ir iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "05004018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0500402C", + "intro": "Nepavyko gauti IP adreso. Tai galėjo įvykti dėl belaidžio ryšio trukdžių, dėl kurių nepavyko perduoti duomenų, arba dėl to, kad maršrutizatoriaus DHCP adresų rezervas yra išnaudotas. Prašome priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą. Jei problema neišsprendžiama, patikrinkite maršrutizatoriaus nustatymus ir įsitikinkite, ar IP adresų rezervas nėra išnaudotas." + }, + { + "ecode": "0500400A", + "intro": "Šis failo pavadinimas nėra palaikomas. Pervardykite failą ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0500400D", + "intro": "Atlikite savikontrolę ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0501401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014033", + "intro": "Jūsų programėlės regionas neatitinka jūsų spausdintuvo; atsisiųskite programėlę, skirtą atitinkamam regionui, ir vėl užregistruokite savo paskyrą." + }, + { + "ecode": "0500402D", + "intro": "Sistemos išimtis" + }, + { + "ecode": "03008047", + "intro": "Pasibaigė greito atjungimo svirties aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008008", + "intro": "Purkštuvo temperatūros gedimas" + }, + { + "ecode": "03008009", + "intro": "Šildomojo pagrindo temperatūros gedimas" + }, + { + "ecode": "05004002", + "intro": "Nepalaikomas spausdinimo failo kelias arba pavadinimas. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004006", + "intro": "Spausdinimo užduočiai atlikti nepakanka laisvos atminties vietos. Atkūrus gamyklinius nustatymus, galima atlaisvinti vietos." + }, + { + "ecode": "05014039", + "intro": "Įrenginio prisijungimo galiojimo laikas pasibaigė; pabandykite susieti dar kartą." + }, + { + "ecode": "03008046", + "intro": "Pasibaigė svetimkūnio aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008062", + "intro": "Kameros temperatūra yra per aukšta. Tai gali būti susiję su aukšta aplinkos temperatūra." + }, + { + "ecode": "03008045", + "intro": "Pasibaigė medžiagos aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0300800C", + "intro": "Aptiktas praleistas žingsnis: automatinis atkūrimas baigtas; prašome tęsti spausdinimą ir patikrinti, ar nėra sluoksnių poslinkio problemų." + }, + { + "ecode": "0500401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0300400F", + "intro": "Maitinimo įtampa neatitinka spausdintuvo reikalavimų." + }, + { + "ecode": "05024004", + "intro": "Kai kurios funkcijos nėra palaikomos dabartiniame įrenginyje. Patikrinkite „Studio“ funkcijų nustatymus arba atnaujinkite aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0500806D", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C004022", + "intro": "Nepavyko nustatyti „BirdsEye“ kameros. Patikrinkite, ar lazerinis modulis veikia tinkamai." + }, + { + "ecode": "0300801D", + "intro": "Ekstruderių servovariklio padėties jutiklis veikia netinkamai. Pirmiausia išjunkite spausdintuvą ir patikrinkite, ar jungiamasis kabelis nėra atsijungęs." + }, + { + "ecode": "07038002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "0C00403D", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar ji teisingai pritvirtinta prie šildomojo pagrindo." + }, + { + "ecode": "07028002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "07018002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "03008044", + "intro": "Kameroje buvo aptiktas gaisras." + }, + { + "ecode": "0C00C004", + "intro": "Aptiktas galimas „spaghetti“ gedimas." + }, + { + "ecode": "05004043", + "intro": "Dėl energijos apribojimų tik vienas AMS gali naudoti prietaiso energiją džiovinimui." + }, + { + "ecode": "05004052", + "intro": "Aptikta klaida kaitinimo galvutės dalyje." + }, + { + "ecode": "05004050", + "intro": "Aptikta spausdinimo plokštės klaida." + }, + { + "ecode": "03004068", + "intro": "Judesio tikslumo gerinimo proceso metu įvyko žingsnio praradimas. Prašome bandyti dar kartą." + }, + { + "ecode": "05004054", + "intro": "Ant kilimėlio aptikta klaida." + }, + { + "ecode": "0500403E", + "intro": "Dabartinė įrankio galvutė nepalaiko inicijavimo." + }, + { + "ecode": "03004066", + "intro": "Nepavyko kalibruoti judesio tikslumo." + }, + { + "ecode": "0C00C006", + "intro": "Atliekų šachtoje galėjo susikaupti išvalytos gijos." + }, + { + "ecode": "03008063", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų." + }, + { + "ecode": "03008043", + "intro": "Lazerinis modulis veikia netinkamai." + }, + { + "ecode": "0C00800B", + "intro": "Šildomojo pagrindo žymeklis nebuvo aptiktas. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas." + }, + { + "ecode": "0C004029", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C008005", + "intro": "Atliekų šachtoje susikaupė išvalytos gijos, dėl kurio gali įvykti įrankio galvutės susidūrimas." + }, + { + "ecode": "0300801E", + "intro": "Ekstruzijos variklis yra perkrautas. Patikrinkite, ar ekstruderius nėra užsikimšęs arba ar gija nėra įstrigęs antgalyje." + }, + { + "ecode": "0C008033", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0C008009", + "intro": "Nepavyko rasti spausdinimo plokštės orientavimo žymės." + }, + { + "ecode": "1000C001", + "intro": "Dėl aukštos pagrindo temperatūros gali užsikimšti purkštuvo gija. Galite atidaryti kameros dureles." + }, + { + "ecode": "1000C002", + "intro": "CF medžiagos spausdinimas kartu su nerūdijančiu plienu gali sugadinti purkštuką." + }, + { + "ecode": "07038010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07038011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07FF8006", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FFC006", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FFC009", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07028010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07028011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07018010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07018011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "07008010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "0501401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0501401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05014021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014031", + "intro": "Šiuo metu vyksta įrenginio aptikimo ir susiejimo procesas, todėl QR kodas negali būti rodomas ekrane. Galite palaukti, kol susiejimas bus baigtas, arba nutraukti įrenginio aptikimo ir susiejimo procesą programėlėje / „Studio“ ir vėl pabandyti nuskaityti ekrane rodomą QR kodą, kad atliktumėte susiejimą." + }, + { + "ecode": "05014032", + "intro": "Šiuo metu vyksta QR kodo susiejimas, todėl negalima atlikti susiejimo naudojant įrenginio paiešką. Norėdami atlikti susiejimą, galite nuskaityti ekrane rodomą QR kodą arba uždaryti ekrane rodomą QR kodo puslapį ir pabandyti atlikti susiejimą naudojant įrenginio paiešką." + }, + { + "ecode": "05014034", + "intro": "Pjaustymo eiga jau ilgą laiką nebuvo atnaujinama, o spausdinimo užduotis buvo nutraukta. Patikrinkite parametrus ir iš naujo paleiskite spausdinimą." + }, + { + "ecode": "05014035", + "intro": "Įrenginys šiuo metu vykdo prisijungimo procedūrą ir negali atsakyti į naujus prisijungimo prašymus." + }, + { + "ecode": "05024001", + "intro": "Šiame spausdinimo užsakyme bus naudojamas esama gija. Nustatymų pakeisti negalima." + }, + { + "ecode": "05004001", + "intro": "Nepavyko prisijungti prie „Bambu Cloud“. Patikrinkite savo tinklo ryšį." + }, + { + "ecode": "05004003", + "intro": "Spausdinimas buvo sustabdytas, nes spausdintuvas negalėjo išanalizuoti failo. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004005", + "intro": "Atnaujinant aparatinę programinę įrangą negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "05004009", + "intro": "Atnaujinant žurnalus negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "0500400E", + "intro": "Spausdinimas buvo atšauktas." + }, + { + "ecode": "05004014", + "intro": "Spausdinimo užduoties pjaustymas nepavyko. Patikrinkite nustatymus ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "05004017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05004019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "0500401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05004021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05004024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05004027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500402A", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus – tai galėjo įvykti dėl belaidžio ryšio trukdžių arba dėl to, kad esate per toli nuo maršrutizatoriaus. Prašome pabandyti dar kartą arba priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą." + }, + { + "ecode": "0500402B", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus dėl neteisingo slaptažodžio. Patikrinkite slaptažodį ir pabandykite dar kartą." + }, + { + "ecode": "05004037", + "intro": "Jūsų supjaustytas failas nėra suderinamas su dabartiniu spausdintuvo modeliu. Šio failo negalima atspausdinti šiuo spausdintuvu." + }, + { + "ecode": "05004038", + "intro": "Pjaustyto failo purkštuko skersmuo neatitinka dabartinių purkštuko nustatymų. Šio failo spausdinti negalima." + }, + { + "ecode": "05008013", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "05008030", + "intro": "" + }, + { + "ecode": "05008036", + "intro": "Jūsų suskaidytas failas neatitinka dabartinio spausdintuvo modelio. Tęsti?" + }, + { + "ecode": "05014017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05014019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "03004001", + "intro": "Spausdintuvas pasiekė laiko limitą, laukdamas, kol purkštukas atvės prieš grįžtant į pradinę padėtį." + }, + { + "ecode": "03004005", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03004006", + "intro": "Purkštukas užsikimšęs." + }, + { + "ecode": "03004009", + "intro": "Nepavyko atlikti XY ašių grįžimo į pradinę padėtį." + }, + { + "ecode": "0300400A", + "intro": "Nepavyko nustatyti mechaninio rezonanso dažnio." + }, + { + "ecode": "0300400D", + "intro": "Atkūrimas nepavyko po elektros tiekimo nutraukimo." + }, + { + "ecode": "0300400E", + "intro": "Variklio savikontrolė nepavyko." + }, + { + "ecode": "03008003", + "intro": "„AI Print Monitoring“ aptiko „spaghetti“ defektus. Prieš tęsdami spausdinimą, patikrinkite atspausdinto modelio kokybę." + }, + { + "ecode": "03008007", + "intro": "Kai spausdintuvas neteko maitinimo, spausdinimo užduotis buvo nebaigta. Jei modelis vis dar prilipęs prie spausdinimo plokštės, galite pabandyti atnaujinti spausdinimo užduotį." + }, + { + "ecode": "0300800E", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "0300800F", + "intro": "Atrodo, kad durys yra atidarytos, todėl spausdinimas buvo sustabdytas." + }, + { + "ecode": "03008010", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03008013", + "intro": "Vartotojas sustabdė spausdinimą. Norėdami tęsti spausdinimą, pasirinkite „Tęsti“." + }, + { + "ecode": "03008018", + "intro": "kameros temperatūros matavimo gedimas." + }, + { + "ecode": "03008019", + "intro": "Spausdinimo plokštė neįdėta." + } + ] + } + } +} \ No newline at end of file diff --git a/resources/hms/hms_lt_094.json b/resources/hms/hms_lt_094.json new file mode 100644 index 0000000000..b1b4b27950 --- /dev/null +++ b/resources/hms/hms_lt_094.json @@ -0,0 +1,20317 @@ +{ + "result": 0, + "t": 1742728732, + "ver": 202503231214, + "data": { + "device_error": { + "ver": 202503231214, + "lt": [ + { + "ecode": "07FFC010", + "intro": "Įdėkite giją, kol jos nebegalėsite įstumti giliau. Valymo metu gali šiek tiek dūmoti, todėl įdėjus giją uždarykite priekinę durelę ir viršutinį dangtį." + }, + { + "ecode": "07FEC010", + "intro": "Įdėkite giją, kol jos nebegalėsite įstumti giliau. Valymo metu gali šiek tiek dūmoti, todėl įdėjus giją uždarykite priekinę durelę ir viršutinį dangtį." + }, + { + "ecode": "07FEC011", + "intro": "Prašome rankiniu būdu ir lėtai ištraukti giją iš ekstruderio. Tada spustelėkite „Tęsti“." + }, + { + "ecode": "07FFC011", + "intro": "Prašome rankiniu būdu ir lėtai ištraukti giją iš ekstruderio. Tada spustelėkite „Tęsti“." + }, + { + "ecode": "07FEC012", + "intro": "Paspauskite juodą PTFE vamzdžio jungtį ir atjunkite PTFE vamzdį. Baigę šią operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "07FFC012", + "intro": "Paspauskite juodą PTFE vamzdžio jungtį ir atjunkite PTFE vamzdį. Baigę šią operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "07FF8025", + "intro": "Pasibaigė šaltojo ištempimo laikas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "05004039", + "intro": "Dėl esamos užduoties negalima įdiegti lazerio/pjaustymo modulio, todėl užduotis buvo sustabdyta." + }, + { + "ecode": "0500403B", + "intro": "Šiuo metu įrenginyje negalima pradėti lazerio pjovimo užduočių. Prašome naudoti kompiuterinę aparatinę programinę įrangą, kad pradėtumėte užduotį." + }, + { + "ecode": "07FE8025", + "intro": "Pasibaigė šaltojo ištempimo laikas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "05024008", + "intro": "Nepavyko pradėti naujos užduoties: nebuvo užbaigtas purkštuvo šaltasis ištraukimas." + }, + { + "ecode": "07044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "0300800D", + "intro": "Nustatyta, kad ekstruderiui kyla veikimo sutrikimų. Jei šie trūkumai yra priimtini, pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "03008055", + "intro": "Ant įrankio galvutės sumontuotas modulis neatitinka užduoties. Įdiekite tinkamą modulį." + }, + { + "ecode": "0500C036", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0300804F", + "intro": "Šiuo metu vyksta pakrovimo/iškrovimo procesas. Prašome sustabdyti procesą arba išimti lazerinį/pjaustymo modulį." + }, + { + "ecode": "0300804E", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "05004031", + "intro": "Aptiktas nesertifikuotas priedas, todėl prietaisas negali toliau veikti. Prašome naudoti „Bambu Lab“ priedus arba atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "05004034", + "intro": "Lazerinis modulis nėra sertifikuotas; prietaisas negali toliau veikti. Prašome naudoti „Bambu Lab“ priedus arba atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "05004035", + "intro": "„BirdsEye Camera“ nėra sertifikuota; prietaisas negali toliau veikti. Prašome naudoti „Bambu Lab“ priedus arba atnaujinti į naujausią aparatinės programinės įrangos versiją." + }, + { + "ecode": "0500808B", + "intro": "Nepavyko nustatyti „BirdsEye“ kameros. Prašome išvalyti šildomąjį stalą, pašalinti visus daiktus ir kilimėlį bei užtikrinti, kad šildomojo stalo žymės būtų matomos. Tuo pačiu metu išvalykite „BirdsEye“ kamerą ir įrankio galvutės kamerą bei pašalinkite visus objektus, kurie galėtų užstoti kamerų vaizdą." + }, + { + "ecode": "0500808A", + "intro": "„BirdsEye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į pagalbininką." + }, + { + "ecode": "05008089", + "intro": "Užduotis sustabdyta, nes nepavyko atlikti buvimo patikrinimo. Norėdami tęsti, patikrinkite spausdintuvą." + }, + { + "ecode": "0500806A", + "intro": "Nepavyko atpažinti kairiojo ir dešiniojo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra užteršta. Prieš kitą spausdinimą nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "05FE806A", + "intro": "Nepavyko atpažinti kairiojo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra nešvari. Prieš kitą spausdinimą nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "05008074", + "intro": "Lazerinė platforma yra pasislinkusi. Įsitikinkite, kad visi keturi platformos kampai būtų suderinti su šildomuoju pagrindu ir kad žymeklis nebūtų užstotas." + }, + { + "ecode": "05FE8081", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05FF8081", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FF8080", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05008086", + "intro": "Purkštuvo kameros objektyvas yra nešvarus, o tai gali turėti įtakos dirbtinio intelekto stebėjimo funkcijoms. Prašome kuo greičiau nuvalyti purkštuvo kameros objektyvo paviršių." + }, + { + "ecode": "05008085", + "intro": "Užkimšta kameros antgalio objektyvas" + }, + { + "ecode": "05008069", + "intro": "Nepavyko atpažinti kairiojo ir dešiniojo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės dalis arba jos žymė yra užteršta. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FE8069", + "intro": "Nepavyko atpažinti kairiojo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės arba jos žymė yra užteršta. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FF806A", + "intro": "Nepavyko atpažinti tinkamo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra nešvari. Prieš kitą spausdinimą nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "05FF8069", + "intro": "Nepavyko atpažinti reikiamo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės dalis arba jos žymė yra nešvari. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FE8080", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05008080", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008081", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008088", + "intro": "„Birdseye“ kamera yra nešvari" + }, + { + "ecode": "05008087", + "intro": "„BirdsEye“ kamera užstota" + }, + { + "ecode": "03004002", + "intro": "Automatinis pagrindo išlyginimas nepavyko; užduotis buvo sustabdyta." + }, + { + "ecode": "0C004020", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo pačiu metu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "0C00402A", + "intro": "Vizualinis žymeklis nebuvo aptiktas. Prašome vėl įklijuoti popierių į tinkamą vietą. Tuo tarpu, prašome nuvalyti įrankio galvutės kamerą, kad išvengtumėte užteršimo, ir pašalinti visus daiktus, kurie gali trukdyti jos matomumui." + }, + { + "ecode": "03008021", + "intro": "Gali būti, kad purkštukas nėra įmontuotas arba įmontuotas netinkamai. Prieš tęsdami darbą, įsitikinkite, kad purkštukas įmontuotas teisingai." + }, + { + "ecode": "03008061", + "intro": "Nepavyko įjungti „Airflow System“ režimo; patikrinkite oro sklendės būklę." + }, + { + "ecode": "03008048", + "intro": "Pasibaigė lazerinio modulio atrakinimo laiko limitas, todėl užduotis negali būti tęsiama. Prašome iš naujo paleisti spausdintuvą ir pabandyti dar kartą." + }, + { + "ecode": "05024007", + "intro": "Nepavyko paleisti naujos užduoties: gijų įkėlimas/iškėlimas nebaigtas." + }, + { + "ecode": "0300801A", + "intro": "Kilo gijų ekstruzijos klaida; prašome patikrinti pagalbinę programą, kad išspręstumėte šią problemą. Išsprendę problemą, atsižvelgdami į faktinę spausdinimo būklę, nuspręskite, ar atšaukti, ar tęsti spausdinimo užduotį." + }, + { + "ecode": "05008084", + "intro": "„Live View“ kamera yra nešvari; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "0500401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "18068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE8007", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "10018003", + "intro": "Pjaustymo faile laiko sulėtinimo režimas nustatytas kaip „Tradicinis“. Dėl to gali atsirasti paviršiaus defektų. Ar norite jį įjungti?" + }, + { + "ecode": "03008014", + "intro": "Ant purkštuko yra susikaupęs gijos medžiaga arba spausdinimo plokštė įtaisyta netinkamai. Atšaukite šį spausdinimą ir išvalykite purkštuką arba sureguliuokite spausdinimo plokštę atsižvelgdami į esamą padėtį. Taip pat galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "03008017", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai. Patikrinkite ir išvalykite kaitinamą pagrindą. Tada pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE8007", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "0300801C", + "intro": "Ekstruzijos pasipriešinimas yra nenormalus. Ekstruderius gali būti užsikimšęs; kreipkitės į asistentą. Išsprendus problemą, galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "07FE8012", + "intro": "Nepavyko gauti atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FEC00A", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "05008055", + "intro": "Lazerinis modulis yra įdiegtas, tačiau aptikta pjovimo platforma. Įdėkite lazerinę platformą ir atlikite lazerio kalibravimą." + }, + { + "ecode": "03004020", + "intro": "Nepavyko nustatyti, ar yra antgalis. Daugiau informacijos rasite „Assistant“ programoje." + }, + { + "ecode": "0500402E", + "intro": "Sistema nepalaiko failų sistemos, kurią šiuo metu naudoja USB atmintinė. Prašome pakeisti USB atmintinę arba ją suformatuoti į FAT32." + }, + { + "ecode": "05008063", + "intro": "Kalibravimo metu platforma neaptikta; įsitikinkite, kad lazerinė platforma yra tinkamai pastatyta." + }, + { + "ecode": "05008066", + "intro": "Užduočiai atlikti reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „LightGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "18008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8007", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį, tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "07058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE8012", + "intro": "Nepavyko gauti atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004065", + "intro": "Užduočiai atlikti reikalinga lazerinė platforma, tačiau šiuo metu naudojama pjovimo platforma. Prašome ją pakeisti, programoje išmatuoti medžiagos storį ir tada iš naujo paleisti užduotį." + }, + { + "ecode": "05004075", + "intro": "Nenustatyta jokia lazerio platforma, o tai gali turėti įtakos storio matavimo tikslumui. Prašome teisingai pastatyti lazerio platformą ir įsitikinti, kad galiniai žymekliai nebūtų uždengti, tada prieš pradedant užduotį programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "18FFC00A", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "07FFC00A", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "0500807D", + "intro": "Šiai užduočiai reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „StrongGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "03008000", + "intro": "Spausdinimas buvo sustabdytas dėl nežinomos priežasties. Norėdami tęsti spausdinimo užduotį, pasirinkite „Tęsti“." + }, + { + "ecode": "03008016", + "intro": "Purkštukas užsikimšęs gijomis. Prašome atšaukti šį spausdinimą ir išvalyti purkštuką arba pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05008064", + "intro": "Prašome teisingai pastatyti lazerinę platformą ir užtikrinti, kad galiniai žymekliai nebūtų užstoti, kad būtų galima atlikti lazerio kalibravimą." + }, + { + "ecode": "07FF8007", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį, tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "18FEC00A", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "18038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004076", + "intro": "Prieš pradėdami užduotį, tinkamai pastatykite lazerinę platformą ir įsitikinkite, kad galiniai žymekliai nėra užstoti, tada programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807A", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba pasitikrinti pagalbinę programą, kad išspręstumėte šią problemą." + }, + { + "ecode": "05004033", + "intro": "Aptiktas nesertifikuotas AMS arba neatsinaujinta AMS Aparatinė programinė įranga: prietaisas negali toliau veikti." + }, + { + "ecode": "03004000", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties; užduotis buvo sustabdyta." + }, + { + "ecode": "0300800A", + "intro": "„AI Print Monitoring“ aptiko susikaupusį filamentą. Prašome pašalinti filamentą iš atliekų išmetimo angos." + }, + { + "ecode": "0300800B", + "intro": "Pjovimo galvutė įstrigo. Įsitikinkite, kad pjovimo galvutės rankena yra išstumta, ir patikrinkite gijos jutiklio laido jungtį." + }, + { + "ecode": "03008065", + "intro": "MC modulio temperatūra per aukšta. Galimas priežastis rasite „Wiki“ puslapyje." + }, + { + "ecode": "05004070", + "intro": "Lazerinis arba pjovimo modulis yra prijungtas, todėl įrenginys negali pradėti 3D spausdinimo užduoties." + }, + { + "ecode": "0300400B", + "intro": "Vidaus komunikacijos išimtis" + }, + { + "ecode": "03008001", + "intro": "Spausdinimas sustabdytas dėl spausdinimo faile įrašytos sustabdymo komandos." + }, + { + "ecode": "05014038", + "intro": "Regioniniai nustatymai neatitinka spausdintuvo; patikrinkite spausdintuvo regioninius nustatymus." + }, + { + "ecode": "03008051", + "intro": "Pjovimo modulis nukrito arba jo kabelis atjungtas; patikrinkite modulį." + }, + { + "ecode": "0C004024", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į asistentą." + }, + { + "ecode": "0300804B", + "intro": "Užduotis sustabdyta. Atidarytas langas „Lazerinė sauga“." + }, + { + "ecode": "03004042", + "intro": "Lazerinės saugos langas nėra tinkamai sumontuotas. Užduotis buvo sustabdyta." + }, + { + "ecode": "10018004", + "intro": "„Prime Tower“ funkcija neįjungta, o failo pjaustymo metu laiko sulėtinimo režimas nustatytas kaip „Smooth“. Dėl to gali atsirasti paviršiaus defektų. Ar norite ją įjungti?" + }, + { + "ecode": "0300404D", + "intro": "Šiuo metu Kaitinimo galvutės, šildomojo pagrindo arba Kameros temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "07FE8004", + "intro": "Nepavyko atitraukti gijos iš kairiojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "03008041", + "intro": "Platformos aptikimo laiko limitas pasibaigęs: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03004067", + "intro": "Kalibravimo rezultatas viršija ribinę vertę." + }, + { + "ecode": "07FF8004", + "intro": "Nepavyko atitraukti gijos iš dešiniojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "18008011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18078011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18FE8004", + "intro": "Nepavyko atitraukti gijos iš kairiojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "18FF8004", + "intro": "Nepavyko atitraukti gijos iš dešiniojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "18038011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18018011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18058011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18068011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18048011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "03004011", + "intro": "„Flow Dynamics“ kalibravimas nepavyko; prašome iš naujo pradėti spausdinimą arba kalibravimą." + }, + { + "ecode": "18028011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "05008072", + "intro": "„Live View“ kamera užblokuota" + }, + { + "ecode": "05008083", + "intro": "Montavimo kalibravimo metu medžiaga neleidžiama. Prašome pašalinti medžiagą nuo platformos." + }, + { + "ecode": "0C004041", + "intro": "Nepavyko kalibruoti įrankio galvutės kameros. Įsitikinkite, kad kalibravimo žymė ant šildomojo pagrindo arba aukščio kalibravimo žymė grįžimo į pradinę padėtį zonoje yra švari ir nepažeista, tada pakartokite kalibravimo procesą." + }, + { + "ecode": "1800C06A", + "intro": "AMS-HT A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06A", + "intro": "AMS-HT F nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06C", + "intro": "AMS-HT H veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06C", + "intro": "AMS-HT A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06B", + "intro": "AMS-HT H keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014002", + "intro": "„Timelapse“ funkcija nepalaikoma, nes spausdinimo seka nustatyta kaip „Pagal objektą“." + }, + { + "ecode": "1800C06D", + "intro": "AMS-HT A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06A", + "intro": "AMS-HT D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06C", + "intro": "AMS-HT D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06C", + "intro": "AMS-HT F veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C069", + "intro": "AMS-HT D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C06A", + "intro": "AMS-HT C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06E", + "intro": "Variklis „AMS-HT F“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06C", + "intro": "AMS-HT G veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06D", + "intro": "AMS-HT G padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06E", + "intro": "AMS-HT Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C069", + "intro": "AMS-HT F džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1807C06D", + "intro": "AMS-HT H padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06C", + "intro": "AMS-HT C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06A", + "intro": "AMS-HT H nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06A", + "intro": "AMS-HT B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C069", + "intro": "AMS-HT H džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1803C06E", + "intro": "AMS-HT D variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06D", + "intro": "AMS-HT B padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06B", + "intro": "AMS-HT F keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06D", + "intro": "AMS-HT C padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06E", + "intro": "Variklis „AMS-HT C“ atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06C", + "intro": "AMS-HT E veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06A", + "intro": "AMS-HT E nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C069", + "intro": "AMS-HT G džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06D", + "intro": "AMS-HT E padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06B", + "intro": "AMS-HT G keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C069", + "intro": "AMS-HT A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C069", + "intro": "AMS-HT C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06C", + "intro": "AMS-HT B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06E", + "intro": "AMS-HT H variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1000C003", + "intro": "„Timelapse“ funkcijos įjungimas tradiciniame režime gali sukelti gedimus; šią funkciją įjunkite tik prireikus." + }, + { + "ecode": "1804C069", + "intro": "AMS-HT E džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06E", + "intro": "Variklis „AMS-HT B“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06D", + "intro": "AMS-HT F padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06D", + "intro": "AMS-HT D padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06B", + "intro": "AMS-HT B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06E", + "intro": "Variklis „AMS-HT G“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C069", + "intro": "AMS-HT B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06E", + "intro": "AMS-HT E variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06B", + "intro": "AMS-HT D keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06B", + "intro": "AMS-HT E keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06A", + "intro": "AMS-HT G nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06B", + "intro": "AMS-HT C keičia giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06B", + "intro": "AMS-HT A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014001", + "intro": "„Timelapse“ funkcija nepalaikoma, nes pjaustymo nustatymuose įjungtas „Spiral Vase“ režimas." + }, + { + "ecode": "0500806E", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti kaitinamą pagrindą." + }, + { + "ecode": "05004004", + "intro": "Įrenginys užimtas ir negali pradėti naujos užduoties. Prieš siunčiant naują užduotį, palaukite, kol bus užbaigta dabartinė užduotis." + }, + { + "ecode": "0C004025", + "intro": "„Birdseye“ kamera yra nešvari. Prašome ją nuvalyti ir iš naujo paleisti procesą." + }, + { + "ecode": "05008061", + "intro": "Nerasta spausdinimo plokštės. Patikrinkite, ar ji įdėta teisingai." + }, + { + "ecode": "0300804A", + "intro": "Avarinio stabdymo mygtukas įmontuotas netinkamai. Prieš tęsdami, prašome jį įmontuoti iš naujo pagal „Wiki“ nurodymus." + }, + { + "ecode": "05008079", + "intro": "Prašome laikytis instrukcijų, kaip įdėti lazerio bandymo medžiagą (350 g kartono)." + }, + { + "ecode": "0701C06C", + "intro": "AMS B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C069", + "intro": "AMS B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0700C06E", + "intro": "AMS Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06C", + "intro": "AMS D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C069", + "intro": "AMS D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06B", + "intro": "AMS B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06C", + "intro": "AMS A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C069", + "intro": "AMS C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0703C06B", + "intro": "AMS D keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008053", + "intro": "Kairysis ir dešinysis purkštukai neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamus purkštukus. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "05FE8053", + "intro": "Kairysis purkštukas neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštuką. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "03008054", + "intro": "Prašome įdėti popierių, reikalingą funkcijai „Spausdinti ir iškirpti“." + }, + { + "ecode": "0703C06D", + "intro": "AMS D padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06D", + "intro": "AMS B padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06A", + "intro": "AMS C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06E", + "intro": "AMS C variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06C", + "intro": "AMS C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06B", + "intro": "AMS C keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06D", + "intro": "AMS A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06A", + "intro": "AMS B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06D", + "intro": "AMS C padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008082", + "intro": "Prieš apdorojant, nuimkite apsauginę plėvelę nuo matinio blizgaus akrilo." + }, + { + "ecode": "0703C06A", + "intro": "AMS D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06B", + "intro": "AMS A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008060", + "intro": "Dabartinis įrankio galvutėje esantis modulis neatitinka reikalavimų. Prašome pakeisti modulį, vadovaudamiesi ekrane pateiktomis instrukcijomis." + }, + { + "ecode": "05FF8053", + "intro": "Pasirinkta purkštukė neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštukę. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "0700C069", + "intro": "AMS A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06E", + "intro": "AMS B variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06A", + "intro": "AMS A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06E", + "intro": "AMS D variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008056", + "intro": "Pjovimo modulis įdiegtas, tačiau aptikta lazerio platforma. Prašome pastatyti pjovimo platformą kalibravimui." + }, + { + "ecode": "0500C07F", + "intro": "Įrenginys užimtas ir negali atlikti šios operacijos. Norėdami tęsti, sustabdykite arba nutraukite dabartinę užduotį." + }, + { + "ecode": "0C008016", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba ieškoti sprendimų pagalbos skyriuje." + }, + { + "ecode": "07018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0702800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS C iki ekstruderio, yra tinkamai prijungtas." + }, + { + "ecode": "0706800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1801800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT B iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1804800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1802800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT C iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0704800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1800800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0705800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS F iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1806800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0C004021", + "intro": "Nepavyko įdiegti „BirdsEye“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C004026", + "intro": "Nepavyko inicijuoti „Live View“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "07008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "1803800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0C00402C", + "intro": "Įrenginio duomenų perdavimo klaida. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500C032", + "intro": "Prie įrankio galvutės prijungtas lazerio/pjaustymo modulis. Džiovinimo procesas buvo automatiškai sustabdytas." + }, + { + "ecode": "0700800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0C00402D", + "intro": "Įrankio galvutės kamera neveikia tinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "1807800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1805800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT F iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0707800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0703800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0701800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS B iki ekstruderio, yra tinkamai prijungtas." + }, + { + "ecode": "07018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07FE8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "03008042", + "intro": "Užduotis sustabdyta, nes durys arba viršutinis dangtis yra atidaryti." + }, + { + "ecode": "07FF8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "0500805C", + "intro": "Pjaustymo kilimėlio tipo „Grip“ neatitinka reikalavimų; prašome uždėti „LightGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "05008059", + "intro": "Pjovimo platformos pagrindas nėra tinkamai išlygintas. Prašome įsitikinti, kad keturi platformos kampai sutampa su šildomuoju pagrindu." + }, + { + "ecode": "07FF8013", + "intro": "Pasibaigė laiko limitas, skirtas senam dešiniojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8001", + "intro": "Nepavyko nupjauti dešiniojo ekstruderio gijų. Patikrinkite pjoviklį." + }, + { + "ecode": "0500806C", + "intro": "Prašome teisingai pastatyti pjovimo platformą ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "07FE8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "07018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500805A", + "intro": "Prašome pjaustymo kilimėlį uždėti ant pjaustymo apsauginio pagrindo." + }, + { + "ecode": "07068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "18058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8001", + "intro": "Nepavyko nupjauti kairiojo ekstruderio gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "18FF8013", + "intro": "Pasibaigė laiko limitas, skirtas senam dešiniojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "05008071", + "intro": "Pjovimo platforma nerasta. Prašome patikrinti, ar ji buvo teisingai pastatyta." + }, + { + "ecode": "05008073", + "intro": "Šildomojo pagrindo ribotuvas užblokuotas arba užterštas. Prašome jį išvalyti ir užtikrinti, kad ribotuvas būtų matomas, nes priešingu atveju platformos padėties nuokrypio nustatymas gali būti netikslus." + }, + { + "ecode": "05008068", + "intro": "Prašome teisingai uždėti gerai priglundančią pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807C", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „StrongGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "05008067", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „LightGrip“ pjovimo kilimėlį." + }, + { + "ecode": "07038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FE8013", + "intro": "Pasibaigė laiko limitas, skirtas senam kairiojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FE8010", + "intro": "Patikrinkite, ar kairėje pusėje esanti išorinė gijų ritė arba gijas nėra užstrigę." + }, + { + "ecode": "07FE8002", + "intro": "kairiojo ekstruderio pjovimo įtaisas užstrigo. Prašome ištraukti pjovimo įtaiso rankenėlę." + }, + { + "ecode": "07FE8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "07FE8001", + "intro": "Nepavyko nupjauti kairiojo ekstruderio gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "07FF8002", + "intro": "dešiniojo ekstruderio pjoviklis užstrigo. Prašome ištraukti pjoviklio rankenėlę." + }, + { + "ecode": "07FF8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "07008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500806F", + "intro": "Pjaustymo kilimėlio tipo paviršius neatitinka reikalavimų; prašome uždėti „StrongGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "18FE8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "18068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8013", + "intro": "Pasibaigė laiko limitas, skirtas senam kairiojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FF8002", + "intro": "dešiniojo ekstruderio pjoviklis užstrigo. Prašome ištraukti pjoviklio rankenėlę." + }, + { + "ecode": "18FF8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "18028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8002", + "intro": "kairiojo ekstruderio pjovimo įtaisas užstrigo. Prašome ištraukti pjovimo įtaiso rankenėlę." + }, + { + "ecode": "18FF8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "18FF8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "18068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FF8001", + "intro": "Nepavyko nupjauti dešiniojo ekstruderio gijų. Patikrinkite pjoviklį." + }, + { + "ecode": "07068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8010", + "intro": "Patikrinkite, ar įdėta tinkama išorinė gijų ritė arba ar gijas nėra užstrigęs." + }, + { + "ecode": "03004052", + "intro": "Nepavyko nustatyti peilio Z ašies pradinės padėties" + }, + { + "ecode": "0500807E", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „StrongGrip“ pjovimo kilimėlį." + }, + { + "ecode": "05008058", + "intro": "Prašome teisingai uždėti „Light Grip“ pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807B", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „LightGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "0C008018", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba peržiūrėti pagalbinę informaciją, kaip išspręsti šią problemą." + }, + { + "ecode": "0500805B", + "intro": "Pjaustymo kilimėlio tipas nežinomas; prašome jį pakeisti tinkamu pjaustymo kilimėliu." + }, + { + "ecode": "05008062", + "intro": "Spausdinimo plokštės tipas nežinomas; prašome ją pakeisti tinkama plokšte." + }, + { + "ecode": "03008064", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų. (Šio spausdinimo užduoties durelių atidarymo aptikimas bus nustatytas į „Pranešimo“ lygį)" + }, + { + "ecode": "0C008017", + "intro": "Platformoje aptikti svetimkūniai; prašome juos laiku pašalinti." + }, + { + "ecode": "05008077", + "intro": "Vizualinis žymeklis nebuvo aptiktas. Prašome įsitikinti, kad popierius yra tinkamai įdėtas." + }, + { + "ecode": "05008078", + "intro": "Dabartinė medžiaga neatitinka supjaustyto failo nustatymų. Įdėkite tinkamą medžiagą ir įsitikinkite, kad ant jos esantis QR kodas nėra pažeistas ar nešvarus." + }, + { + "ecode": "0500403F", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0C00803F", + "intro": "Dirbtinis intelektas aptiko purkštuko užsikimšimą. Patikrinkite purkštuko būklę. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0C008040", + "intro": "Dirbtinis intelektas aptiko spausdinimo ore trūkumą. Patikrinkite Kaitinimo galvutės ekstruzijos būseną. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0500403D", + "intro": "Įrankio galvutės modulis nėra sukonfigūruotas. Prieš pradėdami užduotį, jį sukonfigūruokite." + }, + { + "ecode": "07FE8011", + "intro": "Išsibaigė prie kairiojo ekstruderio prijungtas išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0300400C", + "intro": "Užduotis buvo atšaukta." + }, + { + "ecode": "07FF8011", + "intro": "Iš dešiniojo ekstruderio prijungtas išorinis filamentas baigėsi; įdėkite naują filamentą." + }, + { + "ecode": "18FF8011", + "intro": "Iš dešiniojo ekstruderio prijungtas išorinis filamentas baigėsi; įdėkite naują filamentą." + }, + { + "ecode": "18FE8011", + "intro": "Išsibaigė prie kairiojo ekstruderio prijungtas išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "07028021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07018021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07FF8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07008021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07FE8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07038021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "05008051", + "intro": "Nustatyta, kad spausdinimo plokštė neatitinka Gcode failo. Prašome pakoreguoti pjaustymo programos nustatymus arba naudoti tinkamą plokštę." + }, + { + "ecode": "18FF8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18078021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18038021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07048021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07068021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18008021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18018021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18068021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18028021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07078021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18058021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07058021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18FE8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18048021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18048004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18068004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18038017", + "intro": "AMS-HT D džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18048010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18FEC008", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "07048005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18028005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18038010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18058005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18028010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18008010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18038006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18028004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18018017", + "intro": "AMS-HT B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18048006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18FF8006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "18078006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18018005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18078010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028017", + "intro": "AMS-HT C džiūsta. Prieš pakraunant ar iškraunant medžiagą, sustabdykite džiovinimo procesą." + }, + { + "ecode": "18008004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07078006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "0C00403E", + "intro": "Nepavyko atlikti itin tikslaus purkštuko poslinkio kalibravimo – galbūt dėl sugadinto šablono arba dėl to, kad dviejų pasirinktų gijų spalvos yra pernelyg panašios. Prieš atliekant pakartotinį kalibravimą, pašalinkite atspausdintą šabloną ir pakeiskite gijas tokiomis, kurių spalvų kontrastas yra didesnis." + }, + { + "ecode": "18008017", + "intro": "AMS-HT A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18FE8006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "07068011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C004027", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Daugiau informacijos rasite pagalbos vadove; po apdorojimo pakalibruokite kamerą iš naujo." + }, + { + "ecode": "07048006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "18058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18028006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18FEC006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "07058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18038004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07078004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07058010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18048005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18FF8003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "07058006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07068006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "18068006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "07048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18008005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18FFC009", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "18078005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18FEC009", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "18FEC003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18058004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18FE8003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "18038005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18068010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18FFC008", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18078004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07048010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07068010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07058004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18018006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "07048004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "07078011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "18058006", + "intro": "Nepavyksta įtraukti gijų į ekstruderį. Tai gali būti dėl susipynusių gijų arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18FFC003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18FFC006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07058011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "18038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18018004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "18068005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "0C008015", + "intro": "Platformoje aptikti daiktai; prašome juos laiku pašalinti." + }, + { + "ecode": "05024006", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "07018017", + "intro": "AMS B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07028017", + "intro": "AMS C džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "03004013", + "intro": "Kol AMS džiūsta, spausdinimo procesą pradėti negalima." + }, + { + "ecode": "07038017", + "intro": "AMS D džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07008017", + "intro": "AMS A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07FEC003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "07FEC008", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500405D", + "intro": "Lazerinio modulio serijinio numerio klaida: nepavyksta atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500805E", + "intro": "Pjovimo modulio serijinio numerio klaida: nepavyko atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "05004040", + "intro": "Dėl energijos apribojimų AMS negali naudoti įrenginio energijos džiovinimui spausdinimo metu. Ar reikėtų sustabdyti džiovinimą?" + }, + { + "ecode": "07FFC008", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500C010", + "intro": "Išskirtinė USB atmintinės skaitymo ir rašymo klaida; įdėkite ją iš naujo arba pakeiskite." + }, + { + "ecode": "07FFC003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500402F", + "intro": "USB atmintinės sektorių duomenys yra sugadinti; prašome ją suformatuoti. Jei ji vis tiek nebus atpažinta, prašome pakeisti USB atmintinę." + }, + { + "ecode": "05024002", + "intro": "Spausdintuvas neturi judesio tikslumo didinimo kalibravimo duomenų; judesio tikslumo didinimo funkcijos neįmanoma įjungti." + }, + { + "ecode": "05024003", + "intro": "Spausdintuvas šiuo metu spausdina, todėl judesio tikslumo didinimo funkcijos neįmanoma įjungti ar išjungti." + }, + { + "ecode": "05024005", + "intro": "AMS dar nebuvo kalibruotas, todėl spausdinimo pradėti negalima." + }, + { + "ecode": "03008049", + "intro": "Dabartinis numeris yra negaliojantis." + }, + { + "ecode": "07FF8003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "05004008", + "intro": "Nepavyko pradėti spausdinti; išjunkite ir vėl įjunkite spausdintuvą, tada iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "0500400B", + "intro": "Kilo problemų atsisiunčiant failą. Patikrinkite savo interneto ryšį ir iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "05004018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0500402C", + "intro": "Nepavyko gauti IP adreso. Tai galėjo įvykti dėl belaidžio ryšio trukdžių, dėl kurių nepavyko perduoti duomenų, arba dėl to, kad maršrutizatoriaus DHCP adresų rezervas yra išnaudotas. Prašome priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą. Jei problema neišsprendžiama, patikrinkite maršrutizatoriaus nustatymus ir įsitikinkite, ar IP adresų rezervas nėra išnaudotas." + }, + { + "ecode": "0500400A", + "intro": "Šis failo pavadinimas nėra palaikomas. Pervardykite failą ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0500400D", + "intro": "Atlikite savikontrolę ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0501401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014033", + "intro": "Jūsų programėlės regionas neatitinka jūsų spausdintuvo; atsisiųskite programėlę, skirtą atitinkamam regionui, ir vėl užregistruokite savo paskyrą." + }, + { + "ecode": "07FE8003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "0500402D", + "intro": "Sistemos išimtis" + }, + { + "ecode": "03008047", + "intro": "Pasibaigė greito atjungimo svirties aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008008", + "intro": "Purkštuvo temperatūros gedimas" + }, + { + "ecode": "03008009", + "intro": "Šildomojo pagrindo temperatūros gedimas" + }, + { + "ecode": "05004002", + "intro": "Nepalaikomas spausdinimo failo kelias arba pavadinimas. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004006", + "intro": "Spausdinimo užduočiai atlikti nepakanka laisvos atminties vietos. Atkūrus gamyklinius nustatymus, galima atlaisvinti vietos." + }, + { + "ecode": "05014039", + "intro": "Įrenginio prisijungimo galiojimo laikas pasibaigė; pabandykite susieti dar kartą." + }, + { + "ecode": "03008046", + "intro": "Pasibaigė svetimkūnio aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008062", + "intro": "Kameros temperatūra yra per aukšta. Tai gali būti susiję su aukšta aplinkos temperatūra." + }, + { + "ecode": "03008045", + "intro": "Pasibaigė medžiagos aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0300800C", + "intro": "Aptiktas praleistas žingsnis: automatinis atkūrimas baigtas; prašome tęsti spausdinimą ir patikrinti, ar nėra sluoksnių poslinkio problemų." + }, + { + "ecode": "0500401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0C008002", + "intro": "" + }, + { + "ecode": "0300400F", + "intro": "Maitinimo įtampa neatitinka spausdintuvo reikalavimų." + }, + { + "ecode": "05024004", + "intro": "Kai kurios funkcijos nėra palaikomos dabartiniame įrenginyje. Patikrinkite „Studio“ funkcijų nustatymus arba atnaujinkite aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0500806D", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "18028023", + "intro": "AMS-HT C modelyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18078023", + "intro": "AMS-HT H įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0C004022", + "intro": "Nepavyko nustatyti „BirdsEye“ kameros. Patikrinkite, ar lazerinis modulis veikia tinkamai." + }, + { + "ecode": "18058023", + "intro": "AMS-HT F įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18008023", + "intro": "AMS-HT A įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18038023", + "intro": "AMS-HT D įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18068023", + "intro": "AMS-HT G įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18048023", + "intro": "AMS-HT E įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07078023", + "intro": "AMS H įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07068023", + "intro": "AMS G įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07048023", + "intro": "AMS E įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18018023", + "intro": "AMS-HT B įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07058023", + "intro": "AMS F įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0300801D", + "intro": "Ekstruderių servovariklio padėties jutiklis veikia netinkamai. Pirmiausia išjunkite spausdintuvą ir patikrinkite, ar jungiamasis kabelis nėra atsijungęs." + }, + { + "ecode": "0500806B", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Prašome ją nuspausti, kad ją užfiksuotumėte." + }, + { + "ecode": "07008023", + "intro": "AMS A įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07028023", + "intro": "AMS C įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07038023", + "intro": "AMS D įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07018023", + "intro": "AMS B įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0C00403D", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar ji teisingai pritvirtinta prie šildomojo pagrindo." + }, + { + "ecode": "07028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07FFC006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07038004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07FFC009", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FF8006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07028004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07038006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07018006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07028006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "03008044", + "intro": "Kameroje buvo aptiktas gaisras." + }, + { + "ecode": "0C00C004", + "intro": "Aptiktas galimas „spaghetti“ gedimas." + }, + { + "ecode": "05004043", + "intro": "Dėl energijos apribojimų tik vienas AMS gali naudoti prietaiso energiją džiovinimui." + }, + { + "ecode": "05004052", + "intro": "Aptikta klaida kaitinimo galvutės dalyje." + }, + { + "ecode": "05004050", + "intro": "Aptikta spausdinimo plokštės klaida." + }, + { + "ecode": "03004068", + "intro": "Judesio tikslumo gerinimo proceso metu įvyko žingsnio praradimas. Prašome bandyti dar kartą." + }, + { + "ecode": "05004041", + "intro": "Dėl energijos apribojimų spausdinimo metu tik vienas AMS gali naudoti įrenginio energiją džiovinimui. Ar reikėtų sustabdyti džiovinimą?" + }, + { + "ecode": "05004054", + "intro": "Ant kilimėlio aptikta klaida." + }, + { + "ecode": "0500403E", + "intro": "Dabartinė įrankio galvutė nepalaiko inicijavimo." + }, + { + "ecode": "03004066", + "intro": "Nepavyko kalibruoti judesio tikslumo." + }, + { + "ecode": "0C00C006", + "intro": "Atliekų šachtoje galėjo susikaupti išvalytos gijos." + }, + { + "ecode": "05004042", + "intro": "Šiuo metu AMS yra naudojamas spausdinimui ir negali pradėti džiovinimo proceso." + }, + { + "ecode": "03008063", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų." + }, + { + "ecode": "03008043", + "intro": "Lazerinis modulis veikia netinkamai." + }, + { + "ecode": "07FEC006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "0C00800B", + "intro": "Šildomojo pagrindo žymeklis nebuvo aptiktas. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas." + }, + { + "ecode": "07FEC009", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "0C004029", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C008005", + "intro": "Atliekų šachtoje susikaupė išvalytos gijos, dėl kurio gali įvykti įrankio galvutės susidūrimas." + }, + { + "ecode": "0300801E", + "intro": "Ekstruzijos variklis yra perkrautas. Patikrinkite, ar ekstruderius nėra užsikimšęs arba ar gija nėra įstrigęs antgalyje." + }, + { + "ecode": "0C008033", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "07FE8006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "03004010", + "intro": "Nepavyko atlikti purkštuko poslinkio kalibravimo." + }, + { + "ecode": "0C008009", + "intro": "Nepavyko rasti spausdinimo plokštės orientavimo žymės." + }, + { + "ecode": "1000C001", + "intro": "Dėl aukštos pagrindo temperatūros gali užsikimšti purkštuvo gija. Galite atidaryti kameros dureles." + }, + { + "ecode": "1000C002", + "intro": "CF medžiagos spausdinimas kartu su nerūdijančiu plienu gali sugadinti purkštuką." + }, + { + "ecode": "07038005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07038010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07038011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07028010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07028011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07028005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07018004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07018010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07018011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07008004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07008005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07008006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07008010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "0501401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0501401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05014021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014031", + "intro": "Šiuo metu vyksta įrenginio aptikimo ir susiejimo procesas, todėl QR kodas negali būti rodomas ekrane. Galite palaukti, kol susiejimas bus baigtas, arba nutraukti įrenginio aptikimo ir susiejimo procesą programėlėje / „Studio“ ir vėl pabandyti nuskaityti ekrane rodomą QR kodą, kad atliktumėte susiejimą." + }, + { + "ecode": "05014032", + "intro": "Šiuo metu vyksta QR kodo susiejimas, todėl negalima atlikti susiejimo naudojant įrenginio paiešką. Norėdami atlikti susiejimą, galite nuskaityti ekrane rodomą QR kodą arba uždaryti ekrane rodomą QR kodo puslapį ir pabandyti atlikti susiejimą naudojant įrenginio paiešką." + }, + { + "ecode": "05014034", + "intro": "Pjaustymo eiga jau ilgą laiką nebuvo atnaujinama, o spausdinimo užduotis buvo nutraukta. Patikrinkite parametrus ir iš naujo paleiskite spausdinimą." + }, + { + "ecode": "05014035", + "intro": "Įrenginys šiuo metu vykdo prisijungimo procedūrą ir negali atsakyti į naujus prisijungimo prašymus." + }, + { + "ecode": "05024001", + "intro": "Šiame spausdinimo užsakyme bus naudojamas esama gija. Nustatymų pakeisti negalima." + }, + { + "ecode": "05004001", + "intro": "Nepavyko prisijungti prie „Bambu Cloud“. Patikrinkite savo tinklo ryšį." + }, + { + "ecode": "05004003", + "intro": "Spausdinimas buvo sustabdytas, nes spausdintuvas negalėjo išanalizuoti failo. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004005", + "intro": "Atnaujinant aparatinę programinę įrangą negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "05004007", + "intro": "Spausdinimo užduočių siųsti negalima, kai vykdomas priverstinis atnaujinimas arba kai reikalingas taisomasis atnaujinimas." + }, + { + "ecode": "05004009", + "intro": "Atnaujinant žurnalus negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "0500400E", + "intro": "Spausdinimas buvo atšauktas." + }, + { + "ecode": "05004014", + "intro": "Spausdinimo užduoties pjaustymas nepavyko. Patikrinkite nustatymus ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "05004017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05004019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "0500401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05004021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05004024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05004027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500402A", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus – tai galėjo įvykti dėl belaidžio ryšio trukdžių arba dėl to, kad esate per toli nuo maršrutizatoriaus. Prašome pabandyti dar kartą arba priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą." + }, + { + "ecode": "0500402B", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus dėl neteisingo slaptažodžio. Patikrinkite slaptažodį ir pabandykite dar kartą." + }, + { + "ecode": "05004037", + "intro": "Jūsų supjaustytas failas nėra suderinamas su dabartiniu spausdintuvo modeliu. Šio failo negalima atspausdinti šiuo spausdintuvu." + }, + { + "ecode": "05004038", + "intro": "Pjaustyto failo purkštuko skersmuo neatitinka dabartinių purkštuko nustatymų. Šio failo spausdinti negalima." + }, + { + "ecode": "05008013", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "05008030", + "intro": "" + }, + { + "ecode": "05008036", + "intro": "Jūsų suskaidytas failas neatitinka dabartinio spausdintuvo modelio. Tęsti?" + }, + { + "ecode": "0500C011", + "intro": "" + }, + { + "ecode": "05014017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05014019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "03004001", + "intro": "Spausdintuvas pasiekė laiko limitą, laukdamas, kol purkštukas atvės prieš grįžtant į pradinę padėtį." + }, + { + "ecode": "03004005", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03004006", + "intro": "Purkštukas užsikimšęs." + }, + { + "ecode": "03004008", + "intro": "AMS nepavyko pakeisti gijos." + }, + { + "ecode": "03004009", + "intro": "Nepavyko atlikti XY ašių grįžimo į pradinę padėtį." + }, + { + "ecode": "0300400A", + "intro": "Nepavyko nustatyti mechaninio rezonanso dažnio." + }, + { + "ecode": "0300400D", + "intro": "Atkūrimas nepavyko po elektros tiekimo nutraukimo." + }, + { + "ecode": "0300400E", + "intro": "Variklio savikontrolė nepavyko." + }, + { + "ecode": "03008003", + "intro": "„AI Print Monitoring“ aptiko „spaghetti“ defektus. Prieš tęsdami spausdinimą, patikrinkite atspausdinto modelio kokybę." + }, + { + "ecode": "03008007", + "intro": "Kai spausdintuvas neteko maitinimo, spausdinimo užduotis buvo nebaigta. Jei modelis vis dar prilipęs prie spausdinimo plokštės, galite pabandyti atnaujinti spausdinimo užduotį." + }, + { + "ecode": "0300800E", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "0300800F", + "intro": "Atrodo, kad durys yra atidarytos, todėl spausdinimas buvo sustabdytas." + }, + { + "ecode": "03008010", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03008013", + "intro": "Vartotojas sustabdė spausdinimą. Norėdami tęsti spausdinimą, pasirinkite „Tęsti“." + }, + { + "ecode": "03008018", + "intro": "kameros temperatūros matavimo gedimas." + }, + { + "ecode": "03008019", + "intro": "Spausdinimo plokštė neįdėta." + } + ] + }, + "device_hms": { + "ver": 202503231214, + "en": [ + { + "ecode": "0500040000020034", + "intro": "Lazerinis modulis aptiktas pirmą kartą. Prieš naudojimą atlikite nustatymus (~4 min.), kad pjovimas ir graviravimas būtų tikslūs. Taip pat įsitikinkite, kad gale esanti H2.0 varžtė, tvirtinanti oro siurblį, yra išsukta." + }, + { + "ecode": "07FFA00000020001", + "intro": "Pasibaigė laikas, skirtas dešiniojo purkštuko šaltojo ištraukimo procesui. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "07FEA00000020001", + "intro": "Pasibaigė kairiojo purkštuko šalto ištraukimo proceso laikas. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "1804200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0704210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0707230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0700210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1803210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0703230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0701210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704230000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0702230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1800210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0705230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1807230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1805220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0701220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1803220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Ištraukite gijas ir pabandykite dar kartą." + }, + { + "ecode": "1807210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1806230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1806230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1801200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1800210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801200000010085", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir bandyti dar kartą." + }, + { + "ecode": "0702200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS-HT G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1803200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0706230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1806220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir bandyti dar kartą." + }, + { + "ecode": "1805200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1803200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1803200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0705210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010082", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0704230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir bandyti dar kartą." + }, + { + "ecode": "1801210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0700210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0702230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0C0003000003000D", + "intro": "Nustatyta, kad ekstruderiui gali nefunkcionuoti tinkamai. Prašome patikrinti ir nuspręsti, ar reikia sustabdyti spausdinimą." + }, + { + "ecode": "0C00030000020018", + "intro": "Nustatyta, kad nepakanka sistemos atminties, todėl svetimkūnių aptikimo funkcija neveikė. Užbaigus užduotį, prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą" + }, + { + "ecode": "03001E0000010002", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "1807230000020021", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700230000020012", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0701210000020011", + "intro": "AMS B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020022", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020016", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1805200000020023", + "intro": "AMS-HT F lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806210000020018", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801220000020017", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800210000020013", + "intro": "AMS-HT A lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1802220000020014", + "intro": "AMS-HT C lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "0707210000020024", + "intro": "AMS H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020019", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1803230000020023", + "intro": "AMS-HT D lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1807230000020013", + "intro": "AMS-HT H lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705200000020014", + "intro": "AMS F lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1802220000020023", + "intro": "AMS-HT C lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1805210000020014", + "intro": "AMS-HT F lizdo Nr. 2-ojo gijos jutiklis negauna signalo." + }, + { + "ecode": "1803210000020014", + "intro": "AMS-HT D lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "0707220000020013", + "intro": "AMS H lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0706200000020011", + "intro": "AMS G lizdo Nr. 1 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "1804220000020015", + "intro": "AMS-HT E lizdo Nr. 3 gijų jutiklio būsena yra nenormali." + }, + { + "ecode": "0706210000020011", + "intro": "AMS G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701200000020015", + "intro": "AMS B lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1804230000020013", + "intro": "AMS-HT E lizdo Nr. 4 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1803200000020013", + "intro": "AMS-HT D lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1801210000020021", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020010", + "intro": "AMS E lizdo Nr. 2 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020011", + "intro": "AMS D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0705210000020010", + "intro": "AMS F lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804210000020024", + "intro": "AMS-HT E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705200000020013", + "intro": "AMS F lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705210000020011", + "intro": "AMS F lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020024", + "intro": "AMS H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700230000020011", + "intro": "AMS A lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705220000020020", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0703210000020023", + "intro": "AMS D lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0706230000020010", + "intro": "AMS G lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0706200000020015", + "intro": "AMS G lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803230000020010", + "intro": "AMS-HT D lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704210000020015", + "intro": "AMS E lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0700200000020021", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705210000020013", + "intro": "AMS F lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0706230000020018", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1805230000020019", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1804230000020012", + "intro": "AMS-HT E lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1800230000020013", + "intro": "AMS-HT A lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1801200000020014", + "intro": "AMS-HT B lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1806220000020020", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806200000020023", + "intro": "AMS-HT G lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0700200000020019", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701220000020024", + "intro": "AMS B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020011", + "intro": "AMS-HT H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806210000020013", + "intro": "AMS-HT G lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1803220000020015", + "intro": "AMS-HT D lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1805230000020011", + "intro": "AMS-HT F lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0703210000020022", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805200000020017", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807230000020010", + "intro": "AMS-HT H lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0700220000020020", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1800220000020012", + "intro": "AMS-HT A lizdo Nr. 3 padavimo bloko variklis užstrigo." + }, + { + "ecode": "1805230000020014", + "intro": "AMS-HT F lizdo Nr. 4-gijų gijų jutiklis negauna signalo." + }, + { + "ecode": "0701220000020012", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0707230000020021", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020022", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020011", + "intro": "AMS-HT G lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803200000020017", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706220000020014", + "intro": "AMS G lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "0701220000020016", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0700230000020019", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1800210000020021", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijos buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020011", + "intro": "AMS F lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020022", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020017", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020010", + "intro": "AMS B lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802230000020021", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020021", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020017", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705200000020017", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020018", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703230000020021", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020015", + "intro": "AMS D lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0701210000020013", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0700200000020014", + "intro": "AMS A lizdo Nr. 1 gijos jutiklis nesiunčia signalo." + }, + { + "ecode": "1805200000020018", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020016", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807200000020018", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020019", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020018", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1801210000020012", + "intro": "AMS-HT B lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0705200000020012", + "intro": "AMS F lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0704230000020012", + "intro": "AMS E lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0706200000020012", + "intro": "AMS G lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1803220000020010", + "intro": "AMS-HT D lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702200000020016", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "0700200000020015", + "intro": "AMS A lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0705220000020012", + "intro": "AMS F lizdo Nr. 3 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0707220000020019", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020018", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1804210000020013", + "intro": "AMS-HT E lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0701220000020020", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700210000020021", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020012", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1802210000020022", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804230000020024", + "intro": "AMS-HT E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020022", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020011", + "intro": "AMS-HT G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704210000020022", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020015", + "intro": "AMS-HT: lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803220000020019", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0703210000020010", + "intro": "AMS D lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020016", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1801220000020010", + "intro": "AMS-HT B lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704220000020019", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1801220000020015", + "intro": "AMS-HT B lizdo Nr. 3-iojo gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803210000020022", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020019", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020019", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1804220000020022", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020022", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803210000020021", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020021", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020024", + "intro": "AMS-HT H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020014", + "intro": "AMS C lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0700220000020021", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "03001E0000010007", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "1804210000020014", + "intro": "AMS-HT E lizdo Nr. 2 gijų jutiklis negauna signalo." + }, + { + "ecode": "1801210000020019", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801210000020023", + "intro": "AMS-HT B lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1801220000020011", + "intro": "AMS-HT B lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704210000020013", + "intro": "AMS E lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1806220000020022", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020020", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703220000020023", + "intro": "AMS D lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806220000020016", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807210000020014", + "intro": "AMS-HT H lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1806210000020010", + "intro": "AMS-HT G lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700230000020018", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020021", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705210000020016", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1803210000020012", + "intro": "AMS-HT D lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0701230000020011", + "intro": "AMS B lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702220000020011", + "intro": "AMS C lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703220000020024", + "intro": "AMS D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700200000020023", + "intro": "AMS A lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0703230000020024", + "intro": "AMS D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702230000020013", + "intro": "AMS C lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705230000020014", + "intro": "AMS F lizdo Nr. 4-osios kaitinamosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1804200000020017", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705210000020017", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800230000020022", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804200000020014", + "intro": "AMS-HT E lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1800210000020023", + "intro": "AMS-HT: 2-oje lizdoje AMS viduje esantis vamzdelis yra sulūžęs." + }, + { + "ecode": "0702210000020021", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020021", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806210000020016", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807210000020019", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702220000020016", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0700210000020013", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1804200000020015", + "intro": "AMS-HT E lizdo Nr. 1 gijų jutiklio būsena yra nenormali." + }, + { + "ecode": "0702220000020012", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0706200000020020", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801230000020013", + "intro": "AMS-HT B lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1807210000020012", + "intro": "AMS-HT H lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0702220000020023", + "intro": "AMS C lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1800230000020012", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0700230000020021", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020011", + "intro": "AMS E lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705230000020015", + "intro": "AMS F lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0700200000020022", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705210000020015", + "intro": "AMS F lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0701210000020021", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801220000020022", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702220000020022", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020020", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806200000020015", + "intro": "AMS-HT G lizdo Nr. 1 gijų jutiklio būsena yra nenormali." + }, + { + "ecode": "1802210000020015", + "intro": "AMS-HT C lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703220000020017", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020019", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706220000020015", + "intro": "AMS G lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0701210000020022", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020019", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020012", + "intro": "AMS H lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1800220000020016", + "intro": "AMS-HT: lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0701200000020013", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0707230000020019", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020017", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703220000020015", + "intro": "AMS D lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0706210000020022", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020016", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1801210000020020", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805200000020010", + "intro": "AMS-HT F lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807220000020022", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0300020000010009", + "intro": "Netinkamai reguliuojama purkštuko temperatūra. Galbūt nėra sumontuotas kaitinimo galvutės. Norėdami įkaitinti kaitinimo bloką be kaitinimo galvutės, nustatymuose įjunkite techninės priežiūros režimą." + }, + { + "ecode": "0300020000010007", + "intro": "Tinkama purkštuvo temperatūra neatitinka normos; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "1802200000020022", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800210000020011", + "intro": "AMS-HT A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0701230000020014", + "intro": "AMS B lizdo Nr. 4 gijos jutiklis negauna signalo." + }, + { + "ecode": "1804210000020023", + "intro": "AMS-HT E lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1802200000020017", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020013", + "intro": "AMS-HT B lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0706200000020019", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1804230000020015", + "intro": "AMS-HT E lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0706200000020022", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020019", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1805200000020012", + "intro": "AMS-HT F lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1802220000020020", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020022", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803230000020019", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020019", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705230000020018", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807230000020015", + "intro": "AMS-HT H lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1801210000020017", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700210000020017", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702200000020015", + "intro": "AMS C lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0705230000020024", + "intro": "AMS F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020024", + "intro": "AMS-HT F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020010", + "intro": "AMS C lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806220000020017", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020012", + "intro": "AMS-HT B lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1803200000020020", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702230000020012", + "intro": "AMS C lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0702220000020015", + "intro": "AMS C lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1807200000020010", + "intro": "AMS-HT H lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0700220000020014", + "intro": "AMS A lizdo Nr. 3 gijos jutiklis nerodo signalo." + }, + { + "ecode": "0705210000020021", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701220000020011", + "intro": "AMS B lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805220000020024", + "intro": "AMS-HT F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020010", + "intro": "AMS A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1803200000020014", + "intro": "AMS-HT D lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0701230000020013", + "intro": "AMS B lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1801200000020020", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020010", + "intro": "AMS G lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020010", + "intro": "AMS-HT D lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020010", + "intro": "AMS-HT G lizdo Nr. 1 išstumia giją, kai pasibaigia AMS laiko limitas." + }, + { + "ecode": "1805210000020024", + "intro": "AMS-HT F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020019", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802200000020018", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020014", + "intro": "AMS-HT E lizdo Nr. 4 gijų jutiklis negauna signalo." + }, + { + "ecode": "0701210000020016", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0704200000020010", + "intro": "AMS E lizdo Nr. 1 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0700230000020015", + "intro": "AMS A lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803200000020022", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020024", + "intro": "AMS E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020020", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805220000020014", + "intro": "AMS-HT F lizdo Nr. 3-iosios gijos jutiklis negauna signalo." + }, + { + "ecode": "0701220000020022", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020024", + "intro": "AMS-HT A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702220000020017", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800210000020019", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020024", + "intro": "AMS G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020019", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806210000020012", + "intro": "AMS-HT G lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805230000020012", + "intro": "AMS-HT F lizdo Nr. 4 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0701210000020015", + "intro": "AMS B lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0702210000020011", + "intro": "AMS C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802230000020018", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020022", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805230000020016", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "0707210000020022", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020016", + "intro": "AMS-HT: „lizdo Nr. 1“ pagalbinis variklis prasisuko." + }, + { + "ecode": "1802230000020014", + "intro": "AMS-HT C lizdo Nr. 4-osios gijos jutiklis negauna signalo." + }, + { + "ecode": "1801220000020013", + "intro": "AMS-HT B lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0703230000020011", + "intro": "AMS D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1806200000020021", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020024", + "intro": "AMS-HT D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705220000020023", + "intro": "AMS F lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1804220000020011", + "intro": "AMS-HT E lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1807230000020023", + "intro": "AMS-HT H lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0706210000020023", + "intro": "AMS G lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1804220000020014", + "intro": "AMS-HT E lizdo Nr. 3 gijų jutiklis negauna signalo." + }, + { + "ecode": "0706200000020014", + "intro": "AMS G lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1800210000020010", + "intro": "AMS-HT A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800210000020020", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0701210000020014", + "intro": "AMS B lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1806200000020012", + "intro": "AMS-HT G lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0704230000020024", + "intro": "AMS E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020019", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020020", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0700220000020022", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020013", + "intro": "AMS-HT H lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0702200000020023", + "intro": "AMS C lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1800200000020024", + "intro": "AMS-HT A lizdas: nepavyko pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020020", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803220000020020", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803200000020015", + "intro": "AMS-HT D lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803230000020014", + "intro": "AMS-HT D lizdo Nr. 4-osios gijos jutiklis negauna signalo." + }, + { + "ecode": "1804210000020021", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020015", + "intro": "AMS-HT F lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0705230000020012", + "intro": "AMS F lizdo Nr. 4 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0705220000020017", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020020", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801230000020018", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020022", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801210000020015", + "intro": "AMS-HT B lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0704220000020021", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020016", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1805220000020017", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701230000020017", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703200000020023", + "intro": "AMS D lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1802220000020024", + "intro": "AMS-HT C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020021", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020013", + "intro": "AMS-HT A lizdo Nr. 1 maitinimo bloko variklis negauna signalo." + }, + { + "ecode": "1801210000020014", + "intro": "AMS-HT B lizdo Nr. 2-ojo gijos jutiklis negauna signalo." + }, + { + "ecode": "0705220000020016", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1806230000020017", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020020", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805230000020023", + "intro": "AMS-HT F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0700210000020022", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020020", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0701200000020016", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1804220000020023", + "intro": "AMS-HT E lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0703220000020014", + "intro": "AMS D lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "1801210000020022", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705200000020011", + "intro": "AMS F lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020017", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1806230000020023", + "intro": "AMS-HT G lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0705220000020018", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020022", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020017", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805200000020021", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704230000020010", + "intro": "AMS E lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704220000020013", + "intro": "AMS E lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0703210000020013", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1806210000020020", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0705230000020019", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806230000020016", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1806210000020014", + "intro": "AMS-HT G lizdo Nr. 2 gijų jutiklis negauna signalo." + }, + { + "ecode": "0702200000020018", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0700210000020011", + "intro": "AMS A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803210000020016", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "03001E0000010006", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas, todėl patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0300020000010002", + "intro": "Tinkama purkštuko temperatūra neatitinka normos; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "0300020000010006", + "intro": "Tinkama purkštuvo temperatūra neatitinka normos; galbūt jutiklyje įvyko trumpasis jungimas, todėl patikrinkite, ar jungtis tinkamai įjungta." + }, + { + "ecode": "0707220000020015", + "intro": "AMS H lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0704200000020012", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805200000020016", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "0704200000020024", + "intro": "AMS E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706210000020024", + "intro": "AMS G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700230000020016", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "0703210000020024", + "intro": "AMS D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703220000020016", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800220000020011", + "intro": "AMS-HT A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020021", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701230000020015", + "intro": "AMS B lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1801200000020016", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1803200000020016", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807200000020021", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020024", + "intro": "AMS A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020015", + "intro": "AMS A lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1806230000020015", + "intro": "AMS-HT G lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0705200000020023", + "intro": "AMS F lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806230000020018", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020018", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707220000020014", + "intro": "AMS H lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "0707200000020022", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020023", + "intro": "AMS F lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0701210000020012", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1804220000020010", + "intro": "AMS-HT E lizdo Nr. 3 išstumia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700210000020023", + "intro": "AMS A lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0700200000020020", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701220000020017", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020016", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800210000020015", + "intro": "AMS-HT: lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1800220000020018", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "1801220000020023", + "intro": "AMS-HT B lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0701230000020024", + "intro": "AMS B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705210000020023", + "intro": "AMS F lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1807220000020012", + "intro": "AMS-HT H lizdo Nr. 3 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0704200000020023", + "intro": "AMS E lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1803210000020023", + "intro": "AMS-HT D lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0706220000020017", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020014", + "intro": "AMS G lizdo Nr. 4-osios kaitinamosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1804230000020016", + "intro": "AMS-HT E 4-osios lizdo pagalbinis variklis prasisuko." + }, + { + "ecode": "1802220000020010", + "intro": "AMS-HT C lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1801200000020021", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020019", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1803220000020023", + "intro": "AMS-HT D lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0700220000020012", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1807210000020024", + "intro": "AMS-HT H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020013", + "intro": "AMS C lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0703220000020021", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020011", + "intro": "AMS-HT B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0706210000020015", + "intro": "AMS G lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0706200000020013", + "intro": "AMS G lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1805210000020018", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806200000020016", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "0702230000020023", + "intro": "AMS C lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1802200000020010", + "intro": "AMS-HT C lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706230000020023", + "intro": "AMS G lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1804200000020020", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0705220000020014", + "intro": "AMS F lizdo Nr. 3-iosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1806210000020017", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020019", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702230000020024", + "intro": "AMS C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020014", + "intro": "AMS-HT H lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo." + }, + { + "ecode": "1804200000020018", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020023", + "intro": "AMS A lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0701210000020018", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020013", + "intro": "AMS-HT B lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0706200000020021", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805210000020016", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0702200000020024", + "intro": "AMS C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020022", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020018", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705210000020020", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802200000020016", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1802210000020021", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800220000020010", + "intro": "AMS-HT A lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705220000020013", + "intro": "AMS F lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705200000020024", + "intro": "AMS F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020018", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020022", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020012", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805220000020012", + "intro": "AMS-HT F lizdo Nr. 3 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0707230000020018", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0704220000020015", + "intro": "AMS E lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703220000020020", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804200000020010", + "intro": "AMS-HT E lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0701200000020023", + "intro": "AMS B lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1801230000020020", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805210000020011", + "intro": "AMS-HT F lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020018", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020021", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020024", + "intro": "AMS-HT E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020018", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803220000020022", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020019", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020024", + "intro": "AMS H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701220000020021", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020018", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805200000020014", + "intro": "AMS-HT F lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0702230000020010", + "intro": "AMS C lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704220000020010", + "intro": "AMS E lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1800230000020014", + "intro": "AMS-HT A lizdo Nr. 4 gijų jutiklis neperduoda signalo." + }, + { + "ecode": "1804200000020012", + "intro": "AMS-HT E lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1807200000020019", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700220000020011", + "intro": "AMS A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703220000020013", + "intro": "AMS D lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1804210000020010", + "intro": "AMS-HT E lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700230000020013", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0701230000020010", + "intro": "AMS B lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702220000020014", + "intro": "AMS C lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "1807210000020013", + "intro": "AMS-HT H lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1805220000020019", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807200000020012", + "intro": "AMS-HT H lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1803220000020021", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020010", + "intro": "AMS-HT F lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1802210000020013", + "intro": "AMS-HT C lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0702210000020014", + "intro": "AMS C lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1802200000020012", + "intro": "AMS-HT C lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0702220000020024", + "intro": "AMS C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802220000020011", + "intro": "AMS-HT C lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803220000020011", + "intro": "AMS-HT D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020017", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707220000020022", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020023", + "intro": "AMS-HT: 1-oje lizdoje esantis vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1802210000020024", + "intro": "AMS-HT C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801200000020024", + "intro": "AMS-HT B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802230000020016", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1803230000020016", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1806210000020021", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803220000020014", + "intro": "AMS-HT D lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "0700210000020020", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0707220000020012", + "intro": "AMS H lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805220000020010", + "intro": "AMS-HT F lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701220000020018", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020021", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020011", + "intro": "AMS-HT D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "03001E0000010003", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; kaitintuvas perkaitęs." + }, + { + "ecode": "1807220000020017", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020011", + "intro": "AMS-HT H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702230000020019", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703210000020019", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802210000020011", + "intro": "AMS-HT C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1800220000020015", + "intro": "AMS-HT A lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1801220000020021", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020020", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800230000020020", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1803200000020019", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1802230000020024", + "intro": "AMS-HT C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802230000020022", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700200000020013", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0704200000020016", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1806220000020021", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020020", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707200000020017", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020023", + "intro": "AMS-HT C lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0707210000020013", + "intro": "AMS H lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0704220000020023", + "intro": "AMS E lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806220000020015", + "intro": "AMS-HT G lizdo Nr. 3 gijų jutiklio būsena yra nenormali." + }, + { + "ecode": "1806220000020010", + "intro": "AMS-HT G lizdo Nr. 3 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0702220000020010", + "intro": "AMS C lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1802230000020020", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701210000020023", + "intro": "AMS B lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1805230000020015", + "intro": "AMS-HT F lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703200000020017", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803220000020013", + "intro": "AMS-HT D lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1805220000020021", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803230000020021", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802230000020015", + "intro": "AMS-HT C lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803220000020018", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020010", + "intro": "AMS F lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806230000020012", + "intro": "AMS-HT G lizdo Nr. 4 padavimo bloko variklis užstrigo." + }, + { + "ecode": "1806210000020015", + "intro": "AMS-HT G lizdo Nr. 2 gijų jutiklio būsena yra nenormali." + }, + { + "ecode": "0702210000020015", + "intro": "AMS C lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1800230000020023", + "intro": "AMS-HT: AMS viduje esantis lizdo Nr. 4, skirtas vamzdžiui, yra sulūžęs." + }, + { + "ecode": "0704200000020014", + "intro": "AMS E lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0702200000020020", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703210000020016", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0704230000020015", + "intro": "AMS E lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1802220000020021", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020019", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0700200000020017", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020020", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707210000020011", + "intro": "AMS H lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0706200000020010", + "intro": "AMS G lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704230000020016", + "intro": "AMS E 4-osios lizdo pagalbinis variklis prasisuko." + }, + { + "ecode": "0702230000020017", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1806200000020013", + "intro": "AMS-HT G lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1801230000020022", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020018", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020012", + "intro": "AMS G lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0703230000020013", + "intro": "AMS D lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1804220000020018", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020024", + "intro": "AMS-HT H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020011", + "intro": "AMS-HT G lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701220000020023", + "intro": "AMS B lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0701220000020013", + "intro": "AMS B lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705200000020018", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020011", + "intro": "AMS D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020020", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800220000020021", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020023", + "intro": "AMS-HT H lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0702210000020022", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020017", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0300030000020002", + "intro": "Kaitinimo galvutės aušinimo ventiliatorius veikia lėtai. Gali būti, kad jis užsikimšęs. Patikrinkite, ar nėra nešvarumų, ir, jei reikia, išvalykite." + }, + { + "ecode": "1801200000020022", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020020", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800200000020012", + "intro": "AMS-HT: „lizdo Nr. 1“ padavimo bloko variklis užstrigo." + }, + { + "ecode": "1807230000020022", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803220000020016", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800220000020019", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704210000020014", + "intro": "AMS E lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "0703230000020016", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "0703200000020010", + "intro": "AMS D lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803200000020021", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020022", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020022", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704210000020016", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1803220000020012", + "intro": "AMS-HT D lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0707210000020014", + "intro": "AMS H lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "0705210000020014", + "intro": "AMS F lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1801230000020012", + "intro": "AMS-HT B lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1803230000020012", + "intro": "AMS-HT D lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805230000020018", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700200000020016", + "intro": "AMS: lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1802200000020020", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702210000020023", + "intro": "AMS C lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806230000020019", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0701200000020012", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1800200000020019", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020024", + "intro": "AMS-HT B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020020", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1801220000020012", + "intro": "AMS-HT B lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1802220000020019", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020016", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0707230000020015", + "intro": "AMS H lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1801200000020010", + "intro": "AMS-HT B lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706210000020018", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020020", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020021", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706210000020013", + "intro": "AMS G lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1807200000020015", + "intro": "AMS-HT H lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703210000020014", + "intro": "AMS D lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1805200000020020", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0705230000020010", + "intro": "AMS F lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0703200000020012", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0700230000020017", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020024", + "intro": "AMS A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700200000020011", + "intro": "AMS A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800220000020017", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020021", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir spausdinimo galvutės." + }, + { + "ecode": "1803220000020024", + "intro": "AMS-HT D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806220000020013", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1802230000020012", + "intro": "AMS-HT C lizdo Nr. 4 padavimo bloko variklis užstrigo." + }, + { + "ecode": "0704210000020017", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020021", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707200000020011", + "intro": "AMS H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801220000020014", + "intro": "AMS-HT B lizdo Nr. 3-iosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1801210000020024", + "intro": "AMS-HT B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802220000020015", + "intro": "AMS-HT C lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0705200000020020", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706230000020012", + "intro": "AMS G lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1800200000020011", + "intro": "AMS-HT A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801230000020010", + "intro": "AMS-HT B lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0703210000020015", + "intro": "AMS D lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703200000020024", + "intro": "AMS D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705230000020022", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703210000020011", + "intro": "AMS D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020016", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807210000020010", + "intro": "AMS-HT H lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807230000020024", + "intro": "AMS-HT H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020019", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801230000020021", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "03001E0000010009", + "intro": "Kairiojo purkštuko temperatūros reguliavimas veikia netinkamai; galbūt kaitinimo galvutės nėra įmontuotas. Jei norite įkaitinti kaitinimo galvutės, kai jis nėra įmontuotas, nustatymų puslapyje įjunkite techninės priežiūros režimą." + }, + { + "ecode": "1805210000020023", + "intro": "AMS-HT F lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1800200000020021", + "intro": "AMS-HT A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703230000020023", + "intro": "AMS D lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1801230000020017", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020020", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020013", + "intro": "AMS E lizdo Nr. 4 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1804230000020023", + "intro": "AMS-HT E lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0702230000020015", + "intro": "AMS C lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0704230000020023", + "intro": "AMS E lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1807200000020022", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704210000020023", + "intro": "AMS E lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1807210000020023", + "intro": "AMS-HT H lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0706200000020017", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805210000020010", + "intro": "AMS-HT F lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1804210000020015", + "intro": "AMS-HT E lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1807210000020018", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806220000020014", + "intro": "AMS-HT G lizdo Nr. 3 gijų jutiklis negauna signalo." + }, + { + "ecode": "1800220000020020", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706210000020016", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807220000020023", + "intro": "AMS-HT H lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1802200000020015", + "intro": "AMS-HT C lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1804220000020024", + "intro": "AMS-HT E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801230000020011", + "intro": "AMS-HT B lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020010", + "intro": "AMS-HT A lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0701200000020011", + "intro": "AMS B lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805220000020013", + "intro": "AMS-HT F lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705200000020016", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1806200000020017", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707230000020017", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804200000020022", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020011", + "intro": "AMS-HT B lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704220000020014", + "intro": "AMS E lizdo Nr. 3 gijos jutiklis negauna signalo." + }, + { + "ecode": "1805230000020024", + "intro": "AMS-HT F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020024", + "intro": "AMS B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020023", + "intro": "AMS H lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1803230000020015", + "intro": "AMS-HT D lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0706230000020022", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020021", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804220000020017", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020020", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0703230000020017", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800200000020017", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020016", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0703230000020022", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020018", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020018", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707230000020012", + "intro": "AMS H lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1804230000020018", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020011", + "intro": "AMS-HT D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020022", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020012", + "intro": "AMS-HT E lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805210000020017", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707210000020015", + "intro": "AMS H lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1807220000020018", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707230000020013", + "intro": "AMS H lizdo Nr. 4 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0707220000020018", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020010", + "intro": "AMS-HT B lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806230000020010", + "intro": "AMS-HT G lizdo Nr. 4 tiekia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807200000020016", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "0701210000020010", + "intro": "AMS B lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020021", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020024", + "intro": "AMS-HT G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705210000020012", + "intro": "AMS F lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1800210000020016", + "intro": "AMS-HT: lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0300020000010001", + "intro": "Netinkama purkštuvo temperatūra; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0703230000020010", + "intro": "AMS D lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1807210000020021", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800210000020012", + "intro": "AMS-HT: lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0706210000020021", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020019", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700200000020012", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1804210000020011", + "intro": "AMS-HT E lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805220000020022", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800230000020015", + "intro": "AMS-HT A lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1802200000020011", + "intro": "AMS-HT C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020019", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704200000020019", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704230000020011", + "intro": "AMS E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020011", + "intro": "AMS H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801230000020024", + "intro": "AMS-HT B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704220000020017", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706220000020013", + "intro": "AMS G lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0704210000020024", + "intro": "AMS E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020017", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020021", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800220000020013", + "intro": "AMS-HT A lizdo Nr. 3 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1800230000020016", + "intro": "AMS-HT: lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1802220000020018", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803200000020012", + "intro": "AMS-HT D lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0700210000020016", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0703200000020022", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020020", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1801210000020018", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802230000020023", + "intro": "AMS-HT C lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1806200000020024", + "intro": "AMS-HT G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020017", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707200000020013", + "intro": "AMS H lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1803220000020017", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020021", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805210000020015", + "intro": "AMS-HT F lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1800200000020010", + "intro": "AMS-HT A lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702200000020011", + "intro": "AMS C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700220000020010", + "intro": "AMS A lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701200000020017", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803230000020017", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020021", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703230000020015", + "intro": "AMS D lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1804230000020010", + "intro": "AMS-HT E lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0703220000020010", + "intro": "AMS D lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020019", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020019", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020024", + "intro": "AMS H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020019", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800230000020011", + "intro": "AMS-HT A lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0700230000020022", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802220000020012", + "intro": "AMS-HT C lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0700200000020010", + "intro": "AMS A lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1805220000020023", + "intro": "AMS-HT F lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1800230000020019", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020019", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0706230000020013", + "intro": "AMS G lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1800220000020023", + "intro": "AMS-HT: 3-ioje lizdoje AMS viduje esantis vamzdelis yra sulūžęs." + }, + { + "ecode": "0703200000020014", + "intro": "AMS D lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0707200000020023", + "intro": "AMS H lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0705220000020022", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020021", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020021", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020010", + "intro": "AMS C lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802200000020021", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707210000020010", + "intro": "AMS H lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0707200000020016", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1805210000020012", + "intro": "AMS-HT F lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "03001E0000010001", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0300020000010003", + "intro": "Netinkama purkštuko temperatūra; kaitintuvas perkaitęs." + }, + { + "ecode": "0702230000020018", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020019", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801230000020023", + "intro": "AMS-HT B lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1807210000020015", + "intro": "AMS-HT H lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1807210000020017", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020017", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020011", + "intro": "AMS E lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700210000020014", + "intro": "AMS A lizdo Nr. 2 gijos jutiklis neperduoda signalo." + }, + { + "ecode": "1803210000020011", + "intro": "AMS-HT D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705210000020018", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020021", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706230000020016", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800230000020021", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706200000020023", + "intro": "AMS G lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1801230000020014", + "intro": "AMS-HT B lizdo Nr. 4 gijos jutiklis negauna signalo." + }, + { + "ecode": "0705220000020024", + "intro": "AMS F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806200000020014", + "intro": "AMS-HT G lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1803230000020024", + "intro": "AMS-HT D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1804200000020019", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020019", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020016", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0706210000020010", + "intro": "AMS G lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806220000020012", + "intro": "AMS-HT G lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1803230000020013", + "intro": "AMS-HT D lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0705200000020021", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020011", + "intro": "AMS-HT E lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1806220000020023", + "intro": "AMS-HT G lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0704210000020012", + "intro": "AMS E lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1806200000020019", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0706220000020023", + "intro": "AMS G lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0704210000020020", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701200000020014", + "intro": "AMS B lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0706220000020018", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0705210000020024", + "intro": "AMS F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020020", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806210000020023", + "intro": "AMS-HT G lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0702210000020024", + "intro": "AMS C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706210000020012", + "intro": "AMS G lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0701230000020020", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020010", + "intro": "AMS H lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1802220000020013", + "intro": "AMS-HT C lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0707230000020014", + "intro": "AMS H lizdo Nr. 4-osios kaitinamosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1803230000020018", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805220000020011", + "intro": "AMS-HT F lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1807230000020018", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020020", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700220000020018", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje šalia AMS." + }, + { + "ecode": "0706220000020020", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803210000020019", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020022", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020014", + "intro": "AMS-HT C lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0700220000020024", + "intro": "AMS A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802200000020024", + "intro": "AMS-HT C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020012", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0701210000020019", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020022", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020022", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020015", + "intro": "AMS-HT H lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0707210000020018", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702220000020013", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0701200000020018", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020013", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0707220000020011", + "intro": "AMS H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020018", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701200000020024", + "intro": "AMS B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705220000020015", + "intro": "AMS F lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1807220000020010", + "intro": "AMS-HT H lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0300900000010003", + "intro": "Nesuveikė kameros šildymas. Galbūt maitinimo šaltinio temperatūra yra per aukšta." + }, + { + "ecode": "1802230000020011", + "intro": "AMS-HT C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1804200000020013", + "intro": "AMS-HT E lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1807230000020016", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800210000020024", + "intro": "AMS-HT A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800200000020018", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705220000020010", + "intro": "AMS F lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1804200000020016", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "1801200000020019", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806210000020011", + "intro": "AMS-HT G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020014", + "intro": "AMS-HT A lizdo Nr. 2 gijos jutiklis neperduoda signalo." + }, + { + "ecode": "0706230000020015", + "intro": "AMS G lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1806200000020022", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020023", + "intro": "AMS H lizdo Nr. 2 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0706230000020011", + "intro": "AMS G lizdo Nr. 4 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "1800230000020024", + "intro": "AMS-HT A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704200000020017", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020015", + "intro": "AMS-HT B lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1806230000020013", + "intro": "AMS-HT G lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0702230000020020", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704200000020013", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "1802230000020017", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705200000020015", + "intro": "AMS F lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1801200000020017", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702200000020013", + "intro": "AMS C lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1803210000020010", + "intro": "AMS-HT D lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020020", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020017", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020014", + "intro": "AMS-HT C lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "0703210000020021", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706220000020024", + "intro": "AMS G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020012", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1806210000020024", + "intro": "AMS-HT G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800230000020018", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805220000020015", + "intro": "AMS-HT F lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1806220000020018", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802210000020017", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802200000020013", + "intro": "AMS-HT C lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0706230000020020", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinimo elemento buferio." + }, + { + "ecode": "0700220000020015", + "intro": "AMS A lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0700230000020010", + "intro": "AMS A lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701230000020019", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704200000020018", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0704230000020021", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020014", + "intro": "AMS-HT G lizdo Nr. 4 gijų jutiklis negauna signalo." + }, + { + "ecode": "0707210000020012", + "intro": "AMS H lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0702230000020016", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1802210000020010", + "intro": "AMS-HT C lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704230000020018", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1805230000020013", + "intro": "AMS-HT F lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0707210000020017", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704230000020014", + "intro": "AMS E lizdo Nr. 4-osios gijos jutiklis negauna signalo." + }, + { + "ecode": "0707210000020016", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0701220000020019", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807220000020014", + "intro": "AMS-HT H lizdo Nr. 3 gijų jutiklis negauna signalo." + }, + { + "ecode": "1806220000020024", + "intro": "AMS-HT G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707200000020010", + "intro": "AMS H lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802220000020016", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "0707230000020010", + "intro": "AMS H lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700210000020019", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700200000020024", + "intro": "AMS A lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020017", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707200000020015", + "intro": "AMS H lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0706230000020019", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0703210000020012", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0704230000020019", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704220000020012", + "intro": "AMS E lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0705220000020021", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020021", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300900000010001", + "intro": "Nesuveikė kameros šildymas. Šildytuvas gali nepūsti karšto oro." + }, + { + "ecode": "0300900000010002", + "intro": "Kameros šildymas neveikia. Galimos priežastys: kamera nėra visiškai uždara, aplinkos temperatūra per žema arba užsikimšęs maitinimo bloko šilumos išsklaidymo angos ventiliacijos kanalas." + }, + { + "ecode": "0706200000020016", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis prasisuko." + }, + { + "ecode": "0700230000020020", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807210000020011", + "intro": "AMS-HT H lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700220000020016", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1804220000020013", + "intro": "AMS-HT E lizdo Nr. 3 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0701230000020023", + "intro": "AMS B lizdo Nr. 4 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "1803200000020023", + "intro": "AMS-HT D lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0704200000020022", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703230000020014", + "intro": "AMS D lizdo Nr. 4-osios gijos jutiklis negauna signalo." + }, + { + "ecode": "0701230000020012", + "intro": "AMS B lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1801210000020016", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1807230000020020", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703210000020017", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805200000020013", + "intro": "AMS-HT F lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0704220000020016", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis prasisuko." + }, + { + "ecode": "1805230000020022", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807200000020013", + "intro": "AMS-HT H lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1805210000020020", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704230000020020", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "1802230000020013", + "intro": "AMS-HT C lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "0702220000020020", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807230000020012", + "intro": "AMS-HT H lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0702200000020017", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703200000020018", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1801230000020016", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "0702220000020019", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020014", + "intro": "AMS H lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "0701210000020020", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703230000020012", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1805210000020013", + "intro": "AMS-HT F lizdo Nr. 2 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1802230000020019", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020021", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706210000020014", + "intro": "AMS G lizdo Nr. 2 gijos jutiklis negauna signalo." + }, + { + "ecode": "1801230000020015", + "intro": "AMS-HT B lizdo Nr. 4 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1804230000020017", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020018", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020011", + "intro": "AMS C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805200000020011", + "intro": "AMS-HT F lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020018", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803210000020013", + "intro": "AMS-HT D lizdo Nr. 2 padavimo įrenginio variklis negauna signalo." + }, + { + "ecode": "0701220000020010", + "intro": "AMS B lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020012", + "intro": "AMS-HT E lizdo Nr. 3 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "1807200000020011", + "intro": "AMS-HT H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020019", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1800200000020014", + "intro": "AMS-HT „lizdo Nr. 1“ gijos jutiklis nesiunčia signalo." + }, + { + "ecode": "1802200000020023", + "intro": "AMS-HT C lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0705210000020022", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020018", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803210000020020", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1805200000020022", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805220000020020", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803200000020018", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701220000020014", + "intro": "AMS B lizdo Nr. 3-iosios gijos jutiklis negauna signalo." + }, + { + "ecode": "1804220000020020", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702230000020014", + "intro": "AMS C lizdo Nr. 4 gijos jutiklis negauna signalo." + }, + { + "ecode": "1800220000020014", + "intro": "AMS-HT A lizdo Nr. 3 gijų jutiklis neperduoda signalo." + }, + { + "ecode": "0703200000020013", + "intro": "AMS D lizdo Nr. 1 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1802210000020016", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "0702200000020012", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis užstrigo." + }, + { + "ecode": "0704210000020018", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806230000020020", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0706220000020011", + "intro": "AMS G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1802210000020018", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704200000020015", + "intro": "AMS E lizdo Nr. 1 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1803210000020024", + "intro": "AMS-HT D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020022", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700230000020014", + "intro": "AMS A lizdo Nr. 4 gijų jutiklis nerodo signalo." + }, + { + "ecode": "0706210000020019", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1800210000020017", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804220000020019", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802230000020010", + "intro": "AMS-HT C lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706230000020024", + "intro": "AMS G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701230000020016", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "1803210000020015", + "intro": "AMS-HT D lizdo Nr. 2 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "0703230000020018", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704230000020022", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705220000020011", + "intro": "AMS F lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705230000020013", + "intro": "AMS F lizdo Nr. 4 padavimo bloko variklis negauna signalo." + }, + { + "ecode": "1807210000020016", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis prasisuko." + }, + { + "ecode": "1800200000020020", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1802220000020017", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801220000020020", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704220000020011", + "intro": "AMS E lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701220000020015", + "intro": "AMS B lizdo Nr. 3 gijos jutiklio būsena yra nenormali." + }, + { + "ecode": "1805230000020017", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020018", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807200000020014", + "intro": "AMS-HT H lizdo Nr. 1 gijos jutiklis negauna signalo." + }, + { + "ecode": "1804230000020011", + "intro": "AMS-HT E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701230000020022", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020023", + "intro": "AMS-HT B lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0701200000020020", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804200000020023", + "intro": "AMS-HT E lizdo Nr. 1 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0707220000020023", + "intro": "AMS H lizdo Nr. 3 – vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0704210000020019", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020017", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020022", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700230000020023", + "intro": "AMS: 4-oje lizdoje esantis vamzdelis AMS viduje yra sulūžęs." + }, + { + "ecode": "0707230000020016", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis prasisuko." + }, + { + "ecode": "0C00040000030024", + "intro": "Nustatyta, kad „BirdsEye“ kameros padėtis yra nukrypusi. Siekiant užtikrinti graviravimo tikslumą, rekomenduojama pakartotinai atlikti „BirdsEye“ kameros nustatymą." + }, + { + "ecode": "0500040000020043", + "intro": "Purkštuvo kamera yra nešvari arba užsikimšusi; prašome ją išvalyti ir tęsti darbą." + }, + { + "ecode": "0500040000020041", + "intro": "Lazerinis modulis naudojamas jau ilgą laiką. Prašome jį nedelsiant išvalyti, kad nebūtų sutrikdyta lazerio veikla." + }, + { + "ecode": "0500040000020042", + "intro": "„Live View“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "0700700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0703700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0500060000020031", + "intro": "„ToolHead“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "03009C0000010001", + "intro": "Oro siurblys neaptiktas. Patikrinkite, ar jungtis tinkamai įjungta." + }, + { + "ecode": "1807700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1805700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0706700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1806700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0500060000020061", + "intro": "" + }, + { + "ecode": "0C0001000002001B", + "intro": "" + }, + { + "ecode": "0700700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0703700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0500060000020032", + "intro": "„Nozzle“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300C10000010003", + "intro": "„Airflow System“ nepavyko įjungti lazerio režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0500010000030006", + "intro": "USB atmintinė nėra suformatuota arba į ją negalima įrašyti; prašome suformatuoti USB atmintinę." + }, + { + "ecode": "03009C0000010002", + "intro": "Oro siurblys veikia netinkamai ir gali būti sugadintas." + }, + { + "ecode": "1807700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0705700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1806700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0705700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0706700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1805700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0C00040000020007", + "intro": "„BirdsEye“ kamera ruošiasi darbui. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo tarpu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "0C00040000020023", + "intro": "Nepavyko atlikti storio matavimo – įrankio galvutės kamera negalėjo aptikti medžiagos paviršiaus. Kol kas, prašome nuvalyti įrankio galvutės kamerą, kad išvengtumėte jos užteršimo, ir pašalinti visus daiktus, kurie gali trukdyti jos matomumui." + }, + { + "ecode": "0C00040000020017", + "intro": "Vizualusis žymeklis neaptiktas; prašome medžiagą įklijuoti iš naujo teisingoje vietoje. Tuo tarpu prašome nuvalyti įrankio galvutės kamerą, kad išvengtumėte užteršimo, ir pašalinti visus daiktus, kurie gali trukdyti matomumui." + }, + { + "ecode": "0C00040000020018", + "intro": "Rankos ir akies kalibravimas nepavyko, todėl pjovimo tikslumas galėjo sumažėti. Patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs. Be to, išvalykite pjovimo galvutės kamerą, kad išvengtumėte užteršimo, ir pašalinkite visus objektus, kurie gali trukdyti matyti." + }, + { + "ecode": "0300180000030009", + "intro": "Pirmą kartą atliekamas spausdinimas esant aukštai spausdinimo pagrindo temperatūrai. Siekiant užtikrinti geresnę pirmojo sluoksnio spausdinimo kokybę, automatiškai atliekamas pagrindo išlyginimas esant aukštai temperatūrai." + }, + { + "ecode": "0500060000020051", + "intro": "" + }, + { + "ecode": "0500060000020054", + "intro": "" + }, + { + "ecode": "0500060000020043", + "intro": "" + }, + { + "ecode": "0500060000020042", + "intro": "" + }, + { + "ecode": "0500060000020041", + "intro": "" + }, + { + "ecode": "0500060000020053", + "intro": "" + }, + { + "ecode": "0500060000020044", + "intro": "" + }, + { + "ecode": "0500060000020062", + "intro": "" + }, + { + "ecode": "0500060000020052", + "intro": "" + }, + { + "ecode": "0300260000010002", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio jautrumas yra mažas; jėgos jutiklis gali būti netinkamai sumontuotas." + }, + { + "ecode": "0300C00000010002", + "intro": "Oro sklendės su filtru perjungimo sklendės gedimas: ji gali būti užstrigusi." + }, + { + "ecode": "0300C10000010001", + "intro": "„Airflow System“ nepavyko įjungti aušinimo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C10000010002", + "intro": "„Airflow System“ nepavyko įjungti šildymo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C00000010003", + "intro": "Automatinių viršutinių ventiliacijos angų sklendžių gedimas: jos gali būti užstrigusios." + }, + { + "ecode": "0300C00000010001", + "intro": "Aktyviosios kameros išmetamo oro vožtuvo gedimas: jis gali būti užstrigęs." + }, + { + "ecode": "0584050000010010", + "intro": "Aptiktas nesertifikuotas „AMS-HT E“ arba „AMS-HT E“ Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0582050000010010", + "intro": "Aptiktas nesertifikuotas „AMS-HT C“ arba „AMS-HT C“ Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0587050000010010", + "intro": "Aptiktas nesertifikuotas AMS-HT H arba AMS-HT H Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0C00010000020017", + "intro": "Purkštuvo kameros objektyvas yra nešvarus, o tai gali turėti įtakos dirbtinio intelekto stebėjimo funkcijoms. Prašome kuo greičiau nuvalyti purkštuvo kameros objektyvo paviršių." + }, + { + "ecode": "0583050000010010", + "intro": "Aptiktas nesertifikuotas „AMS-HT D“ arba „AMS-HT D“ Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "0586050000010010", + "intro": "Aptiktas nesertifikuotas AMS-HT G arba AMS-HT G Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0585050000010010", + "intro": "Aptiktas nesertifikuotas „AMS-HT F“ arba „AMS-HT F“ Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "0581050000010010", + "intro": "Aptiktas nesertifikuotas „AMS-HT B“ arba „AMS-HT B“ Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0580050000010010", + "intro": "Nesertifikuotas „AMS-HT A“ arba „AMS-HT A“ Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "0500040000020037", + "intro": "Pjovimo modulis turi būti kalibruotas, kad būtų nustatyta įrankio padėtis. Prieš naudojimą atlikite montavimo kalibravimą. (trukmė – apie 2–4 minutes)" + }, + { + "ecode": "1806700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0705700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1800700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0500010000020001", + "intro": "Medijos tiekimo kanalas veikia netinkamai. Prašome iš naujo paleisti spausdintuvą. Jei keletas bandymų nepavyks, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500010000020003", + "intro": "" + }, + { + "ecode": "0700700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0701700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0702700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0703700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300260000010001", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per mažas. Jutiklis gali būti sumontuotas per toli arba gali būti laisvas." + }, + { + "ecode": "0300280000010001", + "intro": "Pjovimo modulio jėgos jutiklio rodmenys yra nenormalūs. Gali būti, kad nuo įrankio laikiklio nukrito magnetas arba jėgos jutiklis yra sugadintas." + }, + { + "ecode": "0300250000010007", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per didelis. Gali būti, kad jutiklis yra sugadintas arba purkštuvo aušintuvas yra per arti jutiklio." + }, + { + "ecode": "0300260000010007", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per didelis. Jutiklis gali būti sumontuotas per arti arba gali būti laisvas." + }, + { + "ecode": "0300250000010004", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio signalas yra nenormalus. Gali būti, kad jutiklis yra sugadintas arba kad MC-TH ryšys veikia netinkamai." + }, + { + "ecode": "03009D0000020003", + "intro": "Graviravimo lazerio židinio taško Z kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus. Jei problema kartojasi, prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0C00010000020002", + "intro": "Kamera ant spausdinimo galvutės veikia netinkamai. Jei ši problema pasikartoja keletą kartų spausdinimo metu, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "1803700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1805700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1802700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1807700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0C00010000020014", + "intro": "Kamera ant purkštuko veikia netinkamai. Jei ši problema spausdinimo metu pasikartoja keletą kartų, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500050000010009", + "intro": "" + }, + { + "ecode": "0300280000010003", + "intro": "Ryšio sutrikimas tarp pjovimo modulio ir įrankio galvutės atliekant Z ašies grįžimą į pradinę padėtį. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs ar sugadintas, arba įsitikinkite, ar jėgos jutiklio ritė yra nesugadinta." + }, + { + "ecode": "18FE810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FE810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "030025000001000A", + "intro": "Nepavyko atlikti purkštuko poslinkio kalibravimo. gija lipa prie purkštuko, o tai gali turėti įtakos spausdinimo kokybei. Prašome išvalyti purkštuką ir bandyti dar kartą." + }, + { + "ecode": "0300280000010004", + "intro": "Pjovimo modulio jėgos jutiklis veikia netinkamai. Galbūt atsijungė jėgos jutiklio kabelis arba jutiklis yra sugadintas." + }, + { + "ecode": "0500050000010011", + "intro": "Oro siurblys nėra sertifikuotas arba jo Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu negalima dirbti." + }, + { + "ecode": "18FE800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0300250000010001", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per mažas. Galbūt nėra įmontuotas purkštukas arba purkštuko šilumokaitis yra per toli nuo jutiklio." + }, + { + "ecode": "0C00040000010005", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0300260000010004", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio signalas yra nenormalus. Jutiklis gali būti sugadintas arba gali būti sutrikęs ryšys su MC-TH." + }, + { + "ecode": "0300280000010007", + "intro": "Nesėkmingas ryšys tarp pjovimo modulio ir įrankio galvutės modulio. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs arba sugadintas. Taip pat priežastis gali būti sugadinta jėgos jutiklio ritė." + }, + { + "ecode": "0300270000010004", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio signalas yra nenormalus. Jutiklis gali būti sugadintas arba laidai gali būti netinkamai prijungti." + }, + { + "ecode": "0300260000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių." + }, + { + "ecode": "0300250000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių." + }, + { + "ecode": "0C00010000010012", + "intro": "Nepavyko kalibruoti „Live View“ kameros, todėl kalibravimo rezultato nebuvo galima išsaugoti. Prašome pabandyti kalibruoti iš naujo. Jei kalibravimas nuolat nepavyksta, kreipkitės į klientų aptarnavimo komandą." + }, + { + "ecode": "1804700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0707700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0706700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0704700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1801700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0500050000010008", + "intro": "" + }, + { + "ecode": "18FE800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FE800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FF800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FF810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "030026000001000B", + "intro": "Nepavyko nustatyti purkštuko buvimo: kairysis ekstruderių purkštukas neįmontuotas arba įmontuotas netinkamai." + }, + { + "ecode": "030025000001000B", + "intro": "Nepavyko nustatyti purkštuko buvimo: dešinysis ekstruderių purkštukas neįmontuotas arba įmontuotas netinkamai." + }, + { + "ecode": "0500050000010012", + "intro": "Pjovimo modulis nėra sertifikuotas arba jo Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "03000F0000010001", + "intro": "Aptikti neįprasti akselerometro duomenys. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500030000020011", + "intro": "" + }, + { + "ecode": "0500030000020013", + "intro": "" + }, + { + "ecode": "0500030000020018", + "intro": "" + }, + { + "ecode": "0C00010000010005", + "intro": "„Toolhead Camera“ parametras yra nenormalus. Prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0C00020000020006", + "intro": "Atrodo, kad purkštuko aukštis yra per didelis. Patikrinkite, ar prie purkštuko nėra likusių Gijos likučių." + }, + { + "ecode": "0702800000010004", + "intro": "AMS C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FE800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "0702810000010004", + "intro": "AMS C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "07FF810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0701800000010004", + "intro": "AMS B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FF810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "0704800000010004", + "intro": "AMS E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1803810000010004", + "intro": "AMS-HT D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0707810000010004", + "intro": "AMS H Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1805810000010004", + "intro": "AMS-HT F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1804810000010004", + "intro": "AMS-HT E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1801800000010004", + "intro": "AMS-HT B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0705810000010004", + "intro": "AMS F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1800400000020001", + "intro": "Prarastas gijos buferio padėties signalas: gali būti sutrikęs kabelis arba padėties jutiklis." + }, + { + "ecode": "1800510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0705700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1803700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800550000010004", + "intro": "AMS-HT A ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1803550000010004", + "intro": "AMS-HT D ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0706550000010004", + "intro": "AMS G ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0300910000010002", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad šildytuve yra atvira grandinė arba perdegė terminis saugiklis." + }, + { + "ecode": "0500030000020010", + "intro": "" + }, + { + "ecode": "0500030000020014", + "intro": "" + }, + { + "ecode": "0500030000020015", + "intro": "" + }, + { + "ecode": "0500030000020016", + "intro": "" + }, + { + "ecode": "0500030000020017", + "intro": "" + }, + { + "ecode": "0700400000020001", + "intro": "Prarastas gijos buferio padėties signalas: gali būti sutrikęs kabelis arba padėties jutiklis." + }, + { + "ecode": "0700400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "0700510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0700700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0701700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0702700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0703700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0500060000020007", + "intro": "" + }, + { + "ecode": "07FE810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "0700800000010004", + "intro": "AMS A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FE810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0500060000020005", + "intro": "" + }, + { + "ecode": "0300C30000010001", + "intro": "„Active Chamber Exhaust“ srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0700810000010004", + "intro": "AMS A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "07FF800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "0703810000010004", + "intro": "AMS D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701810000010004", + "intro": "AMS B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300950000010006", + "intro": "Lazerinis modulis neaptiktas: modulis galėjo nukristi arba greito atsegimo svirtis gali būti neužfiksuota." + }, + { + "ecode": "07FE800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1800810000010004", + "intro": "AMS-HT A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0705800000010004", + "intro": "AMS F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1805800000010004", + "intro": "AMS-HT F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800800000010004", + "intro": "AMS-HT A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802810000010004", + "intro": "AMS-HT C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0704810000010004", + "intro": "AMS E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1807800000010004", + "intro": "AMS-HT H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802800000010004", + "intro": "AMS-HT C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1804800000010004", + "intro": "AMS-HT E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0707800000010004", + "intro": "AMS H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1807810000010004", + "intro": "AMS-HT H Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "0706810000010004", + "intro": "AMS G Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "1806810000010004", + "intro": "AMS-HT G Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1806800000010004", + "intro": "AMS-HT G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706800000010004", + "intro": "AMS G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "18FE800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "1802700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0707700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1805700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FF800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "1806700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FE810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "1807700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0704700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "18FF800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1801700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FE810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "18FF810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "18FF810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0500040000020050", + "intro": "Lazerinio saugos langelis nėra įmontuotas." + }, + { + "ecode": "0701550000010004", + "intro": "AMS B ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0707550000010004", + "intro": "AMS H ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0704550000010004", + "intro": "AMS E ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS Setup programą." + }, + { + "ecode": "0705550000010004", + "intro": "AMS F ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1802550000010004", + "intro": "AMS-HT C ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1804550000010004", + "intro": "AMS-HT E ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0702550000010004", + "intro": "AMS C ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1805550000010004", + "intro": "AMS-HT F ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0703550000010004", + "intro": "AMS D ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1801550000010004", + "intro": "AMS-HT B ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1806550000010004", + "intro": "AMS-HT G ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "1807550000010004", + "intro": "AMS-HT H ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0500030000020012", + "intro": "" + }, + { + "ecode": "0300970000030001", + "intro": "Viršutinis dangtis yra atidarytas." + }, + { + "ecode": "0703800000010004", + "intro": "AMS D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1801810000010004", + "intro": "AMS-HT B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1803800000010004", + "intro": "AMS-HT D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "18FE800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1804700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0700550000010004", + "intro": "AMS A ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0C00030000020017", + "intro": "Nepavyko atlikti lazerinio graviravimo Z ašies fokusavimo kalibravimo. Patikrinkite, ar lazerio bandymo medžiaga (350 g kartonas) yra tinkamai padėta, o jos paviršius – švarus ir nesugadintas." + }, + { + "ecode": "0300A40000010002", + "intro": "Dešiniojo Kaitinimo galvutės temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010004", + "intro": "Kameros temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010003", + "intro": "Kairiojo spausdinimo galvutės temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010001", + "intro": "Šildomojo pagrindo temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0C00010000020019", + "intro": "" + }, + { + "ecode": "0C0001000002001A", + "intro": "" + }, + { + "ecode": "0700010000010005", + "intro": "AMS A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0702010000010005", + "intro": "AMS C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701010000010005", + "intro": "AMS B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0703010000010005", + "intro": "AMS D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0C00040000030018", + "intro": "Įrankio galvutės kameros kalibravimas nepavyko, greičiausiai dėl to, kad objektas nebuvo tvirtai pritvirtintas. Šiam pjovimui bus naudojami numatyti parametrai." + }, + { + "ecode": "1800010000010005", + "intro": "AMS-HT A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1803010000010005", + "intro": "AMS-HT D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1805010000010005", + "intro": "AMS-HT F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1802010000010005", + "intro": "AMS-HT C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0705010000010005", + "intro": "AMS F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1801010000010005", + "intro": "AMS-HT B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0706010000010005", + "intro": "AMS G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1806010000010005", + "intro": "AMS-HT G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0707010000010005", + "intro": "AMS H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800240000020009", + "intro": "AMS-HT: Atidarytas priekinis dangtelis. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1807240000020009", + "intro": "AMS-HT H priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1801240000020009", + "intro": "AMS-HT B priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1806240000020009", + "intro": "AMS-HT G priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1802240000020009", + "intro": "AMS-HT C priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1805240000020009", + "intro": "AMS-HT F priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti, kad gija sugertų drėgmę." + }, + { + "ecode": "1804240000020009", + "intro": "AMS-HT E priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1803240000020009", + "intro": "AMS-HT D priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "0707730000020004", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706700000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701710000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704700000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020005", + "intro": "Nepavyko įtraukti AMS E 3-iojo lizdo gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702710000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803720000020002", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805730000020001", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806710000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704730000020004", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020004", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0702720000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020001", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804720000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800720000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020005", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020005", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701700000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020002", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802730000020004", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704720000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801730000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020001", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700720000020002", + "intro": "Nepavyko įtraukti AMS A 3-iojo lizdo gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705700000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804710000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020004", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020005", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807700000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020002", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020001", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700710000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700710000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020005", + "intro": "Nepavyko įtraukti AMS-HT G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801710000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020004", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020004", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705710000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807710000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020005", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805720000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020005", + "intro": "Nepavyko įtraukti AMS C Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020001", + "intro": "Nepavyko ištraukti AMS-HT B Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020005", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020004", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705700000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020001", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804730000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020005", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020002", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0707720000020002", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700720000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801710000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806730000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706720000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801730000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802710000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020002", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020004", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020005", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų. Prašome nukirpti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706720000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020002", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807720000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803700000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701710000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707730000020005", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801720000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020002", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020002", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020001", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801720000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802700000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703710000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706730000020001", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806700000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020002", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800720000020005", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706700000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1800700000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707720000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802710000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020005", + "intro": "Nepavyko įtraukti AMS G 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702720000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020002", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807700000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804730000020004", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijų. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705730000020001", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704720000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0704710000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707700000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020005", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805720000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0701730000020001", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700710000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803730000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804700000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703700000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0701710000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804010000010005", + "intro": "AMS-HT E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1807010000010005", + "intro": "AMS-HT H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0704010000010005", + "intro": "AMS E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701710000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707700000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701730000020004", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020001", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020005", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1802700000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804710000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804730000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705720000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804730000020001", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700730000020001", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802720000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1806710000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703730000020005", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020002", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803720000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700700000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705730000020004", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700710000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805710000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1807730000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020005", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805710000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700730000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020004", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020004", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020001", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0702700000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800710000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702700000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0700700000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020004", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020002", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020001", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705710000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020001", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807710000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704700000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0500030000010021", + "intro": "Įranga nesuderinama; patikrinkite „Toolhead“ kamerą." + }, + { + "ecode": "0C00010000010001", + "intro": "„Toolhead Camera“ neveikia. Patikrinkite įrangos jungtį." + }, + { + "ecode": "0C00010000010003", + "intro": "Neteisingai sinchronizuojasi spausdinimo galvutės kamera ir MC. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C00010000010004", + "intro": "Atrodo, kad įrankio galvutės kameros objektyvas yra nešvarus. Prašome nuvalyti objektyvą." + }, + { + "ecode": "0C00010000020006", + "intro": "„Toolhead Camera“ parametras yra nenormalus. Kitą kartą spausdindami įjunkite srauto kalibravimą." + }, + { + "ecode": "0C00010000020008", + "intro": "Nepavyko gauti vaizdo iš „Live View“ kameros. Šiuo metu negalima naudotis spagečių ir šiukšlių šachtos užsikimšimo aptikimo funkcija." + }, + { + "ecode": "0500060000020002", + "intro": "" + }, + { + "ecode": "0C00040000010012", + "intro": "„Live View“ kameros duomenų perdavimo ryšys yra sutrikęs." + }, + { + "ecode": "0300950000010001", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti trumpai sujungtas." + }, + { + "ecode": "0500060000020001", + "intro": "" + }, + { + "ecode": "0C00040000020003", + "intro": "Lazerinė platforma nėra tinkamai išlyginta. Prašome įsitikinti, kad visi keturi kampai būtų išlyginti su šildomuoju pagrindu." + }, + { + "ecode": "0300950000010005", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0500060000020012", + "intro": "" + }, + { + "ecode": "0500060000020006", + "intro": "" + }, + { + "ecode": "0500060000020004", + "intro": "„Live View“ kamera nėra įdėta; patikrinkite, ar įranga yra tinkamai prijungta." + }, + { + "ecode": "0C00040000020002", + "intro": "Nepastebėta pjovimo platforma. Prašome uždėti užduočiai reikalingą pjovimo kilimėlį ir tęsti." + }, + { + "ecode": "0300950000010003", + "intro": "Lazerinio modulio perkaitimas" + }, + { + "ecode": "0500060000020022", + "intro": "" + }, + { + "ecode": "0300950000010004", + "intro": "Lazerinio modulio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0500060000020033", + "intro": "„BirdsEye“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0500060000020003", + "intro": "" + }, + { + "ecode": "0300950000010002", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti atjungtas." + }, + { + "ecode": "0C0001000003000C", + "intro": "„Nozzle Camera“ temperatūra yra per aukšta, todėl dirbtinio intelekto atpažinimo funkcija sustabdyta. Funkcija automatiškai vėl pradės veikti, kai temperatūra normalizuosis." + }, + { + "ecode": "0C00030000020014", + "intro": "Rekomenduojama kalibruoti „Live View“ kamerą, kad būtų padidintas svetimkūnių aptikimo tikslumas. Spustelėkite spausdintuvo ekrane „Nustatymai > Kalibravimas“. Jei įdiegtas lazerinis arba pjovimo modulis, prieš kalibravimą jį išimkite." + }, + { + "ecode": "0C00030000020016", + "intro": "Svetimų objektų aptikimo funkcija neveikia, o „Live View“ kameros serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "050005000001000D", + "intro": "„BirdsEye“ kamera nėra sertifikuota. Prašome naudoti „Bambu Lab“ priedus." + }, + { + "ecode": "0C00010000010018", + "intro": "„BirdsEye“ kamera nėra sertifikuota, todėl su ja susijusios funkcijos neveikia." + }, + { + "ecode": "050001000001000A", + "intro": "" + }, + { + "ecode": "0300950000010008", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0503050000010010", + "intro": "Aptiktas nesertifikuotas AMS D arba AMS D Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0C00030000020012", + "intro": "Svetimų objektų aptikimo funkcija neveikia. „Live View“ kamera turi būti kalibruota. Spauskite spausdintuvo ekrane „Nustatymai > Kalibravimas“. Jei įdiegtas lazerinis arba pjovimo modulis, prieš kalibravimą jį išimkite." + }, + { + "ecode": "0500050000010010", + "intro": "Nesertifikuotas AMS A arba AMS A Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "0505050000010010", + "intro": "Aptiktas nesertifikuotas AMS F arba AMS F Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0501050000010010", + "intro": "Aptiktas nesertifikuotas AMS B arba AMS B Aparatinė programinė įranga neatnaujinta. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0506050000010010", + "intro": "Aptiktas nesertifikuotas AMS G arba neatsinaujinta AMS G Aparatinė programinė įranga. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0504050000010010", + "intro": "Aptiktas nesertifikuotas AMS E arba neatsinaujinta AMS E Aparatinė programinė įranga. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "0507050000010010", + "intro": "Aptiktas nesertifikuotas AMS H arba AMS H Aparatinė programinė įranga neatnaujinta. Su šiuo spausdintuvu dirbti neįmanoma." + }, + { + "ecode": "0500040000020031", + "intro": "Prieš pradedant naudoti lazerio/pjaustymo modulį, reikia nustatyti „BirdsEye“ kameros padėtį. Atlikite nustatymus, kad kalibruotumėte kamerą." + }, + { + "ecode": "0502050000010010", + "intro": "Aptiktas nesertifikuotas AMS C arba neatsinaujinta AMS C Aparatinė programinė įranga. Negalima naudoti šio spausdintuvo." + }, + { + "ecode": "07FF800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "18FF800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "0703210000020007", + "intro": "AMS D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800200000020007", + "intro": "AMS-HT: A lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701210000020007", + "intro": "AMS B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0703200000020007", + "intro": "AMS D lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702200000020007", + "intro": "AMS C lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701200000020007", + "intro": "AMS B lizdo Nr. 1 išvedimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703230000020007", + "intro": "AMS D lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700220000020007", + "intro": "AMS: A lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0300990000010004", + "intro": "Nerastas reikiamas lazerio saugos langelis. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0300960000010004", + "intro": "Priekinis lazerio apsauginis langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0C00040000020019", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, prašome kreiptis į „Wiki“." + }, + { + "ecode": "0300980000010004", + "intro": "Kairysis lazerio saugos langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "1804210000020007", + "intro": "AMS-HT E lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706230000020007", + "intro": "AMS G lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "1802230000020007", + "intro": "AMS-HT C lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800220000020007", + "intro": "AMS-HT: 3-iojo lizdo išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707200000020007", + "intro": "AMS H lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807230000020007", + "intro": "AMS-HT H Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704210000020007", + "intro": "AMS E lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0707220000020007", + "intro": "AMS H lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802220000020007", + "intro": "AMS-HT C lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707210000020007", + "intro": "AMS H lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803200000020007", + "intro": "AMS-HT D lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806200000020007", + "intro": "AMS-HT G lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705230000020007", + "intro": "AMS F Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1805220000020007", + "intro": "AMS-HT F lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802210000020007", + "intro": "AMS-HT C lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803220000020007", + "intro": "AMS-HT D lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704220000020007", + "intro": "AMS E lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706210000020007", + "intro": "AMS G lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1800550000020001", + "intro": "Aptiktas naujas AMS-HT. Prašome jį sukonfigūruoti, kad būtų galima patikrinti, prie kurio ekstruderių yra prijungtas AMS-HT." + }, + { + "ecode": "03009E0000030001", + "intro": "Šio spausdinimo užduoties „Atvirų durų aptikimo“ lygis bus nustatytas kaip „Pranešimas“." + }, + { + "ecode": "0702210000020007", + "intro": "AMS C lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700230000020007", + "intro": "AMS: A lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701230000020007", + "intro": "AMS B lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0300970000010004", + "intro": "Viršutinė lazerio apsauginė plokštė neaptikta. Įdiekite ją pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0704200000020007", + "intro": "AMS E lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705220000020007", + "intro": "AMS F lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705200000020007", + "intro": "AMS F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807200000020007", + "intro": "AMS-HT H lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807220000020007", + "intro": "AMS-HT H lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800230000020007", + "intro": "AMS-HT: lizdo Nr. 4 išvestinis „Hall“ jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806230000020007", + "intro": "AMS-HT G lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801220000020007", + "intro": "AMS-HT B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707230000020007", + "intro": "AMS H Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1801200000020007", + "intro": "AMS-HT B lizdo Nr. 1 išvedimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807210000020007", + "intro": "AMS-HT H lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1803210000020007", + "intro": "AMS-HT D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706220000020007", + "intro": "AMS G 3-iojo lizdo išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804200000020007", + "intro": "AMS-HT E lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805210000020007", + "intro": "AMS-HT F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1804220000020007", + "intro": "AMS-HT E lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009B0000010003", + "intro": "Avarinio stabdymo mygtukas nėra tinkamai sumontuotas. Norėdami jį sumontuoti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009D0000020001", + "intro": "Nepavyko atlikti graviravimo lazerio židinio taško XY kalibravimo. Prašome nuvalyti lazerio platformos lazerio grįžimo į pradinę padėtį zoną ir pakartotinai atlikti lazerio modulio tvirtinimo kalibravimą." + }, + { + "ecode": "0702230000020007", + "intro": "AMS C lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701220000020007", + "intro": "AMS B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700550000020001", + "intro": "Aptiktas naujas AMS. Prašome jį sukonfigūruoti, kad būtų galima patikrinti, prie kurio ekstruderių yra prijungtas AMS." + }, + { + "ecode": "0702220000020007", + "intro": "AMS C lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703220000020007", + "intro": "AMS D lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700210000020007", + "intro": "AMS: A lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700200000020007", + "intro": "AMS: lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804230000020007", + "intro": "AMS-HT E Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801210000020007", + "intro": "AMS-HT B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805230000020007", + "intro": "AMS-HT F lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704230000020007", + "intro": "AMS E Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806220000020007", + "intro": "AMS-HT G lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800210000020007", + "intro": "AMS-HT: lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805200000020007", + "intro": "AMS-HT F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806210000020007", + "intro": "AMS-HT G lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705210000020007", + "intro": "AMS F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801230000020007", + "intro": "AMS-HT B lizdo Nr. 4 išėjimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803230000020007", + "intro": "AMS-HT D lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802200000020007", + "intro": "AMS-HT C lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706200000020007", + "intro": "AMS G lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009B0000010002", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009B0000010001", + "intro": "Avarinio stabdymo mygtukas nėra įdiegtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009D0000020002", + "intro": "Graviravimo lazerio židinio taško XY kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus." + }, + { + "ecode": "0C00010000010011", + "intro": "Nepavyko kalibruoti „Live View“ kameros, prašome kalibruoti iš naujo. Įsitikinkite, kad spausdinimo plokštė yra tuščia, o kameros vaizdas – aiškus ir tinkamai orientuotas. Jei gedimai kartojasi, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500040000010052", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0500040000010051", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0300090000010001", + "intro": "Ekstruderiui skirto servovariklio grandinė yra atvira. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300090000010002", + "intro": "Ekstruderiui skirtas servovariklis yra trumpai sujungęs. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300090000010003", + "intro": "Ekstruderių servovariklio varža neatitinka normos; galbūt variklis sugedo." + }, + { + "ecode": "0300160000010001", + "intro": "Ekstruderių servovariklio srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300410000010001", + "intro": "Sistemos įtampa yra nestabili. Įjungiama apsaugos nuo elektros tiekimo sutrikimų funkcija." + }, + { + "ecode": "0C00030000020015", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Nustatyta, kad „Live View“ kamera buvo pakeista. Jei įdiegtas lazerinis arba pjovimo modulis, išimkite jį, spausdintuvo ekrane pasirinkite skirtuką „Nustatymai > Kalibravimas“ ir iš naujo kalibruokite „Live View“ kamerą." + }, + { + "ecode": "0701200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS B iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0702200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS C iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1801200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT B iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0705200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS F iki ekstruderio, yra tinkamai prijungtas." + }, + { + "ecode": "0701250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0706250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0705250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0707250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0704250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1803240000010007", + "intro": "AMS-HT D durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "0700200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0703200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1805200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT F iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1802200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT C iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1807200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1803200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0706200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0707200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1806200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1800200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0704200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1804200000020006", + "intro": "Įkeliant giją aptiktas PTFE vamzdelio atjungimas. Patikrinkite, ar PTFE vamzdelis, einantis nuo AMS-HT E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0703250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0702250000020001", + "intro": "Nustatyta, kad AMS naudoja spausdintuvo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1806240000010007", + "intro": "AMS-HT G durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1801240000010007", + "intro": "AMS-HT B durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1805240000010007", + "intro": "AMS-HT F durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1802240000010007", + "intro": "AMS-HT C durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1804240000010007", + "intro": "AMS-HT E durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1807240000010007", + "intro": "AMS-HT H durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1800240000010007", + "intro": "AMS-HT: nustatyta durų aptikimo anomalija; galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "07FF700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš tinkamo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite ekstruzuoti dar kartą." + }, + { + "ecode": "07FE700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš kairiojo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl ekstruzuoti." + }, + { + "ecode": "18FF700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš tinkamo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite ekstruzuoti dar kartą." + }, + { + "ecode": "18FE700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš kairiojo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl ekstruzuoti." + }, + { + "ecode": "0300D00000010002", + "intro": "Peilio laikiklis nukrito; prašome jį vėl pritvirtinti." + }, + { + "ecode": "050005000001000F", + "intro": "Aptiktas nesertifikuotas priedas. Prašome naudoti oficialius priedus." + }, + { + "ecode": "07FE600000020001", + "intro": "Išorinė ritė, prijungta prie kairiojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "07FF600000020001", + "intro": "Išorinė ritė, prijungta prie dešiniojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0300D00000010001", + "intro": "Nukrito pjovimo modulio pagrindas; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300280000010005", + "intro": "Pjovimo režimu nepavyko atlikti Z ašies grįžimo į pradinę padėtį. Patikrinkite, ar Z ašies slankiklyje ir Z ašies sinchroniniame skriemulyje nėra svetimkūnių." + }, + { + "ecode": "18FF600000020001", + "intro": "Išorinė ritė, prijungta prie dešiniojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "050005000001000E", + "intro": "Lazerinis modulis nėra sertifikuotas. Prašome naudoti „Bambu Lab“ priedus." + }, + { + "ecode": "18FE600000020001", + "intro": "Išorinė ritė, prijungta prie kairiojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0300280000010008", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties. Patikrinkite, ar peilio laikiklis juda sklandžiai, ir įsitikinkite, kad šildomojo pagrindo kontaktinėje vietoje nėra jokių svetimkūnių." + }, + { + "ecode": "0C00010000020016", + "intro": "" + }, + { + "ecode": "0500030000020020", + "intro": "USB atmintinės talpa yra per maža, kad būtų galima išsaugoti spausdinimo failus tarpinėje atmintyje." + }, + { + "ecode": "0C00010000020015", + "intro": "" + }, + { + "ecode": "0702010000020006", + "intro": "AMS C: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0703010000020006", + "intro": "AMS D: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0705010000020006", + "intro": "AMS F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1802010000020006", + "intro": "AMS-HT C Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806010000020006", + "intro": "AMS-HT G Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704010000020006", + "intro": "AMS E: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1800010000020006", + "intro": "AMS-HT A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805010000020006", + "intro": "AMS-HT F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500060000020008", + "intro": "" + }, + { + "ecode": "0701010000020006", + "intro": "AMS B: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0700010000020006", + "intro": "AMS A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801010000020006", + "intro": "AMS-HT B Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807010000020006", + "intro": "AMS-HT H Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804010000020006", + "intro": "AMS-HT E Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803010000020006", + "intro": "AMS-HT D Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706010000020006", + "intro": "AMS G: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707010000020006", + "intro": "AMS H: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500050000010007", + "intro": "Nepavyko patikrinti MQTT komandos – atnaujinkite „Studio“ arba „Handy“." + }, + { + "ecode": "0500040000020036", + "intro": "Prijungtas naujas pjovimo modulis. Kad pjovimas būtų tikslesnis, prieš naudojimą jį reikia sukonfigūruoti (trunka apie 3 minutes)." + }, + { + "ecode": "0500040000020035", + "intro": "Norint nustatyti fokusavimo padėtį, reikia kalibruoti lazerinį modulį. Prieš naudojimą atlikite montavimo kalibravimą. (trunka apie 2 minutes)" + }, + { + "ecode": "0300C30000010002", + "intro": "Filtro perjungimo sklendės srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300A10000010001", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad įrenginys atvėstų, arba sumažinti aplinkos temperatūrą." + }, + { + "ecode": "050005000001000B", + "intro": "" + }, + { + "ecode": "050005000001000A", + "intro": "" + }, + { + "ecode": "050005000001000C", + "intro": "" + }, + { + "ecode": "0500010000030005", + "intro": "USB atmintinė veikia tik skaitymo režimu. Vaizdo įrašymo ir „Timelapse“ įrašymo funkcijos neveikia. Pagalbos ieškokite „Wiki“ puslapyje." + }, + { + "ecode": "0500040000020038", + "intro": "Įstumkite pjovimo modulį ir užfiksuokite greito atsegimo svirtį. Jei modulis jau buvo įmontuotas, jis gali būti netinkamai išlygintas. Pabandykite jį įmontuoti iš naujo." + }, + { + "ecode": "0500010000020002", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0500060000020034", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300D00000010003", + "intro": "Atsijungė pjovimo modulio kabelis; patikrinkite kabelio jungtį." + }, + { + "ecode": "18FE800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "1805200000020009", + "intro": "Nepavyko išspausti AMS-HT F lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803200000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805210000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804210000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804220000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "180620000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070522000002000A", + "intro": "Nepavyko sureguliuoti AMS F 3-iojo lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180022000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 3 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180722000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180421000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180422000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "07FF800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "07FE800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "07FE800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "1803210000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 2 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806230000020009", + "intro": "Nepavyko išspausti „AMS-HT G Slot 4“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "1800220000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807230000020009", + "intro": "Nepavyko išspausti AMS-HT H Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802200000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801210000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807210000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800210000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802210000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806220000020009", + "intro": "Nepavyko išspausti „AMS-HT G lizdo Nr. 3“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806200000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804230000020009", + "intro": "Nepavyko išspausti „AMS-HT E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801220000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802220000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803230000020009", + "intro": "Nepavyko išspausti AMS-HT D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807200000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800230000020009", + "intro": "Nepavyko išspausti AMS-HT A Slot 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806210000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805220000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807220000020009", + "intro": "Nepavyko išspausti „AMS-HT H lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803220000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805230000020009", + "intro": "Nepavyko išspausti „AMS-HT F Slot 4“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804200000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801200000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800200000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802230000020009", + "intro": "Nepavyko išspausti AMS-HT C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801230000020009", + "intro": "Nepavyko išspausti AMS-HT B Slot 4 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FF800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "070723000002000A", + "intro": "Nepavyko sureguliuoti AMS H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180222000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070223000002000A", + "intro": "Nepavyko sureguliuoti AMS C 4-osios lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180522000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F 3-iojo lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070722000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070023000002000A", + "intro": "Nepavyko sureguliuoti AMS A 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180020000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180120000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180322000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 3 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180321000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180720000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070122000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070123000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070620000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070321000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070623000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180023000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180521000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180122000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070221000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070323000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070422000002000A", + "intro": "Nepavyko sureguliuoti AMS E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070420000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070121000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070721000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070523000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180420000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180123000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070622000002000A", + "intro": "Nepavyko sureguliuoti AMS G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180323000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070322000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070220000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070320000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180721000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070521000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180520000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070120000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180623000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070720000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180223000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070520000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180320000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070421000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180220000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180621000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180523000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070621000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070020000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070222000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180021000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070423000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070022000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0C0003000002000E", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "180221000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070021000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180622000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180423000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180723000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180121000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0703200000030001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800220000020001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000030001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705200000030001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020005", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "18FE810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0701130000010001", + "intro": "AMS B lizdo Nr. 4-asis variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020005", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0701600000020001", + "intro": "AMS B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0702100000010001", + "intro": "AMS C lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702600000020001", + "intro": "AMS C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0703200000020005", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020008", + "intro": "AMS D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804210000020008", + "intro": "AMS-HT E lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800130000010001", + "intro": "AMS-HT A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800230000030002", + "intro": "AMS-HT: 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804220000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805630000020001", + "intro": "AMS-HT F lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807100000010003", + "intro": "AMS-HT H lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802220000020001", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0705210000020005", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705220000020002", + "intro": "AMS F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806200000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1807230000020002", + "intro": "AMS-HT H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807210000020002", + "intro": "AMS-HT H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802560000030001", + "intro": "AMS-HT C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1807220000020008", + "intro": "AMS-HT H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020008", + "intro": "AMS-HT F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802220000020005", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT D lizdo Nr. 1 gija." + }, + { + "ecode": "1804130000010001", + "intro": "AMS-HT E lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1805120000010001", + "intro": "AMS-HT F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706210000020008", + "intro": "AMS G lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705200000020002", + "intro": "AMS F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020001", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707100000010001", + "intro": "AMS H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0704200000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1801130000010001", + "intro": "AMS-HT B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802110000020002", + "intro": "AMS-HT C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805200000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705130000010001", + "intro": "AMS F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806200000020001", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000020008", + "intro": "AMS D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020008", + "intro": "AMS-HT D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 1 gija." + }, + { + "ecode": "0707210000020001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1804210000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 3 gija." + }, + { + "ecode": "1804560000030001", + "intro": "AMS-HT E šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0707220000030001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704120000010003", + "intro": "AMS E lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705120000010003", + "intro": "AMS F lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704100000010003", + "intro": "AMS E lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1806310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF200000020004", + "intro": "Prašome ištraukti išorinį giją iš dešiniojo ekstruderio." + }, + { + "ecode": "0705210000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707220000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000030001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701100000010001", + "intro": "AMS B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701110000010003", + "intro": "AMS B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702220000030001", + "intro": "Baigėsi AMS C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702610000020001", + "intro": "AMS C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0703120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703210000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703220000020001", + "intro": "AMS D lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801220000020001", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030002", + "intro": "AMS-HT F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000030002", + "intro": "AMS F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000020008", + "intro": "AMS F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020005", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1805210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 2 gija." + }, + { + "ecode": "0707220000020005", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801120000020002", + "intro": "AMS-HT B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020001", + "intro": "AMS-HT H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 3 gija." + }, + { + "ecode": "1805550000010003", + "intro": "AMS-HT F buvo aptiktas neprisijungus prie sistemos, vykstant AMS inicijavimo procesui." + }, + { + "ecode": "1800220000030001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000020001", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803210000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "0707560000030001", + "intro": "AMS H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806550000010003", + "intro": "AMS-HT G buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1801230000030001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000010003", + "intro": "AMS G slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706600000020001", + "intro": "AMS G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1804110000010001", + "intro": "AMS-HT E lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803230000020005", + "intro": "Baigėsi AMS-HT D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707230000020008", + "intro": "AMS H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704130000010001", + "intro": "AMS E slot 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801200000030002", + "intro": "AMS-HT B 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020008", + "intro": "AMS-HT H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000020008", + "intro": "AMS H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700100000010003", + "intro": "AMS A lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0701220000020001", + "intro": "AMS B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701630000020001", + "intro": "AMS B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0702230000020005", + "intro": "Baigėsi AMS C Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703210000020001", + "intro": "AMS D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703220000020005", + "intro": "Baigėsi AMS D 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000030001", + "intro": "Baigėsi AMS D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000030002", + "intro": "AMS-HT G 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804130000010003", + "intro": "AMS-HT E lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806110000010003", + "intro": "AMS-HT G lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805130000010003", + "intro": "AMS-HT F lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802110000010001", + "intro": "AMS-HT C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701210000020008", + "intro": "AMS B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801130000020002", + "intro": "AMS-HT B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803120000010003", + "intro": "AMS-HT D lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803130000020002", + "intro": "AMS-HT D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704630000020001", + "intro": "AMS E Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807110000010003", + "intro": "AMS-HT H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 2 gija elementas." + }, + { + "ecode": "0705200000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806100000010003", + "intro": "AMS-HT G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800210000030002", + "intro": "AMS-HT: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703560000030001", + "intro": "AMS D šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT G lizdo Nr. 1 gija yra nutrūkusi." + }, + { + "ecode": "0704210000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "1807200000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804230000030001", + "intro": "Baigėsi AMS-HT E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704110000010001", + "intro": "AMS E lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800210000020004", + "intro": "AMS-HT A: lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0704210000030001", + "intro": "Baigėsi „AMS E lizdo Nr. 2“ gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000020002", + "intro": "AMS G slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804210000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "1804550000010003", + "intro": "AMS-HT E buvo aptikta neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1806210000020002", + "intro": "AMS-HT G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805210000020001", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0706110000010001", + "intro": "AMS G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 1 gija." + }, + { + "ecode": "0706130000010001", + "intro": "AMS G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802210000030002", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807130000020002", + "intro": "AMS-HT H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020008", + "intro": "AMS D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0704200000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FE200000020002", + "intro": "Kairiajame ekstruderyje neaptikta iš išorinės ritės tiekiamo gijos; įdėkite naują giją." + }, + { + "ecode": "0700220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0701230000030001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702210000020001", + "intro": "AMS C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702210000030001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703110000010001", + "intro": "AMS D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020001", + "intro": "AMS D lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703610000020001", + "intro": "AMS D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0703620000020001", + "intro": "AMS D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0700200000020008", + "intro": "AMS: „lizdo Nr. 1“ įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701200000020008", + "intro": "AMS B lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000030001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000020005", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705210000020001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802100000020002", + "intro": "AMS-HT C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000010001", + "intro": "AMS-HT F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000030002", + "intro": "AMS H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705100000020002", + "intro": "AMS F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800210000020008", + "intro": "AMS-HT: lizdo Nr. 2 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020002", + "intro": "AMS H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704130000020002", + "intro": "AMS E slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803230000030001", + "intro": "Baigėsi AMS-HT D Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020002", + "intro": "AMS-HT B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802550000010003", + "intro": "AMS-HT C buvo aptikta neprisijungus prie sistemos, vykstant AMS inicijavimo procesui." + }, + { + "ecode": "0704230000020003", + "intro": "Gali būti, kad AMS E Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000030001", + "intro": "Baigėsi AMS G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705210000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1806200000030002", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704220000020001", + "intro": "AMS E 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803120000010001", + "intro": "AMS-HT D lizdo Nr. 3 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT D lizdo Nr. 2 gija yra nutrūkusi." + }, + { + "ecode": "0706210000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707120000010001", + "intro": "AMS H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801120000010001", + "intro": "AMS-HT B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801210000020002", + "intro": "AMS-HT B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000030002", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800230000020004", + "intro": "AMS-HT A: 4-oje lizdoje esančioje įrankio galvutėje gali būti nutrūkęs gija." + }, + { + "ecode": "1800230000020005", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806130000010003", + "intro": "AMS-HT G slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1802230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C Slot 4 gija." + }, + { + "ecode": "0705200000020001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1807230000020005", + "intro": "Baigėsi AMS-HT H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805560000030001", + "intro": "AMS-HT F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805210000020008", + "intro": "AMS-HT F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805210000030002", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020004", + "intro": "Gali būti, kad AMS-HT D Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0707200000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000020001", + "intro": "AMS G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807120000010003", + "intro": "AMS-HT H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800220000030002", + "intro": "AMS-HT: 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806560000030001", + "intro": "AMS-HT G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0701230000020008", + "intro": "AMS B lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1806350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700110000020002", + "intro": "AMS A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700200000020003", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700200000020004", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000020001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701100000020002", + "intro": "AMS B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701110000020002", + "intro": "AMS B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000030001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702200000020001", + "intro": "AMS C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703200000020001", + "intro": "AMS D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000030002", + "intro": "AMS D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000030002", + "intro": "AMS D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1801220000030002", + "intro": "AMS-HT B 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802220000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1804120000010001", + "intro": "AMS-HT E 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806210000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707620000020001", + "intro": "AMS H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801210000030002", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020005", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1807110000020002", + "intro": "AMS-HT H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707100000010003", + "intro": "AMS H lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020004", + "intro": "Gali būti, kad AMS G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705220000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1805610000020001", + "intro": "AMS-HT F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806210000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020001", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800120000020002", + "intro": "AMS-HT A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802210000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "0707630000020001", + "intro": "AMS H Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1800220000020002", + "intro": "AMS-HT A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706210000020002", + "intro": "AMS G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801220000020005", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800200000020008", + "intro": "AMS-HT: lizdo Nr. 1 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000030002", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020002", + "intro": "AMS-HT C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706220000020004", + "intro": "Gali būti, kad AMS G 3-iojo lizdo gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020002", + "intro": "AMS G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800110000010003", + "intro": "AMS-HT A lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805230000020005", + "intro": "Baigėsi AMS-HT F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804110000010003", + "intro": "AMS-HT E lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806220000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000030002", + "intro": "AMS E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804200000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1801230000020005", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705200000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "18FF810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "1807350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700110000010001", + "intro": "AMS A lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702200000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702210000020005", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702620000020001", + "intro": "AMS C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0703110000010003", + "intro": "AMS D lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801210000020001", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700560000030001", + "intro": "AMS A šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805120000020002", + "intro": "AMS-HT F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705610000020001", + "intro": "AMS F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806210000030002", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805100000010003", + "intro": "AMS-HT F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707220000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0704120000010001", + "intro": "AMS E lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020001", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802130000010001", + "intro": "AMS-HT C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1806230000030001", + "intro": "Baigėsi AMS-HT G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000030001", + "intro": "Baigėsi AMS H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801620000020001", + "intro": "AMS-HT B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1800130000020002", + "intro": "AMS-HT A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803200000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800230000020002", + "intro": "AMS-HT A 4-oji lizda yra tuščia; įdėkite naują giją." + }, + { + "ecode": "1801100000010001", + "intro": "AMS-HT B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807100000020002", + "intro": "AMS-HT H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000020002", + "intro": "AMS H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802220000020008", + "intro": "AMS-HT C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801230000020001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0707600000020001", + "intro": "AMS H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1805230000030002", + "intro": "AMS-HT F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804200000020004", + "intro": "Gali būti, kad AMS-HT E lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802120000020002", + "intro": "AMS-HT C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000020002", + "intro": "AMS F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805110000010003", + "intro": "AMS-HT F lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030002", + "intro": "AMS-HT H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807210000020008", + "intro": "AMS-HT H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030002", + "intro": "AMS-HT H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1805310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704230000020009", + "intro": "Nepavyko išspausti „AMS E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700210000020003", + "intro": "Gali būti, kad AMS A lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0700230000020003", + "intro": "Gali būti, kad AMS A Slot 4 gija yra nutrūkęs AMS." + }, + { + "ecode": "0701200000030002", + "intro": "AMS B lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 spausdinimo gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803120000020002", + "intro": "AMS-HT D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801110000010001", + "intro": "AMS-HT B lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803600000020001", + "intro": "AMS-HT D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0706220000020001", + "intro": "AMS G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803230000020002", + "intro": "AMS-HT D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803110000010003", + "intro": "AMS-HT D lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706220000020005", + "intro": "Baigėsi AMS G 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant galvutės." + }, + { + "ecode": "1800550000010003", + "intro": "AMS-HT A buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1806110000010001", + "intro": "AMS-HT G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802220000030002", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0707200000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1803230000020001", + "intro": "AMS-HT D Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802100000010003", + "intro": "AMS-HT C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "0705130000020002", + "intro": "AMS F slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804630000020001", + "intro": "AMS-HT E Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1803220000030002", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805230000020002", + "intro": "AMS-HT F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 1 gija." + }, + { + "ecode": "1800200000020004", + "intro": "AMS-HT A: galbūt įrankio galvutėje nutrūko lizdo Nr. 1 gija elementas." + }, + { + "ecode": "1803200000020002", + "intro": "AMS-HT D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800120000010003", + "intro": "AMS-HT A lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000010003", + "intro": "AMS E lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804110000020002", + "intro": "AMS-HT E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000020002", + "intro": "AMS-HT F lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804130000020002", + "intro": "AMS-HT E 4-osios lizdo variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800220000020003", + "intro": "AMS-HT A lizdo Nr. 3 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "0706210000020001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "0705220000020005", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707220000020008", + "intro": "AMS H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807620000020001", + "intro": "AMS-HT H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801210000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1803300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "18FF800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1802300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1802310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700100000010001", + "intro": "AMS A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700100000020002", + "intro": "AMS A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000020002", + "intro": "AMS C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702210000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0702220000030002", + "intro": "AMS C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1805210000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802200000030002", + "intro": "AMS-HT C 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804220000020008", + "intro": "AMS-HT E lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705230000020002", + "intro": "AMS F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800200000020005", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805220000020002", + "intro": "AMS-HT F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020008", + "intro": "AMS G lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "0706200000020002", + "intro": "AMS G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702220000020008", + "intro": "AMS C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030001", + "intro": "Baigėsi AMS-HT H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020002", + "intro": "AMS H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000030002", + "intro": "AMS H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0705100000010003", + "intro": "AMS F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803210000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805210000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800210000020001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803210000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020002", + "intro": "AMS E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802130000010003", + "intro": "AMS-HT C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804210000030002", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704600000020001", + "intro": "AMS E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1800200000030002", + "intro": "AMS-HT: 1-oje lizdoje baigėsi gijos medžiaga, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gijos medžiaga." + }, + { + "ecode": "0705220000030002", + "intro": "AMS F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1802210000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704610000020001", + "intro": "AMS E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806230000020008", + "intro": "AMS-HT G Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706630000020001", + "intro": "AMS G Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1805220000020001", + "intro": "AMS-HT F lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802200000020001", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FE800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0705230000020009", + "intro": "Nepavyko išspausti „AMS F Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0700200000020001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700210000030002", + "intro": "AMS: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701110000010001", + "intro": "AMS B lizdo Nr. 2-ojo variklio sukimasis sutriko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702230000020003", + "intro": "Gali būti, kad AMS C Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0704100000020002", + "intro": "AMS E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807200000020001", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803630000020001", + "intro": "AMS-HT D lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0704560000030001", + "intro": "AMS E šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804230000030002", + "intro": "AMS-HT E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803110000020002", + "intro": "AMS-HT D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010001", + "intro": "AMS F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807210000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1803220000020001", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707210000020008", + "intro": "AMS H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000030001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800120000010001", + "intro": "AMS-HT A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800620000020001", + "intro": "AMS-HT A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801220000020008", + "intro": "AMS-HT B lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706610000020001", + "intro": "AMS G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0707120000020002", + "intro": "AMS H lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010003", + "intro": "AMS F lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807110000010001", + "intro": "AMS-HT H lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801560000030001", + "intro": "AMS-HT B šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706200000030001", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804200000020001", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000030002", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706220000030001", + "intro": "Baigėsi AMS G 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ spausdinimo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0706230000020009", + "intro": "Nepavyko išspausti „AMS G Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706210000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700620000020001", + "intro": "AMS A lizdo Nr. 3 yra perkrautas. Galbūt gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0700630000020001", + "intro": "AMS A Slot 4 yra perkrautas. Galbūt susipynė gija arba įstrigo ritė." + }, + { + "ecode": "0701200000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0701610000020001", + "intro": "AMS B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0702200000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0703100000010003", + "intro": "AMS D lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703230000020003", + "intro": "Gali būti, kad AMS D Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705230000020004", + "intro": "Gali būti, kad AMS F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800220000020008", + "intro": "AMS-HT: 3-iojo lizdo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707130000010003", + "intro": "AMS H slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806610000020001", + "intro": "AMS-HT G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806200000020002", + "intro": "AMS-HT G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 spuldzė yra sulūžusi AMS." + }, + { + "ecode": "0706100000020002", + "intro": "AMS G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800630000020001", + "intro": "AMS-HT A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0704210000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "0705220000030001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707210000030001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020003", + "intro": "Gali būti, kad „AMS-HT G Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1806230000020005", + "intro": "Baigėsi AMS-HT G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804100000010003", + "intro": "AMS-HT E lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020008", + "intro": "AMS D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802220000030001", + "intro": "Baigėsi AMS-HT C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020002", + "intro": "AMS-HT E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020008", + "intro": "AMS-HT G lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704120000020002", + "intro": "AMS E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000010001", + "intro": "AMS F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800100000010003", + "intro": "AMS-HT A lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801200000020001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0705620000020001", + "intro": "AMS F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801230000020008", + "intro": "AMS-HT B lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804220000030002", + "intro": "AMS-HT E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706110000010003", + "intro": "AMS G lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707120000010003", + "intro": "AMS H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807200000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020008", + "intro": "AMS-HT G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705100000010001", + "intro": "AMS F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804230000020002", + "intro": "AMS-HT E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "18FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0707300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000020005", + "intro": "AMS A 3-iojo lizdo gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020001", + "intro": "AMS B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020003", + "intro": "Gali būti, kad AMS B Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000030002", + "intro": "AMS C lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020001", + "intro": "AMS C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020004", + "intro": "Gali būti, kad AMS C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0703100000010001", + "intro": "AMS D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000030002", + "intro": "AMS D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000020004", + "intro": "Gali būti, kad AMS D Slot 4 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0703230000020005", + "intro": "Baigėsi AMS D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802220000020002", + "intro": "AMS-HT C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802610000020001", + "intro": "AMS-HT C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1803100000020002", + "intro": "AMS-HT D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803210000020001", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800220000020005", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707130000020002", + "intro": "AMS H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804200000020002", + "intro": "AMS-HT E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700210000020008", + "intro": "AMS A lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020008", + "intro": "AMS-HT C lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801110000020002", + "intro": "AMS-HT B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B Slot 4 gija." + }, + { + "ecode": "1803220000030001", + "intro": "Baigėsi AMS-HT D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807560000030001", + "intro": "AMS-HT H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706110000020002", + "intro": "AMS G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0706230000020005", + "intro": "Baigėsi AMS G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705130000010003", + "intro": "AMS F slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804220000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801200000020002", + "intro": "AMS-HT B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801110000010003", + "intro": "AMS-HT B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020004", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706200000020001", + "intro": "AMS G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803200000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706120000010001", + "intro": "AMS G lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807630000020001", + "intro": "AMS-HT H Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806230000020001", + "intro": "AMS-HT G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802230000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706230000030002", + "intro": "AMS G lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF200000020001", + "intro": "Išsekė dešiniojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "18FF450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "1803310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1805300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700610000020001", + "intro": "AMS A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0701210000020005", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0701210000030002", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701230000020001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701230000020005", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020008", + "intro": "AMS C lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707130000010001", + "intro": "AMS H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706620000020001", + "intro": "AMS G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807200000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704220000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0704210000020002", + "intro": "AMS E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801100000010003", + "intro": "AMS-HT B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000030002", + "intro": "AMS G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704130000010003", + "intro": "AMS E slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704620000020001", + "intro": "AMS E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801630000020001", + "intro": "AMS-HT B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1804610000020001", + "intro": "AMS-HT E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0706560000030001", + "intro": "AMS G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806120000010003", + "intro": "AMS-HT G lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705230000020005", + "intro": "Baigėsi AMS F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0706120000010003", + "intro": "AMS G lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000030002", + "intro": "AMS-HT B 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802630000020001", + "intro": "AMS-HT C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807220000020002", + "intro": "AMS-HT H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707210000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 kaitinamoji gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "1802230000020002", + "intro": "AMS-HT C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805600000020001", + "intro": "AMS-HT F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806120000010001", + "intro": "AMS-HT G 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704230000020008", + "intro": "AMS E Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805120000010003", + "intro": "AMS-HT F lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020008", + "intro": "AMS-HT F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800100000010001", + "intro": "AMS-HT A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705230000020003", + "intro": "Gali būti, kad AMS F Slot 4 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0707110000010003", + "intro": "AMS H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705210000020002", + "intro": "AMS F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800210000020002", + "intro": "AMS-HT A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806110000020002", + "intro": "AMS-HT G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806130000020002", + "intro": "AMS-HT G lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800230000020001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707210000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0700200000030002", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0700210000020004", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000030001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700220000020003", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700600000020001", + "intro": "AMS A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0701100000010003", + "intro": "AMS B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703100000020002", + "intro": "AMS D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1806600000020001", + "intro": "AMS-HT G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1802620000020001", + "intro": "AMS-HT C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801200000020004", + "intro": "AMS-HT B lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0706100000010003", + "intro": "AMS G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020001", + "intro": "AMS-HT E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803220000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1802600000020001", + "intro": "AMS-HT C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1802100000010001", + "intro": "AMS-HT C lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706210000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "0704200000020001", + "intro": "AMS E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000030001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805230000020001", + "intro": "AMS-HT F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804620000020001", + "intro": "AMS-HT E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1806230000020004", + "intro": "Gali būti, kad AMS-HT G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706210000030002", + "intro": "AMS G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1806100000020002", + "intro": "AMS-HT G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801130000010003", + "intro": "AMS-HT B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804210000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1805620000020001", + "intro": "AMS-HT F lizdo Nr. 3 yra perkrautas. Galbūt gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1804220000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0704100000010001", + "intro": "AMS E lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020008", + "intro": "AMS E lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0706120000020002", + "intro": "AMS G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802230000020004", + "intro": "Gali būti, kad AMS-HT C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707110000020002", + "intro": "AMS H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706100000010001", + "intro": "AMS G lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1800210000020003", + "intro": "AMS-HT A lizdo Nr. 2 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1800110000020002", + "intro": "AMS-HT A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020004", + "intro": "Gali būti, kad AMS-HT H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707610000020001", + "intro": "AMS H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0704230000020001", + "intro": "AMS E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704210000020005", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803130000010001", + "intro": "AMS-HT D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FF810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0707230000020009", + "intro": "Nepavyko išspausti „AMS H Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020004", + "intro": "AMS A Slot 4 gija įrankio galvutėje gali būti nutrūkęs." + }, + { + "ecode": "0700230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0701220000020005", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703220000030002", + "intro": "AMS D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1807610000020001", + "intro": "AMS-HT H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1803230000030002", + "intro": "AMS-HT D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020002", + "intro": "AMS-HT H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000020004", + "intro": "Gali būti, kad AMS-HT F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H Slot 4 gija." + }, + { + "ecode": "1804120000020002", + "intro": "AMS-HT E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000020008", + "intro": "AMS F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020002", + "intro": "AMS-HT D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807220000020001", + "intro": "AMS-HT H lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 3 spuldzės gijas." + }, + { + "ecode": "1800230000020008", + "intro": "AMS-HT: lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707230000020005", + "intro": "Baigėsi AMS H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801550000010003", + "intro": "AMS-HT B buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "0707200000020005", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802230000030002", + "intro": "AMS-HT C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805200000020002", + "intro": "AMS-HT F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801200000020005", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705210000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705210000030001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800600000020001", + "intro": "AMS-HT A lizdo Nr. 1 yra perkrautas. Galbūt susipynė gija arba įstrigo ritė." + }, + { + "ecode": "0705220000020008", + "intro": "AMS F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802120000010001", + "intro": "AMS-HT C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803610000020001", + "intro": "AMS-HT D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801600000020001", + "intro": "AMS-HT B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B lizdo Nr. 3 gija." + }, + { + "ecode": "0707210000020005", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1803350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0704210000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FE450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0700120000010003", + "intro": "AMS A lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700200000030001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700210000020005", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant spausdintuvo galvutės." + }, + { + "ecode": "0700230000030002", + "intro": "AMS A 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0701620000020001", + "intro": "AMS B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0702220000020001", + "intro": "AMS C lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801100000020002", + "intro": "AMS-HT B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806100000010001", + "intro": "AMS-HT G lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805110000010001", + "intro": "AMS-HT F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803110000010001", + "intro": "AMS-HT D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807120000020002", + "intro": "AMS-HT H lizdo Nr. 3 variklis yra perkrautas. Galbūt gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000030002", + "intro": "AMS H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020008", + "intro": "AMS-HT D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1807220000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1806220000020002", + "intro": "AMS-HT G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806630000020001", + "intro": "AMS-HT G Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807130000010001", + "intro": "AMS-HT H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000020001", + "intro": "AMS H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801210000020008", + "intro": "AMS-HT B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807550000010003", + "intro": "AMS-HT H buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1802210000020001", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0707210000020002", + "intro": "AMS H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704200000030002", + "intro": "AMS E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804210000020002", + "intro": "AMS-HT E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0705220000020001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000020003", + "intro": "AMS-HT A lizdo Nr. 1 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1805230000020003", + "intro": "Gali būti, kad „AMS-HT F Slot 4“ spausdintuvo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1802230000020001", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804230000020003", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "0704300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704220000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1806300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700200000020005", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700220000030002", + "intro": "AMS A 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0701230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gijos gija įtrūko įrankio galvutėje." + }, + { + "ecode": "0702130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000020005", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1801210000020005", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801210000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020001", + "intro": "AMS-HT E lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803560000030001", + "intro": "AMS-HT D šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805100000020002", + "intro": "AMS-HT F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020002", + "intro": "AMS E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704210000030002", + "intro": "AMS E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801120000010003", + "intro": "AMS-HT B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803220000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806210000020008", + "intro": "AMS-HT G lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706200000020008", + "intro": "AMS G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807100000010001", + "intro": "AMS-HT H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1804100000020002", + "intro": "AMS-HT E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804100000010001", + "intro": "AMS-HT E lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807120000010001", + "intro": "AMS-HT H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705200000020008", + "intro": "AMS F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704230000030001", + "intro": "Baigėsi AMS E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000030001", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701560000030001", + "intro": "AMS B šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1800130000010003", + "intro": "AMS-HT A lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707100000020002", + "intro": "AMS H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030002", + "intro": "AMS F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0706220000030002", + "intro": "AMS G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0704230000020005", + "intro": "Baigėsi AMS E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704200000020008", + "intro": "AMS E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707210000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "1806210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT G lizdo Nr. 2 gija." + }, + { + "ecode": "0700220000020008", + "intro": "AMS A 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000030001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705110000020002", + "intro": "AMS F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0707200000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0706220000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE200000020001", + "intro": "Išsekė kairiojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "1800400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0706350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700110000010003", + "intro": "AMS A lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701120000010001", + "intro": "AMS B lizdo Nr. 3-iojo variklio padėtis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702100000020002", + "intro": "AMS C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702210000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702220000020005", + "intro": "Baigėsi AMS C 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0702630000020001", + "intro": "AMS C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0703110000020002", + "intro": "AMS D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703210000030001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800610000020001", + "intro": "AMS-HT A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1800560000030001", + "intro": "AMS-HT A šiuo metu aušinamas sausuoju būdu; prieš pradėdami jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804210000020001", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803620000020001", + "intro": "AMS-HT D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1801200000020008", + "intro": "AMS-HT B lizdo Nr. 1 įvesties Hallo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803210000020002", + "intro": "AMS-HT D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020005", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020005", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1800200000020001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806230000020002", + "intro": "AMS-HT G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020008", + "intro": "AMS A Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020001", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807210000030002", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801220000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803200000030002", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800110000010001", + "intro": "AMS-HT A lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706220000020008", + "intro": "AMS G 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801230000020004", + "intro": "Gali būti, kad AMS-HT B Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1806220000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803210000030002", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805210000020002", + "intro": "AMS-HT F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020002", + "intro": "AMS-HT C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0705600000020001", + "intro": "AMS F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1804230000020005", + "intro": "Baigėsi AMS-HT E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804200000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000020008", + "intro": "AMS C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805100000010001", + "intro": "AMS-HT F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800220000020004", + "intro": "AMS-HT A lizdo Nr. 3 gija įrankio galvutėje gali būti nutrūkusi." + }, + { + "ecode": "0704220000020008", + "intro": "AMS E lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020005", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805230000020008", + "intro": "AMS-HT F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000020005", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT D lizdo Nr. 3 gija elementas." + }, + { + "ecode": "1804300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700220000020001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000030001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703210000020005", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0703600000020001", + "intro": "AMS D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1802210000020008", + "intro": "AMS-HT C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800100000020002", + "intro": "AMS-HT A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707210000030002", + "intro": "AMS H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020008", + "intro": "AMS C lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801200000020003", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1802130000020002", + "intro": "AMS-HT C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800200000020002", + "intro": "AMS-HT A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803130000010003", + "intro": "AMS-HT D lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706210000020005", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705230000020001", + "intro": "AMS F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805200000020001", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000020008", + "intro": "AMS-HT E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704220000030002", + "intro": "AMS E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806130000010001", + "intro": "AMS-HT G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804120000010003", + "intro": "AMS-HT E lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 2 gija." + }, + { + "ecode": "1804210000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1807600000020001", + "intro": "AMS-HT H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1802200000020008", + "intro": "AMS-HT C lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706210000030001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705200000030002", + "intro": "AMS F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0707200000020001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1805210000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000020002", + "intro": "AMS E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020002", + "intro": "AMS G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802110000010003", + "intro": "AMS-HT C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020003", + "intro": "Gali būti, kad AMS G Slot 4 gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803230000020003", + "intro": "Gali būti, kad „AMS-HT D Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1801610000020001", + "intro": "AMS-HT B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0704230000020004", + "intro": "Gali būti, kad AMS E Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1804600000020001", + "intro": "AMS-HT E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0702560000030001", + "intro": "AMS C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1803210000020008", + "intro": "AMS-HT D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000020003", + "intro": "AMS-HT A Slot 4 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1806120000020002", + "intro": "AMS-HT G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806620000020001", + "intro": "AMS-HT G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0705230000030001", + "intro": "Baigėsi AMS F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805110000020002", + "intro": "AMS-HT F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707230000020003", + "intro": "Gali būti, kad AMS H Slot 4 kaitinamoji gija yra sulūžusi AMS." + }, + { + "ecode": "18FF200000020002", + "intro": "Dešiniame ekstruderyje neaptikta išorinės ritės gijos; įdėkite naują giją." + }, + { + "ecode": "1801310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1807300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705220000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700130000010003", + "intro": "AMS A lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija yra nutrūkusi spausdinimo galvutėje." + }, + { + "ecode": "0702100000010003", + "intro": "AMS C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702110000010001", + "intro": "AMS C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000010003", + "intro": "AMS C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000030001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000030002", + "intro": "AMS C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702230000030002", + "intro": "AMS C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0703210000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703630000020001", + "intro": "AMS D Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "0707110000010001", + "intro": "AMS H lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807130000010003", + "intro": "AMS-HT H lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803550000010003", + "intro": "AMS-HT D buvo aptikta neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "0701220000020008", + "intro": "AMS B lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020008", + "intro": "AMS-HT D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705200000020005", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806220000020003", + "intro": "Gali būti, kad „AMS-HT G lizdo Nr. 3“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0705200000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1802120000010003", + "intro": "AMS-HT C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000020002", + "intro": "AMS-HT B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000030001", + "intro": "Baigėsi AMS-HT F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020005", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804230000020008", + "intro": "AMS-HT E Slot 4 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0705560000030001", + "intro": "AMS F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0705220000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "0705630000020001", + "intro": "AMS F Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba ritė įstrigo." + }, + { + "ecode": "1807200000030002", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807230000020008", + "intro": "AMS-HT H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803100000010003", + "intro": "AMS-HT D lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000020002", + "intro": "AMS E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704200000030001", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020004", + "intro": "Gali būti, kad AMS H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1803100000010001", + "intro": "AMS-HT D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "18FE810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "0706200000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 1“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FE200000020004", + "intro": "Prašome ištraukti išorinį giją iš kairiojo ekstruderio." + }, + { + "ecode": "0300C20000010002", + "intro": "Filtro perjungimo sklendės Hallo jutiklio gedimas: patikrinkite, ar laidai nėra atsipalaidavę." + }, + { + "ecode": "0300930000010006", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis oro įvade, turi atvirą grandinę." + }, + { + "ecode": "0300930000010005", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis oro įvade, yra trumpai sujungęs." + }, + { + "ecode": "07FE200000020002", + "intro": "Kairiajame ekstruderyje neaptikta iš išorinės ritės tiekiamo gijos; įdėkite naują giją." + }, + { + "ecode": "07FF200000020002", + "intro": "Dešiniame ekstruderyje neaptikta išorinės ritės gijos; įdėkite naują giją." + }, + { + "ecode": "0C00010000010010", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Patikrinkite, ar šildomasis stalas yra švarus, ir įsitikinkite, kad kameros vaizdas yra aiškus ir be nešvarumų. Atlikę šiuos veiksmus, atlikite kalibravimą iš naujo." + }, + { + "ecode": "0C0001000001000F", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00010000010013", + "intro": "Nepavyko kalibruoti „Live View“ kameros, o jos serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "050004000001004F", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0C00040000010020", + "intro": "Šildomojo pagrindo vizualusis žymeklis yra sugadintas, prašome kreiptis į garantinio aptarnavimo tarnybą." + }, + { + "ecode": "0C00030000020013", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "1200300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS A." + }, + { + "ecode": "1201300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS B." + }, + { + "ecode": "1202300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS C." + }, + { + "ecode": "1203300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS D." + }, + { + "ecode": "0702970000030001", + "intro": "AMS C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0703970000030001", + "intro": "AMS D kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0700970000030001", + "intro": "AMS: Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0701970000030001", + "intro": "AMS B kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0704970000030001", + "intro": "AMS E kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1802970000030001", + "intro": "AMS-HT C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1805970000030001", + "intro": "AMS-HT F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1800970000030001", + "intro": "AMS-HT Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID nuskaitymo." + }, + { + "ecode": "1807970000030001", + "intro": "AMS-HT H Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0706970000030001", + "intro": "AMS G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0705970000030001", + "intro": "AMS F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1803970000030001", + "intro": "AMS-HT D Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "0707970000030001", + "intro": "AMS H kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1806970000030001", + "intro": "AMS-HT G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1804970000030001", + "intro": "AMS-HT E Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "1801970000030001", + "intro": "AMS-HT B kameros temperatūra per aukšta; šiuo metu negalima naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "07FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "07FE450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "07FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "07FF450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0300180000000000", + "intro": "" + }, + { + "ecode": "0C00040000020006", + "intro": "" + }, + { + "ecode": "0300260000000000", + "intro": "" + }, + { + "ecode": "0300250000010008", + "intro": "Dešinioji purkštukė netinkamai liečiasi su kaitinamuoju pagrindu. Patikrinkite, ar ant purkštukės nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukė liečiasi su pagrindu." + }, + { + "ecode": "0300260000010008", + "intro": "Kairysis purkštukas netinkamai liečiasi su kaitinamuoju pagrindu. Patikrinkite, ar ant purkštuko nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukas liečiasi su pagrindu." + }, + { + "ecode": "0700960000020002", + "intro": "AMS A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0701960000020002", + "intro": "AMS B: Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300990000010003", + "intro": "Dešiniojo šoninio lango Hall jutiklis Nr. 2 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0500050000010001", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0702960000020002", + "intro": "AMS C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0703960000010003", + "intro": "AMS D Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0500400000010039", + "intro": "Lazerinio modulio serijinio numerio klaida" + }, + { + "ecode": "0702960000010003", + "intro": "AMS C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0703960000020002", + "intro": "AMS D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300950000010007", + "intro": "Graviravimo lazerio modulis veikia netinkamai; lazeryje gali būti atvira grandinė arba jis gali būti sugadintas." + }, + { + "ecode": "0500400000010040", + "intro": "Pjovimo modulio serijinio numerio klaida" + }, + { + "ecode": "0300990000010002", + "intro": "Dešiniojo šoninio lango Holo jutiklis Nr. 1 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300990000010001", + "intro": "Atrodo, kad dešinysis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0701960000010003", + "intro": "AMS B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0700960000010003", + "intro": "AMS A Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300290000010001", + "intro": "Negalima atpažinti kodavimo šablono; galimos priežastys: šablono iškraipymas, per didelė apšvieta, netinkamai padėta plokštelė..." + }, + { + "ecode": "0300180000010006", + "intro": "Šildomojo pagrindo išlyginimo duomenys yra nenormalūs. Patikrinkite, ar ant šildomojo pagrindo ir Z slankiklio nėra svetimkūnių. Jei yra, pašalinkite juos ir pabandykite dar kartą." + }, + { + "ecode": "0500010000030004", + "intro": "USB atmintinėje nepakanka vietos; prašome išlaisvinti šiek tiek vietos." + }, + { + "ecode": "0C00030000020011", + "intro": "Nepavyko atlikti didelio tikslumo purkštuko poslinkio kalibravimo; prašome pakartotinai atlikti kalibravimą." + }, + { + "ecode": "0703550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0707960000020002", + "intro": "AMS H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1804960000010003", + "intro": "AMS-HT E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0702550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0701550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1807960000010003", + "intro": "AMS-HT H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1806960000010003", + "intro": "AMS-HT G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000010003", + "intro": "AMS E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1803960000020002", + "intro": "AMS-HT D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1803960000010003", + "intro": "AMS-HT D Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804960000020002", + "intro": "AMS-HT E Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1800960000020002", + "intro": "AMS-HT A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300260000010003", + "intro": "Nepavyksta nuskaityti duomenų iš kairiojo ekstruderio jėgos jutiklio; galbūt nutrūko ryšys arba jutiklis yra sugadintas." + }, + { + "ecode": "0300250000010003", + "intro": "Nepavyksta nuskaityti duomenų iš dešiniojo ekstruderio jėgos jutiklio; galbūt nutrūko ryšys arba jutiklis yra sugadintas." + }, + { + "ecode": "1801960000020002", + "intro": "AMS-HT B Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807960000020002", + "intro": "AMS-HT H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806960000020002", + "intro": "AMS-HT G Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1800550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1805960000020002", + "intro": "AMS-HT F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1803550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1805960000010003", + "intro": "AMS-HT F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0705550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0707960000010003", + "intro": "AMS H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1800960000010003", + "intro": "AMS-HT A Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000020002", + "intro": "AMS E Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0705960000010003", + "intro": "AMS F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300250000010002", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio jautrumas yra mažas; galbūt purkštukas sumontuotas netinkamai." + }, + { + "ecode": "1801960000010003", + "intro": "AMS-HT B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0705960000020002", + "intro": "AMS F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0700550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802960000010003", + "intro": "AMS-HT C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0707550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802960000020002", + "intro": "AMS-HT C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1801550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706960000010003", + "intro": "AMS G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1805550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706960000020002", + "intro": "AMS G Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "07FE800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "07FF800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0500010000020009", + "intro": "" + }, + { + "ecode": "0500060000020023", + "intro": "" + }, + { + "ecode": "0500060000020011", + "intro": "" + }, + { + "ecode": "0500020000020003", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700310000020002", + "intro": "AMS A izdo Nr. 2 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703300000020002", + "intro": "AMS D izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700800000010003", + "intro": "AMS A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300960000010001", + "intro": "Atrodo, kad pagrindinis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0500010000020008", + "intro": "" + }, + { + "ecode": "0703900000010003", + "intro": "AMS D Išmetimo vožtuvas 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700800000010002", + "intro": "AMS A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806310000020002", + "intro": "AMS-HT G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705010000020008", + "intro": "AMS F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806810000010002", + "intro": "AMS-HT G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805330000020002", + "intro": "„AMS-HT F lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705320000020002", + "intro": "AMS F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803810000010002", + "intro": "AMS-HT D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "030001000001000D", + "intro": "Anksčiau šildomojo pagrindo šildymo moduliuose įvyko gedimas. Norėdami toliau naudotis spausdintuvu, gedimo šalinimo instrukcijas rasite wiki puslapyje." + }, + { + "ecode": "0300040000020001", + "intro": "Detalės aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300080000010003", + "intro": "„Motor-Z“ varžos rodmenys neatitinka normos; variklis galėjo sugesti." + }, + { + "ecode": "0500040000010002", + "intro": "Nepavyko pranešti apie spausdinimo būseną; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000030008", + "intro": "Atrodo, kad durys yra atidarytos." + }, + { + "ecode": "0500040000030009", + "intro": "Spausdinimo platformos temperatūra viršija gijos stiklėjimo temperatūrą, dėl ko gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras. Durelių atidarymo jutiklis laikinai išjungtas." + }, + { + "ecode": "0500050000030002", + "intro": "Prietaisas yra bandymo etape; prašome atkreipti dėmesį į su informacijos saugumu susijusius klausimus." + }, + { + "ecode": "0700300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701310000020002", + "intro": "AMS B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702310000020002", + "intro": "AMS C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010005", + "intro": "Aptiktas naujas „Micro Lidar“ įrenginys. Prieš naudodami jį, kalibruokite jį kalibravimo puslapyje." + }, + { + "ecode": "12FF200000020004", + "intro": "Prašome ištraukti iš ekstruderių ant ritės laikiklio esantį giją." + }, + { + "ecode": "0300960000010003", + "intro": "Priekinės durų prieškameros jutiklis Nr. 2 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0702950000010001", + "intro": "AMS C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0702010000020008", + "intro": "AMS C Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0703910000010003", + "intro": "AMS D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702810000010003", + "intro": "AMS C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0702350000010002", + "intro": "AMS C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701010000020007", + "intro": "AMS B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0300980000010003", + "intro": "Kairiojo šoninio lango Hall jutiklis Nr. 2 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0C00040000010011", + "intro": "Nepavyko išmatuoti medžiagos storio: prietaiso parametrai neatitinka normos; prašome iš naujo nustatyti „BirdsEye“ kamerą." + }, + { + "ecode": "0C0003000002000C", + "intro": "Nepavyko aptikti spausdinimo plokštės padėties žymės. Patikrinkite, ar spausdinimo plokštė yra tinkamai išlyginta." + }, + { + "ecode": "0702900000010003", + "intro": "AMS C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700810000010002", + "intro": "AMS A Šildytuvas 2 yra atjungtas, o tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300A20000010001", + "intro": "MC modulio temperatūra yra per aukšta, galbūt dėl to, kad spausdintuvo kamera yra per karšta. Prieš naudojimą galite pabandyti sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0300360000010001", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010013", + "intro": "„BirdsEye“ kameros ekspozicijos parametrai yra netinkami; prašome bandyti dar kartą." + }, + { + "ecode": "1804910000010003", + "intro": "AMS-HT E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705950000010001", + "intro": "AMS F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802910000010003", + "intro": "AMS-HT C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706350000010002", + "intro": "AMS G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800900000010003", + "intro": "AMS-HT A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802800000010002", + "intro": "AMS-HT C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704950000010001", + "intro": "AMS E Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801350000010002", + "intro": "AMS-HT B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802310000020002", + "intro": "AMS-HT C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806800000010003", + "intro": "AMS-HT G Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707800000010003", + "intro": "AMS H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805010000020008", + "intro": "AMS-HT F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0707300000020002", + "intro": "AMS H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010003", + "intro": "AMS H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705940000010001", + "intro": "AMS F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707310000020002", + "intro": "AMS H izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803010000020007", + "intro": "AMS-HT D Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707950000010001", + "intro": "AMS H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800330000020002", + "intro": "„AMS-HT A lizdo Nr. 4“ įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705310000020002", + "intro": "AMS F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803940000010001", + "intro": "AMS-HT D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807900000010003", + "intro": "AMS-HT H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706910000010003", + "intro": "AMS G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706940000010001", + "intro": "AMS G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804950000010001", + "intro": "AMS-HT E 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806010000020008", + "intro": "AMS-HT G Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705300000020002", + "intro": "AMS F izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800910000010003", + "intro": "AMS-HT A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803900000010003", + "intro": "AMS-HT D Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807310000020002", + "intro": "„AMS-HT H izdo Nr. 2“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803800000010002", + "intro": "AMS-HT D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801330000020002", + "intro": "AMS-HT B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804310000020002", + "intro": "„AMS-HT E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804800000010003", + "intro": "AMS-HT E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1803800000010003", + "intro": "AMS-HT D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801320000020002", + "intro": "AMS-HT B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "03001B0000010002", + "intro": "Šildomojo pagrindo pagreičio jutiklyje užfiksuotas išorinis trikdys. Gali būti, kad jutiklio signalo laidas nėra tinkamai pritvirtintas." + }, + { + "ecode": "030091000001000C", + "intro": "Kameros šildytuvas Nr. 1 ilgą laiką veikė esant pilnai apkrovai. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300940000030001", + "intro": "kameros aušinimas gali vykti pernelyg lėtai. Jei kambaryje esantis oras nėra toksiškas, galite atidaryti priekines dureles arba viršutinį dangtį, kad pagreitintumėte aušinimą." + }, + { + "ecode": "0500020000020005", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010003", + "intro": "Spausdinimo failo turinys yra neskaitomas; prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "0500050000010006", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0700330000020002", + "intro": "AMS A lizdo Nr. 4 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701330000020002", + "intro": "AMS B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0702300000020002", + "intro": "AMS C izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702320000020002", + "intro": "AMS C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702330000020002", + "intro": "AMS C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000020002", + "intro": "AMS D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C0001000001000B", + "intro": "Nepavyko kalibruoti „Micro Lidar“. Įsitikinkite, kad kalibravimo lentelė yra švari ir niekas jos neužstoja. Tada vėl atlikite įrenginio kalibravimą." + }, + { + "ecode": "0702810000010002", + "intro": "AMS C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703010000020008", + "intro": "AMS D Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500060000020013", + "intro": "" + }, + { + "ecode": "050003000001000A", + "intro": "Sistemos būsena yra nenormali; prašome atkurti gamyklinius nustatymus." + }, + { + "ecode": "0702800000010003", + "intro": "AMS C Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba pačio šildytuvo gedimu." + }, + { + "ecode": "0701350000010002", + "intro": "AMS B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0702940000010001", + "intro": "AMS C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700010000020008", + "intro": "AMS A Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "030001000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; šildomasis stalas išjungtas." + }, + { + "ecode": "0300980000010001", + "intro": "Atrodo, kad kairysis langas yra atidarytas, užduotis sustabdyta." + }, + { + "ecode": "0300330000010001", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0703810000010003", + "intro": "AMS D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300960000010002", + "intro": "Priekinės durų prieškameros jutiklis Nr. 1 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0706330000020002", + "intro": "„AMS G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805310000020002", + "intro": "AMS-HT F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807010000020007", + "intro": "AMS-HT H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707800000010002", + "intro": "AMS H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804800000010002", + "intro": "AMS-HT E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706800000010002", + "intro": "AMS G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805320000020002", + "intro": "AMS-HT F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704310000020002", + "intro": "„AMS E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705810000010003", + "intro": "AMS F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0704350000010002", + "intro": "AMS E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806940000010001", + "intro": "AMS-HT G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801950000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807350000010002", + "intro": "AMS-HT H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0705910000010003", + "intro": "AMS F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020007", + "intro": "AMS-HT E Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707910000010003", + "intro": "AMS H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802900000010003", + "intro": "AMS-HT C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801810000010002", + "intro": "AMS-HT B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801310000020002", + "intro": "AMS-HT B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704800000010002", + "intro": "AMS E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020007", + "intro": "AMS G: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706810000010003", + "intro": "AMS G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804810000010003", + "intro": "AMS-HT E Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1802350000010002", + "intro": "AMS-HT C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800810000010002", + "intro": "AMS-HT A Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706810000010002", + "intro": "AMS G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806950000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800950000010001", + "intro": "AMS-HT A 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706320000020002", + "intro": "AMS G lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807810000010003", + "intro": "AMS-HT H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705800000010002", + "intro": "AMS F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706800000010003", + "intro": "AMS G Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707010000020008", + "intro": "AMS H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010002", + "intro": "AMS E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806300000020002", + "intro": "RFID žymė, esanti AMS-HT G izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806910000010003", + "intro": "AMS-HT G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804320000020002", + "intro": "„AMS-HT E lizdo Nr. 3“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805010000020007", + "intro": "AMS-HT F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805910000010003", + "intro": "AMS-HT F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706310000020002", + "intro": "AMS G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705330000020002", + "intro": "„AMS F lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0300010000010008", + "intro": "Šildomojo pagrindo kaitinimo proceso metu atsiranda gedimas; galbūt sugedo kaitinimo moduliai." + }, + { + "ecode": "0700320000020002", + "intro": "AMS A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0702310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0703300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010001", + "intro": "Horizontalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0C0003000002000F", + "intro": "Dalys, praleistos prieš pirmojo sluoksnio patikrinimą; šiam spausdinimui patikrinimas nėra palaikomas." + }, + { + "ecode": "12FF200000020006", + "intro": "Nepavyko išspausti gijos; ekstruderiui gali būti užsikimšęs." + }, + { + "ecode": "0C00040000010014", + "intro": "Nepastebėta pjovimo apsaugos pagrindo, dėl ko\ngali būti pažeistas šildomasis stalas. Prašome jį uždėti ir tęsti." + }, + { + "ecode": "030091000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; kameros šildytuvas Nr. 1 išjungtas." + }, + { + "ecode": "0703950000010001", + "intro": "AMS D Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703350000010002", + "intro": "AMS D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701910000010003", + "intro": "AMS B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700940000010001", + "intro": "AMS A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700350000010002", + "intro": "AMS A Drėgmės jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703810000010002", + "intro": "AMS D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0700010000020007", + "intro": "AMS A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701800000010002", + "intro": "AMS B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300C30000010003", + "intro": "Automatinio viršutinio ventiliacijos angos srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos matavimo grandinės gedimu." + }, + { + "ecode": "0703940000010001", + "intro": "AMS D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701800000010003", + "intro": "AMS B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700910000010003", + "intro": "AMS A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0703010000020007", + "intro": "AMS D: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0300090000020002", + "intro": "Ekstruzijos pasipriešinimas yra neįprastas. Ekstruderius gali būti užsikimšęs arba į antgalį įstrigo gija." + }, + { + "ecode": "0500060000020014", + "intro": "" + }, + { + "ecode": "0300970000010002", + "intro": "Viršutinio dangčio Holo jutiklis Nr. 1 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300980000010002", + "intro": "Kairiojo šoninio lango Hall jutiklis Nr. 1 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300970000010001", + "intro": "Atrodo, kad viršutinis dangtelis yra atidarytas; užduotis sustabdyta" + }, + { + "ecode": "0300310000010001", + "intro": "Dalies aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300320000010001", + "intro": "Pagalbinio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0702010000020007", + "intro": "AMS C: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805810000010003", + "intro": "AMS-HT F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801940000010001", + "intro": "AMS-HT B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804330000020002", + "intro": "„AMS-HT E lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807940000010001", + "intro": "AMS-HT H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020008", + "intro": "AMS G: Pagalbinio variklio fazės apvijos grandinė yra atvira. Galbūt pagalbinis variklis sugedęs." + }, + { + "ecode": "1807910000010003", + "intro": "AMS-HT H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800010000020007", + "intro": "AMS-HT A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704800000010003", + "intro": "AMS E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1802940000010001", + "intro": "AMS-HT C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707010000020007", + "intro": "AMS H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803350000010002", + "intro": "AMS-HT D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803310000020002", + "intro": "AMS-HT D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802300000020002", + "intro": "RFID žymė, esanti AMS-HT C izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807320000020002", + "intro": "AMS-HT H lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805810000010002", + "intro": "AMS-HT F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010002", + "intro": "AMS-HT C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803810000010003", + "intro": "AMS-HT D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804350000010002", + "intro": "AMS-HT E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707900000010003", + "intro": "AMS H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704900000010003", + "intro": "AMS E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802010000020007", + "intro": "AMS-HT C Pagalbinio variklio enkoderio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807950000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705010000020007", + "intro": "AMS F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801800000010002", + "intro": "AMS-HT B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704300000020002", + "intro": "„AMS E izdo Nr. 1“ esanti RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1801900000010003", + "intro": "AMS-HT B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706900000010003", + "intro": "AMS G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803300000020002", + "intro": "RFID žymė, esanti AMS-HT D izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802950000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801800000010003", + "intro": "AMS-HT B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1807010000020008", + "intro": "AMS-HT H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805950000010001", + "intro": "AMS-HT F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020008", + "intro": "AMS-HT B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806320000020002", + "intro": "„AMS-HT G lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803950000010001", + "intro": "AMS-HT D 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705800000010003", + "intro": "AMS F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804900000010003", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010003", + "intro": "AMS-HT C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1800300000020002", + "intro": "AMS-HT A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "030001000001000A", + "intro": "Šildomojo pagrindo temperatūros reguliavimas veikia netinkamai; galbūt sugedo kintamosios srovės plokštė." + }, + { + "ecode": "0300030000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300060000010003", + "intro": "Variklio A varžos rodmenys neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "0300070000010003", + "intro": "„Motor-B“ variklio varža neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "03001D0000010001", + "intro": "Ekstruzijos variklio padėties jutiklis veikia netinkamai. Galbūt jungtis su jutikliu yra laisva." + }, + { + "ecode": "0500040000010001", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700300000020002", + "intro": "AMS A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701320000020002", + "intro": "AMS B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703320000020002", + "intro": "AMS D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703330000020002", + "intro": "„AMS D lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C00010000020007", + "intro": "„Micro Lidar“ lazerio parametrai nukrypo. Prašome iš naujo kalibruoti spausdintuvą." + }, + { + "ecode": "0C00020000020004", + "intro": "Atrodo, kad purkštuvo aukštis yra per mažas. Patikrinkite, ar purkštuvas nėra susidėvėjęs arba pasviręs. Jei purkštuvas buvo pakeistas, iš naujo kalibruokite „Lidar“." + }, + { + "ecode": "0C00020000020009", + "intro": "Vertikalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00030000020010", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti šildomąjį pagrindą." + }, + { + "ecode": "0703800000010002", + "intro": "AMS D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701010000020008", + "intro": "AMS B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500040000020033", + "intro": "Prašome prijungti modulio jungtį." + }, + { + "ecode": "0700950000010001", + "intro": "AMS A Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0300350000010001", + "intro": "MC modulio aušinimo ventiliatoriaus greitis per mažas arba ventiliatorius sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010010", + "intro": "Dėl lazerio modulio gedimo nepavyko išmatuoti medžiagos storio." + }, + { + "ecode": "0700810000010003", + "intro": "AMS A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700900000010003", + "intro": "AMS A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701900000010003", + "intro": "AMS B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300970000010003", + "intro": "Viršutinio dangčio Holo jutiklis Nr. 2 veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0701950000010001", + "intro": "AMS B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805940000010001", + "intro": "AMS-HT F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010002", + "intro": "AMS-HT H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704010000020008", + "intro": "AMS E: Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010003", + "intro": "AMS E Šildytuvas Nr. 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805800000010002", + "intro": "AMS-HT F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706300000020002", + "intro": "AMS G izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707350000010002", + "intro": "AMS H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801300000020002", + "intro": "AMS-HT B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800010000020008", + "intro": "AMS-HT A Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000020007", + "intro": "AMS-HT G Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804300000020002", + "intro": "„AMS-HT E izdo Nr. 1“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704940000010001", + "intro": "AMS E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806900000010003", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800800000010003", + "intro": "AMS-HT A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705810000010002", + "intro": "AMS F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800810000010003", + "intro": "AMS-HT A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1807300000020002", + "intro": "AMS-HT H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804810000010002", + "intro": "AMS-HT E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807810000010002", + "intro": "AMS-HT H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705350000010002", + "intro": "AMS F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803010000020008", + "intro": "AMS-HT D Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802800000010003", + "intro": "AMS-HT C Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801910000010003", + "intro": "AMS-HT B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805900000010003", + "intro": "AMS-HT F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010003", + "intro": "AMS-HT H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706950000010001", + "intro": "AMS G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805350000010002", + "intro": "AMS-HT F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802320000020002", + "intro": "AMS-HT C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800940000010001", + "intro": "AMS-HT A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704330000020002", + "intro": "„AMS E lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802330000020002", + "intro": "AMS-HT C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800800000010002", + "intro": "AMS-HT A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704910000010003", + "intro": "AMS E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806800000010002", + "intro": "AMS-HT G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804940000010001", + "intro": "AMS-HT E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020007", + "intro": "AMS-HT B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707940000010001", + "intro": "AMS H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020008", + "intro": "AMS-HT E Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500020000020001", + "intro": "Nepavyko prisijungti prie interneto. Patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010006", + "intro": "Nepavyko atnaujinti ankstesnio spausdinimo" + }, + { + "ecode": "0700310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0701300000020002", + "intro": "AMS B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000020003", + "intro": "Horizontalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00020000020007", + "intro": "Vertikalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0702910000010003", + "intro": "AMS C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300980000030001", + "intro": "Atrodo, kad kairysis šoninis langas yra atidarytas." + }, + { + "ecode": "0701810000010003", + "intro": "AMS B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300090000020003", + "intro": "Ekstruderiui kyla veikimo sutrikimų. Jis gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0703800000010003", + "intro": "AMS D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0701940000010001", + "intro": "AMS B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701810000010002", + "intro": "AMS B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702800000010002", + "intro": "AMS C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803330000020002", + "intro": "„AMS-HT D lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806330000020002", + "intro": "„AMS-HT G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802010000020008", + "intro": "AMS-HT C Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705900000010003", + "intro": "AMS F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800350000010002", + "intro": "AMS-HT A Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803910000010003", + "intro": "AMS-HT D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806810000010003", + "intro": "AMS-HT G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0704010000020007", + "intro": "AMS E: Pagalbinio variklio kodavimo daviklio laidai nėra prijungti. Gali būti, kad pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707320000020002", + "intro": "AMS H lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707330000020002", + "intro": "„AMS H lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805300000020002", + "intro": "RFID žymė, esanti AMS-HT F izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010002", + "intro": "AMS H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806350000010002", + "intro": "AMS-HT G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0704320000020002", + "intro": "„AMS E lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800320000020002", + "intro": "AMS-HT A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803320000020002", + "intro": "AMS-HT D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807330000020002", + "intro": "„AMS-HT H lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800310000020002", + "intro": "AMS-HT A izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805800000010003", + "intro": "AMS-HT F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801810000010003", + "intro": "AMS-HT B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0500010000030009", + "intro": "" + }, + { + "ecode": "0500030000030007", + "intro": "" + }, + { + "ecode": "05000600000200A1", + "intro": "" + }, + { + "ecode": "0500060000020024", + "intro": "" + }, + { + "ecode": "05000600000200A0", + "intro": "" + }, + { + "ecode": "0500060000020021", + "intro": "" + }, + { + "ecode": "0703200000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702230000020009", + "intro": "Nepavyko išspausti AMS C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700200000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 1 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701220000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701230000020009", + "intro": "Nepavyko išspausti AMS B Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701200000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 1 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0701210000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702220000020009", + "intro": "Nepavyko išspausti „AMS C lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700210000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702210000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703230000020009", + "intro": "Nepavyko išspausti AMS D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702200000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700220000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703220000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703210000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700230000020009", + "intro": "Nepavyko išspausti „AMS A Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700310000010001", + "intro": "Plokštėje „AMS A RFID 2“ yra klaida." + }, + { + "ecode": "1800010000010003", + "intro": "AMS-HT A pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706120000020004", + "intro": "AMS G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803910000010002", + "intro": "AMS-HT D Išmetimo vožtuvo Nr. 2 ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807130000020004", + "intro": "AMS-HT H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807960000010001", + "intro": "AMS-HT H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806910000010002", + "intro": "AMS-HT G 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804920000020002", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805910000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802920000020002", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800310000010001", + "intro": "Plokštėje „AMS-HT A RFID 2“ yra klaida." + }, + { + "ecode": "1800020000020002", + "intro": "AMS-HT A jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1803010000020010", + "intro": "AMS-HT D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700550000010003", + "intro": "AMS A buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1800930000010001", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801910000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1803020000020002", + "intro": "AMS-HT D jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801300000010001", + "intro": "Plokštėje „AMS-HT B RFID 1“ yra klaida." + }, + { + "ecode": "0702310000010001", + "intro": "Plokštėje „AMS C RFID 2“ yra klaida." + }, + { + "ecode": "1800810000010001", + "intro": "AMS-HT A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801100000020004", + "intro": "AMS-HT B Šepetėlinis variklis Nr. 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706130000020004", + "intro": "AMS G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707020000020002", + "intro": "AMS H jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1803900000010002", + "intro": "AMS-HT D 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704010000020011", + "intro": "AMS E: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707010000020011", + "intro": "AMS H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000010003", + "intro": "AMS-HT C pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707930000010001", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704010000020002", + "intro": "AMS E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800010000010001", + "intro": "Pagalbinis variklis „AMS-HT A“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702550000010003", + "intro": "AMS C buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "0706010000010001", + "intro": "AMS G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803930000020002", + "intro": "AMS-HT D 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803130000020004", + "intro": "AMS-HT D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803110000020004", + "intro": "AMS-HT D Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701310000010001", + "intro": "Plokštėje „AMS B RFID 2“ yra klaida." + }, + { + "ecode": "0706010000020011", + "intro": "AMS G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000010003", + "intro": "AMS G pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705010000020011", + "intro": "AMS F: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1800110000020004", + "intro": "AMS-HT A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000010003", + "intro": "AMS H pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805110000020004", + "intro": "AMS-HT F Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805810000010001", + "intro": "AMS-HT F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803120000020004", + "intro": "AMS-HT D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801900000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1805010000010001", + "intro": "Pagalbinis variklis „AMS-HT F“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801900000010002", + "intro": "AMS-HT B 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804010000020011", + "intro": "AMS-HT E: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020011", + "intro": "AMS-HT C: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806120000020004", + "intro": "AMS-HT G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803020000010001", + "intro": "AMS-HT D. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0706010000020009", + "intro": "AMS G: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000010003", + "intro": "AMS-HT G pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807500000020001", + "intro": "AMS-HT H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1803960000010001", + "intro": "AMS-HT D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806300000010001", + "intro": "Plokštėje „AMS-HT G RFID 1“ yra klaida." + }, + { + "ecode": "0707800000010001", + "intro": "AMS H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705900000010002", + "intro": "AMS F 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801010000020011", + "intro": "AMS-HT B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705800000010001", + "intro": "AMS F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000010003", + "intro": "AMS-HT F pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804120000020004", + "intro": "AMS-HT E Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703550000010003", + "intro": "AMS D buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1807010000020010", + "intro": "AMS-HT H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802900000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807900000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0706900000010002", + "intro": "AMS G: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704310000010001", + "intro": "Plokštėje „AMS E RFID 2“ yra klaida." + }, + { + "ecode": "0707120000020004", + "intro": "AMS H Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803500000020001", + "intro": "AMS-HT D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1804500000020001", + "intro": "AMS-HT E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800020000010001", + "intro": "AMS-HT A. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0704010000010004", + "intro": "AMS E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803100000020004", + "intro": "AMS-HT D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806010000010004", + "intro": "AMS-HT G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1801130000020004", + "intro": "AMS-HT B Šepetėlinis variklis 4 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706110000020004", + "intro": "AMS G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705920000020002", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varža." + }, + { + "ecode": "0707810000010001", + "intro": "AMS H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801020000020002", + "intro": "AMS-HT B jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0704910000010002", + "intro": "AMS E: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802010000010001", + "intro": "AMS-HT C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706930000020002", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0707010000020002", + "intro": "AMS H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800910000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807110000020004", + "intro": "AMS-HT H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801810000010001", + "intro": "AMS-HT B 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704020000010001", + "intro": "AMS E. Gijos greičio ir ilgio paklaida: Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1802310000010001", + "intro": "Plokštėje „AMS-HT C RFID 2“ yra klaida." + }, + { + "ecode": "0706100000020004", + "intro": "AMS G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800130000020004", + "intro": "AMS-HT A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000020002", + "intro": "AMS-HT E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704810000010001", + "intro": "AMS E: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705110000020004", + "intro": "AMS F Šepetėlinis variklis 2 negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801020000010001", + "intro": "AMS-HT B. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "1802020000020002", + "intro": "AMS-HT C jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805020000010001", + "intro": "AMS-HT F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806800000010001", + "intro": "AMS-HT G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704930000010001", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1802910000010002", + "intro": "AMS-HT C 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801010000020010", + "intro": "AMS-HT B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806900000020001", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704010000010011", + "intro": "AMS E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804110000020004", + "intro": "AMS-HT E Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804900000010002", + "intro": "AMS-HT E 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800100000020004", + "intro": "AMS-HT A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802130000020004", + "intro": "AMS-HT C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806500000020001", + "intro": "AMS-HT G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000010011", + "intro": "AMS C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806010000020002", + "intro": "AMS-HT G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804010000010003", + "intro": "AMS-HT E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706960000010001", + "intro": "AMS G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1801920000020002", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0705100000020004", + "intro": "AMS F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803800000010001", + "intro": "AMS-HT D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000020002", + "intro": "AMS-HT D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804920000010001", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000010004", + "intro": "AMS-HT B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803910000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802910000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806020000010001", + "intro": "AMS-HT G. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000010001", + "intro": "AMS-HT D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707310000010001", + "intro": "Plokštėje „AMS H RFID 2“ yra klaida." + }, + { + "ecode": "0707020000010001", + "intro": "AMS H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010001", + "intro": "AMS-HT H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705010000010001", + "intro": "„AMS F“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801930000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807930000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800930000020002", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1804960000010001", + "intro": "AMS-HT E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1805920000020002", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706920000010001", + "intro": "AMS G Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1803930000010001", + "intro": "AMS-HT D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800120000020004", + "intro": "AMS-HT A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803920000010001", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704300000010001", + "intro": "Plokštėje „AMS E RFID 1“ yra klaida." + }, + { + "ecode": "0706930000010001", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1802800000010001", + "intro": "AMS-HT C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804100000020004", + "intro": "AMS-HT E Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705930000020002", + "intro": "AMS F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0707110000020004", + "intro": "AMS H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800900000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806010000020011", + "intro": "AMS-HT G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807910000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704020000020002", + "intro": "AMS E: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1804010000020009", + "intro": "AMS-HT E Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807010000020011", + "intro": "AMS-HT H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020009", + "intro": "AMS-HT C Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807920000020002", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0705010000020002", + "intro": "AMS F pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701300000010001", + "intro": "Plokštėje „AMS B RFID 1“ yra klaida." + }, + { + "ecode": "0702300000010001", + "intro": "Plokštėje „AMS C RFID 1“ yra klaida." + }, + { + "ecode": "1807020000020002", + "intro": "AMS-HT H jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706910000010002", + "intro": "AMS G: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805800000010001", + "intro": "AMS-HT F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705920000010001", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801800000010001", + "intro": "AMS-HT B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706020000010001", + "intro": "AMS G: Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806960000010001", + "intro": "AMS-HT G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1803310000010001", + "intro": "Plokštėje „AMS-HT D RFID 2“ yra klaida." + }, + { + "ecode": "0704930000020002", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802930000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807910000010002", + "intro": "AMS-HT H 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801010000020002", + "intro": "Pagalbinis variklis „AMS-HT B“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705900000020001", + "intro": "AMS F Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707930000020002", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1801310000010001", + "intro": "Plokštėje „AMS-HT B RFID 2“ yra klaida." + }, + { + "ecode": "1806310000010001", + "intro": "Plokštėje „AMS-HT G RFID 2“ yra klaida." + }, + { + "ecode": "1805310000010001", + "intro": "Plokštėje „AMS-HT F RFID 2“ yra klaida." + }, + { + "ecode": "1804800000010001", + "intro": "AMS-HT E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010003", + "intro": "AMS-HT H pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707910000010002", + "intro": "AMS H: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705020000020002", + "intro": "AMS F jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1805960000010001", + "intro": "AMS-HT F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807010000020002", + "intro": "AMS-HT H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700300000010001", + "intro": "Plokštėje „AMS A RFID 1“ yra klaida." + }, + { + "ecode": "1805920000010001", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0706910000020001", + "intro": "AMS G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707960000010001", + "intro": "AMS H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806020000020002", + "intro": "AMS-HT G jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802020000010001", + "intro": "AMS-HT C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0704010000020010", + "intro": "AMS E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1803010000010004", + "intro": "AMS-HT D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803810000010001", + "intro": "AMS-HT D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0707900000010002", + "intro": "AMS H: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805010000020009", + "intro": "AMS-HT F Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800010000020002", + "intro": "Pagalbinis variklis AMS-HT A yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704010000020009", + "intro": "AMS E: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705960000010001", + "intro": "AMS F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807300000010001", + "intro": "Plokštėje „AMS-HT H RFID 1“ yra klaida." + }, + { + "ecode": "1806010000010001", + "intro": "AMS-HT G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800920000010001", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801110000020004", + "intro": "AMS-HT B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705010000020009", + "intro": "AMS F: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801120000020004", + "intro": "AMS-HT B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800910000010002", + "intro": "AMS-HT A 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803010000010011", + "intro": "AMS-HT D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704910000020001", + "intro": "AMS E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1801500000020001", + "intro": "AMS-HT B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1807120000020004", + "intro": "AMS-HT H Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800960000010001", + "intro": "AMS-HT A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1800010000020010", + "intro": "AMS-HT A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000010011", + "intro": "AMS-HT F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704960000010001", + "intro": "AMS E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1802900000010002", + "intro": "AMS-HT C 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707010000020009", + "intro": "AMS H: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705910000010002", + "intro": "AMS F: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801010000020009", + "intro": "AMS-HT B Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705010000010004", + "intro": "AMS F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0701010000010011", + "intro": "AMS B – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0500040000020030", + "intro": "„BirdsEye“ kamera nėra įdiegta. Išjunkite spausdintuvą ir tada įdiekite kamerą." + }, + { + "ecode": "0704920000010001", + "intro": "AMS E Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0707500000020001", + "intro": "AMS H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800800000010001", + "intro": "AMS-HT A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000010004", + "intro": "AMS-HT E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1806010000010011", + "intro": "AMS-HT G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705300000010001", + "intro": "Plokštėje „AMS F RFID 1“ yra klaida." + }, + { + "ecode": "1802120000020004", + "intro": "AMS-HT C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707300000010001", + "intro": "AMS H RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0706920000020002", + "intro": "AMS G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704110000020004", + "intro": "AMS E Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701550000010003", + "intro": "AMS B buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "0707910000020001", + "intro": "AMS H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807010000010011", + "intro": "AMS-HT H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704550000010003", + "intro": "AMS E klaida buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1805900000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802300000010001", + "intro": "Plokštėje „AMS-HT C RFID 1“ yra klaida." + }, + { + "ecode": "1805120000020004", + "intro": "AMS-HT F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805300000010001", + "intro": "Plokštėje „AMS-HT F RFID 1“ yra klaida." + }, + { + "ecode": "1803010000020011", + "intro": "AMS-HT D Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705310000010001", + "intro": "Plokštėje „AMS F RFID 2“ yra klaida." + }, + { + "ecode": "1800010000020009", + "intro": "AMS-HT A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000020002", + "intro": "Pagalbinis variklis „AMS-HT F“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704920000020002", + "intro": "AMS E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706810000010001", + "intro": "AMS G: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705120000020004", + "intro": "AMS F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800010000020011", + "intro": "AMS-HT A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704010000010003", + "intro": "AMS E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706300000010001", + "intro": "Plokštėje „AMS G RFID 1“ yra klaida." + }, + { + "ecode": "1807010000020009", + "intro": "AMS-HT H Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705130000020004", + "intro": "AMS F Šepetėlinis variklis 4 negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802110000020004", + "intro": "AMS-HT C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000020010", + "intro": "AMS H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806100000020004", + "intro": "AMS-HT G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801960000010001", + "intro": "AMS-HT B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0705010000010011", + "intro": "AMS F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807010000010004", + "intro": "AMS-HT H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1805930000020002", + "intro": "AMS-HT F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704900000020001", + "intro": "AMS E Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704900000010002", + "intro": "AMS E: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707100000020004", + "intro": "AMS H Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700010000010011", + "intro": "AMS A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000020010", + "intro": "AMS G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804020000010001", + "intro": "AMS-HT E. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "1805900000010002", + "intro": "AMS-HT F 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707920000010001", + "intro": "AMS H Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0705910000020001", + "intro": "AMS F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0706010000020002", + "intro": "AMS G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800300000010001", + "intro": "„AMS-HT A RFID 1“ plokštėje yra klaida." + }, + { + "ecode": "0707010000010004", + "intro": "AMS H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803900000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1804310000010001", + "intro": "Plokštėje „AMS-HT E RFID 2“ yra klaida." + }, + { + "ecode": "1800900000010002", + "intro": "AMS-HT A 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800920000020002", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806910000020001", + "intro": "AMS-HT G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707010000010011", + "intro": "AMS H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804930000020002", + "intro": "AMS-HT E 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805100000020004", + "intro": "AMS-HT F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805130000020004", + "intro": "AMS-HT F Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706310000010001", + "intro": "Plokštėje „AMS G RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020009", + "intro": "AMS-HT D Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706900000020001", + "intro": "AMS G Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806930000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807920000010001", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804910000020001", + "intro": "AMS-HT E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0705930000010001", + "intro": "AMS F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804900000020001", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 veikia netinkamai; tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807020000010001", + "intro": "AMS-HT H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1804810000010001", + "intro": "AMS-HT E 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020010", + "intro": "AMS-HT F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704010000010001", + "intro": "„AMS E“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803300000010001", + "intro": "Plokštėje „AMS-HT D RFID 1“ yra klaida." + }, + { + "ecode": "1805910000010002", + "intro": "AMS-HT F Išmetimo vožtuvo Nr. 2 ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806010000020010", + "intro": "AMS-HT G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706500000020001", + "intro": "AMS G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1807900000010002", + "intro": "AMS-HT H 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800010000010011", + "intro": "AMS-HT A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705020000010001", + "intro": "AMS F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1802920000010001", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807100000020004", + "intro": "AMS-HT H Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703310000010001", + "intro": "Plokštėje „AMS D RFID 2“ yra klaida." + }, + { + "ecode": "0704800000010001", + "intro": "AMS E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0707010000010001", + "intro": "AMS H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806010000020009", + "intro": "AMS-HT G Pagalbinis variklis turi nesubalansuotą trifazę varžą. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804130000020004", + "intro": "AMS-HT E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704100000020004", + "intro": "AMS E Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806110000020004", + "intro": "AMS-HT G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805930000010001", + "intro": "AMS-HT F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704500000020001", + "intro": "AMS E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0704130000020004", + "intro": "AMS E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704120000020004", + "intro": "AMS E Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802810000010001", + "intro": "AMS-HT C 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000010011", + "intro": "AMS-HT B – pagalbinio variklio kalibravimo parametrų klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707130000020004", + "intro": "AMS H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000010011", + "intro": "AMS-HT E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1801010000010003", + "intro": "AMS-HT B pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706550000010003", + "intro": "AMS G buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1807930000020002", + "intro": "AMS-HT H 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805020000020002", + "intro": "AMS-HT F jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806920000010001", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804020000020002", + "intro": "AMS-HT E jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1800500000020001", + "intro": "AMS-HT: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0705010000020010", + "intro": "AMS F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805500000020001", + "intro": "AMS-HT F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0707900000020001", + "intro": "AMS H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806900000010002", + "intro": "AMS-HT G 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707550000010003", + "intro": "AMS H buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1802500000020001", + "intro": "AMS-HT C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1805010000010004", + "intro": "AMS-HT F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703300000010001", + "intro": "AMS D RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0703010000010011", + "intro": "AMS D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707920000020002", + "intro": "AMS H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803920000020002", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1803010000010003", + "intro": "AMS-HT D pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705500000020001", + "intro": "AMS F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806920000020002", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1804910000010002", + "intro": "AMS-HT E 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800010000010004", + "intro": "AMS-HT A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020010", + "intro": "AMS-HT C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706010000010011", + "intro": "AMS G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705550000010003", + "intro": "AMS F buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1805010000020011", + "intro": "AMS-HT F Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806930000020002", + "intro": "AMS-HT G 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1807810000010001", + "intro": "AMS-HT H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804300000010001", + "intro": "Plokštėje „AMS-HT E RFID 1“ yra klaida." + }, + { + "ecode": "1801920000010001", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807310000010001", + "intro": "Plokštėje „AMS-HT H RFID 2“ yra klaida." + }, + { + "ecode": "1804930000010001", + "intro": "AMS-HT E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801910000010002", + "intro": "AMS-HT B Išmetimo vožtuvo Nr. 2 ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804010000010001", + "intro": "AMS-HT E pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705810000010001", + "intro": "AMS F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000020010", + "intro": "AMS-HT E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802100000020004", + "intro": "AMS-HT C Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802930000020002", + "intro": "AMS-HT C 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806810000010001", + "intro": "AMS-HT G 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706010000010004", + "intro": "AMS G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000010011", + "intro": "AMS-HT C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705010000010003", + "intro": "AMS F pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807800000010001", + "intro": "AMS-HT H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706800000010001", + "intro": "AMS G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1806130000020004", + "intro": "AMS-HT G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801930000020002", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802010000010004", + "intro": "AMS-HT C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020002", + "intro": "AMS-HT C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801010000010001", + "intro": "AMS-HT B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706020000020002", + "intro": "AMS G: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802960000010001", + "intro": "AMS-HT C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500010000030007", + "intro": "Jei neįdėta USB atmintinė, negalima įrašyti laiko tarpo fotografijos." + }, + { + "ecode": "0300110000020002", + "intro": "Y ašies rezonansinis dažnis labai skiriasi nuo paskutinio kalibravimo rezultato. Prašome nuvalyti Y ašies kreipiamąją strypą ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0300200000010002", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: patikrinkite, ar įstrigo įrankio galvutė, ar Y ašies vežimėlis susiduria su per dideliu pasipriešinimu." + }, + { + "ecode": "0500030000010007", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "07FE810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "07FE810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FE800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "0500030000010026", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "0300200000010001", + "intro": "X ašies grįžimo į pradinę padėtį sutrikimas: patikrinkite, ar neužstrigo įrankio galvutė arba ar X ašies linijinio bėgio pasipriešinimas nėra per didelis." + }, + { + "ecode": "0300100000020002", + "intro": "X ašies rezonansinis dažnis žymiai skiriasi nuo paskutinio kalibravimo rezultatų. Prašome nuvalyti X ašies linijinę bėgelę ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0500040000020039", + "intro": "Prašome prijungti modulio jungtį" + }, + { + "ecode": "07FF200000020004", + "intro": "Prašome ištraukti išorinį giją iš dešiniojo ekstruderio." + }, + { + "ecode": "07FF200000020001", + "intro": "Išsekė dešiniojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0300990000030001", + "intro": "Nustatyta, kad dešinysis šoninis langas yra atidarytas." + }, + { + "ecode": "0701010000010001", + "intro": "AMS B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200220000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201220000020005", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202110000010003", + "intro": "AMS C izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203820000020001", + "intro": "AMS D lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701960000010001", + "intro": "AMS B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700100000020004", + "intro": "AMS A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702010000020002", + "intro": "AMS C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201300000010001", + "intro": "AMS B lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201320000010001", + "intro": "AMS B lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202210000020005", + "intro": "Baigėsi AMS C izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202230000030002", + "intro": "AMS C lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203300000010001", + "intro": "AMS D lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703800000010001", + "intro": "AMS D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0300010000010001", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0703810000010001", + "intro": "AMS D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010001", + "intro": "AMS C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200330000020002", + "intro": "AMS A lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1201200000030001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1202720000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1203210000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0C0003000003000B", + "intro": "Pirmojo sluoksnio tikrinimas: prašome palaukti akimirką." + }, + { + "ecode": "0701900000020001", + "intro": "AMS B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0702920000010001", + "intro": "AMS C Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0300360000020002", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "1200100000020002", + "intro": "AMS A izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020003", + "intro": "AMS A izdo Nr. 1 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200720000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1200830000020001", + "intro": "AMS A lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202300000020002", + "intro": "AMS C lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000010001", + "intro": "AMS C lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202830000020001", + "intro": "AMS C lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0702900000010002", + "intro": "AMS C: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701010000020010", + "intro": "AMS B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200230000030002", + "intro": "AMS A lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202210000020001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1202230000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203100000010001", + "intro": "AMS D izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203110000010003", + "intro": "AMS D izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203220000020005", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703010000020009", + "intro": "AMS D: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0C0003000001000A", + "intro": "Jūsų spausdintuvas veikia gamykliniame režime. Kreipkitės į techninę pagalbą." + }, + { + "ecode": "050004000002001A", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 3." + }, + { + "ecode": "1200200000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1200820000020001", + "intro": "AMS A lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202330000020002", + "intro": "AMS C lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1203130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700130000020004", + "intro": "AMS A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703910000010002", + "intro": "AMS D: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700920000020002", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0702910000020001", + "intro": "AMS C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703110000020004", + "intro": "AMS D Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701010000020011", + "intro": "AMS B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0700810000010001", + "intro": "AMS A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1200210000030001", + "intro": "AMS A izdo Nr. 2 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1201200000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202710000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020004", + "intro": "AMS D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300330000020002", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0500040000020032", + "intro": "Įdėkite lazerinį modulį ir užfiksuokite greito atsegimo svirtį." + }, + { + "ecode": "0701920000010001", + "intro": "AMS B Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0701900000010002", + "intro": "AMS B: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701020000010001", + "intro": "AMS B. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010003", + "intro": "AMS C pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000030002", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702920000020002", + "intro": "AMS C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0701930000010001", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010004", + "intro": "AMS A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0700500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202230000020003", + "intro": "AMS C lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1203200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203210000020001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "0702110000020004", + "intro": "AMS C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703910000020001", + "intro": "AMS D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020015", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 2." + }, + { + "ecode": "0702020000010001", + "intro": "AMS C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200710000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201130000010001", + "intro": "AMS B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201300000030003", + "intro": "AMS B izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201330000010001", + "intro": "AMS B lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010003", + "intro": "AMS C izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202310000030003", + "intro": "AMS C izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020003", + "intro": "AMS A lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200230000020004", + "intro": "AMS A lizdo Nr. 4 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200330000010001", + "intro": "AMS A Slot 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202220000020001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000030001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0300350000020002", + "intro": "MC modulio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0703020000020002", + "intro": "AMS D Kilometražo skaitiklis negauna signalo. Gali būti, kad kilometražo skaitiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000020004", + "intro": "Šiai užduočiai tokio tipo platforma nėra palaikoma. Norėdami tęsti, pasirinkite tinkamą platformą." + }, + { + "ecode": "1200210000020003", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi PTFE vamzdyje." + }, + { + "ecode": "1200220000020005", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Vykdomas senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200300000010001", + "intro": "AMS A lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1201220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija PTFE vamzdelyje yra nutrūkusi." + }, + { + "ecode": "1201320000030003", + "intro": "AMS B lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203230000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1203230000020005", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702910000010002", + "intro": "AMS C: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700020000020002", + "intro": "AMS A jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "050004000002001C", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 1 lizde." + }, + { + "ecode": "1200110000010001", + "intro": "AMS A izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200310000020002", + "intro": "AMS A lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1200500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201210000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202100000020002", + "intro": "AMS C izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203110000010001", + "intro": "AMS D izdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0703010000020011", + "intro": "AMS D. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0701910000020001", + "intro": "AMS B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0300320000020002", + "intro": "Pagalbinio dalinio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0701110000020004", + "intro": "AMS B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703930000010001", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1200220000030001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200800000020001", + "intro": "AMS A izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000020001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1201200000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1201220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202200000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0703010000020010", + "intro": "AMS D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700010000020010", + "intro": "AMS A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701100000020004", + "intro": "AMS B Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1201300000020002", + "intro": "AMS B lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1201310000030003", + "intro": "AMS B izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201710000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 2-osios lizdo gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202200000030002", + "intro": "AMS C izdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020005", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203330000030003", + "intro": "AMS D lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0700930000020002", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020011", + "intro": "AMS C: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0300960000030001", + "intro": "Priekinės durys yra atidarytos." + }, + { + "ecode": "050003000002000C", + "intro": "Belaidžio ryšio įrangos klaida: išjunkite ir vėl įjunkite „Wi-Fi“ arba iš naujo paleiskite įrenginį." + }, + { + "ecode": "0300090000020001", + "intro": "Ekstruzijos variklis yra perkrautas. Ekstruderius gali būti užsikimšęs arba gijos medžiaga gali būti įstrigusi antgalyje." + }, + { + "ecode": "0703930000020002", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1200200000030001", + "intro": "AMS A izdo Nr. 1 gija baigėsi. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201700000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201730000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1202220000030001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202310000020002", + "intro": "AMS C lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000020002", + "intro": "AMS C lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203220000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0C00040000010015", + "intro": "Nenustatytas lazerio apsauginis įdėklas. Įdėkite jį ir tęskite." + }, + { + "ecode": "0703120000020004", + "intro": "AMS D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700800000010001", + "intro": "AMS A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0500040000020011", + "intro": "Neįmanoma atpažinti AMS A izdo Nr. 2 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0500040000020017", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 4." + }, + { + "ecode": "0701500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000010003", + "intro": "AMS „A lizdo Nr. 3“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200320000010001", + "intro": "AMS A lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202300000030003", + "intro": "AMS C izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203700000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203800000020001", + "intro": "AMS D izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020009", + "intro": "AMS B: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701020000020002", + "intro": "AMS B: jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020018", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 1 lizde." + }, + { + "ecode": "0703010000010003", + "intro": "AMS D pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1201210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201220000020001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1203300000030003", + "intro": "AMS D izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "07FE200000020004", + "intro": "Prašome ištraukti išorinį giją iš kairiojo ekstruderio." + }, + { + "ecode": "1200210000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201210000020005", + "intro": "Baigėsi AMS B izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030002", + "intro": "AMS C izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202230000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000030002", + "intro": "AMS D izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203220000030002", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203320000010001", + "intro": "AMS D lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203330000010001", + "intro": "AMS D lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0701810000010001", + "intro": "AMS B: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0701120000020004", + "intro": "AMS B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703900000010002", + "intro": "AMS D: 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1200110000010003", + "intro": "AMS „A izdo Nr. 2“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201820000020001", + "intro": "AMS B lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000020004", + "intro": "AMS C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702810000010001", + "intro": "AMS C: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702800000010001", + "intro": "AMS C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703960000010001", + "intro": "AMS D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700010000010003", + "intro": "AMS A pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703020000010001", + "intro": "AMS D. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200100000010001", + "intro": "AMS A izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200210000020001", + "intro": "AMS A izdo Nr. 2 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200220000030002", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201330000020002", + "intro": "AMS B lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1202110000020002", + "intro": "AMS C izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1202120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700010000020009", + "intro": "AMS A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701010000020002", + "intro": "AMS B pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203230000020003", + "intro": "AMS D lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "050004000002001F", + "intro": "Neįmanoma atpažinti „AMS D lizdo Nr. 4“ esančios RFID žymės." + }, + { + "ecode": "1200130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201210000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201220000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201230000020001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1201230000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202210000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203210000030002", + "intro": "AMS D izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203720000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "07FE200000020001", + "intro": "Išsekė kairiojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0700910000010002", + "intro": "AMS A Išmetimo vožtuvo Nr. 2 ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0500040000020013", + "intro": "AMS A lizdo Nr. 4 įrenginyje esančios RFID žymės negalima atpažinti." + }, + { + "ecode": "1200130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201720000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202330000030003", + "intro": "AMS C lizdo Nr. 4 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203210000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203210000030001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0700960000010001", + "intro": "AMS A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500040000020010", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS A izdo Nr. 1." + }, + { + "ecode": "050004000002001E", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 3." + }, + { + "ecode": "0700010000010001", + "intro": "AMS A pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020005", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1200320000020002", + "intro": "AMS A 3-iojo lizdo RFID žymė yra sugadinta." + }, + { + "ecode": "1202200000020005", + "intro": "Baigėsi AMS C izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202320000030003", + "intro": "AMS C lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203300000020002", + "intro": "AMS D lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1203330000020002", + "intro": "AMS D lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "0703100000020004", + "intro": "AMS D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0C00040000020008", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0701930000020002", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201200000020005", + "intro": "Baigėsi AMS B izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203100000010003", + "intro": "AMS D izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203110000020002", + "intro": "AMS D izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0300270000010001", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio dažnis yra per mažas. Jutiklis gali būti sugadintas." + }, + { + "ecode": "0700110000020004", + "intro": "AMS A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300310000020002", + "intro": "Dalies aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0702960000010001", + "intro": "AMS C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700120000020004", + "intro": "AMS A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200230000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201810000020001", + "intro": "AMS B izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020005", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203220000020001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203230000030002", + "intro": "AMS D lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203310000010001", + "intro": "AMS D lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0300270000010007", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio dažnis yra per didelis. Jutiklis gali būti sugadintas." + }, + { + "ecode": "0703010000010001", + "intro": "AMS D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020001", + "intro": "AMS A izdo Nr. 1 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200210000030002", + "intro": "AMS A izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203810000020001", + "intro": "AMS D izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203830000020001", + "intro": "AMS D lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0C00040000010016", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0701920000020002", + "intro": "AMS B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702130000020004", + "intro": "AMS C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020019", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 2 lizde." + }, + { + "ecode": "0703500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200130000010003", + "intro": "AMS „lizdo Nr. 4“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020003", + "intro": "AMS A lizdo Nr. 3 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1202210000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203710000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1200210000020005", + "intro": "AMS A izdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201100000010003", + "intro": "AMS B izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201100000020002", + "intro": "AMS B izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201310000020002", + "intro": "AMS B lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1201800000020001", + "intro": "AMS B izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202800000020001", + "intro": "AMS C izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203310000020002", + "intro": "AMS D lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000020002", + "intro": "AMS D lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000030003", + "intro": "AMS D lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "0703920000010001", + "intro": "AMS D Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1201110000010003", + "intro": "AMS B izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020005", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201830000020001", + "intro": "AMS B lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202200000020004", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202730000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203210000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 2 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "1203500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000020009", + "intro": "AMS C: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050004000002001B", + "intro": "Neįmanoma atpažinti AMS C lizdo Nr. 4 įrenginyje esančios RFID žymės." + }, + { + "ecode": "050004000002001D", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 2 lizde." + }, + { + "ecode": "1201210000030002", + "intro": "AMS B izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203100000020002", + "intro": "AMS D izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203230000020001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203310000030003", + "intro": "AMS D izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702020000020002", + "intro": "AMS C: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0703920000020002", + "intro": "AMS D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0700020000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0702010000010004", + "intro": "AMS C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703010000010004", + "intro": "AMS D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1202110000010001", + "intro": "AMS C izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1202700000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203200000020005", + "intro": "Baigėsi AMS D izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "050003000001000B", + "intro": "Ekranas veikia netinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500040000020016", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 3." + }, + { + "ecode": "0701010000010003", + "intro": "AMS B pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200200000030002", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1200210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200700000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201110000010001", + "intro": "AMS B izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201120000010001", + "intro": "AMS B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201320000020002", + "intro": "AMS B lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1202330000010001", + "intro": "AMS C lizdo Nr. 4 RFID ritė yra sugadinta arba RFID (RF) įrangos grandinėje yra gedimas." + }, + { + "ecode": "0702930000020002", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0701910000010002", + "intro": "AMS B: 2-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702010000020010", + "intro": "AMS C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200300000030003", + "intro": "AMS A izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201210000030001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1202210000020004", + "intro": "Gali būti, kad „AMS C izdo Nr. 2“ gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202310000010001", + "intro": "AMS C lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203730000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0701800000010001", + "intro": "AMS B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703900000020001", + "intro": "AMS D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703010000020002", + "intro": "AMS D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200210000020004", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200330000030003", + "intro": "AMS A lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200730000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: 4-osios lizdo Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201310000010001", + "intro": "AMS B lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010001", + "intro": "AMS C izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202200000030001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203210000020005", + "intro": "Baigėsi AMS D izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000020004", + "intro": "AMS C Šepetėlinis variklis Nr. 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702900000020001", + "intro": "AMS C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0701130000020004", + "intro": "AMS B Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020014", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 1 lizde." + }, + { + "ecode": "0700010000020002", + "intro": "AMS A pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200310000010001", + "intro": "AMS A lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1200320000030003", + "intro": "AMS A lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1202220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202300000010001", + "intro": "AMS C lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202810000020001", + "intro": "AMS C izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0700900000010002", + "intro": "AMS A 1-ojo išmetimo vožtuvo ritė yra trumpai sujungta, o tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700910000020001", + "intro": "AMS A Išmetimo vožtuvo 2 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0700920000010001", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "050003000001000C", + "intro": "MC variklio valdymo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtis ir vėl jį įjunkite." + }, + { + "ecode": "0700900000020001", + "intro": "AMS A Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020012", + "intro": "Neįmanoma atpažinti AMS A lizdo Nr. 3 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0701010000010004", + "intro": "AMS B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1200100000010003", + "intro": "AMS „A izdo Nr. 1“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200110000020002", + "intro": "AMS A izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020004", + "intro": "AMS A izdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1202820000020001", + "intro": "AMS C lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000030001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700930000010001", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000020011", + "intro": "AMS A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1200230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200300000020002", + "intro": "AMS A lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1200310000030003", + "intro": "AMS A izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200810000020001", + "intro": "AMS A izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201100000010001", + "intro": "AMS B izdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201110000020002", + "intro": "AMS B izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000030002", + "intro": "AMS B izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201330000030003", + "intro": "AMS B lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702930000010001", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "12FF200000020001", + "intro": "Spool laikiklyje baigėsi gija; įdėkite naują giją." + }, + { + "ecode": "12FF200000020002", + "intro": "Spool laikiklyje nėra gijos; įdėkite naują giją." + }, + { + "ecode": "12FF200000020005", + "intro": "Gali būti nutrūkęs gija įrankio galvutėje." + }, + { + "ecode": "12FF200000020007", + "intro": "Nepavyko patikrinti gijos padėties įrankio galvutėje; spustelėkite čia, jei reikia pagalbos." + }, + { + "ecode": "12FF200000030007", + "intro": "Tikrinama visų AMS lizdų gijų padėtis, prašome palaukti." + }, + { + "ecode": "12FF800000020001", + "intro": "Spool laikiklyje esanti gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1200450000020001", + "intro": "Gijų pjovimo jutiklis veikia netinkamai. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1200450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. X ašies variklis gali praleisti žingsnius." + }, + { + "ecode": "1200450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1200510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0C0001000001000A", + "intro": "Gali būti, kad „Micro Lidar“ šviesos diodas yra sugedęs." + }, + { + "ecode": "0C00020000020002", + "intro": "Horizontali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00020000020008", + "intro": "Vertikali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00030000010009", + "intro": "Pirmojo sluoksnio tikrinimo modulis netikėtai perkrautas. Tikrinimo rezultatas gali būti netikslus." + }, + { + "ecode": "0C00030000020001", + "intro": "Nepavyko atlikti gijų ekspozicijos matavimo, nes šioje medžiagoje lazerio atspindys yra per silpnas. Pirmojo sluoksnio patikra gali būti netiksli." + }, + { + "ecode": "0C00030000020002", + "intro": "Pirmojo sluoksnio patikrinimas nutrauktas dėl nenormalių LIDAR duomenų." + }, + { + "ecode": "0C00030000020004", + "intro": "Dabartiniam spausdinimo užsakymui pirmojo sluoksnio patikra nepalaikoma." + }, + { + "ecode": "0C00030000020005", + "intro": "Pirmojo sluoksnio patikrinimas baigėsi neįprastai, todėl dabartiniai rezultatai gali būti netikslūs." + }, + { + "ecode": "0C00030000030006", + "intro": "Atliekų šachtoje galėjo susikaupti pašalintas gijos medžiaga. Prašome patikrinti ir išvalyti šachtą." + }, + { + "ecode": "0C00030000030007", + "intro": "Aptikti galimi pirmojo sluoksnio defektai. Prašome patikrinti pirmojo sluoksnio kokybę ir nuspręsti, ar reikia sustabdyti užduotį." + }, + { + "ecode": "0C00030000030008", + "intro": "Aptikti galimi spageti defektai. Prašome patikrinti spausdinimo kokybę ir nuspręsti, ar užduotį reikia nutraukti." + }, + { + "ecode": "0C00030000030010", + "intro": "Atrodo, kad jūsų spausdintuvas spausdina neišspaudžiant medžiagos." + }, + { + "ecode": "0703300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0702300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0701300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0700450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0500040000020020", + "intro": "" + }, + { + "ecode": "0300930000010004", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, turi atvirą grandinę." + }, + { + "ecode": "0300930000010007", + "intro": "Kameros temperatūra yra nenormali. Galbūt maitinimo bloke esantis temperatūros jutiklis yra trumpai sujungęs." + }, + { + "ecode": "0300930000010008", + "intro": "Kameros temperatūra yra nenormali. Gali būti, kad maitinimo bloke esantis temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300940000020003", + "intro": "Kameroje nepavyko pasiekti reikiamos temperatūros. Įrenginys sustos ir lauks, kol pasieks reikiamą kameros temperatūrą." + }, + { + "ecode": "0300940000030002", + "intro": "Jei kameros temperatūros nustatymo vertė viršys ribą, bus nustatyta ribinė vertė." + }, + { + "ecode": "0500020000020002", + "intro": "Nepavyko prisijungti prie įrenginio; patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020004", + "intro": "Nesankcionuotas vartotojas: patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020006", + "intro": "Įvyko srautinio perdavimo funkcijos klaida. Patikrinkite tinklo ryšį ir pabandykite dar kartą. Jei problema neišsprendžiama, galite iš naujo paleisti arba atnaujinti spausdintuvą." + }, + { + "ecode": "0500020000020007", + "intro": "Nepavyko prisijungti prie „Liveview“ paslaugos; patikrinkite savo interneto ryšį." + }, + { + "ecode": "0500020000020008", + "intro": "Laiko sinchronizavimas nepavyko." + }, + { + "ecode": "0500030000010001", + "intro": "MC modulis veikia netinkamai; prašome iš naujo paleisti įrenginį arba patikrinti įrenginio laidų jungtis." + }, + { + "ecode": "0500030000010002", + "intro": "Įrankio galvutė veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010003", + "intro": "AMS modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010004", + "intro": "AHB modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010005", + "intro": "Vidinė paslauga veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010006", + "intro": "Įvyko sistemos avarinė situacija. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010008", + "intro": "Įvyko sistemos įšalimas. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010009", + "intro": "Įvyko sistemos įšalimas. Sistema buvo atkurta automatiškai ją perkrovus." + }, + { + "ecode": "0500030000010023", + "intro": "kameros temperatūros reguliavimo modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010025", + "intro": "Dabartinė Aparatinė programinė įranga veikia netinkamai. Prašome ją atnaujinti dar kartą." + }, + { + "ecode": "0500040000010004", + "intro": "Spausdinimo failas yra neteisėtas." + }, + { + "ecode": "0500040000020007", + "intro": "Spausdinimo platformos temperatūra viršija gijos vitrifikacijos temperatūrą, dėl to gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras arba sumažinti spausdinimo platformos temperatūrą." + }, + { + "ecode": "0300400000020001", + "intro": "Duomenų perdavimas per nuoseklųjį prievadą vyksta netinkamai; galbūt Aparatinė programinė įranga veikia netinkamai." + }, + { + "ecode": "0300900000010004", + "intro": "Kameros šildymas neveikia. Šildymo ventiliatoriaus greitis per mažas." + }, + { + "ecode": "0300900000010005", + "intro": "Kameros šildymas neveikia. Šiluminė varža per didelė." + }, + { + "ecode": "0300900000010010", + "intro": "kameros temperatūros reguliatoriaus ryšys sutrikęs." + }, + { + "ecode": "0300910000010001", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300910000010003", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300910000010006", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300910000010007", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "0300910000010008", + "intro": "1-ojo kameros šildytuvo temperatūra nepasiekė nustatytos vertės." + }, + { + "ecode": "030091000001000A", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti sugedusi kintamosios srovės plokštė." + }, + { + "ecode": "0300920000010001", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300920000010002", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad šildytuve įvyko grandinės pertrauka arba suveikė terminis saugiklis." + }, + { + "ecode": "0300920000010003", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300920000010006", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300920000010007", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "0300920000010008", + "intro": "2-ojo kameros šildytuvo temperatūra nepasiekė nustatytos vertės." + }, + { + "ecode": "030092000001000A", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti sugedusi oro kondicionavimo plokštė." + }, + { + "ecode": "0300930000010001", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300930000010002", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklio grandinė yra atvira." + }, + { + "ecode": "0300930000010003", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, yra trumpai sujungtas." + }, + { + "ecode": "0300050000010001", + "intro": "Variklio valdiklis perkaista. Galbūt jo aušintuvas yra laisvas arba aušinimo ventiliatorius sugadintas." + }, + { + "ecode": "0300060000010001", + "intro": "Variklis „A“ turi atvirą grandinę. Gali būti, kad jungtis yra laisva arba variklis sugedęs." + }, + { + "ecode": "0300060000010002", + "intro": "Variklis „A“ yra trumpai sujungtas. Jis galbūt sugedo." + }, + { + "ecode": "0300070000010001", + "intro": "„Motor-B“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300070000010002", + "intro": "„Motor-B“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300080000010001", + "intro": "„Motor-Z“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300080000010002", + "intro": "„Motor-Z“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "03000A0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 1 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000A0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000A0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000A0000010004", + "intro": "Jėgos jutiklyje Nr. 1 užfiksuotas išorinis trikdys. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000A0000010005", + "intro": "Jėgos jutiklis Nr. 1 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000B0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 2 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000B0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000B0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra per silpnas. Galbūt nutrūko elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000B0000010004", + "intro": "Jėgos jutiklyje Nr. 2 užfiksuotas išorinis trikdys. Šildomojo pagrindo plokštė galėjo paliesti kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000B0000010005", + "intro": "Jėgos jutiklis Nr. 2 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000C0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 3 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000C0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000C0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000C0000010004", + "intro": "Jėgos jutiklyje Nr. 3 užfiksuotas išorinis trikdis. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000C0000010005", + "intro": "Jėgos jutiklis Nr. 3 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "0300100000020001", + "intro": "X ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300110000020001", + "intro": "Y ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300130000010001", + "intro": "Variklio A srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos diskretizavimo grandinės gedimu." + }, + { + "ecode": "0300140000010001", + "intro": "„Motor-B“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300150000010001", + "intro": "„Motor-Z“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300170000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300170000020002", + "intro": "Hotendo aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "03001B0000010001", + "intro": "Šildomojo pagrindo pagreičio jutiklio signalas yra silpnas. Jutiklis galėjo nukristi arba būti pažeistas." + }, + { + "ecode": "03001B0000010003", + "intro": "Šildomojo pagrindo pagreičio jutiklis užfiksavo netikėtą nuolatinę jėgą. Gali būti, kad jutiklis užstrigo arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03001C0000010001", + "intro": "Ekstruzijos variklio valdiklis veikia netinkamai. Gali būti, kad MOSFET trumpojo jungimo." + }, + { + "ecode": "0300200000010003", + "intro": "X ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300200000010004", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300010000010002", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuvo grandinė yra atvira arba termininis jungiklis yra atviras." + }, + { + "ecode": "0300010000010003", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; šildytuvas perkaitęs." + }, + { + "ecode": "0300010000010006", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300010000010007", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "030001000001000C", + "intro": "Šildomasis stalas ilgą laiką veikė esant maksimaliam apkrovimui. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300010000030008", + "intro": "Šildomo pagrindo temperatūra viršija ribinę vertę ir automatiškai prisitaiko prie ribinės temperatūros." + } + ] + } + } +} \ No newline at end of file diff --git a/resources/hms/hms_lt_22E.json b/resources/hms/hms_lt_22E.json new file mode 100644 index 0000000000..c570b3da0a --- /dev/null +++ b/resources/hms/hms_lt_22E.json @@ -0,0 +1,20217 @@ +{ + "result": 0, + "t": 1760060379, + "ver": 202510142200, + "data": { + "device_hms": { + "ver": 202510142200, + "lt": [ + { + "ecode": "0300020000010008", + "intro": "Ekstruderių antgalio temperatūra yra nenormali ir nepasiekia nustatytos vertės. Tai gali būti susiję su netinkamai uždėtu silikoniniu antgalio apvalkalu." + }, + { + "ecode": "030018000001000D", + "intro": "Nepavyko atlikti purkštuko užsikimšimo aptikimo kalibravimo. Nustatyta, kad purkštukui veikia per didelė jėga. Prašome įsitikinti, kad purkštukas yra tinkamai sumontuotas." + }, + { + "ecode": "030018000001000E", + "intro": "Nepavyko atlikti purkštuko užsikimšimo aptikimo kalibravimo. Purkštukas nelietė skylės vidinės sienelės. Prašome išvalyti purkštuką ir plieninės plokštės skylę šildomojo pagrindo dešinėje galinėje pusėje." + }, + { + "ecode": "0C0001000002000E", + "intro": "" + }, + { + "ecode": "0300090000020005", + "intro": "Ekstruderiui kyla veikimo sutrikimų. Jis gali būti užsikimšęs, arba gija gali būti per plona, dėl ko ekstruderiui slysta, arba išorėje pritvirtinta gija gali būti susipynusi." + }, + { + "ecode": "0300090000020004", + "intro": "Ekstruzijos pasipriešinimas yra nenormalus. Ekstruderiui gali būti užsikimšęs, arba gale gali būti įstrigęs gija, arba išorėje pritvirtintas gija gali būti susipynęs." + }, + { + "ecode": "0500070000020201", + "intro": "" + }, + { + "ecode": "0500070000020002", + "intro": "" + }, + { + "ecode": "0500070000020001", + "intro": "" + }, + { + "ecode": "0500070000020003", + "intro": "" + }, + { + "ecode": "0500070000020101", + "intro": "" + }, + { + "ecode": "03003A0000010001", + "intro": "Kairiojo pagalbinio komponento aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "03003A0000020002", + "intro": "Kairiojo pagalbinio komponento aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0500040000010056", + "intro": "" + }, + { + "ecode": "0503000000030027", + "intro": "" + }, + { + "ecode": "0503000000030028", + "intro": "" + }, + { + "ecode": "0503000000030029", + "intro": "" + }, + { + "ecode": "0500050000010021", + "intro": "Nepavyko patvirtinti „Time-lapse“ rinkinio. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C0003000003001A", + "intro": "Nepavyko aptikti svetimkūnio – galbūt dėl to, kad procesas buvo nutrauktas rankiniu būdu (pvz., paspaudus mygtuką „Stop“). Jei ne, pabandykite iš naujo paleisti spausdintuvą arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0501040000030002", + "intro": "Sriegines strypus dabar reikia sutepti." + }, + { + "ecode": "0500050000020030", + "intro": "" + }, + { + "ecode": "030018000001000C", + "intro": "Aptiktas neįprastas ekstruderių ekstruzijos jėgos jutiklio duomenų šuolis, kurį galėjo sukelti prastas jutiklio kontaktas arba jutiklio gedimas." + }, + { + "ecode": "0300910000010008", + "intro": "kameros šildytuvas nepasiekė nustatytos temperatūros." + }, + { + "ecode": "0C00030000020015", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Aptikta, kad „Live View“ kamera buvo pakeista. Spauskite spausdintuvo ekrane „Nustatymai > Kalibravimas“ ir iš naujo kalibruokite „Live View“ kamerą." + }, + { + "ecode": "0C00030000020014", + "intro": "Svetimų objektų aptikimo tikslumas sumažėjo. Jei tai pasikartoja dažnai, atlikite „Live View“ kameros kalibravimą (spausdintuvo ekrane pasirinkite „Nustatymai“ > „Kalibravimas“)." + }, + { + "ecode": "0C00030000020012", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Reikia kalibruoti „Live View“ kamerą. Spauskite spausdintuvo ekrane „Nustatymai > Kalibravimas“." + }, + { + "ecode": "0501040000030003", + "intro": "Linijines strypus dabar reikia išvalyti ir sutepti." + }, + { + "ecode": "0300180000030009", + "intro": "Atliekamas pirminis aukštos temperatūros pagrindo išlyginimas." + }, + { + "ecode": "03002D0000030009", + "intro": "Atliekamas pirminis aukštos temperatūros pagrindo išlyginimas." + }, + { + "ecode": "0500010000020003", + "intro": "" + }, + { + "ecode": "0500030000020012", + "intro": "" + }, + { + "ecode": "0500030000020013", + "intro": "" + }, + { + "ecode": "0500030000020014", + "intro": "" + }, + { + "ecode": "0500030000020015", + "intro": "" + }, + { + "ecode": "0500030000020016", + "intro": "" + }, + { + "ecode": "0500030000020017", + "intro": "" + }, + { + "ecode": "0500030000020018", + "intro": "" + }, + { + "ecode": "0500060000020007", + "intro": "" + }, + { + "ecode": "0500010000020009", + "intro": "" + }, + { + "ecode": "05000600000200A1", + "intro": "" + }, + { + "ecode": "0500060000020013", + "intro": "" + }, + { + "ecode": "0500060000020012", + "intro": "" + }, + { + "ecode": "0500060000020023", + "intro": "" + }, + { + "ecode": "0500060000020005", + "intro": "" + }, + { + "ecode": "0500060000020024", + "intro": "" + }, + { + "ecode": "0500060000020011", + "intro": "" + }, + { + "ecode": "0500060000020008", + "intro": "" + }, + { + "ecode": "0500060000020022", + "intro": "" + }, + { + "ecode": "0500010000020008", + "intro": "" + }, + { + "ecode": "0500060000020014", + "intro": "" + }, + { + "ecode": "1800020000020002", + "intro": "AMS-HT A jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0500030000010053", + "intro": "" + }, + { + "ecode": "0C00010000020019", + "intro": "" + }, + { + "ecode": "0500060000020054", + "intro": "" + }, + { + "ecode": "0500060000020044", + "intro": "" + }, + { + "ecode": "0500060000020061", + "intro": "" + }, + { + "ecode": "0C0001000002001B", + "intro": "" + }, + { + "ecode": "0500050000010009", + "intro": "" + }, + { + "ecode": "0500050000010008", + "intro": "" + }, + { + "ecode": "050005000001000B", + "intro": "" + }, + { + "ecode": "050005000001000A", + "intro": "" + }, + { + "ecode": "050005000001000C", + "intro": "" + }, + { + "ecode": "0C00010000020016", + "intro": "" + }, + { + "ecode": "0C00010000020015", + "intro": "" + }, + { + "ecode": "0500030000020010", + "intro": "" + }, + { + "ecode": "0500030000020011", + "intro": "" + }, + { + "ecode": "0500030000030007", + "intro": "" + }, + { + "ecode": "0500010000030009", + "intro": "" + }, + { + "ecode": "05000600000200A0", + "intro": "" + }, + { + "ecode": "0500060000020021", + "intro": "" + }, + { + "ecode": "0C0001000002001A", + "intro": "" + }, + { + "ecode": "0500060000020062", + "intro": "" + }, + { + "ecode": "03002D0000010006", + "intro": "Nepavyko išlyginti šildomo spausdinimo stalo – galbūt dėl ant jo esančių svetimkūnių arba dėl to, kad stalas yra pasviręs. Tęsiant spausdinimą, gali būti pažeistas spausdinimo stalas. Prieš bandant dar kartą, pašalinkite visus nešvarumus arba rankiniu būdu išlyginkite stalą." + }, + { + "ecode": "0500030000020055", + "intro": "Vartotojo duomenų galiojimo laikas baigėsi, prašome prisijungti iš naujo." + }, + { + "ecode": "0300290000010001", + "intro": "Vaizdo kodavimo šablonai negali būti atpažinti; galimos priežastys – vaizdo kodavimo šablono iškraipymas, per didelė apšvieta ir plokštelės netinkamas padėties nustatymas." + }, + { + "ecode": "0703250000020001", + "intro": "AMS D spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700250000020001", + "intro": "AMS A spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0701250000020001", + "intro": "AMS B spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0706250000020001", + "intro": "„AMS G“ spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0702250000020001", + "intro": "„AMS C“ spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0705250000020001", + "intro": "AMS F spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prašome prijungti maitinimo adapterį." + }, + { + "ecode": "0707250000020001", + "intro": "AMS H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0704250000020001", + "intro": "AMS E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "03002B0000020001", + "intro": "Oro sklendės kalibravimas nepavyko. Patikrinkite, ar sklendę neužblokuoja kokie nors pašaliniai daiktai." + }, + { + "ecode": "0701900000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0707910000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1803900000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807910000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800910000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800900000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0704900000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1803910000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0705900000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1805900000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0706900000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1804900000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0707900000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1802900000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1805910000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1804910000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806900000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0700910000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702900000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0706910000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0701910000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801910000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806910000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0703910000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0700900000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0704910000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0705910000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702910000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0703900000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801900000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807900000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1802910000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0702960000020004", + "intro": "AMS C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1800960000020004", + "intro": "AMS-HT A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0704960000020004", + "intro": "AMS E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1801250000020001", + "intro": "AMS-HT B spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1803250000020001", + "intro": "AMS-HT D spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1807250000020001", + "intro": "AMS-HT H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1806250000020001", + "intro": "AMS-HT G spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0703960000020004", + "intro": "AMS D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0707960000020004", + "intro": "AMS H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1802960000020004", + "intro": "AMS-HT C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0300320000010001", + "intro": "Dešinioji pusė (pagalbinių komponentų aušinimas ir filtravimas) Ventiliatoriaus greitis per mažas arba jis sustojo. Gali būti, kad jis užstrigo arba jungtis nėra tinkamai prijungta." + }, + { + "ecode": "1803960000020004", + "intro": "AMS-HT D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0706960000020004", + "intro": "AMS G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804960000020004", + "intro": "AMS-HT E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0701960000020004", + "intro": "AMS B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1807960000020004", + "intro": "AMS-HT H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804250000020001", + "intro": "AMS-HT E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1805960000020004", + "intro": "AMS-HT F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1805250000020001", + "intro": "AMS-HT F spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1800250000020001", + "intro": "AMS-HT A spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1801960000020004", + "intro": "AMS-HT B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1806960000020004", + "intro": "AMS-HT G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0300320000010002", + "intro": "Dešinioji pusė (pagalbinio komponento aušinimo ir filtravimo sistema). Ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "1802250000020001", + "intro": "AMS-HT C spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700960000020004", + "intro": "AMS A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0705960000020004", + "intro": "AMS F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0500060000020001", + "intro": "„Toolhead“ kamera nėra įtaisyta; patikrinkite aparatūros jungtį." + }, + { + "ecode": "0700610000020001", + "intro": "AMS A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701610000020001", + "intro": "AMS B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701620000020001", + "intro": "AMS B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701630000020001", + "intro": "AMS B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702600000020001", + "intro": "AMS C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802620000020001", + "intro": "AMS-HT C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707620000020001", + "intro": "AMS H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803620000020001", + "intro": "AMS-HT D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804610000020001", + "intro": "AMS-HT E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804630000020001", + "intro": "AMS-HT E lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707630000020001", + "intro": "AMS H Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807600000020001", + "intro": "AMS-HT H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705630000020001", + "intro": "AMS F Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704600000020001", + "intro": "AMS E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800600000020001", + "intro": "AMS-HT A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707600000020001", + "intro": "AMS H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801610000020001", + "intro": "AMS-HT B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706600000020001", + "intro": "AMS G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706630000020001", + "intro": "AMS G Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0300180000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių. Taip pat įsitikinkite, kad spausdinimo plokštė yra teisingai įdėta, kad būtų išvengta susidūrimų su aplinkinėmis konstrukcijomis." + }, + { + "ecode": "0700600000020001", + "intro": "AMS A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700620000020001", + "intro": "AMS A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700630000020001", + "intro": "AMS A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701600000020001", + "intro": "AMS B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702610000020001", + "intro": "AMS C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702620000020001", + "intro": "AMS C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702630000020001", + "intro": "AMS C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703600000020001", + "intro": "AMS D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703610000020001", + "intro": "AMS D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703620000020001", + "intro": "AMS D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703630000020001", + "intro": "AMS D Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806600000020001", + "intro": "AMS-HT G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706620000020001", + "intro": "AMS G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805630000020001", + "intro": "AMS-HT F lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803630000020001", + "intro": "AMS-HT D lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705610000020001", + "intro": "AMS F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806610000020001", + "intro": "AMS-HT G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704620000020001", + "intro": "AMS E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800630000020001", + "intro": "AMS-HT A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802600000020001", + "intro": "AMS-HT C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801630000020001", + "intro": "AMS-HT B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806630000020001", + "intro": "AMS-HT G lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704630000020001", + "intro": "AMS E Slot 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805610000020001", + "intro": "AMS-HT F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802630000020001", + "intro": "AMS-HT C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804620000020001", + "intro": "AMS-HT E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805620000020001", + "intro": "AMS-HT F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800620000020001", + "intro": "AMS-HT A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706610000020001", + "intro": "AMS G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705620000020001", + "intro": "AMS F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805600000020001", + "intro": "AMS-HT F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803610000020001", + "intro": "AMS-HT D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801600000020001", + "intro": "AMS-HT B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807620000020001", + "intro": "AMS-HT H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807630000020001", + "intro": "AMS-HT H lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804600000020001", + "intro": "AMS-HT E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707610000020001", + "intro": "AMS H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806620000020001", + "intro": "AMS-HT G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807610000020001", + "intro": "AMS-HT H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803600000020001", + "intro": "AMS-HT D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802610000020001", + "intro": "AMS-HT C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800610000020001", + "intro": "AMS-HT A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801620000020001", + "intro": "AMS-HT B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705600000020001", + "intro": "AMS F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704610000020001", + "intro": "AMS E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "050003000002000E", + "intro": "Kai kurie moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos naudojimui. Prisijungę prie interneto, eikite į puslapį „Aparatinė programinė įranga“ ir atnaujinkite aparatinę programinę įrangą; taip pat galite atnaujinti aparatinę programinę įrangą neprisijungę prie interneto, vadovaudamiesi wiki nurodymais." + }, + { + "ecode": "0500050000010007", + "intro": "Nepavyko patikrinti MQTT komandos. Atnaujinkite „Studio“ (įskaitant tinklo įskiepį) arba „Handy“ iki naujausios versijos, tada iš naujo paleiskite programą ir pabandykite dar kartą." + }, + { + "ecode": "0300A80000010001", + "intro": "AMS maitinimo šaltinio veikimo sutrikimas, galbūt susijęs su AMS pažeidimu, trumpojo jungimo atveju AMS sąsajoje arba per dideliu AMS jungčių skaičiumi. Prašome patikrinti, ar įrenginys yra teisingai prijungtas." + }, + { + "ecode": "030018000001000B", + "intro": "Nepavyko nustatyti purkštuko buvimo: purkštukas neįmontuotas arba įmontuotas netinkamai." + }, + { + "ecode": "0706230000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702220000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804230000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705210000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805220000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702210000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804210000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805230000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703200000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705200000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804200000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020015", + "intro": "AMS B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0701230000020012", + "intro": "AMS B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020013", + "intro": "AMS-HT F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020012", + "intro": "AMS-HT H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020016", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020012", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020015", + "intro": "AMS-HT B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800200000020014", + "intro": "AMS-HT „lizdo Nr. 1“ gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020016", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020013", + "intro": "AMS-HT G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805220000020015", + "intro": "AMS-HT F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020013", + "intro": "AMS-HT F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020014", + "intro": "AMS E lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0707200000020015", + "intro": "AMS H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1807210000020015", + "intro": "AMS-HT H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700210000020014", + "intro": "AMS A lizdo Nr. 2 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020013", + "intro": "AMS-HT D lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020013", + "intro": "AMS-HT C lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807220000020015", + "intro": "AMS-HT H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700210000020016", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706230000020013", + "intro": "AMS G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020013", + "intro": "AMS E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020015", + "intro": "AMS-HT E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803230000020015", + "intro": "AMS-HT D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707210000020015", + "intro": "AMS H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707230000020013", + "intro": "AMS H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803220000020012", + "intro": "AMS-HT D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703210000020015", + "intro": "AMS D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1800220000020015", + "intro": "AMS-HT A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020013", + "intro": "AMS-HT D lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020012", + "intro": "AMS G lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020016", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020015", + "intro": "AMS E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020014", + "intro": "AMS-HT A lizdo Nr. 4 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020014", + "intro": "AMS C lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802200000020012", + "intro": "AMS-HT C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020016", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020015", + "intro": "AMS lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806230000020015", + "intro": "AMS-HT G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700220000020012", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020015", + "intro": "AMS G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803200000020015", + "intro": "AMS-HT D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "0705230000020012", + "intro": "AMS F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806210000020014", + "intro": "AMS-HT G lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700220000020014", + "intro": "AMS A lizdo Nr. 3 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020015", + "intro": "AMS B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803210000020012", + "intro": "AMS-HT D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020014", + "intro": "AMS-HT E lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020015", + "intro": "AMS-HT E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800230000020012", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020015", + "intro": "AMS-HT G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0706220000020015", + "intro": "AMS G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0701200000020013", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800220000020012", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020013", + "intro": "AMS-HT E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801220000020015", + "intro": "AMS-HT B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020012", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020014", + "intro": "AMS-HT F lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0706230000020025", + "intro": "AMS G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800220000020025", + "intro": "AMS-HT A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1800230000020025", + "intro": "AMS-HT A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807210000020025", + "intro": "AMS-HT H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0707230000020025", + "intro": "AMS H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700230000020025", + "intro": "AMS A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701210000020025", + "intro": "AMS B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807200000020025", + "intro": "AMS-HT H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801230000020025", + "intro": "AMS-HT B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801220000020025", + "intro": "AMS-HT B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701220000020025", + "intro": "AMS B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705220000020025", + "intro": "AMS F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ir pernelyg išlenktas." + }, + { + "ecode": "1804210000020025", + "intro": "AMS-HT E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0704220000020025", + "intro": "AMS E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0701200000020025", + "intro": "AMS B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804220000020025", + "intro": "AMS-HT E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802220000020025", + "intro": "AMS-HT C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803200000020025", + "intro": "AMS-HT D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1802200000020025", + "intro": "AMS-HT C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804200000020025", + "intro": "AMS-HT E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707210000020025", + "intro": "AMS H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705200000020025", + "intro": "AMS F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700220000020025", + "intro": "AMS A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700210000020025", + "intro": "AMS A lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801200000020025", + "intro": "AMS-HT B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706210000020025", + "intro": "AMS G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707220000020025", + "intro": "AMS H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805230000020025", + "intro": "AMS-HT F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1801210000020025", + "intro": "AMS-HT B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704200000020025", + "intro": "AMS E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0700200000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701200000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802220000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807210000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800230000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706220000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704230000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700210000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800220000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801230000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707220000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704220000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704210000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803220000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701210000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703220000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806230000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707210000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807230000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802210000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703210000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807210000020016", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020013", + "intro": "AMS-HT H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020013", + "intro": "AMS-HT C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707200000020014", + "intro": "AMS H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020012", + "intro": "AMS-HT E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020014", + "intro": "AMS C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703200000020013", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702200000020012", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020013", + "intro": "AMS-HT E lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800210000020014", + "intro": "AMS-HT A tipo 2 lizdo gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0706230000020015", + "intro": "AMS G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020015", + "intro": "AMS-HT B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0704200000020013", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020015", + "intro": "AMS F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1802200000020013", + "intro": "AMS-HT C lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700220000020015", + "intro": "AMS A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702230000020016", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020014", + "intro": "AMS-HT H lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802220000020016", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020012", + "intro": "AMS E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020014", + "intro": "AMS-HT B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020016", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020012", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020014", + "intro": "AMS-HT C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0700220000020013", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700200000020012", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800230000020015", + "intro": "AMS-HT A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800220000020013", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800230000020016", + "intro": "AMS-HT: lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707200000020013", + "intro": "AMS H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020012", + "intro": "AMS-HT C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020015", + "intro": "AMS C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806220000020014", + "intro": "AMS-HT G lizdo Nr. 3 gijų Gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802200000020015", + "intro": "AMS-HT C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1805220000020016", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707230000020012", + "intro": "AMS H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800210000020016", + "intro": "AMS-HT: lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020016", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704210000020014", + "intro": "AMS E lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703230000020016", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020012", + "intro": "AMS-HT B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0701200000020012", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020012", + "intro": "AMS-HT B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020015", + "intro": "AMS H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020014", + "intro": "AMS D lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700200000020013", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704200000020016", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707210000020013", + "intro": "AMS H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806230000020012", + "intro": "AMS-HT G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704200000020014", + "intro": "AMS E lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704230000020016", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020013", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703220000020012", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805220000020012", + "intro": "AMS-HT F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020012", + "intro": "AMS-HT H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020013", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020016", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020014", + "intro": "AMS-HT D lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704200000020012", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020016", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803200000020016", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020012", + "intro": "AMS-HT H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804230000020016", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020013", + "intro": "AMS G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020014", + "intro": "AMS-HT H lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020014", + "intro": "AMS B lizdo Nr. 2-ojo gijos jutiklio signalas negaunamas; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806200000020012", + "intro": "AMS-HT G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703200000020016", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020014", + "intro": "AMS D lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704220000020013", + "intro": "AMS E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703210000020013", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701230000020013", + "intro": "AMS B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020014", + "intro": "AMS-HT E lizdo Nr. 4 gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020016", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020014", + "intro": "AMS-HT F lizdo Nr. 3 gijų gijų skaitiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "1806210000020012", + "intro": "AMS-HT G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020013", + "intro": "AMS E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020014", + "intro": "AMS-HT H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020016", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020013", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020012", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705210000020015", + "intro": "AMS F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0707200000020012", + "intro": "AMS H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800220000020016", + "intro": "AMS-HT: lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020015", + "intro": "AMS D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0702210000020016", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701220000020016", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703200000020015", + "intro": "AMS D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700200000020014", + "intro": "AMS A lizdo Nr. 1 Gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0705200000020012", + "intro": "AMS F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704230000020012", + "intro": "AMS E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020016", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020015", + "intro": "AMS-HT: lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0705230000020016", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802220000020014", + "intro": "AMS-HT C lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020015", + "intro": "AMS-HT E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020013", + "intro": "AMS-HT D lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706200000020015", + "intro": "AMS G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020013", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801200000020014", + "intro": "AMS-HT B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806210000020013", + "intro": "AMS-HT G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802200000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807200000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801200000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707200000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806200000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800200000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805200000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706200000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704200000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702200000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805200000020025", + "intro": "AMS-HT F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705210000020025", + "intro": "AMS F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806210000020025", + "intro": "AMS-HT G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703230000020025", + "intro": "AMS D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807230000020025", + "intro": "AMS-HT H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800200000020025", + "intro": "AMS-HT A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806200000020025", + "intro": "AMS-HT G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807220000020025", + "intro": "AMS-HT H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806220000020025", + "intro": "AMS-HT G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806230000020025", + "intro": "AMS-HT G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707200000020025", + "intro": "AMS H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702210000020025", + "intro": "AMS C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805220000020025", + "intro": "AMS-HT F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703220000020025", + "intro": "AMS D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1803220000020025", + "intro": "AMS-HT D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704230000020025", + "intro": "AMS E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706220000020025", + "intro": "AMS G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1804230000020025", + "intro": "AMS-HT E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704210000020025", + "intro": "AMS E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705230000020025", + "intro": "AMS F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803210000020015", + "intro": "AMS-HT D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0705230000020013", + "intro": "AMS F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707230000020016", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020016", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700220000020016", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1804220000020013", + "intro": "AMS-HT E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020016", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020016", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805210000020013", + "intro": "AMS-HT F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706210000020014", + "intro": "AMS G lizdo Nr. 2 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701220000020014", + "intro": "AMS B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1800220000020014", + "intro": "AMS-HT A lizdo Nr. 3 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802210000020016", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704200000020015", + "intro": "AMS E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020014", + "intro": "AMS A lizdo Nr. 4 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0702200000020013", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802210000020014", + "intro": "AMS-HT C lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707210000020016", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703210000020012", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020014", + "intro": "AMS-HT G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704210000020012", + "intro": "AMS E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020012", + "intro": "AMS G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020014", + "intro": "AMS H lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700210000020012", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705220000020015", + "intro": "AMS F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800210000020012", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020015", + "intro": "AMS-HT F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0703230000020015", + "intro": "AMS D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020014", + "intro": "AMS D lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805210000020012", + "intro": "AMS-HT F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020016", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705200000020016", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020014", + "intro": "AMS E lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804210000020012", + "intro": "AMS-HT E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020016", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705210000020012", + "intro": "AMS F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020016", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803230000020012", + "intro": "AMS-HT D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020016", + "intro": "AMS: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801220000020016", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706210000020013", + "intro": "AMS G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807200000020015", + "intro": "AMS-HT H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020012", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806220000020013", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020012", + "intro": "AMS-HT C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020014", + "intro": "AMS-HT B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802220000020015", + "intro": "AMS-HT C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0706230000020012", + "intro": "AMS G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020016", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020015", + "intro": "AMS-HT G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1805230000020015", + "intro": "AMS-HT F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1802230000020015", + "intro": "AMS-HT C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1806210000020015", + "intro": "AMS-HT G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702210000020015", + "intro": "AMS C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020016", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704230000020015", + "intro": "AMS E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806200000020013", + "intro": "AMS-HT G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701220000020013", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805210000020016", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020013", + "intro": "AMS F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805200000020014", + "intro": "AMS-HT F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020012", + "intro": "AMS-HT E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020013", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700230000020013", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020013", + "intro": "AMS-HT H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707220000020012", + "intro": "AMS H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707220000020015", + "intro": "AMS H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700230000020016", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020015", + "intro": "AMS B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1801200000020016", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707220000020014", + "intro": "AMS H lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020012", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807220000020016", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020015", + "intro": "AMS-HT A lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0706230000020014", + "intro": "AMS G lizdo Nr. 4-osios gijos jutiklis neperduoda signalo, o tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020013", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806200000020016", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020014", + "intro": "AMS G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1803230000020014", + "intro": "AMS-HT D lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1805200000020015", + "intro": "AMS-HT F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801210000020015", + "intro": "AMS-HT B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800200000020013", + "intro": "AMS-HT A lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020014", + "intro": "AMS-HT B lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705220000020016", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020016", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020016", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020014", + "intro": "AMS B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801200000020013", + "intro": "AMS-HT B lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020015", + "intro": "AMS-HT E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1805200000020012", + "intro": "AMS-HT F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020015", + "intro": "AMS C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0702230000020012", + "intro": "AMS C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702220000020015", + "intro": "AMS C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020014", + "intro": "AMS-HT D lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805230000020016", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020016", + "intro": "AMS-HT: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802230000020014", + "intro": "AMS-HT C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1801220000020013", + "intro": "AMS-HT B lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020014", + "intro": "AMS-HT E lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806220000020016", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702230000020013", + "intro": "AMS C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020016", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020013", + "intro": "AMS-HT B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705230000020015", + "intro": "AMS F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1802210000020015", + "intro": "AMS-HT C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0701220000020012", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706220000020014", + "intro": "AMS G lizdo Nr. 3 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0706220000020016", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020013", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020013", + "intro": "AMS-HT H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020014", + "intro": "AMS F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020014", + "intro": "AMS-HT D lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020013", + "intro": "AMS H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020013", + "intro": "AMS F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705210000020013", + "intro": "AMS F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020012", + "intro": "AMS-HT E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800210000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803230000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702230000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703230000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806210000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806220000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804220000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705230000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802230000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803210000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700230000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "07FFA00000020001", + "intro": "Pasibaigė purkštuko ištraukimo šaltuoju būdu laiko limitas. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "0707230000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805210000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700220000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807220000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801210000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801220000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705220000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803200000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020016", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020014", + "intro": "AMS-HT H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0703230000020014", + "intro": "AMS D lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020013", + "intro": "AMS-HT D lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020016", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702210000020012", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806230000020014", + "intro": "AMS-HT G lizdo Nr. 4-gijų gijų skaitiklis negauna signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "0707210000020012", + "intro": "AMS H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706230000020016", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020014", + "intro": "AMS B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020013", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020013", + "intro": "AMS G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803200000020012", + "intro": "AMS-HT D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707200000020016", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020013", + "intro": "AMS-HT F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800200000020012", + "intro": "AMS-HT A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707210000020014", + "intro": "AMS H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020014", + "intro": "AMS F lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020014", + "intro": "AMS C lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020016", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020014", + "intro": "AMS F lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801210000020013", + "intro": "AMS-HT B lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804220000020014", + "intro": "AMS-HT E lizdo Nr. 3 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1807220000020013", + "intro": "AMS-HT H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803210000020016", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807230000020015", + "intro": "AMS-HT H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020012", + "intro": "AMS-HT B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700230000020015", + "intro": "AMS A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020012", + "intro": "AMS-HT F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705230000020014", + "intro": "AMS F lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806210000020016", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807210000020012", + "intro": "AMS-HT H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805230000020014", + "intro": "AMS-HT F lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020013", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020012", + "intro": "AMS-HT B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706200000020012", + "intro": "AMS G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020015", + "intro": "AMS lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0705220000020012", + "intro": "AMS F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020012", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804220000020016", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702200000020014", + "intro": "AMS C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701200000020015", + "intro": "AMS B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1804230000020013", + "intro": "AMS-HT E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704210000020015", + "intro": "AMS E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020015", + "intro": "AMS-HT D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702230000020025", + "intro": "AMS C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800210000020025", + "intro": "AMS-HT: lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702220000020025", + "intro": "AMS C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802210000020025", + "intro": "AMS-HT C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805210000020025", + "intro": "AMS-HT F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703210000020025", + "intro": "AMS D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706200000020025", + "intro": "AMS G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803230000020025", + "intro": "AMS-HT D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802230000020025", + "intro": "AMS-HT C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703200000020025", + "intro": "AMS D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701230000020025", + "intro": "AMS B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700200000020025", + "intro": "AMS A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702200000020025", + "intro": "AMS C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803210000020025", + "intro": "AMS-HT D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "18FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "03002C0000010001", + "intro": "Po šildomojo pagrindo aptikta kliūtis. Prašome ją pašalinti, kad spausdinimas vyktų sklandžiai." + }, + { + "ecode": "0300930000010006", + "intro": "Kameros temperatūra yra nenormali. Galbūt oro įvado vietoje esantis kameros temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300930000010005", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0700400000020001", + "intro": "AMS A. Prarastas gijos buferio padėties signalas: galbūt sutrikęs kabelis arba padėties jutiklis." + }, + { + "ecode": "1800400000020001", + "intro": "AMS-HT A – prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1803400000020001", + "intro": "Prarastas AMS-HT D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0701400000020001", + "intro": "Prarastas AMS B gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "050003000001000E", + "intro": "Kai kurie išoriniai moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos normaliam veikimui. Norėdami atnaujinti aparatinę programinę įrangą, prisijunkite prie interneto ir eikite į puslapį „Aparatinė programinė įranga“." + }, + { + "ecode": "1801400000020001", + "intro": "AMS-HT B prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0705400000020001", + "intro": "Prarastas AMS F gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1805400000020001", + "intro": "AMS-HT F prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0706400000020001", + "intro": "Prarastas AMS G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0702400000020001", + "intro": "Prarastas AMS C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0703400000020001", + "intro": "Prarastas AMS D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0704400000020001", + "intro": "AMS E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0707400000020001", + "intro": "Prarastas AMS H gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1806400000020001", + "intro": "Prarastas AMS-HT G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1802400000020001", + "intro": "Prarastas AMS-HT C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1804400000020001", + "intro": "AMS-HT E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1807400000020001", + "intro": "AMS-HT H Gijos buferio padėties signalas prarastas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0700900000010002", + "intro": "AMS A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701910000010002", + "intro": "AMS B: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703900000010002", + "intro": "AMS D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702910000010002", + "intro": "AMS C: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701900000010002", + "intro": "AMS B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703910000010002", + "intro": "AMS D: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702900000010002", + "intro": "AMS C: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804910000010002", + "intro": "AMS-HT E 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801910000010002", + "intro": "AMS-HT B 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806900000010002", + "intro": "AMS-HT G 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805910000010002", + "intro": "AMS-HT F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807900000010002", + "intro": "AMS-HT H 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805900000010002", + "intro": "AMS-HT F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800900000010002", + "intro": "AMS-HT A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704900000010002", + "intro": "AMS E: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800910000010002", + "intro": "AMS-HT A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802900000010002", + "intro": "AMS-HT C 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705910000010002", + "intro": "AMS F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707900000010002", + "intro": "AMS H: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706910000010002", + "intro": "AMS G: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807910000010002", + "intro": "AMS-HT H 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707910000010002", + "intro": "AMS H: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802910000010002", + "intro": "AMS-HT C 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804900000010002", + "intro": "AMS-HT E 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705900000010002", + "intro": "AMS F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706900000010002", + "intro": "AMS G: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704910000010002", + "intro": "AMS E: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801900000010002", + "intro": "AMS-HT B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803900000010002", + "intro": "AMS-HT D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803910000010002", + "intro": "AMS-HT D 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806910000010002", + "intro": "AMS-HT G 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700910000010002", + "intro": "AMS A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801200000020023", + "intro": "AMS-HT B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804200000020023", + "intro": "AMS-HT E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707220000020023", + "intro": "AMS H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700230000020023", + "intro": "AMS: 4-oje lizdoje esanti AMS vidinė lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701230000020023", + "intro": "AMS B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803200000020023", + "intro": "AMS-HT D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802200000020023", + "intro": "AMS-HT C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707210000020023", + "intro": "AMS H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801230000020023", + "intro": "AMS-HT B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706200000020023", + "intro": "AMS G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806220000020023", + "intro": "AMS-HT G lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706220000020023", + "intro": "AMS G lizdo Nr. 3: AMS viduje esanti lempa yra sudaužyta arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806210000020023", + "intro": "AMS-HT G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti kaitinamosios gijos." + }, + { + "ecode": "1802230000020023", + "intro": "AMS-HT C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805220000020023", + "intro": "AMS-HT F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800220000020023", + "intro": "AMS-HT A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707200000020023", + "intro": "AMS H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805210000020023", + "intro": "AMS-HT F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703230000020023", + "intro": "AMS D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804230000020023", + "intro": "AMS-HT E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704230000020023", + "intro": "AMS E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704210000020023", + "intro": "AMS E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807210000020023", + "intro": "AMS-HT H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807220000020023", + "intro": "AMS-HT H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707230000020023", + "intro": "AMS H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702210000020023", + "intro": "AMS C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802210000020023", + "intro": "AMS-HT C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704220000020023", + "intro": "AMS E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701210000020023", + "intro": "AMS B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800230000020023", + "intro": "AMS-HT: lizdo Nr. 4 vamzdelis AMS viduje, yra sulaužyta arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701220000020023", + "intro": "AMS B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807200000020023", + "intro": "AMS-HT H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701200000020023", + "intro": "AMS B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800200000020023", + "intro": "AMS-HT A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705200000020023", + "intro": "AMS F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705230000020023", + "intro": "AMS F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700210000020023", + "intro": "AMS A lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801220000020023", + "intro": "AMS-HT B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705210000020023", + "intro": "AMS F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704200000020023", + "intro": "AMS E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803210000020023", + "intro": "AMS-HT D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803220000020023", + "intro": "AMS-HT D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702230000020023", + "intro": "AMS C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706230000020023", + "intro": "AMS G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700220000020023", + "intro": "AMS A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705220000020023", + "intro": "AMS F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807230000020023", + "intro": "AMS-HT H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706210000020023", + "intro": "AMS G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702200000020023", + "intro": "AMS C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703200000020023", + "intro": "AMS D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805230000020023", + "intro": "AMS-HT F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804220000020023", + "intro": "AMS-HT E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806230000020023", + "intro": "AMS-HT G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804210000020023", + "intro": "AMS-HT E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801210000020023", + "intro": "AMS-HT B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703220000020023", + "intro": "AMS D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700200000020023", + "intro": "AMS A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800210000020023", + "intro": "AMS-HT A lizdo Nr. 2: AMS viduje esanti lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702220000020023", + "intro": "AMS C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805200000020023", + "intro": "AMS-HT F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803230000020023", + "intro": "AMS-HT D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802220000020023", + "intro": "AMS-HT C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703210000020023", + "intro": "AMS D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806200000020023", + "intro": "AMS-HT G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0C00040000020026", + "intro": "Nepavyko inicijuoti „Liveview“ kameros, todėl kai kurios AI funkcijos, pvz., „Spaghetti Detection“, bus išjungtos. Prašome iš naujo paleisti spausdintuvą. Jei problema neišsprendžiama, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "050001000001000A", + "intro": "" + }, + { + "ecode": "0500060000020003", + "intro": "„BirdsEye“ kamera nėra įdiegta; patikrinkite įrangos jungtį" + }, + { + "ecode": "0C0003000002001C", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "030001000003000F", + "intro": "Šiuo metu kameros temperatūra yra aukšta, o šildomasis pagrindas atvėsta lėtai. Norint pagreitinti atvėsinimo procesą, rekomenduojama atidaryti viršutinį dangtį arba priekines dureles." + }, + { + "ecode": "0300930000010004", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, turi atvirą grandinę." + }, + { + "ecode": "0500030000010004", + "intro": "Modulis „Filament Buffer“ veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0700980000020001", + "intro": "AMS A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583040000010045", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "1803980000020001", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0703980000020001", + "intro": "AMS D Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0705980000020001", + "intro": "AMS F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582040000010045", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0703980000020002", + "intro": "AMS D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020002", + "intro": "AMS G Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586040000010045", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0700980000020002", + "intro": "AMS A Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502050000010014", + "intro": "AMS C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0702980000020002", + "intro": "AMS C Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1802980000020002", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020001", + "intro": "AMS E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020001", + "intro": "AMS G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502040000010044", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0585040000010045", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0501050000010014", + "intro": "AMS B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0585050000010017", + "intro": "AMS-HT F sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1807980000020002", + "intro": "AMS-HT H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0587040000010045", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1802980000020001", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586050000010017", + "intro": "AMS-HT G sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0707980000020002", + "intro": "AMS H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0701980000020001", + "intro": "AMS B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0503050000010014", + "intro": "AMS D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0503040000010044", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1800980000020002", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020001", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0500050000010014", + "intro": "Nepavyko atlikti AMS A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701980000020002", + "intro": "AMS B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0581040000010045", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0707980000020001", + "intro": "AMS H Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1800980000020001", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1804980000020002", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0702980000020001", + "intro": "AMS C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020002", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1807980000020001", + "intro": "AMS-HT H Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0501040000010044", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0580040000010045", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0584040000010045", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1805980000020001", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0584050000010017", + "intro": "AMS-HT E sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0587050000010017", + "intro": "AMS-HT H sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010044", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0581050000010017", + "intro": "AMS-HT B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1804980000020001", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020002", + "intro": "AMS E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582050000010017", + "intro": "AMS-HT C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0580050000010017", + "intro": "Nepavyko atlikti AMS-HT A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0705980000020002", + "intro": "AMS F Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1805980000020002", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583050000010017", + "intro": "AMS-HT D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1803980000020002", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020001", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020002", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per didelė, dėl to gali būti sugadinta šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0C00010000010018", + "intro": "" + }, + { + "ecode": "0C00040000010025", + "intro": "Įrenginys neveikia tinkamai; prašome jį iš naujo paleisti." + }, + { + "ecode": "0C00040000030018", + "intro": "Nepavyko atlikti pjovimo peilio poslinkio kalibravimo. Tai gali turėti įtakos pjovimo tikslumui. Prašome pasitikrinti „Wiki“ puslapyje, ar peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0C00040000020023", + "intro": "Nepavyko išmatuoti storio – matavimo galvutės kamera negalėjo aptikti medžiagos paviršiaus." + }, + { + "ecode": "0500040000020043", + "intro": "„Toolhead“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti darbą." + }, + { + "ecode": "03000F0000010001", + "intro": "Aptikti neįprasti akselerometro duomenys. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500020000020008", + "intro": "Laiko sinchronizavimas nepavyko" + }, + { + "ecode": "1806930000020003", + "intro": "AMS-HT G šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1806920000020003", + "intro": "AMS-HT G šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707920000020003", + "intro": "AMS H šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705920000020003", + "intro": "AMS F šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701930000020003", + "intro": "AMS B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704930000020003", + "intro": "AMS E heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0505050000010010", + "intro": "AMS F Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501050000010010", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0507050000010010", + "intro": "AMS H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0582050000010010", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0584050000010010", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587050000010010", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0586050000010010", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0585050000010010", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0580050000010010", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "050005000001000F", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0502050000010010", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0506050000010010", + "intro": "AMS G Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0504050000010010", + "intro": "AMS E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0503050000010010", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0706930000020003", + "intro": "AMS G heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807920000020003", + "intro": "AMS-HT H šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1800920000020003", + "intro": "AMS-HT A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0706920000020003", + "intro": "AMS G šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702920000020003", + "intro": "AMS C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1801920000020003", + "intro": "AMS-HT B šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704920000020003", + "intro": "AMS E heater 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805920000020003", + "intro": "AMS-HT F šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1804920000020003", + "intro": "AMS-HT E šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0703930000020003", + "intro": "AMS D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1804930000020003", + "intro": "AMS-HT E šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707930000020003", + "intro": "AMS H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807930000020003", + "intro": "AMS-HT H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0703920000020003", + "intro": "AMS D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700930000020003", + "intro": "AMS A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805930000020003", + "intro": "AMS-HT F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702930000020003", + "intro": "AMS C šildytuvo Nr. 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802920000020003", + "intro": "AMS-HT C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803930000020003", + "intro": "AMS-HT D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803920000020003", + "intro": "AMS-HT D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1800930000020003", + "intro": "AMS-HT A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705930000020003", + "intro": "AMS F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701920000020003", + "intro": "AMS B šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700920000020003", + "intro": "AMS A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802930000020003", + "intro": "AMS-HT C šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1801930000020003", + "intro": "AMS-HT B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0500050000010010", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0583050000010010", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0581050000010010", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0500040000020034", + "intro": "Lazerinis modulis aptiktas pirmą kartą. Prieš naudojimą atlikite nustatymus (~4 min.), kad pjovimas ir graviravimas būtų tikslūs. Taip pat įsitikinkite, kad gale esanti H2.0 varžtė, tvirtinanti oro siurblį, yra išsukta." + }, + { + "ecode": "1804200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0704210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0707230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0700210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1803210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0703230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0701210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704230000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0702230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1800210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0705230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1807230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1805220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0701220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1803220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Ištraukite gijas ir pabandykite dar kartą." + }, + { + "ecode": "1807210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1806230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1806230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1801200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1800210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801200000010085", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir bandyti dar kartą." + }, + { + "ecode": "0702200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS-HT G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1803200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0706230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1806220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir bandyti dar kartą." + }, + { + "ecode": "1805200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1803200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1803200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0705210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010082", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0704230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir bandyti dar kartą." + }, + { + "ecode": "1801210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0700210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0702230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0C0003000003000D", + "intro": "Nustatyta, kad ekstruderiui gali nefunkcionuoti tinkamai. Prašome patikrinti ir nuspręsti, ar reikia sustabdyti spausdinimą." + }, + { + "ecode": "0C00030000020018", + "intro": "Nustatyta, kad nepakanka sistemos atminties, todėl svetimkūnių aptikimo funkcija neveikė. Užbaigus užduotį, prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą" + }, + { + "ecode": "1807230000020021", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701210000020011", + "intro": "AMS B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020022", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806210000020018", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801220000020017", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707210000020024", + "intro": "AMS H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020019", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020011", + "intro": "AMS G lizdo Nr. 1 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "0706210000020011", + "intro": "AMS G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020021", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020010", + "intro": "AMS E lizdo Nr. 2 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020011", + "intro": "AMS D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0705210000020010", + "intro": "AMS F lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804210000020024", + "intro": "AMS-HT E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705210000020011", + "intro": "AMS F lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020024", + "intro": "AMS H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700230000020011", + "intro": "AMS A lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705220000020020", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706230000020010", + "intro": "AMS G lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803230000020010", + "intro": "AMS-HT D lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0700200000020021", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706230000020018", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1805230000020019", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1806220000020020", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700200000020019", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701220000020024", + "intro": "AMS B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020011", + "intro": "AMS-HT H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020011", + "intro": "AMS-HT F lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0703210000020022", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805200000020017", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807230000020010", + "intro": "AMS-HT H lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0700220000020020", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0707230000020021", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020022", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020011", + "intro": "AMS-HT G lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803200000020017", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020019", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1800210000020021", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijos buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020011", + "intro": "AMS F lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020022", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020017", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020010", + "intro": "AMS B lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802230000020021", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020021", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020017", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705200000020017", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020018", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703230000020021", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020018", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807200000020018", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020019", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020018", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803220000020010", + "intro": "AMS-HT D lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0707220000020019", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020018", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020020", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700210000020021", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020022", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804230000020024", + "intro": "AMS-HT E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020022", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020011", + "intro": "AMS-HT G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704210000020022", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803220000020019", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0703210000020010", + "intro": "AMS D lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801220000020010", + "intro": "AMS-HT B lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704220000020019", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020022", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020019", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020019", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1804220000020022", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020022", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803210000020021", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020021", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020024", + "intro": "AMS-HT H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020021", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020019", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020011", + "intro": "AMS-HT B lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806220000020022", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020020", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806210000020010", + "intro": "AMS-HT G lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700230000020018", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020021", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701230000020011", + "intro": "AMS B lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702220000020011", + "intro": "AMS C lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703220000020024", + "intro": "AMS D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020024", + "intro": "AMS D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020017", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705210000020017", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800230000020022", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020021", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020021", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020019", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020020", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700230000020021", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020011", + "intro": "AMS E lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020022", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020021", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801220000020022", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702220000020022", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020020", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703220000020017", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020019", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020022", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020019", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707230000020019", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020017", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706210000020022", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801210000020020", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805200000020010", + "intro": "AMS-HT F lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807220000020022", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020022", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800210000020011", + "intro": "AMS-HT A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802200000020017", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706200000020019", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020022", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020019", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802220000020020", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020022", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803230000020019", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020019", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705230000020018", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020017", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700210000020017", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020024", + "intro": "AMS F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020024", + "intro": "AMS-HT F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020010", + "intro": "AMS C lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806220000020017", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803200000020020", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807200000020010", + "intro": "AMS-HT H lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0705210000020021", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701220000020011", + "intro": "AMS B lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805220000020024", + "intro": "AMS-HT F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020010", + "intro": "AMS A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020020", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020010", + "intro": "AMS G lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020010", + "intro": "AMS-HT D lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020010", + "intro": "AMS-HT G lizdo Nr. 1 išstumia giją, kai pasibaigia AMS laiko limitas." + }, + { + "ecode": "1805210000020024", + "intro": "AMS-HT F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020019", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802200000020018", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704200000020010", + "intro": "AMS E lizdo Nr. 1 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020022", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020024", + "intro": "AMS E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020020", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0701220000020022", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020024", + "intro": "AMS-HT A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702220000020017", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800210000020019", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020024", + "intro": "AMS G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020019", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702210000020011", + "intro": "AMS C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802230000020018", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020022", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020022", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703230000020011", + "intro": "AMS D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1806200000020021", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020024", + "intro": "AMS-HT D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804220000020011", + "intro": "AMS-HT E lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020010", + "intro": "AMS-HT A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800210000020020", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020024", + "intro": "AMS E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020019", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020020", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0700220000020022", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020024", + "intro": "AMS-HT A lizdas: nepavyko pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020020", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803220000020020", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804210000020021", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020017", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020020", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801230000020018", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020022", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020021", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805220000020017", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701230000020017", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020024", + "intro": "AMS-HT C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020021", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020017", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020020", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700210000020022", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020020", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801210000020022", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705200000020011", + "intro": "AMS F lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020017", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020018", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020022", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020017", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805200000020021", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704230000020010", + "intro": "AMS E lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806210000020020", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0705230000020019", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702200000020018", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0700210000020011", + "intro": "AMS A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0300020000010009", + "intro": "Purkštuko temperatūros reguliavimas veikia netinkamai. Galbūt nėra įmontuotas kaitinimo galvutės. Norėdami įkaitinti kaitinimo bloką be kaitinimo galvutės, nustatymuose įjunkite techninės priežiūros režimą." + }, + { + "ecode": "0704200000020024", + "intro": "AMS E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706210000020024", + "intro": "AMS G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703210000020024", + "intro": "AMS D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020011", + "intro": "AMS-HT A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020021", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020021", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020024", + "intro": "AMS A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020018", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020018", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020022", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804220000020010", + "intro": "AMS-HT E lizdo Nr. 3 išstumia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700200000020020", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701220000020017", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800220000020018", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020024", + "intro": "AMS B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706220000020017", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020010", + "intro": "AMS-HT C lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1801200000020021", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020019", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020024", + "intro": "AMS-HT H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703220000020021", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020011", + "intro": "AMS-HT B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805210000020018", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020010", + "intro": "AMS-HT C lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1804200000020020", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1806210000020017", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020019", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702230000020024", + "intro": "AMS C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020018", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701210000020018", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706200000020021", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702200000020024", + "intro": "AMS C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020022", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020018", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705210000020020", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802210000020021", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800220000020010", + "intro": "AMS-HT A lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020024", + "intro": "AMS F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020018", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020022", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707230000020018", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0703220000020020", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804200000020010", + "intro": "AMS-HT E lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801230000020020", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805210000020011", + "intro": "AMS-HT F lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020018", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020021", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020024", + "intro": "AMS-HT E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020018", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803220000020022", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020019", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020024", + "intro": "AMS H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701220000020021", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020018", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020010", + "intro": "AMS C lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704220000020010", + "intro": "AMS E lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1807200000020019", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700220000020011", + "intro": "AMS A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020010", + "intro": "AMS-HT E lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0701230000020010", + "intro": "AMS B lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1805220000020019", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1803220000020021", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020010", + "intro": "AMS-HT F lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702220000020024", + "intro": "AMS C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802220000020011", + "intro": "AMS-HT C lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803220000020011", + "intro": "AMS-HT D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020017", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707220000020022", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020024", + "intro": "AMS-HT C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801200000020024", + "intro": "AMS-HT B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020021", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020020", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "1805220000020010", + "intro": "AMS-HT F lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701220000020018", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020021", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020011", + "intro": "AMS-HT D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1807220000020017", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020011", + "intro": "AMS-HT H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702230000020019", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703210000020019", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802210000020011", + "intro": "AMS-HT C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801220000020021", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020020", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800230000020020", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1803200000020019", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1802230000020024", + "intro": "AMS-HT C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802230000020022", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020021", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020020", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707200000020017", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1806220000020010", + "intro": "AMS-HT G lizdo Nr. 3 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0702220000020010", + "intro": "AMS C lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1802230000020020", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703200000020017", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020021", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803230000020021", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803220000020018", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020010", + "intro": "AMS F lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702200000020020", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020021", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020019", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0700200000020017", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020020", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707210000020011", + "intro": "AMS H lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0706200000020010", + "intro": "AMS G lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702230000020017", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801230000020022", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020018", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020018", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020024", + "intro": "AMS-HT H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020011", + "intro": "AMS-HT G lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020018", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020011", + "intro": "AMS D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020020", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800220000020021", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020022", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020017", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020022", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020020", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807230000020022", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020019", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703200000020010", + "intro": "AMS D lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803200000020021", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020022", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020022", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805230000020018", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020020", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806230000020019", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800200000020019", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020024", + "intro": "AMS-HT B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020020", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020019", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801200000020010", + "intro": "AMS-HT B lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706210000020018", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020020", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020021", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020020", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0705230000020010", + "intro": "AMS F lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700230000020017", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020024", + "intro": "AMS A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700200000020011", + "intro": "AMS A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800220000020017", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020021", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir spausdinimo galvutės." + }, + { + "ecode": "1803220000020024", + "intro": "AMS-HT D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704210000020017", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020021", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707200000020011", + "intro": "AMS H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020024", + "intro": "AMS-HT B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705200000020020", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1800200000020011", + "intro": "AMS-HT A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801230000020010", + "intro": "AMS-HT B lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0703200000020024", + "intro": "AMS D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705230000020022", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703210000020011", + "intro": "AMS D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1807210000020010", + "intro": "AMS-HT H lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807230000020024", + "intro": "AMS-HT H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020019", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801230000020021", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300030000020002", + "intro": "Kaitinimo galvutės aušinimo ventiliatorius veikia lėtai. Gali būti, kad jis užsikimšęs. Patikrinkite, ar nėra nešvarumų, ir, jei reikia, išvalykite." + }, + { + "ecode": "1800200000020021", + "intro": "AMS-HT A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020017", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020020", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1807200000020022", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706200000020017", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805210000020010", + "intro": "AMS-HT F lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807210000020018", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1800220000020020", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1804220000020024", + "intro": "AMS-HT E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801230000020011", + "intro": "AMS-HT B lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020010", + "intro": "AMS-HT A lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0701200000020011", + "intro": "AMS B lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020017", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707230000020017", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804200000020022", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020011", + "intro": "AMS-HT B lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020024", + "intro": "AMS-HT F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020024", + "intro": "AMS B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020022", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020021", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804220000020017", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020020", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0703230000020017", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800200000020017", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703230000020022", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020018", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020018", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020018", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020011", + "intro": "AMS-HT D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020022", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020017", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020018", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020018", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020010", + "intro": "AMS-HT B lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806230000020010", + "intro": "AMS-HT G lizdo Nr. 4 tiekia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701210000020010", + "intro": "AMS B lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020021", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020024", + "intro": "AMS-HT G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020010", + "intro": "AMS D lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1807210000020021", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706210000020021", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020019", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1804210000020011", + "intro": "AMS-HT E lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805220000020022", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020011", + "intro": "AMS-HT C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020019", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704200000020019", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704230000020011", + "intro": "AMS E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020011", + "intro": "AMS H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801230000020024", + "intro": "AMS-HT B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704220000020017", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704210000020024", + "intro": "AMS E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020017", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020021", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802220000020018", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020022", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020020", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1801210000020018", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806200000020024", + "intro": "AMS-HT G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020017", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803220000020017", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020021", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020010", + "intro": "AMS-HT A lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702200000020011", + "intro": "AMS C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700220000020010", + "intro": "AMS A lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701200000020017", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803230000020017", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020021", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020010", + "intro": "AMS-HT E lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0703220000020010", + "intro": "AMS D lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020019", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020019", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020024", + "intro": "AMS H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020019", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800230000020011", + "intro": "AMS-HT A lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0700230000020022", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700200000020010", + "intro": "AMS A lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800230000020019", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020019", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0705220000020022", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020021", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020021", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020010", + "intro": "AMS C lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802200000020021", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707210000020010", + "intro": "AMS H lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702230000020018", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020019", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020017", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020017", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020011", + "intro": "AMS E lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803210000020011", + "intro": "AMS-HT D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705210000020018", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020021", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800230000020021", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020024", + "intro": "AMS F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020024", + "intro": "AMS-HT D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1804200000020019", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020019", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706210000020010", + "intro": "AMS G lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020021", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020011", + "intro": "AMS-HT E lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1806200000020019", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0704210000020020", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020018", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0705210000020024", + "intro": "AMS F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020020", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702210000020024", + "intro": "AMS C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701230000020020", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020010", + "intro": "AMS H lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803230000020018", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805220000020011", + "intro": "AMS-HT F lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1807230000020018", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020020", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700220000020018", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje šalia AMS." + }, + { + "ecode": "0706220000020020", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803210000020019", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020022", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700220000020024", + "intro": "AMS A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802200000020024", + "intro": "AMS-HT C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020019", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020022", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020022", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020018", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701200000020018", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020011", + "intro": "AMS H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020018", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701200000020024", + "intro": "AMS B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807220000020010", + "intro": "AMS-HT H lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1802230000020011", + "intro": "AMS-HT C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020024", + "intro": "AMS-HT A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800200000020018", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705220000020010", + "intro": "AMS F lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020019", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806210000020011", + "intro": "AMS-HT G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020022", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706230000020011", + "intro": "AMS G lizdo Nr. 4 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "1800230000020024", + "intro": "AMS-HT A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704200000020017", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702230000020020", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020017", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020017", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803210000020010", + "intro": "AMS-HT D lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020020", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020017", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020021", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706220000020024", + "intro": "AMS G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020024", + "intro": "AMS-HT G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800230000020018", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806220000020018", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802210000020017", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020020", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinimo elemento buferio." + }, + { + "ecode": "0700230000020010", + "intro": "AMS A lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701230000020019", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704200000020018", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0704230000020021", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020010", + "intro": "AMS-HT C lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704230000020018", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020017", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701220000020019", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020024", + "intro": "AMS-HT G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707200000020010", + "intro": "AMS H lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0707230000020010", + "intro": "AMS H lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700210000020019", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700200000020024", + "intro": "AMS A lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020017", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020019", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020019", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705220000020021", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020021", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300900000010003", + "intro": "Nesuveikė kameros šildymas. Galbūt maitinimo šaltinio temperatūra yra per aukšta." + }, + { + "ecode": "0300900000010001", + "intro": "Nesuveikė kameros šildymas. Šildytuvas gali nepūsti karšto oro." + }, + { + "ecode": "0300900000010002", + "intro": "Kameros šildymas neveikia. Galimos priežastys: kamera nėra visiškai uždara, aplinkos temperatūra per žema arba užsikimšęs maitinimo bloko šilumos išsklaidymo angos ventiliacijos kanalas." + }, + { + "ecode": "0700230000020020", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807210000020011", + "intro": "AMS-HT H lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704200000020022", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020020", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703210000020017", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020022", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020020", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704230000020020", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0702220000020020", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702200000020017", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703200000020018", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0702220000020019", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020020", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020019", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020021", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020017", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020018", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020011", + "intro": "AMS C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805200000020011", + "intro": "AMS-HT F lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020018", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020010", + "intro": "AMS B lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1807200000020011", + "intro": "AMS-HT H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020019", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020022", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020018", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803210000020020", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1805200000020022", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805220000020020", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803200000020018", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020020", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020018", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806230000020020", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0706220000020011", + "intro": "AMS G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1802210000020018", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020024", + "intro": "AMS-HT D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020022", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020019", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1800210000020017", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804220000020019", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802230000020010", + "intro": "AMS-HT C lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706230000020024", + "intro": "AMS G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020018", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704230000020022", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705220000020011", + "intro": "AMS F lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800200000020020", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1802220000020017", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801220000020020", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704220000020011", + "intro": "AMS E lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020017", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020018", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020011", + "intro": "AMS-HT E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701230000020022", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701200000020020", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020019", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020017", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020022", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0500040000020041", + "intro": "Lazerinis modulis naudojamas jau ilgą laiką. Prašome jį nedelsiant išvalyti, kad nebūtų sutrikdyta lazerio veikla." + }, + { + "ecode": "0500040000020042", + "intro": "„Live View“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "1807700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1805700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0706700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1806700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0700700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0703700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0500060000020031", + "intro": "„ToolHead“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0700700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0703700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0500060000020032", + "intro": "„Nozzle“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300C10000010003", + "intro": "„Airflow System“ nepavyko įjungti lazerio režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0500010000030006", + "intro": "USB atmintinė nėra suformatuota arba į ją negalima įrašyti; prašome suformatuoti USB atmintinę." + }, + { + "ecode": "1807700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0705700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1806700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0705700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0706700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1805700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0C00040000020007", + "intro": "„BirdsEye“ kamera ruošiasi darbui. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo tarpu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "0300C00000010002", + "intro": "Oro sklendės su filtru perjungimo sklendės gedimas: ji gali būti užstrigusi." + }, + { + "ecode": "0300C10000010001", + "intro": "„Airflow System“ nepavyko įjungti aušinimo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C10000010002", + "intro": "„Airflow System“ nepavyko įjungti šildymo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0500040000020037", + "intro": "Pjovimo modulis turi būti kalibruotas, kad būtų nustatyta įrankio padėtis. Prieš naudojimą atlikite montavimo kalibravimą. (trukmė – apie 2–4 minutes)" + }, + { + "ecode": "1806700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0705700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1800700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1803700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1805700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1802700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1807700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300280000010003", + "intro": "Ryšio sutrikimas tarp pjovimo modulio ir įrankio galvutės atliekant Z ašies grįžimą į pradinę padėtį. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs ar sugadintas, arba įsitikinkite, ar jėgos jutiklio ritė yra nesugadinta." + }, + { + "ecode": "0500010000020001", + "intro": "Medijos tiekimo kanalas veikia netinkamai. Prašome iš naujo paleisti spausdintuvą. Jei keletas bandymų nepavyks, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0700700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0701700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0702700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0703700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300180000010007", + "intro": "Ekstruzijos jėgos jutiklio dažnis yra per didelis. Jutiklis gali būti sugadintas arba purkštuvo šilumokaitis gali būti per arti jutiklio." + }, + { + "ecode": "0300180000010004", + "intro": "Ekstruzijos jėgos jutiklio signalas yra nenormalus. Gali būti, kad jutiklis yra sugadintas arba kad ryšys su MC-TH yra sutrikęs." + }, + { + "ecode": "03009D0000020003", + "intro": "Graviravimo lazerio židinio taško Z kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus. Jei problema kartojasi, prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0C00040000010005", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0300180000010008", + "intro": "Purkštukas netinkamai liečiasi su šildomuoju pagrindu. Patikrinkite, ar ant purkštuko nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukas liečiasi su pagrindu." + }, + { + "ecode": "0300180000010001", + "intro": "Ekstruzijos jėgos jutiklio dažnis yra per mažas. Galbūt nėra sumontuotas purkštukas arba purkštuko šilumokaitis yra per toli nuo jutiklio." + }, + { + "ecode": "0C00010000010012", + "intro": "Nepavyko kalibruoti „Live View“ kameros, todėl kalibravimo rezultato nebuvo galima išsaugoti. Prašome pabandyti kalibruoti iš naujo. Jei kalibravimas nuolat nepavyksta, kreipkitės į klientų aptarnavimo komandą." + }, + { + "ecode": "1804700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0707700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0706700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0704700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1801700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1800510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0705700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1803700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0C00020000020006", + "intro": "Atrodo, kad purkštuko aukštis yra per didelis. Patikrinkite, ar prie purkštuko nėra likusių Gijos likučių." + }, + { + "ecode": "0702800000010004", + "intro": "AMS C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0702810000010004", + "intro": "AMS C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701800000010004", + "intro": "AMS B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0704800000010004", + "intro": "AMS E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1803810000010004", + "intro": "AMS-HT D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0707810000010004", + "intro": "AMS H Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1805810000010004", + "intro": "AMS-HT F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1804810000010004", + "intro": "AMS-HT E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1801800000010004", + "intro": "AMS-HT B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0705810000010004", + "intro": "AMS F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300910000010002", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad šildytuve yra atvira grandinė arba perdegė terminis saugiklis." + }, + { + "ecode": "0700400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "0700510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0700700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0701700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0702700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0703700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0700800000010004", + "intro": "AMS A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0700810000010004", + "intro": "AMS A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0703810000010004", + "intro": "AMS D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701810000010004", + "intro": "AMS B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1800810000010004", + "intro": "AMS-HT A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0705800000010004", + "intro": "AMS F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1805800000010004", + "intro": "AMS-HT F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800800000010004", + "intro": "AMS-HT A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802810000010004", + "intro": "AMS-HT C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0704810000010004", + "intro": "AMS E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1807800000010004", + "intro": "AMS-HT H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802800000010004", + "intro": "AMS-HT C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1804800000010004", + "intro": "AMS-HT E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0707800000010004", + "intro": "AMS H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1807810000010004", + "intro": "AMS-HT H Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "0706810000010004", + "intro": "AMS G Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "1806810000010004", + "intro": "AMS-HT G Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1806800000010004", + "intro": "AMS-HT G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706800000010004", + "intro": "AMS G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "1802700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0707700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1805700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1806700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1807700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0704700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1801700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0500040000020050", + "intro": "Lazerinio saugos langelis nėra įmontuotas." + }, + { + "ecode": "0706700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1804700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0703800000010004", + "intro": "AMS D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1801810000010004", + "intro": "AMS-HT B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1803800000010004", + "intro": "AMS-HT D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0C00030000020017", + "intro": "Nepavyko atlikti lazerinio graviravimo Z ašies fokusavimo kalibravimo. Patikrinkite, ar lazerio bandymo medžiaga (350 g kartonas) yra tinkamai padėta, o jos paviršius – švarus ir nesugadintas." + }, + { + "ecode": "1800240000020009", + "intro": "AMS-HT: Atidarytas priekinis dangtelis. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1807240000020009", + "intro": "AMS-HT H priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1801240000020009", + "intro": "AMS-HT B priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1806240000020009", + "intro": "AMS-HT G priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1802240000020009", + "intro": "AMS-HT C priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1805240000020009", + "intro": "AMS-HT F priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti, kad gija sugertų drėgmę." + }, + { + "ecode": "1804240000020009", + "intro": "AMS-HT E priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1803240000020009", + "intro": "AMS-HT D priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "0707730000020004", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706700000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701710000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704700000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020005", + "intro": "Nepavyko įtraukti AMS E 3-iojo lizdo gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702710000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803720000020002", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805730000020001", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806710000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704730000020004", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020004", + "intro": "Nepavyko ištraukti AMS-HT F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0702720000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020001", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804720000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800720000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020005", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020005", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701700000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020002", + "intro": "Nepavyko įtraukti AMS F Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802730000020004", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704720000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801730000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020001", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700720000020002", + "intro": "Nepavyko įtraukti AMS A 3-iojo lizdo gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705700000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804710000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020004", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020005", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807700000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020002", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020001", + "intro": "Nepavyko ištraukti AMS-HT C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700710000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700710000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020005", + "intro": "Nepavyko įtraukti AMS-HT G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801710000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020004", + "intro": "Nepavyko ištraukti AMS-HT D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020004", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705710000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807710000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020005", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805720000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020005", + "intro": "Nepavyko įtraukti AMS C Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020001", + "intro": "Nepavyko ištraukti AMS-HT B Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020005", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020004", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705700000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020001", + "intro": "Nepavyko ištraukti AMS-HT H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804730000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020005", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020002", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0707720000020002", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700720000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801710000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806730000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706720000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801730000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802710000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020002", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020004", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020005", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų. Prašome nukirpti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706720000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020002", + "intro": "Nepavyko įtraukti AMS E Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807720000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803700000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701710000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707730000020005", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801720000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020002", + "intro": "Nepavyko įtraukti AMS H Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020002", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020001", + "intro": "Nepavyko ištraukti AMS E Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801720000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802700000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703710000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706730000020001", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806700000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020002", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800720000020005", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706700000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1800700000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707720000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802710000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020005", + "intro": "Nepavyko įtraukti AMS G 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702720000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020002", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807700000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804730000020004", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijų. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705730000020001", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704720000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0704710000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707700000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020005", + "intro": "Nepavyko įtraukti AMS G Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805720000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0701730000020001", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700710000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803730000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804700000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703700000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0701710000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700010000010005", + "intro": "AMS A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0702010000010005", + "intro": "AMS C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701010000010005", + "intro": "AMS B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0703010000010005", + "intro": "AMS D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800010000010005", + "intro": "AMS-HT A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1803010000010005", + "intro": "AMS-HT D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1805010000010005", + "intro": "AMS-HT F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1802010000010005", + "intro": "AMS-HT C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0705010000010005", + "intro": "AMS F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1801010000010005", + "intro": "AMS-HT B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0706010000010005", + "intro": "AMS G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1806010000010005", + "intro": "AMS-HT G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0707010000010005", + "intro": "AMS H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1804010000010005", + "intro": "AMS-HT E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1807010000010005", + "intro": "AMS-HT H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0704010000010005", + "intro": "AMS E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701710000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707700000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701730000020004", + "intro": "Nepavyko ištraukti AMS B Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020001", + "intro": "Nepavyko ištraukti AMS D Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020005", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1802700000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804710000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804730000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705720000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804730000020001", + "intro": "Nepavyko ištraukti AMS-HT E Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700730000020001", + "intro": "Nepavyko ištraukti AMS A Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802720000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1806710000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703730000020005", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020002", + "intro": "Nepavyko įtraukti AMS D Slot 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803720000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700700000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705730000020004", + "intro": "Nepavyko ištraukti AMS F Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700710000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805710000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1807730000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020005", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805710000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700730000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020004", + "intro": "Nepavyko ištraukti AMS-HT A Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020004", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020001", + "intro": "Nepavyko ištraukti AMS-HT G Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0702700000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800710000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702700000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0700700000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020004", + "intro": "Nepavyko ištraukti AMS G Slot 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020002", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020001", + "intro": "Nepavyko ištraukti AMS C Slot 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705710000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020001", + "intro": "Nepavyko ištraukti AMS H Slot 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807710000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704700000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0500030000010021", + "intro": "Įranga nesuderinama; patikrinkite „Toolhead“ kamerą." + }, + { + "ecode": "0C00010000020008", + "intro": "Nepavyko gauti vaizdo iš „Live View“ kameros. Šiuo metu negalima naudotis spagečių ir šiukšlių šachtos užsikimšimo aptikimo funkcija." + }, + { + "ecode": "0C00040000010012", + "intro": "„Live View“ kameros duomenų perdavimo ryšys yra sutrikęs." + }, + { + "ecode": "0C00040000020003", + "intro": "Lazerinė platforma nėra tinkamai išlyginta. Prašome įsitikinti, kad visi keturi kampai būtų išlyginti su šildomuoju pagrindu." + }, + { + "ecode": "0500060000020004", + "intro": "„Live View“ kamera nėra įdėta; patikrinkite, ar įranga yra tinkamai prijungta." + }, + { + "ecode": "0C00040000020002", + "intro": "Nepastebėta pjovimo platforma. Prašome uždėti užduočiai reikalingą pjovimo kilimėlį ir tęsti." + }, + { + "ecode": "0500060000020033", + "intro": "„BirdsEye“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0C00030000020016", + "intro": "Svetimų objektų aptikimo funkcija neveikia, o „Live View“ kameros serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "0500040000020031", + "intro": "Prieš pradedant naudoti lazerio/pjaustymo modulį, reikia nustatyti „BirdsEye“ kameros padėtį. Atlikite nustatymus, kad kalibruotumėte kamerą." + }, + { + "ecode": "0703210000020007", + "intro": "AMS D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800200000020007", + "intro": "AMS-HT: A lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701210000020007", + "intro": "AMS B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0703200000020007", + "intro": "AMS D lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702200000020007", + "intro": "AMS C lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701200000020007", + "intro": "AMS B lizdo Nr. 1 išvedimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703230000020007", + "intro": "AMS D lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700220000020007", + "intro": "AMS: A lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000020019", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, prašome kreiptis į „Wiki“." + }, + { + "ecode": "1804210000020007", + "intro": "AMS-HT E lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706230000020007", + "intro": "AMS G lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "1802230000020007", + "intro": "AMS-HT C lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800220000020007", + "intro": "AMS-HT: 3-iojo lizdo išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707200000020007", + "intro": "AMS H lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807230000020007", + "intro": "AMS-HT H Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704210000020007", + "intro": "AMS E lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0707220000020007", + "intro": "AMS H lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802220000020007", + "intro": "AMS-HT C lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707210000020007", + "intro": "AMS H lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803200000020007", + "intro": "AMS-HT D lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806200000020007", + "intro": "AMS-HT G lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705230000020007", + "intro": "AMS F Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1805220000020007", + "intro": "AMS-HT F lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802210000020007", + "intro": "AMS-HT C lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803220000020007", + "intro": "AMS-HT D lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704220000020007", + "intro": "AMS E lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706210000020007", + "intro": "AMS G lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "03009E0000030001", + "intro": "Šio spausdinimo užduoties „Atvirų durų aptikimo“ lygis bus nustatytas kaip „Pranešimas“." + }, + { + "ecode": "0702210000020007", + "intro": "AMS C lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700230000020007", + "intro": "AMS: A lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701230000020007", + "intro": "AMS B lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704200000020007", + "intro": "AMS E lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705220000020007", + "intro": "AMS F lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705200000020007", + "intro": "AMS F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807200000020007", + "intro": "AMS-HT H lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807220000020007", + "intro": "AMS-HT H lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800230000020007", + "intro": "AMS-HT: lizdo Nr. 4 išvestinis „Hall“ jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806230000020007", + "intro": "AMS-HT G lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801220000020007", + "intro": "AMS-HT B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707230000020007", + "intro": "AMS H Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1801200000020007", + "intro": "AMS-HT B lizdo Nr. 1 išvedimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807210000020007", + "intro": "AMS-HT H lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1803210000020007", + "intro": "AMS-HT D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706220000020007", + "intro": "AMS G 3-iojo lizdo išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804200000020007", + "intro": "AMS-HT E lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805210000020007", + "intro": "AMS-HT F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1804220000020007", + "intro": "AMS-HT E lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009D0000020001", + "intro": "Nepavyko atlikti graviravimo lazerio židinio taško XY kalibravimo. Prašome nuvalyti lazerio platformos lazerio grįžimo į pradinę padėtį zoną ir pakartotinai atlikti lazerio modulio tvirtinimo kalibravimą." + }, + { + "ecode": "0702230000020007", + "intro": "AMS C lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701220000020007", + "intro": "AMS B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702220000020007", + "intro": "AMS C lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703220000020007", + "intro": "AMS D lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700210000020007", + "intro": "AMS: A lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700200000020007", + "intro": "AMS: lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804230000020007", + "intro": "AMS-HT E Slot 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801210000020007", + "intro": "AMS-HT B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805230000020007", + "intro": "AMS-HT F lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704230000020007", + "intro": "AMS E Slot 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806220000020007", + "intro": "AMS-HT G lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800210000020007", + "intro": "AMS-HT: lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805200000020007", + "intro": "AMS-HT F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806210000020007", + "intro": "AMS-HT G lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705210000020007", + "intro": "AMS F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801230000020007", + "intro": "AMS-HT B lizdo Nr. 4 išėjimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803230000020007", + "intro": "AMS-HT D lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802200000020007", + "intro": "AMS-HT C lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706200000020007", + "intro": "AMS G lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009D0000020002", + "intro": "Graviravimo lazerio židinio taško XY kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus." + }, + { + "ecode": "0C00010000010011", + "intro": "Nepavyko kalibruoti „Live View“ kameros, prašome kalibruoti iš naujo. Įsitikinkite, kad spausdinimo plokštė yra tuščia, o kameros vaizdas – aiškus ir tinkamai orientuotas. Jei gedimai kartojasi, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500040000010052", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0500040000010051", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0300090000010001", + "intro": "Ekstruderiui skirto servovariklio grandinė yra atvira. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300090000010002", + "intro": "Ekstruderiui skirtas servovariklis yra trumpai sujungęs. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300090000010003", + "intro": "Ekstruderių servovariklio varža neatitinka normos; galbūt variklis sugedo." + }, + { + "ecode": "0300160000010001", + "intro": "Ekstruderių servovariklio srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300410000010001", + "intro": "Sistemos įtampa yra nestabili. Įjungiama apsaugos nuo elektros tiekimo sutrikimų funkcija." + }, + { + "ecode": "1803240000010007", + "intro": "AMS-HT D durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1806240000010007", + "intro": "AMS-HT G durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1801240000010007", + "intro": "AMS-HT B durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1805240000010007", + "intro": "AMS-HT F durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1802240000010007", + "intro": "AMS-HT C durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1804240000010007", + "intro": "AMS-HT E durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1807240000010007", + "intro": "AMS-HT H durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1800240000010007", + "intro": "AMS-HT: nustatyta durų aptikimo anomalija; galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "07FF700000020003", + "intro": "Patikrinkite, ar gija išeina iš purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl išspausti." + }, + { + "ecode": "0300D00000010002", + "intro": "Peilio laikiklis nukrito; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300D00000010001", + "intro": "Nukrito pjovimo modulio pagrindas; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300280000010005", + "intro": "Pjovimo režimu nepavyko atlikti Z ašies grįžimo į pradinę padėtį. Patikrinkite, ar Z ašies slankiklyje ir Z ašies sinchroniniame skriemulyje nėra svetimkūnių." + }, + { + "ecode": "18FF600000020001", + "intro": "Išorinė ritė gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "07FF600000020001", + "intro": "Išorinė ritė gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0500030000020020", + "intro": "USB atmintinės talpa yra per maža, kad būtų galima išsaugoti spausdinimo failus tarpinėje atmintyje." + }, + { + "ecode": "0702010000020006", + "intro": "AMS C: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0703010000020006", + "intro": "AMS D: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0705010000020006", + "intro": "AMS F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1802010000020006", + "intro": "AMS-HT C Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806010000020006", + "intro": "AMS-HT G Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704010000020006", + "intro": "AMS E: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1800010000020006", + "intro": "AMS-HT A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805010000020006", + "intro": "AMS-HT F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701010000020006", + "intro": "AMS B: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0700010000020006", + "intro": "AMS A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801010000020006", + "intro": "AMS-HT B Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807010000020006", + "intro": "AMS-HT H Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804010000020006", + "intro": "AMS-HT E Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803010000020006", + "intro": "AMS-HT D Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706010000020006", + "intro": "AMS G: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707010000020006", + "intro": "AMS H: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020036", + "intro": "Prijungtas naujas pjovimo modulis. Kad pjovimas būtų tikslesnis, prieš naudojimą jį reikia sukonfigūruoti (trunka apie 3 minutes)." + }, + { + "ecode": "0500040000020035", + "intro": "Norint nustatyti fokusavimo padėtį, reikia kalibruoti lazerinį modulį. Prieš naudojimą atlikite montavimo kalibravimą. (trunka apie 2 minutes)" + }, + { + "ecode": "0300C30000010002", + "intro": "Filtro perjungimo sklendės srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300A10000010001", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad įrenginys atvėstų, arba sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0500010000030005", + "intro": "USB atmintinė veikia tik skaitymo režimu. Vaizdo įrašymo ir „Timelapse“ įrašymo funkcijos neveikia. Pagalbos ieškokite „Wiki“ puslapyje." + }, + { + "ecode": "0500040000020038", + "intro": "Įstumkite pjovimo modulį ir užfiksuokite greito atsegimo svirtį. Jei modulis jau buvo įmontuotas, jis gali būti netinkamai išlygintas. Pabandykite jį įmontuoti iš naujo." + }, + { + "ecode": "0500010000020002", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0500060000020034", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300D00000010003", + "intro": "Atsijungė pjovimo modulio kabelis; patikrinkite kabelio jungtį." + }, + { + "ecode": "1805200000020009", + "intro": "Nepavyko išspausti AMS-HT F lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803200000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805210000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804210000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804220000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803210000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 2 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806230000020009", + "intro": "Nepavyko išspausti „AMS-HT G Slot 4“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800220000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807230000020009", + "intro": "Nepavyko išspausti AMS-HT H Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802200000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801210000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807210000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800210000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802210000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806220000020009", + "intro": "Nepavyko išspausti „AMS-HT G lizdo Nr. 3“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806200000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804230000020009", + "intro": "Nepavyko išspausti „AMS-HT E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801220000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802220000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803230000020009", + "intro": "Nepavyko išspausti AMS-HT D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807200000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800230000020009", + "intro": "Nepavyko išspausti AMS-HT A Slot 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806210000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805220000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807220000020009", + "intro": "Nepavyko išspausti „AMS-HT H lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803220000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805230000020009", + "intro": "Nepavyko išspausti „AMS-HT F Slot 4“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804200000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801200000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800200000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802230000020009", + "intro": "Nepavyko išspausti AMS-HT C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801230000020009", + "intro": "Nepavyko išspausti AMS-HT B Slot 4 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0C0003000002000E", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "0703200000030001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800220000020001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000030001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705200000030001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020005", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0701130000010001", + "intro": "AMS B lizdo Nr. 4-asis variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020005", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000010001", + "intro": "AMS C lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020005", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020008", + "intro": "AMS D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804210000020008", + "intro": "AMS-HT E lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800130000010001", + "intro": "AMS-HT A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800230000030002", + "intro": "AMS-HT: 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804220000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807100000010003", + "intro": "AMS-HT H lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802220000020001", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0705210000020005", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705220000020002", + "intro": "AMS F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806200000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1807230000020002", + "intro": "AMS-HT H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807210000020002", + "intro": "AMS-HT H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802560000030001", + "intro": "AMS-HT C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1807220000020008", + "intro": "AMS-HT H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020008", + "intro": "AMS-HT F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802220000020005", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT D lizdo Nr. 1 gija." + }, + { + "ecode": "1804130000010001", + "intro": "AMS-HT E lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1805120000010001", + "intro": "AMS-HT F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706210000020008", + "intro": "AMS G lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705200000020002", + "intro": "AMS F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020001", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707100000010001", + "intro": "AMS H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0704200000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1801130000010001", + "intro": "AMS-HT B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802110000020002", + "intro": "AMS-HT C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805200000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705130000010001", + "intro": "AMS F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806200000020001", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000020008", + "intro": "AMS D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020008", + "intro": "AMS-HT D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 1 gija." + }, + { + "ecode": "0707210000020001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1804210000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 3 gija." + }, + { + "ecode": "1804560000030001", + "intro": "AMS-HT E šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0707220000030001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704120000010003", + "intro": "AMS E lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705120000010003", + "intro": "AMS F lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704100000010003", + "intro": "AMS E lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1806310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705210000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707220000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000030001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701100000010001", + "intro": "AMS B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701110000010003", + "intro": "AMS B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702220000030001", + "intro": "Baigėsi AMS C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703210000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703220000020001", + "intro": "AMS D lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801220000020001", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030002", + "intro": "AMS-HT F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000030002", + "intro": "AMS F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000020008", + "intro": "AMS F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020005", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1805210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 2 gija." + }, + { + "ecode": "0707220000020005", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801120000020002", + "intro": "AMS-HT B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020001", + "intro": "AMS-HT H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 3 gija." + }, + { + "ecode": "1800220000030001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000020001", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803210000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "0707560000030001", + "intro": "AMS H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1801230000030001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000010003", + "intro": "AMS G slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804110000010001", + "intro": "AMS-HT E lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803230000020005", + "intro": "Baigėsi AMS-HT D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707230000020008", + "intro": "AMS H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704130000010001", + "intro": "AMS E slot 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801200000030002", + "intro": "AMS-HT B 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020008", + "intro": "AMS-HT H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000020008", + "intro": "AMS H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700100000010003", + "intro": "AMS A lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0701220000020001", + "intro": "AMS B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020005", + "intro": "Baigėsi AMS C Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703210000020001", + "intro": "AMS D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703220000020005", + "intro": "Baigėsi AMS D 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000030001", + "intro": "Baigėsi AMS D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000030002", + "intro": "AMS-HT G 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804130000010003", + "intro": "AMS-HT E lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806110000010003", + "intro": "AMS-HT G lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805130000010003", + "intro": "AMS-HT F lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802110000010001", + "intro": "AMS-HT C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701210000020008", + "intro": "AMS B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801130000020002", + "intro": "AMS-HT B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803120000010003", + "intro": "AMS-HT D lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803130000020002", + "intro": "AMS-HT D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807110000010003", + "intro": "AMS-HT H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 2 gija elementas." + }, + { + "ecode": "0705200000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806100000010003", + "intro": "AMS-HT G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800210000030002", + "intro": "AMS-HT: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703560000030001", + "intro": "AMS D šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT G lizdo Nr. 1 gija yra nutrūkusi." + }, + { + "ecode": "0704210000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "1807200000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804230000030001", + "intro": "Baigėsi AMS-HT E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704110000010001", + "intro": "AMS E lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800210000020004", + "intro": "AMS-HT A: lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0704210000030001", + "intro": "Baigėsi „AMS E lizdo Nr. 2“ gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000020002", + "intro": "AMS G slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804210000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "1806210000020002", + "intro": "AMS-HT G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805210000020001", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0706110000010001", + "intro": "AMS G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 1 gija." + }, + { + "ecode": "0706130000010001", + "intro": "AMS G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802210000030002", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807130000020002", + "intro": "AMS-HT H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020008", + "intro": "AMS D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0704200000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1806350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0701230000030001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702210000020001", + "intro": "AMS C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702210000030001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703110000010001", + "intro": "AMS D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020001", + "intro": "AMS D lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700200000020008", + "intro": "AMS: „lizdo Nr. 1“ įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701200000020008", + "intro": "AMS B lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000030001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000020005", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705210000020001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802100000020002", + "intro": "AMS-HT C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000010001", + "intro": "AMS-HT F slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000030002", + "intro": "AMS H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705100000020002", + "intro": "AMS F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800210000020008", + "intro": "AMS-HT: lizdo Nr. 2 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020002", + "intro": "AMS H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704130000020002", + "intro": "AMS E slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803230000030001", + "intro": "Baigėsi AMS-HT D Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020002", + "intro": "AMS-HT B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704230000020003", + "intro": "Gali būti, kad AMS E Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000030001", + "intro": "Baigėsi AMS G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705210000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1806200000030002", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704220000020001", + "intro": "AMS E 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803120000010001", + "intro": "AMS-HT D lizdo Nr. 3 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT D lizdo Nr. 2 gija yra nutrūkusi." + }, + { + "ecode": "0706210000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707120000010001", + "intro": "AMS H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801120000010001", + "intro": "AMS-HT B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801210000020002", + "intro": "AMS-HT B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000030002", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800230000020004", + "intro": "AMS-HT A: 4-oje lizdoje esančioje įrankio galvutėje gali būti nutrūkęs gija." + }, + { + "ecode": "1800230000020005", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806130000010003", + "intro": "AMS-HT G slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1802230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C Slot 4 gija." + }, + { + "ecode": "0705200000020001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1807230000020005", + "intro": "Baigėsi AMS-HT H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805560000030001", + "intro": "AMS-HT F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805210000020008", + "intro": "AMS-HT F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805210000030002", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020004", + "intro": "Gali būti, kad AMS-HT D Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0707200000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000020001", + "intro": "AMS G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807120000010003", + "intro": "AMS-HT H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800220000030002", + "intro": "AMS-HT: 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806560000030001", + "intro": "AMS-HT G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0701230000020008", + "intro": "AMS B lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700110000020002", + "intro": "AMS A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700200000020003", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700200000020004", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000020001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701100000020002", + "intro": "AMS B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701110000020002", + "intro": "AMS B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000030001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702200000020001", + "intro": "AMS C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703200000020001", + "intro": "AMS D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000030002", + "intro": "AMS D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000030002", + "intro": "AMS D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1801220000030002", + "intro": "AMS-HT B 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802220000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1804120000010001", + "intro": "AMS-HT E 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806210000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801210000030002", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020005", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1807110000020002", + "intro": "AMS-HT H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707100000010003", + "intro": "AMS H lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020004", + "intro": "Gali būti, kad AMS G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705220000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806210000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020001", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800120000020002", + "intro": "AMS-HT A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802210000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1800220000020002", + "intro": "AMS-HT A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706210000020002", + "intro": "AMS G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801220000020005", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800200000020008", + "intro": "AMS-HT: lizdo Nr. 1 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000030002", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020002", + "intro": "AMS-HT C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706220000020004", + "intro": "Gali būti, kad AMS G 3-iojo lizdo gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020002", + "intro": "AMS G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800110000010003", + "intro": "AMS-HT A lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805230000020005", + "intro": "Baigėsi AMS-HT F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804110000010003", + "intro": "AMS-HT E lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806220000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000030002", + "intro": "AMS E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804200000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1801230000020005", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705200000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FF200000020002", + "intro": "Trūksta išorinio gijos; įdėkite naują giją." + }, + { + "ecode": "1807350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FF200000020001", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "1800450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1805310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704230000020009", + "intro": "Nepavyko išspausti „AMS E Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700110000010001", + "intro": "AMS A lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702200000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702210000020005", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0703110000010003", + "intro": "AMS D lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801210000020001", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700560000030001", + "intro": "AMS A šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805120000020002", + "intro": "AMS-HT F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806210000030002", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805100000010003", + "intro": "AMS-HT F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707220000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0704120000010001", + "intro": "AMS E lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020001", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802130000010001", + "intro": "AMS-HT C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1806230000030001", + "intro": "Baigėsi AMS-HT G Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000030001", + "intro": "Baigėsi AMS H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800130000020002", + "intro": "AMS-HT A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803200000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800230000020002", + "intro": "AMS-HT A 4-oji lizda yra tuščia; įdėkite naują giją." + }, + { + "ecode": "1801100000010001", + "intro": "AMS-HT B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807100000020002", + "intro": "AMS-HT H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000020002", + "intro": "AMS H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802220000020008", + "intro": "AMS-HT C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801230000020001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805230000030002", + "intro": "AMS-HT F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804200000020004", + "intro": "Gali būti, kad AMS-HT E lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802120000020002", + "intro": "AMS-HT C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000020002", + "intro": "AMS F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805110000010003", + "intro": "AMS-HT F lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030002", + "intro": "AMS-HT H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807210000020008", + "intro": "AMS-HT H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030002", + "intro": "AMS-HT H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0700210000020003", + "intro": "Gali būti, kad AMS A lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0700230000020003", + "intro": "Gali būti, kad AMS A Slot 4 gija yra nutrūkęs AMS." + }, + { + "ecode": "0701200000030002", + "intro": "AMS B lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 spausdinimo gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803120000020002", + "intro": "AMS-HT D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801110000010001", + "intro": "AMS-HT B lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706220000020001", + "intro": "AMS G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803230000020002", + "intro": "AMS-HT D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803110000010003", + "intro": "AMS-HT D lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706220000020005", + "intro": "Baigėsi AMS G 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant galvutės." + }, + { + "ecode": "1806110000010001", + "intro": "AMS-HT G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802220000030002", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0707200000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1803230000020001", + "intro": "AMS-HT D Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802100000010003", + "intro": "AMS-HT C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "0705130000020002", + "intro": "AMS F slot 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803220000030002", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805230000020002", + "intro": "AMS-HT F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 1 gija." + }, + { + "ecode": "1800200000020004", + "intro": "AMS-HT A: galbūt įrankio galvutėje nutrūko lizdo Nr. 1 gija elementas." + }, + { + "ecode": "1803200000020002", + "intro": "AMS-HT D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800120000010003", + "intro": "AMS-HT A lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000010003", + "intro": "AMS E lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804110000020002", + "intro": "AMS-HT E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000020002", + "intro": "AMS-HT F lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804130000020002", + "intro": "AMS-HT E 4-osios lizdo variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800220000020003", + "intro": "AMS-HT A lizdo Nr. 3 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "0706210000020001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "0705220000020005", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707220000020008", + "intro": "AMS H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801210000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1803300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "1802300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1802310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1806310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705230000020009", + "intro": "Nepavyko išspausti „AMS F Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700100000010001", + "intro": "AMS A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700100000020002", + "intro": "AMS A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000020002", + "intro": "AMS C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702210000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0702220000030002", + "intro": "AMS C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1805210000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802200000030002", + "intro": "AMS-HT C 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804220000020008", + "intro": "AMS-HT E lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705230000020002", + "intro": "AMS F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800200000020005", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805220000020002", + "intro": "AMS-HT F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020008", + "intro": "AMS G lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "0706200000020002", + "intro": "AMS G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702220000020008", + "intro": "AMS C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030001", + "intro": "Baigėsi AMS-HT H Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020002", + "intro": "AMS H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000030002", + "intro": "AMS H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0705100000010003", + "intro": "AMS F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803210000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805210000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800210000020001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803210000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020002", + "intro": "AMS E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802130000010003", + "intro": "AMS-HT C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804210000030002", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800200000030002", + "intro": "AMS-HT: 1-oje lizdoje baigėsi gijos medžiaga, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gijos medžiaga." + }, + { + "ecode": "0705220000030002", + "intro": "AMS F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1802210000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020008", + "intro": "AMS-HT G Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805220000020001", + "intro": "AMS-HT F lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802200000020001", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700200000020001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700210000030002", + "intro": "AMS: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701110000010001", + "intro": "AMS B lizdo Nr. 2-ojo variklio sukimasis sutriko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702230000020003", + "intro": "Gali būti, kad AMS C Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0704100000020002", + "intro": "AMS E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807200000020001", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704560000030001", + "intro": "AMS E šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804230000030002", + "intro": "AMS-HT E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803110000020002", + "intro": "AMS-HT D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010001", + "intro": "AMS F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807210000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1803220000020001", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707210000020008", + "intro": "AMS H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000030001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800120000010001", + "intro": "AMS-HT A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020008", + "intro": "AMS-HT B lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707120000020002", + "intro": "AMS H lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010003", + "intro": "AMS F lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807110000010001", + "intro": "AMS-HT H lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801560000030001", + "intro": "AMS-HT B šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706200000030001", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804200000020001", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000030002", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706220000030001", + "intro": "Baigėsi AMS G 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ spausdinimo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0706230000020009", + "intro": "Nepavyko išspausti „AMS G Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "18FF200000020004", + "intro": "Prašome ištraukti išorinius gijus iš ekstruderio." + }, + { + "ecode": "0705350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706210000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1805350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "18FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0707300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701200000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0703100000010003", + "intro": "AMS D lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703230000020003", + "intro": "Gali būti, kad AMS D Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705230000020004", + "intro": "Gali būti, kad AMS F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800220000020008", + "intro": "AMS-HT: 3-iojo lizdo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707130000010003", + "intro": "AMS H slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806200000020002", + "intro": "AMS-HT G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 spuldzė yra sulūžusi AMS." + }, + { + "ecode": "0706100000020002", + "intro": "AMS G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704210000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "0705220000030001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707210000030001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020003", + "intro": "Gali būti, kad „AMS-HT G Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1806230000020005", + "intro": "Baigėsi AMS-HT G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804100000010003", + "intro": "AMS-HT E lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020008", + "intro": "AMS D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802220000030001", + "intro": "Baigėsi AMS-HT C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020002", + "intro": "AMS-HT E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020008", + "intro": "AMS-HT G lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704120000020002", + "intro": "AMS E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000010001", + "intro": "AMS F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800100000010003", + "intro": "AMS-HT A lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801200000020001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801230000020008", + "intro": "AMS-HT B lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804220000030002", + "intro": "AMS-HT E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706110000010003", + "intro": "AMS G lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707120000010003", + "intro": "AMS H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807200000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020008", + "intro": "AMS-HT G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705100000010001", + "intro": "AMS F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804230000020002", + "intro": "AMS-HT E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000020005", + "intro": "AMS A 3-iojo lizdo gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020001", + "intro": "AMS B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020003", + "intro": "Gali būti, kad AMS B Slot 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000030002", + "intro": "AMS C lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020001", + "intro": "AMS C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020004", + "intro": "Gali būti, kad AMS C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0703100000010001", + "intro": "AMS D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000030002", + "intro": "AMS D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000020004", + "intro": "Gali būti, kad AMS D Slot 4 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0703230000020005", + "intro": "Baigėsi AMS D Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802220000020002", + "intro": "AMS-HT C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803100000020002", + "intro": "AMS-HT D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803210000020001", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800220000020005", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707130000020002", + "intro": "AMS H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804200000020002", + "intro": "AMS-HT E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700210000020008", + "intro": "AMS A lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020008", + "intro": "AMS-HT C lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801110000020002", + "intro": "AMS-HT B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B Slot 4 gija." + }, + { + "ecode": "1803220000030001", + "intro": "Baigėsi AMS-HT D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807560000030001", + "intro": "AMS-HT H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706110000020002", + "intro": "AMS G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0706230000020005", + "intro": "Baigėsi AMS G Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705130000010003", + "intro": "AMS F slot 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804220000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801200000020002", + "intro": "AMS-HT B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801110000010003", + "intro": "AMS-HT B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020004", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706200000020001", + "intro": "AMS G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803200000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706120000010001", + "intro": "AMS G lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806230000020001", + "intro": "AMS-HT G Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802230000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706230000030002", + "intro": "AMS G lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1805300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707210000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0701210000020005", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0701210000030002", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701230000020001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701230000020005", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020008", + "intro": "AMS C lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707130000010001", + "intro": "AMS H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704220000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0704210000020002", + "intro": "AMS E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801100000010003", + "intro": "AMS-HT B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000030002", + "intro": "AMS G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704130000010003", + "intro": "AMS E slot 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706560000030001", + "intro": "AMS G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806120000010003", + "intro": "AMS-HT G lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705230000020005", + "intro": "Baigėsi AMS F Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0706120000010003", + "intro": "AMS G lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000030002", + "intro": "AMS-HT B 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807220000020002", + "intro": "AMS-HT H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707210000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 kaitinamoji gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "1802230000020002", + "intro": "AMS-HT C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806120000010001", + "intro": "AMS-HT G 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704230000020008", + "intro": "AMS E Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805120000010003", + "intro": "AMS-HT F lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020008", + "intro": "AMS-HT F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800100000010001", + "intro": "AMS-HT A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705230000020003", + "intro": "Gali būti, kad AMS F Slot 4 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0707110000010003", + "intro": "AMS H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705210000020002", + "intro": "AMS F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800210000020002", + "intro": "AMS-HT A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806110000020002", + "intro": "AMS-HT G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806130000020002", + "intro": "AMS-HT G lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800230000020001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700200000030002", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0700210000020004", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000030001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700220000020003", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701100000010003", + "intro": "AMS B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703100000020002", + "intro": "AMS D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1801200000020004", + "intro": "AMS-HT B lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0706100000010003", + "intro": "AMS G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020001", + "intro": "AMS-HT E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803220000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1802100000010001", + "intro": "AMS-HT C lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706210000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "0704200000020001", + "intro": "AMS E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000030001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805230000020001", + "intro": "AMS-HT F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806230000020004", + "intro": "Gali būti, kad AMS-HT G Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706210000030002", + "intro": "AMS G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1806100000020002", + "intro": "AMS-HT G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801130000010003", + "intro": "AMS-HT B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804210000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804220000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0704100000010001", + "intro": "AMS E lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020008", + "intro": "AMS E lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0706120000020002", + "intro": "AMS G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802230000020004", + "intro": "Gali būti, kad AMS-HT C Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707110000020002", + "intro": "AMS H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706100000010001", + "intro": "AMS G lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1800210000020003", + "intro": "AMS-HT A lizdo Nr. 2 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1800110000020002", + "intro": "AMS-HT A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020004", + "intro": "Gali būti, kad AMS-HT H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0704230000020001", + "intro": "AMS E Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704210000020005", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803130000010001", + "intro": "AMS-HT D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707230000020009", + "intro": "Nepavyko išspausti „AMS H Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1803350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0704210000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020004", + "intro": "AMS A Slot 4 gija įrankio galvutėje gali būti nutrūkęs." + }, + { + "ecode": "0700230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0701220000020005", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703220000030002", + "intro": "AMS D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1803230000030002", + "intro": "AMS-HT D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020002", + "intro": "AMS-HT H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000020004", + "intro": "Gali būti, kad AMS-HT F Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H Slot 4 gija." + }, + { + "ecode": "1804120000020002", + "intro": "AMS-HT E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000020008", + "intro": "AMS F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020002", + "intro": "AMS-HT D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807220000020001", + "intro": "AMS-HT H lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 3 spuldzės gijas." + }, + { + "ecode": "1800230000020008", + "intro": "AMS-HT: lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707230000020005", + "intro": "Baigėsi AMS H Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707200000020005", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802230000030002", + "intro": "AMS-HT C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805200000020002", + "intro": "AMS-HT F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801200000020005", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705210000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705210000030001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705220000020008", + "intro": "AMS F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802120000010001", + "intro": "AMS-HT C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B lizdo Nr. 3 gija." + }, + { + "ecode": "0707210000020005", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0700120000010003", + "intro": "AMS A lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700200000030001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700210000020005", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant spausdintuvo galvutės." + }, + { + "ecode": "0700230000030002", + "intro": "AMS A 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0702220000020001", + "intro": "AMS C lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801100000020002", + "intro": "AMS-HT B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806100000010001", + "intro": "AMS-HT G lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805110000010001", + "intro": "AMS-HT F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803110000010001", + "intro": "AMS-HT D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807120000020002", + "intro": "AMS-HT H lizdo Nr. 3 variklis yra perkrautas. Galbūt gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000030002", + "intro": "AMS H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020008", + "intro": "AMS-HT D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1807220000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1806220000020002", + "intro": "AMS-HT G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807130000010001", + "intro": "AMS-HT H slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000020001", + "intro": "AMS H Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801210000020008", + "intro": "AMS-HT B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802210000020001", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0707210000020002", + "intro": "AMS H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704200000030002", + "intro": "AMS E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804210000020002", + "intro": "AMS-HT E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0705220000020001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000020003", + "intro": "AMS-HT A lizdo Nr. 1 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1805230000020003", + "intro": "Gali būti, kad „AMS-HT F Slot 4“ spausdintuvo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1802230000020001", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804230000020003", + "intro": "Gali būti, kad „AMS-HT E Slot 4“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "0704300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704220000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1806300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0707200000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0706220000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0706350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700200000020005", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700220000030002", + "intro": "AMS A 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0701230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gijos gija įtrūko įrankio galvutėje." + }, + { + "ecode": "0702130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000020005", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1801210000020005", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801210000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020001", + "intro": "AMS-HT E lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803560000030001", + "intro": "AMS-HT D šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805100000020002", + "intro": "AMS-HT F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020002", + "intro": "AMS E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704210000030002", + "intro": "AMS E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801120000010003", + "intro": "AMS-HT B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803220000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806210000020008", + "intro": "AMS-HT G lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706200000020008", + "intro": "AMS G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807100000010001", + "intro": "AMS-HT H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1804100000020002", + "intro": "AMS-HT E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804100000010001", + "intro": "AMS-HT E lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807120000010001", + "intro": "AMS-HT H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705200000020008", + "intro": "AMS F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704230000030001", + "intro": "Baigėsi AMS E Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000030001", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701560000030001", + "intro": "AMS B šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1800130000010003", + "intro": "AMS-HT A lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707100000020002", + "intro": "AMS H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030002", + "intro": "AMS F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0706220000030002", + "intro": "AMS G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0704230000020005", + "intro": "Baigėsi AMS E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704200000020008", + "intro": "AMS E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707210000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "1806210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT G lizdo Nr. 2 gija." + }, + { + "ecode": "0700220000020008", + "intro": "AMS A 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000030001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705110000020002", + "intro": "AMS F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700110000010003", + "intro": "AMS A lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701120000010001", + "intro": "AMS B lizdo Nr. 3-iojo variklio padėtis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702100000020002", + "intro": "AMS C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702210000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702220000020005", + "intro": "Baigėsi AMS C 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703110000020002", + "intro": "AMS D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703210000030001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800560000030001", + "intro": "AMS-HT A šiuo metu aušinamas sausuoju būdu; prieš pradėdami jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804210000020001", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000020008", + "intro": "AMS-HT B lizdo Nr. 1 įvesties Hallo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803210000020002", + "intro": "AMS-HT D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020005", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020005", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1800200000020001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806230000020002", + "intro": "AMS-HT G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020008", + "intro": "AMS A Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020001", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807210000030002", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801220000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803200000030002", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800110000010001", + "intro": "AMS-HT A lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706220000020008", + "intro": "AMS G 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801230000020004", + "intro": "Gali būti, kad AMS-HT B Slot 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1806220000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803210000030002", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805210000020002", + "intro": "AMS-HT F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020002", + "intro": "AMS-HT C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1804230000020005", + "intro": "Baigėsi AMS-HT E Slot 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804200000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000020008", + "intro": "AMS C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805100000010001", + "intro": "AMS-HT F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800220000020004", + "intro": "AMS-HT A lizdo Nr. 3 gija įrankio galvutėje gali būti nutrūkusi." + }, + { + "ecode": "0704220000020008", + "intro": "AMS E lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020005", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805230000020008", + "intro": "AMS-HT F Slot 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000020005", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT D lizdo Nr. 3 gija elementas." + }, + { + "ecode": "1804300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1801310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1807300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705220000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700220000020001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000030001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703210000020005", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802210000020008", + "intro": "AMS-HT C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800100000020002", + "intro": "AMS-HT A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707210000030002", + "intro": "AMS H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020008", + "intro": "AMS C lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801200000020003", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1802130000020002", + "intro": "AMS-HT C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800200000020002", + "intro": "AMS-HT A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803130000010003", + "intro": "AMS-HT D lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706210000020005", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705230000020001", + "intro": "AMS F Slot 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805200000020001", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000020008", + "intro": "AMS-HT E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704220000030002", + "intro": "AMS E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806130000010001", + "intro": "AMS-HT G slot 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804120000010003", + "intro": "AMS-HT E lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 2 gija." + }, + { + "ecode": "1804210000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1802200000020008", + "intro": "AMS-HT C lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706210000030001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705200000030002", + "intro": "AMS F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0707200000020001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1805210000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000020002", + "intro": "AMS E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020002", + "intro": "AMS G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802110000010003", + "intro": "AMS-HT C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020003", + "intro": "Gali būti, kad AMS G Slot 4 gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803230000020003", + "intro": "Gali būti, kad „AMS-HT D Slot 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0704230000020004", + "intro": "Gali būti, kad AMS E Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702560000030001", + "intro": "AMS C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1803210000020008", + "intro": "AMS-HT D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000020003", + "intro": "AMS-HT A Slot 4 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1806120000020002", + "intro": "AMS-HT G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030001", + "intro": "Baigėsi AMS F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805110000020002", + "intro": "AMS-HT F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707230000020003", + "intro": "Gali būti, kad AMS H Slot 4 kaitinamoji gija yra sulūžusi AMS." + }, + { + "ecode": "0700130000010003", + "intro": "AMS A lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija yra nutrūkusi spausdinimo galvutėje." + }, + { + "ecode": "0702100000010003", + "intro": "AMS C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702110000010001", + "intro": "AMS C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000010003", + "intro": "AMS C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000030001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000030002", + "intro": "AMS C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702230000030002", + "intro": "AMS C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0703210000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707110000010001", + "intro": "AMS H lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807130000010003", + "intro": "AMS-HT H lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000020008", + "intro": "AMS B lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020008", + "intro": "AMS-HT D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705200000020005", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806220000020003", + "intro": "Gali būti, kad „AMS-HT G lizdo Nr. 3“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0705200000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1802120000010003", + "intro": "AMS-HT C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000020002", + "intro": "AMS-HT B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000030001", + "intro": "Baigėsi AMS-HT F Slot 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020005", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804230000020008", + "intro": "AMS-HT E Slot 4 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0705560000030001", + "intro": "AMS F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0705220000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1807200000030002", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807230000020008", + "intro": "AMS-HT H Slot 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803100000010003", + "intro": "AMS-HT D lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000020002", + "intro": "AMS E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704200000030001", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020004", + "intro": "Gali būti, kad AMS H Slot 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1803100000010001", + "intro": "AMS-HT D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706200000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 1“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0300C20000010002", + "intro": "Filtro perjungimo sklendės Hallo jutiklio gedimas: patikrinkite, ar laidai nėra atsipalaidavę." + }, + { + "ecode": "0C00010000010010", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Patikrinkite, ar šildomasis stalas yra švarus, ir įsitikinkite, kad kameros vaizdas yra aiškus ir be nešvarumų. Atlikę šiuos veiksmus, atlikite kalibravimą iš naujo." + }, + { + "ecode": "0C0001000001000F", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00010000010013", + "intro": "Nepavyko kalibruoti „Live View“ kameros, o jos serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "050004000001004F", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0C00040000010020", + "intro": "Šildomojo pagrindo vizualusis žymeklis yra sugadintas, prašome kreiptis į garantinio aptarnavimo tarnybą." + }, + { + "ecode": "0C00030000020013", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "1200300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS A." + }, + { + "ecode": "1201300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS B." + }, + { + "ecode": "1202300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS C." + }, + { + "ecode": "1203300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS D." + }, + { + "ecode": "0702970000030001", + "intro": "AMS C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0703970000030001", + "intro": "AMS D kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0700970000030001", + "intro": "AMS: Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0701970000030001", + "intro": "AMS B kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0704970000030001", + "intro": "AMS E kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1802970000030001", + "intro": "AMS-HT C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1805970000030001", + "intro": "AMS-HT F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1800970000030001", + "intro": "AMS-HT Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID nuskaitymo." + }, + { + "ecode": "1807970000030001", + "intro": "AMS-HT H Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0706970000030001", + "intro": "AMS G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0705970000030001", + "intro": "AMS F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1803970000030001", + "intro": "AMS-HT D Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "0707970000030001", + "intro": "AMS H kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1806970000030001", + "intro": "AMS-HT G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1804970000030001", + "intro": "AMS-HT E Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "1801970000030001", + "intro": "AMS-HT B kameros temperatūra per aukšta; šiuo metu negalima naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "07FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "07FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0300180000000000", + "intro": "" + }, + { + "ecode": "0C00040000020006", + "intro": "" + }, + { + "ecode": "0700960000020002", + "intro": "AMS A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0701960000020002", + "intro": "AMS B: Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0500050000010001", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0702960000020002", + "intro": "AMS C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0703960000010003", + "intro": "AMS D Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0500400000010039", + "intro": "Lazerinio modulio serijinio numerio klaida" + }, + { + "ecode": "0702960000010003", + "intro": "AMS C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0703960000020002", + "intro": "AMS D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0500400000010040", + "intro": "Pjovimo modulio serijinio numerio klaida" + }, + { + "ecode": "0701960000010003", + "intro": "AMS B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0700960000010003", + "intro": "AMS A Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300180000010006", + "intro": "Šildomojo pagrindo išlyginimo duomenys yra nenormalūs. Patikrinkite, ar ant šildomojo pagrindo ir Z slankiklio nėra svetimkūnių. Jei yra, pašalinkite juos ir pabandykite dar kartą." + }, + { + "ecode": "0500010000030004", + "intro": "USB atmintinėje nepakanka vietos; prašome išlaisvinti šiek tiek vietos." + }, + { + "ecode": "0707960000020002", + "intro": "AMS H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1804960000010003", + "intro": "AMS-HT E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1807960000010003", + "intro": "AMS-HT H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1806960000010003", + "intro": "AMS-HT G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000010003", + "intro": "AMS E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1803960000020002", + "intro": "AMS-HT D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1803960000010003", + "intro": "AMS-HT D Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804960000020002", + "intro": "AMS-HT E Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1800960000020002", + "intro": "AMS-HT A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1801960000020002", + "intro": "AMS-HT B Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807960000020002", + "intro": "AMS-HT H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806960000020002", + "intro": "AMS-HT G Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1805960000020002", + "intro": "AMS-HT F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1805960000010003", + "intro": "AMS-HT F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0707960000010003", + "intro": "AMS H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1800960000010003", + "intro": "AMS-HT A Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000020002", + "intro": "AMS E Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0705960000010003", + "intro": "AMS F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1801960000010003", + "intro": "AMS-HT B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0705960000020002", + "intro": "AMS F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1802960000010003", + "intro": "AMS-HT C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1802960000020002", + "intro": "AMS-HT C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0706960000010003", + "intro": "AMS G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0706960000020002", + "intro": "AMS G Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300180000010003", + "intro": "Ekstruzijos jėgos jutiklis neveikia; galbūt nutrūko ryšys tarp MC ir TH, arba sugadėjo pats jutiklis." + }, + { + "ecode": "0500020000020003", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700310000020002", + "intro": "AMS A izdo Nr. 2 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703300000020002", + "intro": "AMS D izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700800000010003", + "intro": "AMS A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300960000010001", + "intro": "Atrodo, kad pagrindinis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0703900000010003", + "intro": "AMS D Išmetimo vožtuvas 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700800000010002", + "intro": "AMS A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806310000020002", + "intro": "AMS-HT G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705010000020008", + "intro": "AMS F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806810000010002", + "intro": "AMS-HT G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805330000020002", + "intro": "„AMS-HT F lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705320000020002", + "intro": "AMS F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803810000010002", + "intro": "AMS-HT D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "030001000001000D", + "intro": "Anksčiau šildomojo pagrindo šildymo moduliuose įvyko gedimas. Norėdami toliau naudotis spausdintuvu, gedimo šalinimo instrukcijas rasite wiki puslapyje." + }, + { + "ecode": "0300040000020001", + "intro": "Detalės aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300080000010003", + "intro": "„Motor-Z“ varžos rodmenys neatitinka normos; variklis galėjo sugesti." + }, + { + "ecode": "0500040000010002", + "intro": "Nepavyko pranešti apie spausdinimo būseną; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000030008", + "intro": "Atrodo, kad durys yra atidarytos." + }, + { + "ecode": "0500040000030009", + "intro": "Spausdinimo platformos temperatūra viršija gijos stiklėjimo temperatūrą, dėl ko gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras. Durelių atidarymo jutiklis laikinai išjungtas." + }, + { + "ecode": "0500050000030002", + "intro": "Prietaisas yra bandymo etape; prašome atkreipti dėmesį į su informacijos saugumu susijusius klausimus." + }, + { + "ecode": "0700300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701310000020002", + "intro": "AMS B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702310000020002", + "intro": "AMS C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010005", + "intro": "Aptiktas naujas „Micro Lidar“ įrenginys. Prieš naudodami jį, kalibruokite jį kalibravimo puslapyje." + }, + { + "ecode": "12FF200000020004", + "intro": "Prašome ištraukti iš ekstruderių ant ritės laikiklio esantį giją." + }, + { + "ecode": "0702950000010001", + "intro": "AMS C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0702010000020008", + "intro": "AMS C Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0703910000010003", + "intro": "AMS D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702810000010003", + "intro": "AMS C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0702350000010002", + "intro": "AMS C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701010000020007", + "intro": "AMS B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000010011", + "intro": "Nepavyko išmatuoti medžiagos storio: prietaiso parametrai neatitinka normos; prašome iš naujo nustatyti „BirdsEye“ kamerą." + }, + { + "ecode": "0C0003000002000C", + "intro": "Nepavyko aptikti spausdinimo plokštės padėties žymės. Patikrinkite, ar spausdinimo plokštė yra tinkamai išlyginta." + }, + { + "ecode": "0702900000010003", + "intro": "AMS C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700810000010002", + "intro": "AMS A Šildytuvas 2 yra atjungtas, o tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300A20000010001", + "intro": "MC modulio temperatūra yra per aukšta, galbūt dėl to, kad spausdintuvo kamera yra per karšta. Prieš naudojimą galite pabandyti sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0300360000010001", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010013", + "intro": "„BirdsEye“ kameros ekspozicijos parametrai yra netinkami; prašome bandyti dar kartą." + }, + { + "ecode": "1804910000010003", + "intro": "AMS-HT E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705950000010001", + "intro": "AMS F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802910000010003", + "intro": "AMS-HT C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706350000010002", + "intro": "AMS G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800900000010003", + "intro": "AMS-HT A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802800000010002", + "intro": "AMS-HT C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704950000010001", + "intro": "AMS E Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801350000010002", + "intro": "AMS-HT B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802310000020002", + "intro": "AMS-HT C izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806800000010003", + "intro": "AMS-HT G Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707800000010003", + "intro": "AMS H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805010000020008", + "intro": "AMS-HT F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0707300000020002", + "intro": "AMS H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010003", + "intro": "AMS H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705940000010001", + "intro": "AMS F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707310000020002", + "intro": "AMS H izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803010000020007", + "intro": "AMS-HT D Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707950000010001", + "intro": "AMS H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800330000020002", + "intro": "„AMS-HT A lizdo Nr. 4“ įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705310000020002", + "intro": "AMS F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803940000010001", + "intro": "AMS-HT D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807900000010003", + "intro": "AMS-HT H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706910000010003", + "intro": "AMS G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706940000010001", + "intro": "AMS G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804950000010001", + "intro": "AMS-HT E 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806010000020008", + "intro": "AMS-HT G Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705300000020002", + "intro": "AMS F izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800910000010003", + "intro": "AMS-HT A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803900000010003", + "intro": "AMS-HT D Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807310000020002", + "intro": "„AMS-HT H izdo Nr. 2“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803800000010002", + "intro": "AMS-HT D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801330000020002", + "intro": "AMS-HT B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804310000020002", + "intro": "„AMS-HT E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804800000010003", + "intro": "AMS-HT E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1803800000010003", + "intro": "AMS-HT D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801320000020002", + "intro": "AMS-HT B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "03001B0000010002", + "intro": "Šildomojo pagrindo pagreičio jutiklyje užfiksuotas išorinis trikdys. Gali būti, kad jutiklio signalo laidas nėra tinkamai pritvirtintas." + }, + { + "ecode": "030091000001000C", + "intro": "Kameros šildytuvas Nr. 1 ilgą laiką veikė esant pilnai apkrovai. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300940000030001", + "intro": "kameros aušinimas gali vykti pernelyg lėtai. Jei kambaryje esantis oras nėra toksiškas, galite atidaryti priekines dureles arba viršutinį dangtį, kad pagreitintumėte aušinimą." + }, + { + "ecode": "0500020000020005", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010003", + "intro": "Spausdinimo failo turinys yra neskaitomas; prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "0500050000010006", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0700330000020002", + "intro": "AMS A lizdo Nr. 4 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701330000020002", + "intro": "AMS B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0702300000020002", + "intro": "AMS C izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702320000020002", + "intro": "AMS C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702330000020002", + "intro": "AMS C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000020002", + "intro": "AMS D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C0001000001000B", + "intro": "Nepavyko kalibruoti „Micro Lidar“. Įsitikinkite, kad kalibravimo lentelė yra švari ir niekas jos neužstoja. Tada vėl atlikite įrenginio kalibravimą." + }, + { + "ecode": "0702810000010002", + "intro": "AMS C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703010000020008", + "intro": "AMS D Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050003000001000A", + "intro": "Sistemos būsena yra nenormali; prašome atkurti gamyklinius nustatymus." + }, + { + "ecode": "0702800000010003", + "intro": "AMS C Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba pačio šildytuvo gedimu." + }, + { + "ecode": "0701350000010002", + "intro": "AMS B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0702940000010001", + "intro": "AMS C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700010000020008", + "intro": "AMS A Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "030001000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; šildomasis stalas išjungtas." + }, + { + "ecode": "0703810000010003", + "intro": "AMS D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706330000020002", + "intro": "„AMS G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805310000020002", + "intro": "AMS-HT F izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807010000020007", + "intro": "AMS-HT H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707800000010002", + "intro": "AMS H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804800000010002", + "intro": "AMS-HT E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706800000010002", + "intro": "AMS G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805320000020002", + "intro": "AMS-HT F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704310000020002", + "intro": "„AMS E izdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705810000010003", + "intro": "AMS F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0704350000010002", + "intro": "AMS E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806940000010001", + "intro": "AMS-HT G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801950000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807350000010002", + "intro": "AMS-HT H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0705910000010003", + "intro": "AMS F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020007", + "intro": "AMS-HT E Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707910000010003", + "intro": "AMS H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802900000010003", + "intro": "AMS-HT C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801810000010002", + "intro": "AMS-HT B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801310000020002", + "intro": "AMS-HT B izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704800000010002", + "intro": "AMS E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020007", + "intro": "AMS G: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706810000010003", + "intro": "AMS G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804810000010003", + "intro": "AMS-HT E Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1802350000010002", + "intro": "AMS-HT C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800810000010002", + "intro": "AMS-HT A Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706810000010002", + "intro": "AMS G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806950000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800950000010001", + "intro": "AMS-HT A 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706320000020002", + "intro": "AMS G lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807810000010003", + "intro": "AMS-HT H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705800000010002", + "intro": "AMS F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706800000010003", + "intro": "AMS G Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707010000020008", + "intro": "AMS H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010002", + "intro": "AMS E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806300000020002", + "intro": "RFID žymė, esanti AMS-HT G izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806910000010003", + "intro": "AMS-HT G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804320000020002", + "intro": "„AMS-HT E lizdo Nr. 3“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805010000020007", + "intro": "AMS-HT F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805910000010003", + "intro": "AMS-HT F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706310000020002", + "intro": "AMS G izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705330000020002", + "intro": "„AMS F lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0300010000010008", + "intro": "Šildomojo pagrindo kaitinimo proceso metu atsiranda gedimas; galbūt sugedo kaitinimo moduliai." + }, + { + "ecode": "0300020000010006", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700320000020002", + "intro": "AMS A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0702310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0703300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C0003000002000F", + "intro": "Dalys, praleistos prieš pirmojo sluoksnio patikrinimą; šiam spausdinimui patikrinimas nėra palaikomas." + }, + { + "ecode": "12FF200000020006", + "intro": "Nepavyko išspausti gijos; ekstruderiui gali būti užsikimšęs." + }, + { + "ecode": "0C00040000010014", + "intro": "Nepastebėta pjovimo apsaugos pagrindo, dėl ko\ngali būti pažeistas šildomasis stalas. Prašome jį uždėti ir tęsti." + }, + { + "ecode": "0703950000010001", + "intro": "AMS D Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703350000010002", + "intro": "AMS D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701910000010003", + "intro": "AMS B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700940000010001", + "intro": "AMS A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700350000010002", + "intro": "AMS A Drėgmės jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703810000010002", + "intro": "AMS D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0700010000020007", + "intro": "AMS A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701800000010002", + "intro": "AMS B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703940000010001", + "intro": "AMS D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701800000010003", + "intro": "AMS B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700910000010003", + "intro": "AMS A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0703010000020007", + "intro": "AMS D: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0300090000020002", + "intro": "Ekstruzijos pasipriešinimas yra neįprastas. Ekstruderius gali būti užsikimšęs arba į antgalį įstrigo gija." + }, + { + "ecode": "0300310000010001", + "intro": "Dalies aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0702010000020007", + "intro": "AMS C: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805810000010003", + "intro": "AMS-HT F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801940000010001", + "intro": "AMS-HT B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804330000020002", + "intro": "„AMS-HT E lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807940000010001", + "intro": "AMS-HT H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020008", + "intro": "AMS G: Pagalbinio variklio fazės apvijos grandinė yra atvira. Galbūt pagalbinis variklis sugedęs." + }, + { + "ecode": "1807910000010003", + "intro": "AMS-HT H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800010000020007", + "intro": "AMS-HT A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704800000010003", + "intro": "AMS E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1802940000010001", + "intro": "AMS-HT C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707010000020007", + "intro": "AMS H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803350000010002", + "intro": "AMS-HT D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803310000020002", + "intro": "AMS-HT D izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802300000020002", + "intro": "RFID žymė, esanti AMS-HT C izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807320000020002", + "intro": "AMS-HT H lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805810000010002", + "intro": "AMS-HT F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010002", + "intro": "AMS-HT C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803810000010003", + "intro": "AMS-HT D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804350000010002", + "intro": "AMS-HT E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707900000010003", + "intro": "AMS H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704900000010003", + "intro": "AMS E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802010000020007", + "intro": "AMS-HT C Pagalbinio variklio enkoderio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807950000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705010000020007", + "intro": "AMS F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801800000010002", + "intro": "AMS-HT B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704300000020002", + "intro": "„AMS E izdo Nr. 1“ esanti RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1801900000010003", + "intro": "AMS-HT B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706900000010003", + "intro": "AMS G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803300000020002", + "intro": "RFID žymė, esanti AMS-HT D izdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802950000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801800000010003", + "intro": "AMS-HT B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1807010000020008", + "intro": "AMS-HT H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805950000010001", + "intro": "AMS-HT F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020008", + "intro": "AMS-HT B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806320000020002", + "intro": "„AMS-HT G lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803950000010001", + "intro": "AMS-HT D 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705800000010003", + "intro": "AMS F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804900000010003", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010003", + "intro": "AMS-HT C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1800300000020002", + "intro": "AMS-HT A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "030001000001000A", + "intro": "Šildomojo pagrindo temperatūros reguliavimas veikia netinkamai; galbūt sugedo kintamosios srovės plokštė." + }, + { + "ecode": "0300030000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300060000010003", + "intro": "Variklio A varžos rodmenys neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "0300070000010003", + "intro": "„Motor-B“ variklio varža neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "03001A0000020001", + "intro": "Purkštukas užsikimšęs gijomis arba spausdinimo plokštė yra kreiva." + }, + { + "ecode": "03001D0000010001", + "intro": "Ekstruzijos variklio padėties jutiklis veikia netinkamai. Galbūt jungtis su jutikliu yra laisva." + }, + { + "ecode": "0500040000010001", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700300000020002", + "intro": "AMS A izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701320000020002", + "intro": "AMS B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703320000020002", + "intro": "AMS D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703330000020002", + "intro": "„AMS D lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C00010000020007", + "intro": "„Micro Lidar“ lazerio parametrai nukrypo. Prašome iš naujo kalibruoti spausdintuvą." + }, + { + "ecode": "0C00020000020004", + "intro": "Atrodo, kad purkštuvo aukštis yra per mažas. Patikrinkite, ar purkštuvas nėra susidėvėjęs arba pasviręs. Jei purkštuvas buvo pakeistas, iš naujo kalibruokite „Lidar“." + }, + { + "ecode": "0C00020000020009", + "intro": "Vertikalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00030000020010", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti šildomąjį pagrindą." + }, + { + "ecode": "0703800000010002", + "intro": "AMS D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701010000020008", + "intro": "AMS B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500040000020033", + "intro": "Prašome prijungti modulio jungtį." + }, + { + "ecode": "0700950000010001", + "intro": "AMS A Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0C00040000010010", + "intro": "Dėl lazerio modulio gedimo nepavyko išmatuoti medžiagos storio." + }, + { + "ecode": "0700810000010003", + "intro": "AMS A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700900000010003", + "intro": "AMS A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701900000010003", + "intro": "AMS B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701950000010001", + "intro": "AMS B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805940000010001", + "intro": "AMS-HT F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010002", + "intro": "AMS-HT H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704010000020008", + "intro": "AMS E: Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010003", + "intro": "AMS E Šildytuvas Nr. 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805800000010002", + "intro": "AMS-HT F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706300000020002", + "intro": "AMS G izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707350000010002", + "intro": "AMS H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801300000020002", + "intro": "AMS-HT B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800010000020008", + "intro": "AMS-HT A Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000020007", + "intro": "AMS-HT G Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804300000020002", + "intro": "„AMS-HT E izdo Nr. 1“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704940000010001", + "intro": "AMS E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806900000010003", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800800000010003", + "intro": "AMS-HT A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705810000010002", + "intro": "AMS F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800810000010003", + "intro": "AMS-HT A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1807300000020002", + "intro": "AMS-HT H izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804810000010002", + "intro": "AMS-HT E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807810000010002", + "intro": "AMS-HT H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705350000010002", + "intro": "AMS F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803010000020008", + "intro": "AMS-HT D Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802800000010003", + "intro": "AMS-HT C Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801910000010003", + "intro": "AMS-HT B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805900000010003", + "intro": "AMS-HT F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010003", + "intro": "AMS-HT H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706950000010001", + "intro": "AMS G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805350000010002", + "intro": "AMS-HT F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802320000020002", + "intro": "AMS-HT C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800940000010001", + "intro": "AMS-HT A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704330000020002", + "intro": "„AMS E lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802330000020002", + "intro": "AMS-HT C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800800000010002", + "intro": "AMS-HT A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704910000010003", + "intro": "AMS E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806800000010002", + "intro": "AMS-HT G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804940000010001", + "intro": "AMS-HT E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020007", + "intro": "AMS-HT B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707940000010001", + "intro": "AMS H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020008", + "intro": "AMS-HT E Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500020000020001", + "intro": "Nepavyko prisijungti prie interneto. Patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010006", + "intro": "Nepavyko atnaujinti ankstesnio spausdinimo" + }, + { + "ecode": "0700310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0701300000020002", + "intro": "AMS B izdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000020003", + "intro": "Horizontalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00020000020007", + "intro": "Vertikalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0702910000010003", + "intro": "AMS C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701810000010003", + "intro": "AMS B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300090000020003", + "intro": "Ekstruderiui kyla veikimo sutrikimų. Jis gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0703800000010003", + "intro": "AMS D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0701940000010001", + "intro": "AMS B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701810000010002", + "intro": "AMS B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702800000010002", + "intro": "AMS C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803330000020002", + "intro": "„AMS-HT D lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806330000020002", + "intro": "„AMS-HT G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802010000020008", + "intro": "AMS-HT C Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705900000010003", + "intro": "AMS F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800350000010002", + "intro": "AMS-HT A Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803910000010003", + "intro": "AMS-HT D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806810000010003", + "intro": "AMS-HT G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0704010000020007", + "intro": "AMS E: Pagalbinio variklio kodavimo daviklio laidai nėra prijungti. Gali būti, kad pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707320000020002", + "intro": "AMS H lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707330000020002", + "intro": "„AMS H lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805300000020002", + "intro": "RFID žymė, esanti AMS-HT F izdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010002", + "intro": "AMS H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806350000010002", + "intro": "AMS-HT G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0704320000020002", + "intro": "„AMS E lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800320000020002", + "intro": "AMS-HT A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803320000020002", + "intro": "AMS-HT D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807330000020002", + "intro": "„AMS-HT H lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800310000020002", + "intro": "AMS-HT A izdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805800000010003", + "intro": "AMS-HT F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801810000010003", + "intro": "AMS-HT B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0703200000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702230000020009", + "intro": "Nepavyko išspausti AMS C Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700200000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 1 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701220000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701230000020009", + "intro": "Nepavyko išspausti AMS B Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701200000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 1 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0701210000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702220000020009", + "intro": "Nepavyko išspausti „AMS C lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700210000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702210000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703230000020009", + "intro": "Nepavyko išspausti AMS D Slot 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702200000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700220000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703220000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703210000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700230000020009", + "intro": "Nepavyko išspausti „AMS A Slot 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700310000010001", + "intro": "Plokštėje „AMS A RFID 2“ yra klaida." + }, + { + "ecode": "1800010000010003", + "intro": "AMS-HT A pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706120000020004", + "intro": "AMS G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807130000020004", + "intro": "AMS-HT H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807960000010001", + "intro": "AMS-HT H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1804920000020002", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805910000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802920000020002", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800310000010001", + "intro": "Plokštėje „AMS-HT A RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020010", + "intro": "AMS-HT D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800930000010001", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801910000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1803020000020002", + "intro": "AMS-HT D jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801300000010001", + "intro": "Plokštėje „AMS-HT B RFID 1“ yra klaida." + }, + { + "ecode": "0702310000010001", + "intro": "Plokštėje „AMS C RFID 2“ yra klaida." + }, + { + "ecode": "1800810000010001", + "intro": "AMS-HT A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801100000020004", + "intro": "AMS-HT B Šepetėlinis variklis Nr. 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706130000020004", + "intro": "AMS G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707020000020002", + "intro": "AMS H jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0704010000020011", + "intro": "AMS E: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707010000020011", + "intro": "AMS H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000010003", + "intro": "AMS-HT C pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707930000010001", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704010000020002", + "intro": "AMS E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800010000010001", + "intro": "Pagalbinis variklis „AMS-HT A“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706010000010001", + "intro": "AMS G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803930000020002", + "intro": "AMS-HT D 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803130000020004", + "intro": "AMS-HT D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803110000020004", + "intro": "AMS-HT D Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701310000010001", + "intro": "Plokštėje „AMS B RFID 2“ yra klaida." + }, + { + "ecode": "0706010000020011", + "intro": "AMS G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000010003", + "intro": "AMS G pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705010000020011", + "intro": "AMS F: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1800110000020004", + "intro": "AMS-HT A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000010003", + "intro": "AMS H pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805110000020004", + "intro": "AMS-HT F Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805810000010001", + "intro": "AMS-HT F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803120000020004", + "intro": "AMS-HT D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801900000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1805010000010001", + "intro": "Pagalbinis variklis „AMS-HT F“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804010000020011", + "intro": "AMS-HT E: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020011", + "intro": "AMS-HT C: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806120000020004", + "intro": "AMS-HT G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803020000010001", + "intro": "AMS-HT D. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0706010000020009", + "intro": "AMS G: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000010003", + "intro": "AMS-HT G pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807500000020001", + "intro": "AMS-HT H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1803960000010001", + "intro": "AMS-HT D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806300000010001", + "intro": "Plokštėje „AMS-HT G RFID 1“ yra klaida." + }, + { + "ecode": "0707800000010001", + "intro": "AMS H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000020011", + "intro": "AMS-HT B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705800000010001", + "intro": "AMS F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000010003", + "intro": "AMS-HT F pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804120000020004", + "intro": "AMS-HT E Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807010000020010", + "intro": "AMS-HT H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802900000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807900000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704310000010001", + "intro": "Plokštėje „AMS E RFID 2“ yra klaida." + }, + { + "ecode": "0707120000020004", + "intro": "AMS H Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803500000020001", + "intro": "AMS-HT D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1804500000020001", + "intro": "AMS-HT E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800020000010001", + "intro": "AMS-HT A. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0704010000010004", + "intro": "AMS E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803100000020004", + "intro": "AMS-HT D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806010000010004", + "intro": "AMS-HT G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1801130000020004", + "intro": "AMS-HT B Šepetėlinis variklis 4 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706110000020004", + "intro": "AMS G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705920000020002", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varža." + }, + { + "ecode": "0707810000010001", + "intro": "AMS H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801020000020002", + "intro": "AMS-HT B jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802010000010001", + "intro": "AMS-HT C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706930000020002", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0707010000020002", + "intro": "AMS H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800910000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807110000020004", + "intro": "AMS-HT H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801810000010001", + "intro": "AMS-HT B 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704020000010001", + "intro": "AMS E. Gijos greičio ir ilgio paklaida: Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1802310000010001", + "intro": "Plokštėje „AMS-HT C RFID 2“ yra klaida." + }, + { + "ecode": "0706100000020004", + "intro": "AMS G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800130000020004", + "intro": "AMS-HT A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000020002", + "intro": "AMS-HT E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704810000010001", + "intro": "AMS E: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705110000020004", + "intro": "AMS F Šepetėlinis variklis 2 negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801020000010001", + "intro": "AMS-HT B. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "1802020000020002", + "intro": "AMS-HT C jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805020000010001", + "intro": "AMS-HT F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806800000010001", + "intro": "AMS-HT G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704930000010001", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020010", + "intro": "AMS-HT B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806900000020001", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704010000010011", + "intro": "AMS E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804110000020004", + "intro": "AMS-HT E Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800100000020004", + "intro": "AMS-HT A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802130000020004", + "intro": "AMS-HT C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806500000020001", + "intro": "AMS-HT G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000010011", + "intro": "AMS C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806010000020002", + "intro": "AMS-HT G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804010000010003", + "intro": "AMS-HT E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706960000010001", + "intro": "AMS G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1801920000020002", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0705100000020004", + "intro": "AMS F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803800000010001", + "intro": "AMS-HT D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000020002", + "intro": "AMS-HT D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804920000010001", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000010004", + "intro": "AMS-HT B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803910000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802910000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806020000010001", + "intro": "AMS-HT G. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000010001", + "intro": "AMS-HT D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707310000010001", + "intro": "Plokštėje „AMS H RFID 2“ yra klaida." + }, + { + "ecode": "0707020000010001", + "intro": "AMS H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010001", + "intro": "AMS-HT H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705010000010001", + "intro": "„AMS F“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801930000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807930000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800930000020002", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1804960000010001", + "intro": "AMS-HT E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1805920000020002", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706920000010001", + "intro": "AMS G Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1803930000010001", + "intro": "AMS-HT D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800120000020004", + "intro": "AMS-HT A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803920000010001", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704300000010001", + "intro": "Plokštėje „AMS E RFID 1“ yra klaida." + }, + { + "ecode": "0706930000010001", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1802800000010001", + "intro": "AMS-HT C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804100000020004", + "intro": "AMS-HT E Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705930000020002", + "intro": "AMS F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0707110000020004", + "intro": "AMS H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800900000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806010000020011", + "intro": "AMS-HT G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807910000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704020000020002", + "intro": "AMS E: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1804010000020009", + "intro": "AMS-HT E Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807010000020011", + "intro": "AMS-HT H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020009", + "intro": "AMS-HT C Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807920000020002", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0705010000020002", + "intro": "AMS F pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701300000010001", + "intro": "Plokštėje „AMS B RFID 1“ yra klaida." + }, + { + "ecode": "0702300000010001", + "intro": "Plokštėje „AMS C RFID 1“ yra klaida." + }, + { + "ecode": "1807020000020002", + "intro": "AMS-HT H jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805800000010001", + "intro": "AMS-HT F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705920000010001", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801800000010001", + "intro": "AMS-HT B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706020000010001", + "intro": "AMS G: Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806960000010001", + "intro": "AMS-HT G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1803310000010001", + "intro": "Plokštėje „AMS-HT D RFID 2“ yra klaida." + }, + { + "ecode": "0704930000020002", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802930000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020002", + "intro": "Pagalbinis variklis „AMS-HT B“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705900000020001", + "intro": "AMS F Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707930000020002", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1801310000010001", + "intro": "Plokštėje „AMS-HT B RFID 2“ yra klaida." + }, + { + "ecode": "1806310000010001", + "intro": "Plokštėje „AMS-HT G RFID 2“ yra klaida." + }, + { + "ecode": "1805310000010001", + "intro": "Plokštėje „AMS-HT F RFID 2“ yra klaida." + }, + { + "ecode": "1804800000010001", + "intro": "AMS-HT E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010003", + "intro": "AMS-HT H pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705020000020002", + "intro": "AMS F jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1805960000010001", + "intro": "AMS-HT F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807010000020002", + "intro": "AMS-HT H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700300000010001", + "intro": "Plokštėje „AMS A RFID 1“ yra klaida." + }, + { + "ecode": "1805920000010001", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0706910000020001", + "intro": "AMS G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707960000010001", + "intro": "AMS H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806020000020002", + "intro": "AMS-HT G jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802020000010001", + "intro": "AMS-HT C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0704010000020010", + "intro": "AMS E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1803010000010004", + "intro": "AMS-HT D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803810000010001", + "intro": "AMS-HT D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020009", + "intro": "AMS-HT F Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800010000020002", + "intro": "Pagalbinis variklis AMS-HT A yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704010000020009", + "intro": "AMS E: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705960000010001", + "intro": "AMS F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807300000010001", + "intro": "Plokštėje „AMS-HT H RFID 1“ yra klaida." + }, + { + "ecode": "1806010000010001", + "intro": "AMS-HT G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800920000010001", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801110000020004", + "intro": "AMS-HT B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705010000020009", + "intro": "AMS F: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801120000020004", + "intro": "AMS-HT B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803010000010011", + "intro": "AMS-HT D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704910000020001", + "intro": "AMS E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1801500000020001", + "intro": "AMS-HT B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1807120000020004", + "intro": "AMS-HT H Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800960000010001", + "intro": "AMS-HT A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1800010000020010", + "intro": "AMS-HT A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000010011", + "intro": "AMS-HT F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704960000010001", + "intro": "AMS E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0707010000020009", + "intro": "AMS H: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801010000020009", + "intro": "AMS-HT B Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705010000010004", + "intro": "AMS F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0701010000010011", + "intro": "AMS B – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0500040000020030", + "intro": "„BirdsEye“ kamera nėra įdiegta. Išjunkite spausdintuvą ir tada įdiekite kamerą." + }, + { + "ecode": "0704920000010001", + "intro": "AMS E Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0707500000020001", + "intro": "AMS H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800800000010001", + "intro": "AMS-HT A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000010004", + "intro": "AMS-HT E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1806010000010011", + "intro": "AMS-HT G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705300000010001", + "intro": "Plokštėje „AMS F RFID 1“ yra klaida." + }, + { + "ecode": "1802120000020004", + "intro": "AMS-HT C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707300000010001", + "intro": "AMS H RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0706920000020002", + "intro": "AMS G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704110000020004", + "intro": "AMS E Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707910000020001", + "intro": "AMS H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807010000010011", + "intro": "AMS-HT H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1805900000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802300000010001", + "intro": "Plokštėje „AMS-HT C RFID 1“ yra klaida." + }, + { + "ecode": "1805120000020004", + "intro": "AMS-HT F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805300000010001", + "intro": "Plokštėje „AMS-HT F RFID 1“ yra klaida." + }, + { + "ecode": "1803010000020011", + "intro": "AMS-HT D Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705310000010001", + "intro": "Plokštėje „AMS F RFID 2“ yra klaida." + }, + { + "ecode": "1800010000020009", + "intro": "AMS-HT A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000020002", + "intro": "Pagalbinis variklis „AMS-HT F“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704920000020002", + "intro": "AMS E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706810000010001", + "intro": "AMS G: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705120000020004", + "intro": "AMS F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800010000020011", + "intro": "AMS-HT A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704010000010003", + "intro": "AMS E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706300000010001", + "intro": "Plokštėje „AMS G RFID 1“ yra klaida." + }, + { + "ecode": "1807010000020009", + "intro": "AMS-HT H Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705130000020004", + "intro": "AMS F Šepetėlinis variklis 4 negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802110000020004", + "intro": "AMS-HT C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000020010", + "intro": "AMS H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806100000020004", + "intro": "AMS-HT G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801960000010001", + "intro": "AMS-HT B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0705010000010011", + "intro": "AMS F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807010000010004", + "intro": "AMS-HT H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1805930000020002", + "intro": "AMS-HT F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704900000020001", + "intro": "AMS E Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707100000020004", + "intro": "AMS H Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700010000010011", + "intro": "AMS A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000020010", + "intro": "AMS G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804020000010001", + "intro": "AMS-HT E. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "0707920000010001", + "intro": "AMS H Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0705910000020001", + "intro": "AMS F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0706010000020002", + "intro": "AMS G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800300000010001", + "intro": "„AMS-HT A RFID 1“ plokštėje yra klaida." + }, + { + "ecode": "0707010000010004", + "intro": "AMS H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803900000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1804310000010001", + "intro": "Plokštėje „AMS-HT E RFID 2“ yra klaida." + }, + { + "ecode": "1800920000020002", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806910000020001", + "intro": "AMS-HT G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707010000010011", + "intro": "AMS H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804930000020002", + "intro": "AMS-HT E 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805100000020004", + "intro": "AMS-HT F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805130000020004", + "intro": "AMS-HT F Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706310000010001", + "intro": "Plokštėje „AMS G RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020009", + "intro": "AMS-HT D Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706900000020001", + "intro": "AMS G Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806930000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807920000010001", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804910000020001", + "intro": "AMS-HT E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0705930000010001", + "intro": "AMS F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804900000020001", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 veikia netinkamai; tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807020000010001", + "intro": "AMS-HT H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1804810000010001", + "intro": "AMS-HT E 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020010", + "intro": "AMS-HT F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704010000010001", + "intro": "„AMS E“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803300000010001", + "intro": "Plokštėje „AMS-HT D RFID 1“ yra klaida." + }, + { + "ecode": "1806010000020010", + "intro": "AMS-HT G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706500000020001", + "intro": "AMS G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800010000010011", + "intro": "AMS-HT A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705020000010001", + "intro": "AMS F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1802920000010001", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807100000020004", + "intro": "AMS-HT H Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703310000010001", + "intro": "Plokštėje „AMS D RFID 2“ yra klaida." + }, + { + "ecode": "0704800000010001", + "intro": "AMS E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0707010000010001", + "intro": "AMS H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806010000020009", + "intro": "AMS-HT G Pagalbinis variklis turi nesubalansuotą trifazę varžą. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804130000020004", + "intro": "AMS-HT E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704100000020004", + "intro": "AMS E Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806110000020004", + "intro": "AMS-HT G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805930000010001", + "intro": "AMS-HT F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704500000020001", + "intro": "AMS E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0704130000020004", + "intro": "AMS E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704120000020004", + "intro": "AMS E Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802810000010001", + "intro": "AMS-HT C 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000010011", + "intro": "AMS-HT B – pagalbinio variklio kalibravimo parametrų klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707130000020004", + "intro": "AMS H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000010011", + "intro": "AMS-HT E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1801010000010003", + "intro": "AMS-HT B pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807930000020002", + "intro": "AMS-HT H 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805020000020002", + "intro": "AMS-HT F jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806920000010001", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804020000020002", + "intro": "AMS-HT E jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1800500000020001", + "intro": "AMS-HT: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0705010000020010", + "intro": "AMS F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805500000020001", + "intro": "AMS-HT F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0707900000020001", + "intro": "AMS H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802500000020001", + "intro": "AMS-HT C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1805010000010004", + "intro": "AMS-HT F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703300000010001", + "intro": "AMS D RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0703010000010011", + "intro": "AMS D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707920000020002", + "intro": "AMS H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803920000020002", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1803010000010003", + "intro": "AMS-HT D pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705500000020001", + "intro": "AMS F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806920000020002", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800010000010004", + "intro": "AMS-HT A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020010", + "intro": "AMS-HT C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706010000010011", + "intro": "AMS G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1805010000020011", + "intro": "AMS-HT F Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806930000020002", + "intro": "AMS-HT G 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1807810000010001", + "intro": "AMS-HT H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804300000010001", + "intro": "Plokštėje „AMS-HT E RFID 1“ yra klaida." + }, + { + "ecode": "1801920000010001", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807310000010001", + "intro": "Plokštėje „AMS-HT H RFID 2“ yra klaida." + }, + { + "ecode": "1804930000010001", + "intro": "AMS-HT E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804010000010001", + "intro": "AMS-HT E pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705810000010001", + "intro": "AMS F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000020010", + "intro": "AMS-HT E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802100000020004", + "intro": "AMS-HT C Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802930000020002", + "intro": "AMS-HT C 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806810000010001", + "intro": "AMS-HT G 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706010000010004", + "intro": "AMS G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000010011", + "intro": "AMS-HT C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705010000010003", + "intro": "AMS F pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807800000010001", + "intro": "AMS-HT H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706800000010001", + "intro": "AMS G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1806130000020004", + "intro": "AMS-HT G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801930000020002", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802010000010004", + "intro": "AMS-HT C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020002", + "intro": "AMS-HT C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801010000010001", + "intro": "AMS-HT B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706020000020002", + "intro": "AMS G: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802960000010001", + "intro": "AMS-HT C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500010000030007", + "intro": "Jei neįdėta USB atmintinė, negalima įrašyti laiko tarpo fotografijos." + }, + { + "ecode": "0300110000020002", + "intro": "Y ašies rezonansinis dažnis labai skiriasi nuo paskutinio kalibravimo rezultato. Prašome nuvalyti Y ašies kreipiamąją strypą ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0300200000010002", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: patikrinkite, ar įstrigo įrankio galvutė, ar Y ašies vežimėlis susiduria su per dideliu pasipriešinimu." + }, + { + "ecode": "0300200000010001", + "intro": "X ašies grįžimo į pradinę padėtį sutrikimas: patikrinkite, ar neužstrigo įrankio galvutė arba ar X ašies linijinio bėgio pasipriešinimas nėra per didelis." + }, + { + "ecode": "0300100000020002", + "intro": "X ašies rezonansinis dažnis žymiai skiriasi nuo paskutinio kalibravimo rezultatų. Prašome nuvalyti X ašies linijinę bėgelę ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0500040000020039", + "intro": "Prašome prijungti modulio jungtį" + }, + { + "ecode": "0701010000010001", + "intro": "AMS B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200220000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201220000020005", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202110000010003", + "intro": "AMS C izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203820000020001", + "intro": "AMS D lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701960000010001", + "intro": "AMS B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700100000020004", + "intro": "AMS A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702010000020002", + "intro": "AMS C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201300000010001", + "intro": "AMS B lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201320000010001", + "intro": "AMS B lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202210000020005", + "intro": "Baigėsi AMS C izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202230000030002", + "intro": "AMS C lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203300000010001", + "intro": "AMS D lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703800000010001", + "intro": "AMS D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0300010000010001", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0703810000010001", + "intro": "AMS D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010001", + "intro": "AMS C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200330000020002", + "intro": "AMS A lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1201200000030001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1202720000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1203210000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0C0003000003000B", + "intro": "Pirmojo sluoksnio tikrinimas: prašome palaukti akimirką." + }, + { + "ecode": "0701900000020001", + "intro": "AMS B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0702920000010001", + "intro": "AMS C Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1200100000020002", + "intro": "AMS A izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020003", + "intro": "AMS A izdo Nr. 1 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200720000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1200830000020001", + "intro": "AMS A lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202300000020002", + "intro": "AMS C lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000010001", + "intro": "AMS C lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202830000020001", + "intro": "AMS C lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020010", + "intro": "AMS B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200230000030002", + "intro": "AMS A lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202210000020001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1202230000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203100000010001", + "intro": "AMS D izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203110000010003", + "intro": "AMS D izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203220000020005", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703010000020009", + "intro": "AMS D: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0C0003000001000A", + "intro": "Jūsų spausdintuvas veikia gamykliniame režime. Kreipkitės į techninę pagalbą." + }, + { + "ecode": "050004000002001A", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 3." + }, + { + "ecode": "1200200000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1200820000020001", + "intro": "AMS A lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202330000020002", + "intro": "AMS C lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1203130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700130000020004", + "intro": "AMS A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700920000020002", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0702910000020001", + "intro": "AMS C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703110000020004", + "intro": "AMS D Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701010000020011", + "intro": "AMS B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0700810000010001", + "intro": "AMS A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1200210000030001", + "intro": "AMS A izdo Nr. 2 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1201200000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202710000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020004", + "intro": "AMS D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020032", + "intro": "Įdėkite lazerinį modulį ir užfiksuokite greito atsegimo svirtį." + }, + { + "ecode": "0701920000010001", + "intro": "AMS B Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0701020000010001", + "intro": "AMS B. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010003", + "intro": "AMS C pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000030002", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702920000020002", + "intro": "AMS C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0701930000010001", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010004", + "intro": "AMS A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0700500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202230000020003", + "intro": "AMS C lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1203200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203210000020001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "0702110000020004", + "intro": "AMS C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703910000020001", + "intro": "AMS D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020015", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 2." + }, + { + "ecode": "0702020000010001", + "intro": "AMS C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200710000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201130000010001", + "intro": "AMS B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201300000030003", + "intro": "AMS B izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201330000010001", + "intro": "AMS B lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010003", + "intro": "AMS C izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202310000030003", + "intro": "AMS C izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020003", + "intro": "AMS A lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200230000020004", + "intro": "AMS A lizdo Nr. 4 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200330000010001", + "intro": "AMS A Slot 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202220000020001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000030001", + "intro": "Baigėsi AMS D izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0300350000020002", + "intro": "MC modulio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0703020000020002", + "intro": "AMS D Kilometražo skaitiklis negauna signalo. Gali būti, kad kilometražo skaitiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000020004", + "intro": "Šiai užduočiai tokio tipo platforma nėra palaikoma. Norėdami tęsti, pasirinkite tinkamą platformą." + }, + { + "ecode": "1200210000020003", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi PTFE vamzdyje." + }, + { + "ecode": "1200220000020005", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Vykdomas senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200300000010001", + "intro": "AMS A lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1201220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija PTFE vamzdelyje yra nutrūkusi." + }, + { + "ecode": "1201320000030003", + "intro": "AMS B lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203230000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1203230000020005", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0700020000020002", + "intro": "AMS A jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "050004000002001C", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 1 lizde." + }, + { + "ecode": "1200110000010001", + "intro": "AMS A izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200310000020002", + "intro": "AMS A lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1200500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201210000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202100000020002", + "intro": "AMS C izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203110000010001", + "intro": "AMS D izdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0703010000020011", + "intro": "AMS D. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0701910000020001", + "intro": "AMS B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0701110000020004", + "intro": "AMS B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703930000010001", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1200220000030001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200800000020001", + "intro": "AMS A izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000020001", + "intro": "Baigėsi AMS B izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1201200000020006", + "intro": "Nepavyko išspausti AMS B izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1201220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202200000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0703010000020010", + "intro": "AMS D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700010000020010", + "intro": "AMS A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701100000020004", + "intro": "AMS B Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1201300000020002", + "intro": "AMS B lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1201310000030003", + "intro": "AMS B izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201710000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 2-osios lizdo gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202200000030002", + "intro": "AMS C izdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020005", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203330000030003", + "intro": "AMS D lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0700930000020002", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020011", + "intro": "AMS C: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0300960000030001", + "intro": "Priekinės durys yra atidarytos." + }, + { + "ecode": "050003000002000C", + "intro": "Belaidžio ryšio įrangos klaida: išjunkite ir vėl įjunkite „Wi-Fi“ arba iš naujo paleiskite įrenginį." + }, + { + "ecode": "0300090000020001", + "intro": "Ekstruzijos variklis yra perkrautas. Ekstruderius gali būti užsikimšęs arba gijos medžiaga gali būti įstrigusi antgalyje." + }, + { + "ecode": "0703930000020002", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1200200000030001", + "intro": "AMS A izdo Nr. 1 gija baigėsi. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201700000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201730000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1202220000030001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202310000020002", + "intro": "AMS C lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000020002", + "intro": "AMS C lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203220000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0C00040000010015", + "intro": "Nenustatytas lazerio apsauginis įdėklas. Įdėkite jį ir tęskite." + }, + { + "ecode": "0703120000020004", + "intro": "AMS D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700800000010001", + "intro": "AMS A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0500040000020011", + "intro": "Neįmanoma atpažinti AMS A izdo Nr. 2 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0500040000020017", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 4." + }, + { + "ecode": "0701500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000010003", + "intro": "AMS „A lizdo Nr. 3“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200320000010001", + "intro": "AMS A lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202300000030003", + "intro": "AMS C izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203700000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203800000020001", + "intro": "AMS D izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020009", + "intro": "AMS B: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701020000020002", + "intro": "AMS B: jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020018", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 1 lizde." + }, + { + "ecode": "0703010000010003", + "intro": "AMS D pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1201210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201220000020001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000020004", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1203300000030003", + "intro": "AMS D izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200210000020006", + "intro": "Nepavyko išspausti AMS A izdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020004", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201210000020005", + "intro": "Baigėsi AMS B izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030002", + "intro": "AMS C izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202230000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000030002", + "intro": "AMS D izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203220000030002", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203320000010001", + "intro": "AMS D lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203330000010001", + "intro": "AMS D lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0701810000010001", + "intro": "AMS B: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0701120000020004", + "intro": "AMS B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200110000010003", + "intro": "AMS „A izdo Nr. 2“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201820000020001", + "intro": "AMS B lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000020004", + "intro": "AMS C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702810000010001", + "intro": "AMS C: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702800000010001", + "intro": "AMS C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703960000010001", + "intro": "AMS D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700010000010003", + "intro": "AMS A pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703020000010001", + "intro": "AMS D. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200100000010001", + "intro": "AMS A izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200210000020001", + "intro": "AMS A izdo Nr. 2 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200220000030002", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201330000020002", + "intro": "AMS B lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1202110000020002", + "intro": "AMS C izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1202120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700010000020009", + "intro": "AMS A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701010000020002", + "intro": "AMS B pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203230000020003", + "intro": "AMS D lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "050004000002001F", + "intro": "Neįmanoma atpažinti „AMS D lizdo Nr. 4“ esančios RFID žymės." + }, + { + "ecode": "1200130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201210000020003", + "intro": "Gali būti, kad AMS B izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201220000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201230000020001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1201230000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202210000020006", + "intro": "Nepavyko išspausti AMS C izdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203210000030002", + "intro": "AMS D izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203720000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0500040000020013", + "intro": "AMS A lizdo Nr. 4 įrenginyje esančios RFID žymės negalima atpažinti." + }, + { + "ecode": "1200130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201720000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202330000030003", + "intro": "AMS C lizdo Nr. 4 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203210000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203210000030001", + "intro": "Baigėsi AMS D izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0700960000010001", + "intro": "AMS A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500040000020010", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS A izdo Nr. 1." + }, + { + "ecode": "050004000002001E", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 3." + }, + { + "ecode": "0700010000010001", + "intro": "AMS A pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020005", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1200320000020002", + "intro": "AMS A 3-iojo lizdo RFID žymė yra sugadinta." + }, + { + "ecode": "1202200000020005", + "intro": "Baigėsi AMS C izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030001", + "intro": "Baigėsi AMS C izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202320000030003", + "intro": "AMS C lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203300000020002", + "intro": "AMS D lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1203330000020002", + "intro": "AMS D lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "0703100000020004", + "intro": "AMS D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0C00040000020008", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0701930000020002", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201200000020005", + "intro": "Baigėsi AMS B izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203100000010003", + "intro": "AMS D izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203110000020002", + "intro": "AMS D izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700110000020004", + "intro": "AMS A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300310000020002", + "intro": "Dalies aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0702960000010001", + "intro": "AMS C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700120000020004", + "intro": "AMS A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200230000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201810000020001", + "intro": "AMS B izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020005", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203220000020001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203230000030002", + "intro": "AMS D lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203310000010001", + "intro": "AMS D lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703010000010001", + "intro": "AMS D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020001", + "intro": "AMS A izdo Nr. 1 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200210000030002", + "intro": "AMS A izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203810000020001", + "intro": "AMS D izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203830000020001", + "intro": "AMS D lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0C00040000010016", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0701920000020002", + "intro": "AMS B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702130000020004", + "intro": "AMS C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020019", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C izdo Nr. 2 lizde." + }, + { + "ecode": "0703500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200130000010003", + "intro": "AMS „lizdo Nr. 4“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020003", + "intro": "AMS A lizdo Nr. 3 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1202210000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203710000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1200210000020005", + "intro": "AMS A izdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201100000010003", + "intro": "AMS B izdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201100000020002", + "intro": "AMS B izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201310000020002", + "intro": "AMS B lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1201800000020001", + "intro": "AMS B izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202800000020001", + "intro": "AMS C izdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203310000020002", + "intro": "AMS D lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000020002", + "intro": "AMS D lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000030003", + "intro": "AMS D lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "0703920000010001", + "intro": "AMS D Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1201110000010003", + "intro": "AMS B izdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020005", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201830000020001", + "intro": "AMS B lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202200000020004", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202730000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203210000020006", + "intro": "Nepavyko išspausti AMS D izdo Nr. 2 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "1203500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000020009", + "intro": "AMS C: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050004000002001B", + "intro": "Neįmanoma atpažinti AMS C lizdo Nr. 4 įrenginyje esančios RFID žymės." + }, + { + "ecode": "050004000002001D", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D izdo Nr. 2 lizde." + }, + { + "ecode": "1201210000030002", + "intro": "AMS B izdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203100000020002", + "intro": "AMS D izdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203230000020001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203310000030003", + "intro": "AMS D izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702020000020002", + "intro": "AMS C: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0703920000020002", + "intro": "AMS D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0700020000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0702010000010004", + "intro": "AMS C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703010000010004", + "intro": "AMS D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1202110000010001", + "intro": "AMS C izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1202700000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020003", + "intro": "Gali būti, kad AMS D izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203200000020005", + "intro": "Baigėsi AMS D izdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "050003000001000B", + "intro": "Ekranas veikia netinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500040000020016", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 3." + }, + { + "ecode": "0701010000010003", + "intro": "AMS B pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200200000030002", + "intro": "AMS: baigėsi „izdo Nr. 1“ gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1200210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200700000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201110000010001", + "intro": "AMS B izdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201120000010001", + "intro": "AMS B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201320000020002", + "intro": "AMS B lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1202330000010001", + "intro": "AMS C lizdo Nr. 4 RFID ritė yra sugadinta arba RFID (RF) įrangos grandinėje yra gedimas." + }, + { + "ecode": "0702930000020002", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020010", + "intro": "AMS C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200300000030003", + "intro": "AMS A izdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201210000030001", + "intro": "Baigėsi AMS B izdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1202210000020004", + "intro": "Gali būti, kad „AMS C izdo Nr. 2“ gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202310000010001", + "intro": "AMS C lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203730000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0701800000010001", + "intro": "AMS B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703900000020001", + "intro": "AMS D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703010000020002", + "intro": "AMS D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200210000020004", + "intro": "AMS A izdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200330000030003", + "intro": "AMS A lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200730000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: 4-osios lizdo Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201310000010001", + "intro": "AMS B lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010001", + "intro": "AMS C izdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020003", + "intro": "Gali būti, kad AMS C izdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202200000030001", + "intro": "Baigėsi AMS C izdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203210000020005", + "intro": "Baigėsi AMS D izdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000020004", + "intro": "AMS C Šepetėlinis variklis Nr. 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702900000020001", + "intro": "AMS C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0701130000020004", + "intro": "AMS B Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020014", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B izdo Nr. 1 lizde." + }, + { + "ecode": "0700010000020002", + "intro": "AMS A pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200310000010001", + "intro": "AMS A lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1200320000030003", + "intro": "AMS A lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1202220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202300000010001", + "intro": "AMS C lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202810000020001", + "intro": "AMS C izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0700910000020001", + "intro": "AMS A Išmetimo vožtuvo 2 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0700920000010001", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "050003000001000C", + "intro": "MC variklio valdymo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtis ir vėl jį įjunkite." + }, + { + "ecode": "0700900000020001", + "intro": "AMS A Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020012", + "intro": "Neįmanoma atpažinti AMS A lizdo Nr. 3 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0701010000010004", + "intro": "AMS B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1200100000010003", + "intro": "AMS „A izdo Nr. 1“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200110000020002", + "intro": "AMS A izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020004", + "intro": "AMS A izdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1202820000020001", + "intro": "AMS C lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000030001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700930000010001", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000020011", + "intro": "AMS A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1200230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200300000020002", + "intro": "AMS A lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1200310000030003", + "intro": "AMS A izdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200810000020001", + "intro": "AMS A izdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201100000010001", + "intro": "AMS B izdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201110000020002", + "intro": "AMS B izdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000030002", + "intro": "AMS B izdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201330000030003", + "intro": "AMS B lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702930000010001", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "12FF200000020001", + "intro": "Spool laikiklyje baigėsi gija; įdėkite naują giją." + }, + { + "ecode": "12FF200000020002", + "intro": "Spool laikiklyje nėra gijos; įdėkite naują giją." + }, + { + "ecode": "12FF200000020005", + "intro": "Gali būti nutrūkęs gija įrankio galvutėje." + }, + { + "ecode": "12FF200000020007", + "intro": "Nepavyko patikrinti gijos padėties įrankio galvutėje; spustelėkite čia, jei reikia pagalbos." + }, + { + "ecode": "12FF200000030007", + "intro": "Tikrinama visų AMS lizdų gijų padėtis, prašome palaukti." + }, + { + "ecode": "12FF800000020001", + "intro": "Spool laikiklyje esanti gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1200450000020001", + "intro": "Gijų pjovimo jutiklis veikia netinkamai. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1200450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. X ašies variklis gali praleisti žingsnius." + }, + { + "ecode": "1200450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1200510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0C0001000001000A", + "intro": "Gali būti, kad „Micro Lidar“ šviesos diodas yra sugedęs." + }, + { + "ecode": "0C00020000020002", + "intro": "Horizontali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00020000020008", + "intro": "Vertikali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00030000010009", + "intro": "Pirmojo sluoksnio tikrinimo modulis netikėtai perkrautas. Tikrinimo rezultatas gali būti netikslus." + }, + { + "ecode": "0C00030000020001", + "intro": "Nepavyko atlikti gijų ekspozicijos matavimo, nes šioje medžiagoje lazerio atspindys yra per silpnas. Pirmojo sluoksnio patikra gali būti netiksli." + }, + { + "ecode": "0C00030000020002", + "intro": "Pirmojo sluoksnio patikrinimas nutrauktas dėl nenormalių LIDAR duomenų." + }, + { + "ecode": "0C00030000020004", + "intro": "Dabartiniam spausdinimo užsakymui pirmojo sluoksnio patikra nepalaikoma." + }, + { + "ecode": "0C00030000020005", + "intro": "Pirmojo sluoksnio patikrinimas baigėsi neįprastai, todėl dabartiniai rezultatai gali būti netikslūs." + }, + { + "ecode": "0C00030000030006", + "intro": "Atliekų šachtoje galėjo susikaupti pašalintas gijos medžiaga. Prašome patikrinti ir išvalyti šachtą." + }, + { + "ecode": "0C00030000030007", + "intro": "Aptikti galimi pirmojo sluoksnio defektai. Prašome patikrinti pirmojo sluoksnio kokybę ir nuspręsti, ar reikia sustabdyti užduotį." + }, + { + "ecode": "0C00030000030008", + "intro": "Aptikti galimi spageti defektai. Prašome patikrinti spausdinimo kokybę ir nuspręsti, ar užduotį reikia nutraukti." + }, + { + "ecode": "0C00030000030010", + "intro": "Atrodo, kad jūsų spausdintuvas spausdina neišspaudžiant medžiagos." + }, + { + "ecode": "07FF200000020001", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "07FF200000020002", + "intro": "Trūksta išorinio gijos; įdėkite naują giją." + }, + { + "ecode": "07FF200000020004", + "intro": "Prašome ištraukti išorinius gijus iš ekstruderio." + }, + { + "ecode": "0703300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0702300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0701300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0700450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0500040000020020", + "intro": "" + }, + { + "ecode": "0300930000010007", + "intro": "Kameros temperatūra yra nenormali. Galbūt maitinimo bloke esantis temperatūros jutiklis yra trumpai sujungęs." + }, + { + "ecode": "0300930000010008", + "intro": "Kameros temperatūra yra nenormali. Gali būti, kad maitinimo bloke esantis temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300940000020003", + "intro": "Kameroje nepavyko pasiekti reikiamos temperatūros. Įrenginys sustos ir lauks, kol pasieks reikiamą kameros temperatūrą." + }, + { + "ecode": "0300940000030002", + "intro": "Jei kameros temperatūros nustatymo vertė viršys ribą, bus nustatyta ribinė vertė." + }, + { + "ecode": "0500020000020002", + "intro": "Nepavyko prisijungti prie įrenginio; patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020004", + "intro": "Nesankcionuotas vartotojas: patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020006", + "intro": "Įvyko srautinio perdavimo funkcijos klaida. Patikrinkite tinklo ryšį ir pabandykite dar kartą. Jei problema neišsprendžiama, galite iš naujo paleisti arba atnaujinti spausdintuvą." + }, + { + "ecode": "0500020000020007", + "intro": "Nepavyko prisijungti prie „Liveview“ paslaugos; patikrinkite savo interneto ryšį." + }, + { + "ecode": "0500030000010001", + "intro": "MC modulis veikia netinkamai; prašome iš naujo paleisti įrenginį arba patikrinti įrenginio laidų jungtis." + }, + { + "ecode": "0500030000010002", + "intro": "Įrankio galvutė veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010003", + "intro": "AMS modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010005", + "intro": "Vidinė paslauga veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010006", + "intro": "Įvyko sistemos avarinė situacija. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010008", + "intro": "Įvyko sistemos įšalimas. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010009", + "intro": "Įvyko sistemos įšalimas. Sistema buvo atkurta automatiškai ją perkrovus." + }, + { + "ecode": "0500030000010023", + "intro": "kameros temperatūros reguliavimo modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010025", + "intro": "Dabartinė Aparatinė programinė įranga veikia netinkamai. Prašome ją atnaujinti dar kartą." + }, + { + "ecode": "0500040000010004", + "intro": "Spausdinimo failas yra neteisėtas." + }, + { + "ecode": "0500040000020007", + "intro": "Spausdinimo platformos temperatūra viršija gijos vitrifikacijos temperatūrą, dėl to gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras arba sumažinti spausdinimo platformos temperatūrą." + }, + { + "ecode": "0300400000020001", + "intro": "Duomenų perdavimas per nuoseklųjį prievadą vyksta netinkamai; galbūt Aparatinė programinė įranga veikia netinkamai." + }, + { + "ecode": "0300900000010004", + "intro": "Kameros šildymas neveikia. Šildymo ventiliatoriaus greitis per mažas." + }, + { + "ecode": "0300900000010005", + "intro": "Kameros šildymas neveikia. Šiluminė varža per didelė." + }, + { + "ecode": "0300900000010010", + "intro": "kameros temperatūros reguliatoriaus ryšys sutrikęs." + }, + { + "ecode": "0300910000010001", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300910000010003", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300910000010006", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "030091000001000A", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti sugedusi kintamosios srovės plokštė." + }, + { + "ecode": "0300920000010001", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300920000010002", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad šildytuve įvyko grandinės pertrauka arba suveikė terminis saugiklis." + }, + { + "ecode": "0300920000010003", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300920000010006", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "030092000001000A", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti sugedusi oro kondicionavimo plokštė." + }, + { + "ecode": "0300930000010001", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300930000010002", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklio grandinė yra atvira." + }, + { + "ecode": "0300930000010003", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, yra trumpai sujungtas." + }, + { + "ecode": "0300050000010001", + "intro": "Variklio valdiklis perkaista. Galbūt jo aušintuvas yra laisvas arba aušinimo ventiliatorius sugadintas." + }, + { + "ecode": "0300060000010001", + "intro": "Variklis „A“ turi atvirą grandinę. Gali būti, kad jungtis yra laisva arba variklis sugedęs." + }, + { + "ecode": "0300060000010002", + "intro": "Variklis „A“ yra trumpai sujungtas. Jis galbūt sugedo." + }, + { + "ecode": "0300070000010001", + "intro": "„Motor-B“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300070000010002", + "intro": "„Motor-B“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300080000010001", + "intro": "„Motor-Z“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300080000010002", + "intro": "„Motor-Z“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "03000A0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 1 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000A0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000A0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000A0000010004", + "intro": "Jėgos jutiklyje Nr. 1 užfiksuotas išorinis trikdys. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000A0000010005", + "intro": "Jėgos jutiklis Nr. 1 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000B0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 2 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000B0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000B0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra per silpnas. Galbūt nutrūko elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000B0000010004", + "intro": "Jėgos jutiklyje Nr. 2 užfiksuotas išorinis trikdys. Šildomojo pagrindo plokštė galėjo paliesti kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000B0000010005", + "intro": "Jėgos jutiklis Nr. 2 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000C0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 3 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000C0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000C0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000C0000010004", + "intro": "Jėgos jutiklyje Nr. 3 užfiksuotas išorinis trikdis. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000C0000010005", + "intro": "Jėgos jutiklis Nr. 3 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "0300100000020001", + "intro": "X ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300110000020001", + "intro": "Y ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300120000020001", + "intro": "Nukrito įrankio galvutės priekinis dangtelis." + }, + { + "ecode": "0300130000010001", + "intro": "Variklio A srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos diskretizavimo grandinės gedimu." + }, + { + "ecode": "0300140000010001", + "intro": "„Motor-B“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300150000010001", + "intro": "„Motor-Z“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300170000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300170000020002", + "intro": "Hotendo aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "03001B0000010001", + "intro": "Šildomojo pagrindo pagreičio jutiklio signalas yra silpnas. Jutiklis galėjo nukristi arba būti pažeistas." + }, + { + "ecode": "03001B0000010003", + "intro": "Šildomojo pagrindo pagreičio jutiklis užfiksavo netikėtą nuolatinę jėgą. Gali būti, kad jutiklis užstrigo arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03001C0000010001", + "intro": "Ekstruzijos variklio valdiklis veikia netinkamai. Gali būti, kad MOSFET trumpojo jungimo." + }, + { + "ecode": "0300200000010003", + "intro": "X ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300200000010004", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300010000010002", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuvo grandinė yra atvira arba termininis jungiklis yra atviras." + }, + { + "ecode": "0300010000010003", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; šildytuvas perkaitęs." + }, + { + "ecode": "0300010000010006", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300010000010007", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "030001000001000C", + "intro": "Šildomasis stalas ilgą laiką veikė esant maksimaliam apkrovimui. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300010000030008", + "intro": "Šildomo pagrindo temperatūra viršija ribinę vertę ir automatiškai prisitaiko prie ribinės temperatūros." + }, + { + "ecode": "0300020000010001", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0300020000010002", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "0300020000010003", + "intro": "Purkštuvo temperatūra yra nenormali; kaitinimo elementas perkaitęs." + }, + { + "ecode": "0300020000010007", + "intro": "Purkštuvo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + } + ] + }, + "device_error": { + "ver": 202510142200, + "lt": [ + { + "ecode": "0C00402C", + "intro": "Įrenginio duomenų perdavimo klaida. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03004015", + "intro": "Nepavyko atlikti purkštuko užsikimšimo nustatymo kalibravimo. Norėdami išspręsti šią problemą, eikite į skyrių „Pagalba“." + }, + { + "ecode": "0500803C", + "intro": "Dabartinis purkštukų nustatymas neatitinka pjaustymo failo. Tęsiant spausdinimą gali pablogėti spausdinimo kokybė. Prieš pradedant spausdinti, rekomenduojama atlikti pakartotinį pjaustymą." + }, + { + "ecode": "0300401F", + "intro": "Karštojo galo nėra įmontuota, todėl spausdinimo galvutė negali atlikti grįžimo į pradinę padėtį. Įmontuokite karštojo galo dalį ir tada tęskite." + }, + { + "ecode": "0300801E", + "intro": "Ekstruzijos variklis yra perkrautas; išsamesnę informaciją rasite programoje „Assistant“." + }, + { + "ecode": "07018007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07028007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07038007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07008007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18058007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07078007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18078007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07058007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18038007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18018007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18028007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18008007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07048007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18068007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "18048007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "07068007", + "intro": "Nepavyko išspausti gijos. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "03004016", + "intro": "Nepavyko išvalyti purkštuko. Norėdami išspręsti šią problemą, spustelėkite „Asistentą“." + }, + { + "ecode": "0502C014", + "intro": "AMS likusio gijos įvertinimo funkcija yra įjungta pagal numatytuosius nustatymus ir jos negalima išjungti." + }, + { + "ecode": "05864096", + "intro": "Įrenginys negali aptikti AMS-HT G. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05024098", + "intro": "Įrenginys negali aptikti AMS C. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05014098", + "intro": "Įrenginys negali aptikti AMS B. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05814096", + "intro": "Įrenginys negali aptikti AMS-HT B. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05844096", + "intro": "Įrenginys negali aptikti AMS-HT F. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05824096", + "intro": "Įrenginys negali aptikti AMS-HT C. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05034098", + "intro": "Įrenginys negali aptikti AMS D. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05854096", + "intro": "Įrenginys negali aptikti AMS-HT E. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05804096", + "intro": "Įrenginys negali aptikti AMS-HT A. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05834096", + "intro": "Įrenginys negali aptikti AMS-HT D. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05874096", + "intro": "Įrenginys negali aptikti AMS-HT H. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05004098", + "intro": "Įrenginys negali aptikti AMS A. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500807E", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „StrongGrip“ pjovimo kilimėlį." + }, + { + "ecode": "05008062", + "intro": "Spausdinimo plokštės žymeklis nebuvo aptiktas. Patikrinkite, ar spausdinimo plokštė teisingai padėta ant šildomojo pagrindo, ar visi keturi kampai suderinti ir ar matomas žymeklis. Jei ant spausdinimo plokštės krinta stipri šviesa, apsvarstykite galimybę uždaryti priekinę durelę ir uždengti išorinius šviesos šaltinius." + }, + { + "ecode": "0500808B", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir kilimėlį nuo šildomojo pagrindo, kad būtų matomi šildomojo pagrindo žymekliai. Be to, įsitikinkite, kad „BirdsEye“ kamera yra tinkamai sumontuota, ir pašalinkite viską, kas gali užstoti kameros matymo lauką." + }, + { + "ecode": "0502C012", + "intro": "Užduoties negalima pristabdyti." + }, + { + "ecode": "07FFC010", + "intro": "Įdėkite giją (ilgesnę nei 30 cm) iki galo. Praplovimo metu gali pasirodyti šiek tiek dūmų. Įdėjus giją, uždarykite priekines dureles ir viršutinį dangtį." + }, + { + "ecode": "05024002", + "intro": "Prieš įjungdami judesio tikslumo gerinimo režimą, eikite į „Nustatymai > Kalibravimas“ ir atlikite judesio tikslumo gerinimo kalibravimą." + }, + { + "ecode": "05008093", + "intro": "Silikoninis antgalio apvalkalas nėra uždėtas; kyla temperatūros reguliavimo sutrikimo pavojus. Prašome jį tinkamai uždėti ir pabandyti dar kartą." + }, + { + "ecode": "05008092", + "intro": "Nepavyko inicijuoti spausdinimo galvutės kameros. Spausdinimas vis tiek gali būti tęsiamas, tačiau kai kurios AI funkcijos bus išjungtos. Jei po perkrovimo ši problema pasikartos, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05008041", + "intro": "Filamentas Kaitinimo galvutės yra per šaltas. Ekstruzija gali sugadinti ekstruderį. Ar vis dar įdedate ir ištraukiate filamentą?" + }, + { + "ecode": "05008040", + "intro": "Atsikabino įrankio galvutės priekinis dangtelis. Judinant įrankio galvutę, gali būti sugadintas spausdintuvas. Ar norite tęsti?" + }, + { + "ecode": "0502C011", + "intro": "Šiuo metu veikia 2D gamybos režimas. Prašome tęsti operaciją spausdintuve" + }, + { + "ecode": "0C008002", + "intro": "" + }, + { + "ecode": "05024008", + "intro": "" + }, + { + "ecode": "0502400A", + "intro": "" + }, + { + "ecode": "05024007", + "intro": "" + }, + { + "ecode": "05008091", + "intro": "Nepavyko atlikti pjovimo modulio poslinkio kalibravimo, dėl to pjūviai gali būti netikslūs. Įsitikinkite, kad 80 g baltas spausdinimo popierius (letter formato storio) yra tinkamai įdėtas, ir patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0502400C", + "intro": "" + }, + { + "ecode": "05024009", + "intro": "" + }, + { + "ecode": "0502400B", + "intro": "" + }, + { + "ecode": "05004030", + "intro": "Šiuo metu įrenginys atnaujinamas. Prašome pabandyti dar kartą, kai jis nebus užimtas." + }, + { + "ecode": "0300C012", + "intro": "Prašome įkaitinti purkštuką iki temperatūros, viršijančios 170 °C." + }, + { + "ecode": "07008023", + "intro": "AMS: Įvyko aušinimo gedimas. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07028023", + "intro": "AMS C aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07038023", + "intro": "AMS D aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07018023", + "intro": "AMS B aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07058023", + "intro": "AMS F aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07048023", + "intro": "AMS E aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18018023", + "intro": "AMS-HT B aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07068023", + "intro": "AMS G aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "07078023", + "intro": "AMS H aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18048023", + "intro": "AMS-HT E aušinimo sistema neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18068023", + "intro": "AMS-HT G aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18038023", + "intro": "AMS-HT D aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18058023", + "intro": "AMS-HT F aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18008023", + "intro": "AMS-HT – sutriko aušinimas. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18078023", + "intro": "AMS-HT H aušinimas neveikia. Galbūt aplinkos temperatūra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "18028023", + "intro": "AMS-HT C aušinimas neveikia. Galbūt aplinkos temperatūra yra per aukšta. Prašome naudoti įrenginį tinkamoje aplinkoje." + }, + { + "ecode": "05004010", + "intro": "AMS šiuo metu atnaujinamas ir negali būti atnaujintas. Prašome pabandyti vėliau." + }, + { + "ecode": "05004011", + "intro": "Spausdintuvas šiuo metu įkelia arba iškelia giją, todėl jo atnaujinti šiuo metu negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "05004012", + "intro": "Įrenginys šiuo metu spausdina, todėl jo atnaujinti negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "0500400F", + "intro": "AMS šiuo metu paleidžiama, todėl jos atnaujinti kol kas negalima. Prašome pabandyti vėliau." + }, + { + "ecode": "05004013", + "intro": "AMS šiuo metu veikia, todėl jo atnaujinti negalima. Prašome pabandyti vėl, kai sistema neveiks." + }, + { + "ecode": "03008022", + "intro": "Šildomoji platforma, judėdama žemyn, gali užstrigti. Prašome pašalinti visus daiktus, esančius po šildomąja platforma, ir patikrinti, ar jos judėjimo metu nekyla pasipriešinimo ar užstrigimo." + }, + { + "ecode": "05004042", + "intro": "Dėl energijos apribojimų, pradėjus AMS džiovinimą, bus sustabdytos dabartinės operacijos, pavyzdžiui, purkštukų kaitinimas ir ventiliatoriaus veikimas. Ar norite tęsti džiovinimą?" + }, + { + "ecode": "05004040", + "intro": "Spausdintuvas pasiekė maitinimo ribą. Norėdami įjungti džiovinimo funkciją, prie šio AMS prijunkite specialų maitinimo adapterį." + }, + { + "ecode": "05004041", + "intro": "Spausdinimo metu negalima pradėti AMS džiovinimo." + }, + { + "ecode": "0500806B", + "intro": "Greito atjungimo svirtis nėra užfiksuota. Prašome nuspausti išorinį įrankio galvutės modulį, kad įsitikintumėte, jog jis tinkamai įsitaisė, tada nuspaudžiant svirtį užfiksuokite ją vietoje." + }, + { + "ecode": "0502C010", + "intro": "Dėl spausdintuvo galios apribojimų AMS džiovinimo metu negalima atlikti spausdinimo, kalibravimo, valdymo ir kitų veiksmų. Prieš pradėdami bet kokią kitą operaciją, sustabdykite džiovinimo procesą." + }, + { + "ecode": "03004014", + "intro": "Nepavyko atlikti Z ašies grįžimo į pradinę padėtį: temperatūros reguliavimo sutrikimas." + }, + { + "ecode": "07FFC012", + "intro": "Nuimkite priekinį dangtelį ir pakabinkite jį ant X ašies. Paspaudžiant juodą PTFE vamzdžio jungtį, atjunkite PTFE vamzdį. Baigę operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "05004007", + "intro": "Įrenginys turi būti atnaujintas remonto metu, todėl šiuo metu spausdinti negalima." + }, + { + "ecode": "05008090", + "intro": "Prašome pritvirtinti 80 g baltą spausdinimo popierių prie platformos vidurio." + }, + { + "ecode": "18068005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18018004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18038005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18078004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18078005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18008005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18038004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18018005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18028004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18028005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18058005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18068004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07FF8025", + "intro": "Pasibaigė šalto ištraukimo laiko limitas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "18018006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18008006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18078006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18028006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18048006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18058006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18038006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18068006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "0502400E", + "intro": "Nepavyko pradėti naujos užduoties: nebuvo užbaigtas purkštuko šaltasis traukimas." + }, + { + "ecode": "07008004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07028005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07038005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07FF8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "18068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07068004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07048005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18FF8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07048006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07058006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07028006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07008005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07018005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07028004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07008006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07038006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07018006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07068006", + "intro": "Nepavyksta įtraukti gijos į ekstruderį. Tai gali būti dėl susipynusios gijos arba įstrigusios ritės. Jei ne, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "0502400D", + "intro": "Nepavyko paleisti naujos užduoties: gijų įkėlimas/iškėlimas nebaigtas." + }, + { + "ecode": "03008042", + "intro": "Užduotis sustabdyta, nes durys atidarytos." + }, + { + "ecode": "05008079", + "intro": "Prašome padėti lazerinio bandymo medžiagą (350 g kartoną) ir po ja išdėstyti atramines juosteles, kad medžiaga neišsikreiptų." + }, + { + "ecode": "0580409C", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0582409C", + "intro": "AMS-HT C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0584409C", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501409D", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587409C", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0503409D", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0581409C", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0585409C", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0502409D", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500409D", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0586409C", + "intro": "AMS-HT G Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "03004050", + "intro": "Pasibaigė „Liveview“ kameros kalibravimo laiko limitas; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0583409C", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0C008034", + "intro": "Nepavyko inicijuoti „Liveview“ kameros. Spausdinimas vis tiek gali būti tęsiamas, tačiau kai kurios AI funkcijos bus išjungtos. Jei po perkrovimo ši problema pasikartos, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0C008043", + "intro": "Dirbtinis intelektas aptiko purkštuko užsikimšimą. Patikrinkite purkštuko būklę. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "03004008", + "intro": "AMS nepavyko pakeisti gijos." + }, + { + "ecode": "0C00402A", + "intro": "Vizualusis žymeklis nebuvo aptiktas. Prašome vėl įklijuoti popierių į tinkamą vietą." + }, + { + "ecode": "05004033", + "intro": "AMS Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004031", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05008085", + "intro": "Kamera ant įrankio galvutės uždengta" + }, + { + "ecode": "07FF8007", + "intro": "Atkreipkite dėmesį į purkštuką. Jei gija jau išspaustas, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "07FF8002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "0500808C", + "intro": "Nustatytas spausdinimo plokštės poslinkis. Prašome suderinti spausdinimo plokštę su šildomuoju pagrindu ir tada tęsti." + }, + { + "ecode": "07FFC011", + "intro": "Prašome rankiniu būdu ir lėtai ištraukti giją iš ekstruderio. Tada spustelėkite „Tęsti“." + }, + { + "ecode": "05004039", + "intro": "Dėl esamos užduoties negalima įdiegti lazerio/pjaustymo modulio, todėl užduotis buvo sustabdyta." + }, + { + "ecode": "0500403B", + "intro": "Šiuo metu įrenginyje negalima pradėti lazerio pjovimo užduočių. Prašome naudoti kompiuterinę aparatinę programinę įrangą, kad pradėtumėte užduotį." + }, + { + "ecode": "07044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "0300800D", + "intro": "Nustatyta, kad ekstruderiui kyla veikimo sutrikimų. Jei šie trūkumai yra priimtini, pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500C036", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0300804F", + "intro": "Šiuo metu vyksta pakrovimo/iškrovimo procesas. Prašome sustabdyti procesą arba išimti lazerinį/pjaustymo modulį." + }, + { + "ecode": "0300804E", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0500808A", + "intro": "„BirdsEye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į pagalbininką." + }, + { + "ecode": "05008089", + "intro": "Užduotis sustabdyta, nes nepavyko atlikti buvimo patikrinimo. Norėdami tęsti, patikrinkite spausdintuvą." + }, + { + "ecode": "05008074", + "intro": "Lazerinė platforma yra pasislinkusi. Įsitikinkite, kad visi keturi platformos kampai būtų suderinti su šildomuoju pagrindu ir kad žymeklis nebūtų užstotas." + }, + { + "ecode": "05FE8081", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05FF8081", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FF8080", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FE8080", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05008080", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008081", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008088", + "intro": "„Birdseye“ kamera yra nešvari" + }, + { + "ecode": "05008087", + "intro": "„BirdsEye“ kamera užstota" + }, + { + "ecode": "03004002", + "intro": "Automatinis pagrindo išlyginimas nepavyko; užduotis buvo sustabdyta." + }, + { + "ecode": "0C004020", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo pačiu metu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "03008021", + "intro": "Gali būti, kad purkštukas nėra įmontuotas arba įmontuotas netinkamai. Prieš tęsdami darbą, įsitikinkite, kad purkštukas įmontuotas teisingai." + }, + { + "ecode": "03008061", + "intro": "Nepavyko įjungti „Airflow System“ režimo; patikrinkite oro sklendės būklę." + }, + { + "ecode": "0300801A", + "intro": "Kilo gijų ekstruzijos klaida; prašome patikrinti pagalbinę programą, kad išspręstumėte šią problemą. Išsprendę problemą, atsižvelgdami į faktinę spausdinimo būklę, nuspręskite, ar atšaukti, ar tęsti spausdinimo užduotį." + }, + { + "ecode": "05008084", + "intro": "„Live View“ kamera yra nešvari; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "0500401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "18068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "10018003", + "intro": "Pjaustymo faile laiko sulėtinimo režimas nustatytas kaip „Tradicinis“. Dėl to gali atsirasti paviršiaus defektų. Ar norite jį įjungti?" + }, + { + "ecode": "03008014", + "intro": "Ant purkštuko yra susikaupęs gijos medžiaga arba spausdinimo plokštė įtaisyta netinkamai. Atšaukite šį spausdinimą ir išvalykite purkštuką arba sureguliuokite spausdinimo plokštę atsižvelgdami į esamą padėtį. Taip pat galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "03008017", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai. Patikrinkite ir išvalykite kaitinamą pagrindą. Tada pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8011", + "intro": "Išseko išorinis gija; įdėkite naują giją." + }, + { + "ecode": "0300801C", + "intro": "Ekstruzijos pasipriešinimas yra nenormalus. Ekstruderius gali būti užsikimšęs; kreipkitės į asistentą. Išsprendus problemą, galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "05008055", + "intro": "Lazerinis modulis yra įdiegtas, tačiau aptikta pjovimo platforma. Įdėkite lazerinę platformą ir atlikite lazerio kalibravimą." + }, + { + "ecode": "03004020", + "intro": "Nepavyko nustatyti, ar yra antgalis. Daugiau informacijos rasite „Assistant“ programoje." + }, + { + "ecode": "0500402E", + "intro": "Sistema nepalaiko failų sistemos, kurią šiuo metu naudoja USB atmintinė. Prašome pakeisti USB atmintinę arba ją suformatuoti į FAT32." + }, + { + "ecode": "05008063", + "intro": "Kalibravimo metu platforma neaptikta; įsitikinkite, kad lazerinė platforma yra tinkamai pastatyta." + }, + { + "ecode": "05008066", + "intro": "Užduočiai atlikti reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „LightGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "18008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004065", + "intro": "Užduočiai atlikti reikalinga lazerinė platforma, tačiau šiuo metu naudojama pjovimo platforma. Prašome ją pakeisti, programoje išmatuoti medžiagos storį ir tada iš naujo paleisti užduotį." + }, + { + "ecode": "05004075", + "intro": "Nenustatyta jokia lazerio platforma, o tai gali turėti įtakos storio matavimo tikslumui. Prašome teisingai pastatyti lazerio platformą ir įsitikinti, kad galiniai žymekliai nebūtų uždengti, tada prieš pradedant užduotį programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807D", + "intro": "Šiai užduočiai reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „StrongGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "03008000", + "intro": "Spausdinimas buvo sustabdytas dėl nežinomos priežasties. Norėdami tęsti spausdinimo užduotį, pasirinkite „Tęsti“." + }, + { + "ecode": "03008016", + "intro": "Purkštukas užsikimšęs gijomis. Prašome atšaukti šį spausdinimą ir išvalyti purkštuką arba pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FFC00A", + "intro": "Atkreipkite dėmesį į purkštuką. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "05008064", + "intro": "Prašome teisingai pastatyti lazerinę platformą ir užtikrinti, kad galiniai žymekliai nebūtų užstoti, kad būtų galima atlikti lazerio kalibravimą." + }, + { + "ecode": "18038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004076", + "intro": "Prieš pradėdami užduotį, tinkamai pastatykite lazerinę platformą ir įsitikinkite, kad galiniai žymekliai nėra užstoti, tada programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807A", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba pasitikrinti pagalbinę programą, kad išspręstumėte šią problemą." + }, + { + "ecode": "07FF8010", + "intro": "Patikrinkite, ar neužstrigo išorinė gijų ritė arba gija." + }, + { + "ecode": "03004000", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties; užduotis buvo sustabdyta." + }, + { + "ecode": "0300800A", + "intro": "„AI Print Monitoring“ aptiko susikaupusį filamentą. Prašome pašalinti filamentą iš atliekų išmetimo angos." + }, + { + "ecode": "0300800B", + "intro": "Pjovimo galvutė įstrigo. Įsitikinkite, kad pjovimo galvutės rankena yra išstumta, ir patikrinkite gijos jutiklio laido jungtį." + }, + { + "ecode": "03008065", + "intro": "MC modulio temperatūra per aukšta. Galimas priežastis rasite „Wiki“ puslapyje." + }, + { + "ecode": "05004070", + "intro": "Lazerinis arba pjovimo modulis yra prijungtas, todėl įrenginys negali pradėti 3D spausdinimo užduoties." + }, + { + "ecode": "0300400B", + "intro": "Vidaus komunikacijos išimtis" + }, + { + "ecode": "03008001", + "intro": "Spausdinimas sustabdytas dėl spausdinimo faile įrašytos sustabdymo komandos." + }, + { + "ecode": "05014038", + "intro": "Regioniniai nustatymai neatitinka spausdintuvo; patikrinkite spausdintuvo regioninius nustatymus." + }, + { + "ecode": "03008051", + "intro": "Pjovimo modulis nukrito arba jo kabelis atjungtas; patikrinkite modulį." + }, + { + "ecode": "0C004024", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į asistentą." + }, + { + "ecode": "10018004", + "intro": "„Prime Tower“ funkcija neįjungta, o failo pjaustymo metu laiko sulėtinimo režimas nustatytas kaip „Smooth“. Dėl to gali atsirasti paviršiaus defektų. Ar norite ją įjungti?" + }, + { + "ecode": "03008041", + "intro": "Platformos aptikimo laiko limitas pasibaigęs: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03004067", + "intro": "Kalibravimo rezultatas viršija ribinę vertę." + }, + { + "ecode": "18008011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18078011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18038011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18018011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18058011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18068011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18048011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "03004011", + "intro": "„Flow Dynamics“ kalibravimas nepavyko; prašome iš naujo pradėti spausdinimą arba kalibravimą." + }, + { + "ecode": "18028011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "05008072", + "intro": "„Live View“ kamera užblokuota" + }, + { + "ecode": "05008083", + "intro": "Montavimo kalibravimo metu medžiaga neleidžiama. Prašome pašalinti medžiagą nuo platformos." + }, + { + "ecode": "1800C06A", + "intro": "AMS-HT A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06A", + "intro": "AMS-HT F nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06C", + "intro": "AMS-HT H veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06C", + "intro": "AMS-HT A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06B", + "intro": "AMS-HT H keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014002", + "intro": "„Timelapse“ funkcija nepalaikoma, nes spausdinimo seka nustatyta kaip „Pagal objektą“." + }, + { + "ecode": "1800C06D", + "intro": "AMS-HT A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06A", + "intro": "AMS-HT D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06C", + "intro": "AMS-HT D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06C", + "intro": "AMS-HT F veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C069", + "intro": "AMS-HT D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C06A", + "intro": "AMS-HT C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06E", + "intro": "Variklis „AMS-HT F“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06C", + "intro": "AMS-HT G veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06D", + "intro": "AMS-HT G padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06E", + "intro": "AMS-HT Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C069", + "intro": "AMS-HT F džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1807C06D", + "intro": "AMS-HT H padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06C", + "intro": "AMS-HT C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06A", + "intro": "AMS-HT H nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06A", + "intro": "AMS-HT B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C069", + "intro": "AMS-HT H džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1803C06E", + "intro": "AMS-HT D variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06D", + "intro": "AMS-HT B padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06B", + "intro": "AMS-HT F keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06D", + "intro": "AMS-HT C padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06E", + "intro": "Variklis „AMS-HT C“ atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06C", + "intro": "AMS-HT E veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06A", + "intro": "AMS-HT E nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C069", + "intro": "AMS-HT G džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06D", + "intro": "AMS-HT E padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06B", + "intro": "AMS-HT G keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C069", + "intro": "AMS-HT A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C069", + "intro": "AMS-HT C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06C", + "intro": "AMS-HT B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06E", + "intro": "AMS-HT H variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1000C003", + "intro": "„Timelapse“ funkcijos įjungimas tradiciniame režime gali sukelti gedimus; šią funkciją įjunkite tik prireikus." + }, + { + "ecode": "1804C069", + "intro": "AMS-HT E džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06E", + "intro": "Variklis „AMS-HT B“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06D", + "intro": "AMS-HT F padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06D", + "intro": "AMS-HT D padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06B", + "intro": "AMS-HT B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06E", + "intro": "Variklis „AMS-HT G“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C069", + "intro": "AMS-HT B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06E", + "intro": "AMS-HT E variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06B", + "intro": "AMS-HT D keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06B", + "intro": "AMS-HT E keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06A", + "intro": "AMS-HT G nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06B", + "intro": "AMS-HT C keičia giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06B", + "intro": "AMS-HT A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014001", + "intro": "„Timelapse“ funkcija nepalaikoma, nes pjaustymo nustatymuose įjungtas „Spiral Vase“ režimas." + }, + { + "ecode": "0500806E", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti kaitinamą pagrindą." + }, + { + "ecode": "05004004", + "intro": "Įrenginys užimtas ir negali pradėti naujos užduoties. Prieš siunčiant naują užduotį, palaukite, kol bus užbaigta dabartinė užduotis." + }, + { + "ecode": "0C004025", + "intro": "„Birdseye“ kamera yra nešvari. Prašome ją nuvalyti ir iš naujo paleisti procesą." + }, + { + "ecode": "05008061", + "intro": "Nerasta spausdinimo plokštės. Patikrinkite, ar ji įdėta teisingai." + }, + { + "ecode": "0701C06C", + "intro": "AMS B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C069", + "intro": "AMS B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0700C06E", + "intro": "AMS Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06C", + "intro": "AMS D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C069", + "intro": "AMS D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06B", + "intro": "AMS B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06C", + "intro": "AMS A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C069", + "intro": "AMS C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0703C06B", + "intro": "AMS D keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "03008054", + "intro": "Prašome įdėti popierių, reikalingą funkcijai „Spausdinti ir iškirpti“." + }, + { + "ecode": "0703C06D", + "intro": "AMS D padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06D", + "intro": "AMS B padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06A", + "intro": "AMS C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06E", + "intro": "AMS C variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06C", + "intro": "AMS C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06B", + "intro": "AMS C keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06D", + "intro": "AMS A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06A", + "intro": "AMS B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06D", + "intro": "AMS C padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008082", + "intro": "Prieš apdorojant, nuimkite apsauginę plėvelę nuo matinio blizgaus akrilo." + }, + { + "ecode": "0703C06A", + "intro": "AMS D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06B", + "intro": "AMS A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008060", + "intro": "Dabartinis įrankio galvutėje esantis modulis neatitinka reikalavimų. Prašome pakeisti modulį, vadovaudamiesi ekrane pateiktomis instrukcijomis." + }, + { + "ecode": "0700C069", + "intro": "AMS A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06E", + "intro": "AMS B variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06A", + "intro": "AMS A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06E", + "intro": "AMS D variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008056", + "intro": "Pjovimo modulis įdiegtas, tačiau aptikta lazerio platforma. Prašome pastatyti pjovimo platformą kalibravimui." + }, + { + "ecode": "0500C07F", + "intro": "Įrenginys užimtas ir negali atlikti šios operacijos. Norėdami tęsti, sustabdykite arba nutraukite dabartinę užduotį." + }, + { + "ecode": "0C008016", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba ieškoti sprendimų pagalbos skyriuje." + }, + { + "ecode": "07FF8001", + "intro": "Nepavyko nupjauti gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "18FF8001", + "intro": "Nepavyko nupjauti gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "07018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0C004021", + "intro": "Nepavyko įdiegti „BirdsEye“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C004026", + "intro": "Nepavyko inicijuoti „Live View“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "07008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0C00402D", + "intro": "Įrankio galvutės kamera neveikia tinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "07FF8004", + "intro": "Nepavyko atitraukti gijos iš spausdinimo galvutės į AMS. Patikrinkite, ar gija arba ritė nėra užstrigusi." + }, + { + "ecode": "0500805C", + "intro": "Pjaustymo kilimėlio tipo „Grip“ neatitinka reikalavimų; prašome uždėti „LightGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "05008059", + "intro": "Pjovimo platformos pagrindas nėra tinkamai išlygintas. Prašome įsitikinti, kad keturi platformos kampai sutampa su šildomuoju pagrindu." + }, + { + "ecode": "0500806C", + "intro": "Prašome teisingai pastatyti pjovimo platformą ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "07018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500805A", + "intro": "Prašome pjaustymo kilimėlį uždėti ant pjaustymo apsauginio pagrindo." + }, + { + "ecode": "07068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "05008071", + "intro": "Pjovimo platforma nerasta. Prašome patikrinti, ar ji buvo teisingai pastatyta." + }, + { + "ecode": "05008073", + "intro": "Šildomojo pagrindo ribotuvas užblokuotas arba užterštas. Prašome jį išvalyti ir užtikrinti, kad ribotuvas būtų matomas, nes priešingu atveju platformos padėties nuokrypio nustatymas gali būti netikslus." + }, + { + "ecode": "05008068", + "intro": "Prašome teisingai uždėti gerai priglundančią pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807C", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „StrongGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "05008067", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „LightGrip“ pjovimo kilimėlį." + }, + { + "ecode": "07008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500806F", + "intro": "Pjaustymo kilimėlio tipo paviršius neatitinka reikalavimų; prašome uždėti „StrongGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "18068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "03004052", + "intro": "Nepavyko nustatyti peilio Z ašies pradinės padėties" + }, + { + "ecode": "05008058", + "intro": "Prašome teisingai uždėti „Light Grip“ pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807B", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „LightGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "0C008018", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba peržiūrėti pagalbinę informaciją, kaip išspręsti šią problemą." + }, + { + "ecode": "0500805B", + "intro": "Pjaustymo kilimėlio tipas nežinomas; prašome jį pakeisti tinkamu pjaustymo kilimėliu." + }, + { + "ecode": "03008064", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų. (Šio spausdinimo užduoties durelių atidarymo aptikimas bus nustatytas į „Pranešimo“ lygį)" + }, + { + "ecode": "0C008017", + "intro": "Platformoje aptikti svetimkūniai; prašome juos laiku pašalinti." + }, + { + "ecode": "05008077", + "intro": "Vizualinis žymeklis nebuvo aptiktas. Prašome įsitikinti, kad popierius yra tinkamai įdėtas." + }, + { + "ecode": "05008078", + "intro": "Dabartinė medžiaga neatitinka supjaustyto failo nustatymų. Įdėkite tinkamą medžiagą ir įsitikinkite, kad ant jos esantis QR kodas nėra pažeistas ar nešvarus." + }, + { + "ecode": "0500403F", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500403D", + "intro": "Įrankio galvutės modulis nėra sukonfigūruotas. Prieš pradėdami užduotį, jį sukonfigūruokite." + }, + { + "ecode": "0300400C", + "intro": "Užduotis buvo atšaukta." + }, + { + "ecode": "05008051", + "intro": "Nustatyta, kad spausdinimo plokštė neatitinka Gcode failo. Prašome pakoreguoti pjaustymo programos nustatymus arba naudoti tinkamą plokštę." + }, + { + "ecode": "18038017", + "intro": "AMS-HT D džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07078010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18048010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18038010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18008010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018017", + "intro": "AMS-HT B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18078010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028017", + "intro": "AMS-HT C džiūsta. Prieš pakraunant ar iškraunant medžiagą, sustabdykite džiovinimo procesą." + }, + { + "ecode": "18008017", + "intro": "AMS-HT A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07068011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C004027", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Daugiau informacijos rasite pagalbos vadove; po apdorojimo pakalibruokite kamerą iš naujo." + }, + { + "ecode": "07058010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18068010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18058010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07048010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07068010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07078011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07058011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07048011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C008015", + "intro": "Platformoje aptikti daiktai; prašome juos laiku pašalinti." + }, + { + "ecode": "05024006", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "07018017", + "intro": "AMS B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07028017", + "intro": "AMS C džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "03004013", + "intro": "Kol AMS džiūsta, spausdinimo procesą pradėti negalima." + }, + { + "ecode": "07038017", + "intro": "AMS D džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07008017", + "intro": "AMS A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07FFC003", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "07FFC008", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį)" + }, + { + "ecode": "0500405D", + "intro": "Lazerinio modulio serijinio numerio klaida: nepavyksta atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500805E", + "intro": "Pjovimo modulio serijinio numerio klaida: nepavyko atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500C010", + "intro": "Išskirtinė USB atmintinės skaitymo ir rašymo klaida; įdėkite ją iš naujo arba pakeiskite." + }, + { + "ecode": "0500402F", + "intro": "USB atmintinės sektorių duomenys yra sugadinti; prašome ją suformatuoti. Jei ji vis tiek nebus atpažinta, prašome pakeisti USB atmintinę." + }, + { + "ecode": "05008053", + "intro": "Spausdinimo metu buvo nustatytas netinkamas purkštukas. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštuką. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "05024003", + "intro": "Spausdintuvas šiuo metu spausdina, todėl judesio tikslumo didinimo funkcijos neįmanoma įjungti ar išjungti." + }, + { + "ecode": "05024005", + "intro": "AMS dar nebuvo kalibruotas, todėl spausdinimo pradėti negalima." + }, + { + "ecode": "07FF8003", + "intro": "Ištraukite giją iš ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "03008049", + "intro": "Dabartinis numeris yra negaliojantis." + }, + { + "ecode": "05004008", + "intro": "Nepavyko pradėti spausdinti; išjunkite ir vėl įjunkite spausdintuvą, tada iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "0500400B", + "intro": "Kilo problemų atsisiunčiant failą. Patikrinkite savo interneto ryšį ir iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "05004018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0500402C", + "intro": "Nepavyko gauti IP adreso. Tai galėjo įvykti dėl belaidžio ryšio trukdžių, dėl kurių nepavyko perduoti duomenų, arba dėl to, kad maršrutizatoriaus DHCP adresų rezervas yra išnaudotas. Prašome priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą. Jei problema neišsprendžiama, patikrinkite maršrutizatoriaus nustatymus ir įsitikinkite, ar IP adresų rezervas nėra išnaudotas." + }, + { + "ecode": "0500400A", + "intro": "Šis failo pavadinimas nėra palaikomas. Pervardykite failą ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0500400D", + "intro": "Atlikite savikontrolę ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0501401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014033", + "intro": "Jūsų programėlės regionas neatitinka jūsų spausdintuvo; atsisiųskite programėlę, skirtą atitinkamam regionui, ir vėl užregistruokite savo paskyrą." + }, + { + "ecode": "0500402D", + "intro": "Sistemos išimtis" + }, + { + "ecode": "03008047", + "intro": "Pasibaigė greito atjungimo svirties aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008008", + "intro": "Purkštuvo temperatūros gedimas" + }, + { + "ecode": "03008009", + "intro": "Šildomojo pagrindo temperatūros gedimas" + }, + { + "ecode": "05004002", + "intro": "Nepalaikomas spausdinimo failo kelias arba pavadinimas. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004006", + "intro": "Spausdinimo užduočiai atlikti nepakanka laisvos atminties vietos. Atkūrus gamyklinius nustatymus, galima atlaisvinti vietos." + }, + { + "ecode": "05014039", + "intro": "Įrenginio prisijungimo galiojimo laikas pasibaigė; pabandykite susieti dar kartą." + }, + { + "ecode": "03008046", + "intro": "Pasibaigė svetimkūnio aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008062", + "intro": "Kameros temperatūra yra per aukšta. Tai gali būti susiję su aukšta aplinkos temperatūra." + }, + { + "ecode": "03008045", + "intro": "Pasibaigė medžiagos aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0300800C", + "intro": "Aptiktas praleistas žingsnis: automatinis atkūrimas baigtas; prašome tęsti spausdinimą ir patikrinti, ar nėra sluoksnių poslinkio problemų." + }, + { + "ecode": "0500401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0300400F", + "intro": "Maitinimo įtampa neatitinka spausdintuvo reikalavimų." + }, + { + "ecode": "05024004", + "intro": "Kai kurios funkcijos nėra palaikomos dabartiniame įrenginyje. Patikrinkite „Studio“ funkcijų nustatymus arba atnaujinkite aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0500806D", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C004022", + "intro": "Nepavyko nustatyti „BirdsEye“ kameros. Patikrinkite, ar lazerinis modulis veikia tinkamai." + }, + { + "ecode": "0300801D", + "intro": "Ekstruderių servovariklio padėties jutiklis veikia netinkamai. Pirmiausia išjunkite spausdintuvą ir patikrinkite, ar jungiamasis kabelis nėra atsijungęs." + }, + { + "ecode": "07038002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "0C00403D", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar ji teisingai pritvirtinta prie šildomojo pagrindo." + }, + { + "ecode": "07028002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "07018002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "0C00C004", + "intro": "Aptiktas galimas „spaghetti“ gedimas." + }, + { + "ecode": "05004043", + "intro": "Dėl energijos apribojimų tik vienas AMS gali naudoti prietaiso energiją džiovinimui." + }, + { + "ecode": "05004052", + "intro": "Aptikta klaida kaitinimo galvutės dalyje." + }, + { + "ecode": "05004050", + "intro": "Aptikta spausdinimo plokštės klaida." + }, + { + "ecode": "03004068", + "intro": "Judesio tikslumo gerinimo proceso metu įvyko žingsnio praradimas. Prašome bandyti dar kartą." + }, + { + "ecode": "05004054", + "intro": "Ant kilimėlio aptikta klaida." + }, + { + "ecode": "0500403E", + "intro": "Dabartinė įrankio galvutė nepalaiko inicijavimo." + }, + { + "ecode": "03004066", + "intro": "Nepavyko kalibruoti judesio tikslumo." + }, + { + "ecode": "0C00C006", + "intro": "Atliekų šachtoje galėjo susikaupti išvalytos gijos." + }, + { + "ecode": "03008063", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų." + }, + { + "ecode": "0C00800B", + "intro": "Šildomojo pagrindo žymeklis nebuvo aptiktas. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas." + }, + { + "ecode": "0C004029", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C008005", + "intro": "Atliekų šachtoje susikaupė išvalytos gijos, dėl kurio gali įvykti įrankio galvutės susidūrimas." + }, + { + "ecode": "0C008033", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0C008009", + "intro": "Nepavyko rasti spausdinimo plokštės orientavimo žymės." + }, + { + "ecode": "1000C001", + "intro": "Dėl aukštos pagrindo temperatūros gali užsikimšti purkštuvo gija. Galite atidaryti kameros dureles." + }, + { + "ecode": "1000C002", + "intro": "CF medžiagos spausdinimas kartu su nerūdijančiu plienu gali sugadinti purkštuką." + }, + { + "ecode": "07038010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07038011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07FF8006", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FFC006", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FFC009", + "intro": "Prašome įkišti giją į PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07028010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07028011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07018010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07018011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008002", + "intro": "Pjovimo įrankis įstrigo. Įsitikinkite, kad pjovimo įrankio rankena yra ištraukta." + }, + { + "ecode": "07008010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "0501401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0501401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05014021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014031", + "intro": "Šiuo metu vyksta įrenginio aptikimo ir susiejimo procesas, todėl QR kodas negali būti rodomas ekrane. Galite palaukti, kol susiejimas bus baigtas, arba nutraukti įrenginio aptikimo ir susiejimo procesą programėlėje / „Studio“ ir vėl pabandyti nuskaityti ekrane rodomą QR kodą, kad atliktumėte susiejimą." + }, + { + "ecode": "05014032", + "intro": "Šiuo metu vyksta QR kodo susiejimas, todėl negalima atlikti susiejimo naudojant įrenginio paiešką. Norėdami atlikti susiejimą, galite nuskaityti ekrane rodomą QR kodą arba uždaryti ekrane rodomą QR kodo puslapį ir pabandyti atlikti susiejimą naudojant įrenginio paiešką." + }, + { + "ecode": "05014034", + "intro": "Pjaustymo eiga jau ilgą laiką nebuvo atnaujinama, o spausdinimo užduotis buvo nutraukta. Patikrinkite parametrus ir iš naujo paleiskite spausdinimą." + }, + { + "ecode": "05014035", + "intro": "Įrenginys šiuo metu vykdo prisijungimo procedūrą ir negali atsakyti į naujus prisijungimo prašymus." + }, + { + "ecode": "05024001", + "intro": "Šiame spausdinimo užsakyme bus naudojamas esama gija. Nustatymų pakeisti negalima." + }, + { + "ecode": "05004001", + "intro": "Nepavyko prisijungti prie „Bambu Cloud“. Patikrinkite savo tinklo ryšį." + }, + { + "ecode": "05004003", + "intro": "Spausdinimas buvo sustabdytas, nes spausdintuvas negalėjo išanalizuoti failo. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004005", + "intro": "Atnaujinant aparatinę programinę įrangą negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "05004009", + "intro": "Atnaujinant žurnalus negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "0500400E", + "intro": "Spausdinimas buvo atšauktas." + }, + { + "ecode": "05004014", + "intro": "Spausdinimo užduoties pjaustymas nepavyko. Patikrinkite nustatymus ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "05004017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05004019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "0500401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05004021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05004024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05004027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500402A", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus – tai galėjo įvykti dėl belaidžio ryšio trukdžių arba dėl to, kad esate per toli nuo maršrutizatoriaus. Prašome pabandyti dar kartą arba priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą." + }, + { + "ecode": "0500402B", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus dėl neteisingo slaptažodžio. Patikrinkite slaptažodį ir pabandykite dar kartą." + }, + { + "ecode": "05004037", + "intro": "Jūsų supjaustytas failas nėra suderinamas su dabartiniu spausdintuvo modeliu. Šio failo negalima atspausdinti šiuo spausdintuvu." + }, + { + "ecode": "05004038", + "intro": "Pjaustyto failo purkštuko skersmuo neatitinka dabartinių purkštuko nustatymų. Šio failo spausdinti negalima." + }, + { + "ecode": "05008013", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "05008030", + "intro": "" + }, + { + "ecode": "05008036", + "intro": "Jūsų suskaidytas failas neatitinka dabartinio spausdintuvo modelio. Tęsti?" + }, + { + "ecode": "05014017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05014019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "03004001", + "intro": "Spausdintuvas pasiekė laiko limitą, laukdamas, kol purkštukas atvės prieš grįžtant į pradinę padėtį." + }, + { + "ecode": "03004005", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03004006", + "intro": "Purkštukas užsikimšęs." + }, + { + "ecode": "03004009", + "intro": "Nepavyko atlikti XY ašių grįžimo į pradinę padėtį." + }, + { + "ecode": "0300400A", + "intro": "Nepavyko nustatyti mechaninio rezonanso dažnio." + }, + { + "ecode": "0300400D", + "intro": "Atkūrimas nepavyko po elektros tiekimo nutraukimo." + }, + { + "ecode": "0300400E", + "intro": "Variklio savikontrolė nepavyko." + }, + { + "ecode": "03008003", + "intro": "„AI Print Monitoring“ aptiko „spaghetti“ defektus. Prieš tęsdami spausdinimą, patikrinkite atspausdinto modelio kokybę." + }, + { + "ecode": "03008005", + "intro": "Nukrito spausdintuvo galvutės priekinis dangtelis. Prašome vėl pritvirtinti priekinį dangtelį ir patikrinti, ar spausdinimas vyksta tinkamai." + }, + { + "ecode": "03008007", + "intro": "Kai spausdintuvas neteko maitinimo, spausdinimo užduotis buvo nebaigta. Jei modelis vis dar prilipęs prie spausdinimo plokštės, galite pabandyti atnaujinti spausdinimo užduotį." + }, + { + "ecode": "0300800E", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "0300800F", + "intro": "Atrodo, kad durys yra atidarytos, todėl spausdinimas buvo sustabdytas." + }, + { + "ecode": "03008010", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03008013", + "intro": "Vartotojas sustabdė spausdinimą. Norėdami tęsti spausdinimą, pasirinkite „Tęsti“." + }, + { + "ecode": "03008018", + "intro": "kameros temperatūros matavimo gedimas." + }, + { + "ecode": "03008019", + "intro": "Spausdinimo plokštė neįdėta." + } + ] + } + } +} \ No newline at end of file diff --git a/resources/hms/hms_lt_239.json b/resources/hms/hms_lt_239.json new file mode 100644 index 0000000000..99c5eace27 --- /dev/null +++ b/resources/hms/hms_lt_239.json @@ -0,0 +1,21801 @@ +{ + "result": 0, + "t": 1750150975, + "ver": 202506171403, + "data": { + "device_hms": { + "ver": 202506171403, + "lt": [ + { + "ecode": "0300D10000010002", + "intro": "Gaisro gesintuvo variklis yra trumpai sujungtas. Jis galėjo sugesti." + }, + { + "ecode": "0300D50000030004", + "intro": "Gaisro gesintuvo dujų balionas nėra įmontuotas." + }, + { + "ecode": "0300D10000010001", + "intro": "Gaisro gesintuvo variklis turi atvirą grandinę. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300D40000010002", + "intro": "Gaisro gesintuvo baliono buvimo jutiklis yra atjungtas. Patikrinkite jutiklio jungtį." + }, + { + "ecode": "0300D30000020001", + "intro": "Gaisrinis gesintuvas nerastas." + }, + { + "ecode": "0300D40000010003", + "intro": "Gaisro gesintuvo baliono buvimo jutiklis yra trumpai sujungtas. Patikrinkite jutiklio jungtį." + }, + { + "ecode": "0300D10000010003", + "intro": "Gaisro gesintuvo variklio varža yra nenormali; galbūt variklis sugedo." + }, + { + "ecode": "0300290000010001", + "intro": "Vaizdo kodavimo šablonai negali būti atpažinti; galimos priežastys – vaizdo kodavimo šablono iškraipymas, per didelė apšvieta ir plokštelės netinkamas padėties nustatymas." + }, + { + "ecode": "0500050000010019", + "intro": "Gaisro gesintuvo modulio sertifikavimas nepavyko. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500050000010018", + "intro": "Nepavyko sertifikuoti lazerio ketvirtosios ašies modulio. Prašome iš naujo prijungti modulio kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701900000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0707910000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1803900000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807910000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800910000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1800900000010004", + "intro": "AMS-HT A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0704900000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1803910000010004", + "intro": "AMS-HT D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0705900000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1805900000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0706900000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1804900000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0707900000010004", + "intro": "AMS H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1802900000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1805910000010004", + "intro": "AMS-HT F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1804910000010004", + "intro": "AMS-HT E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806900000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0700910000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702900000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "03002D0000030009", + "intro": "Tai pirmasis spausdinimas, atliekamas esant aukštai spausdinimo pagrindo temperatūrai. Siekiant užtikrinti geresnę pirmojo sluoksnio spausdinimo kokybę, automatiškai atliekamas pagrindo išlyginimas esant aukštai temperatūrai." + }, + { + "ecode": "0706910000010004", + "intro": "AMS G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0701910000010004", + "intro": "AMS B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801910000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1806910000010004", + "intro": "AMS-HT G išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; susisiekite su klientų aptarnavimo tarnyba, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0703910000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0700900000010004", + "intro": "AMS A išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0704910000010004", + "intro": "AMS E išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0705910000010004", + "intro": "AMS F išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0702910000010004", + "intro": "AMS C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "0703900000010004", + "intro": "AMS D išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS pagrindinė plokštė." + }, + { + "ecode": "1801900000010004", + "intro": "AMS-HT B išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1807900000010004", + "intro": "AMS-HT H išmetimo vožtuvo Nr. 1 srovės jutiklis veikia netinkamai; prašome susisiekti su klientų aptarnavimo skyriumi, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "1802910000010004", + "intro": "AMS-HT C išmetimo vožtuvo Nr. 2 srovės jutiklis veikia netinkamai; kreipkitės į klientų aptarnavimo tarnybą, kad būtų pakeista AMS-HT pagrindinė plokštė." + }, + { + "ecode": "0702960000020004", + "intro": "AMS C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1800960000020004", + "intro": "AMS-HT A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0704960000020004", + "intro": "AMS E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1801250000020001", + "intro": "AMS-HT B spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1803250000020001", + "intro": "AMS-HT D spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1807250000020001", + "intro": "AMS-HT H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1806250000020001", + "intro": "AMS-HT G spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0703960000020004", + "intro": "AMS D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0707960000020004", + "intro": "AMS H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1802960000020004", + "intro": "AMS-HT C Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1803960000020004", + "intro": "AMS-HT D Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0706960000020004", + "intro": "AMS G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804960000020004", + "intro": "AMS-HT E Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0701960000020004", + "intro": "AMS B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1807960000020004", + "intro": "AMS-HT H Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1804250000020001", + "intro": "AMS-HT E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1805960000020004", + "intro": "AMS-HT F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1805250000020001", + "intro": "AMS-HT F spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "1800250000020001", + "intro": "AMS-HT A spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "1801960000020004", + "intro": "AMS-HT B Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1806960000020004", + "intro": "AMS-HT G Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "1802250000020001", + "intro": "AMS-HT C spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700960000020004", + "intro": "AMS A Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0705960000020004", + "intro": "AMS F Temperatūros reguliavimo paklaida yra per didelė; tai gali būti susiję su atidarytu dangčiu arba šildytuvo gedimu." + }, + { + "ecode": "0500050000010009", + "intro": "" + }, + { + "ecode": "0500050000010008", + "intro": "" + }, + { + "ecode": "050005000001000B", + "intro": "" + }, + { + "ecode": "050005000001000A", + "intro": "" + }, + { + "ecode": "050005000001000C", + "intro": "" + }, + { + "ecode": "0C00010000020016", + "intro": "" + }, + { + "ecode": "0C00010000020015", + "intro": "" + }, + { + "ecode": "0703250000020001", + "intro": "AMS D spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0700250000020001", + "intro": "AMS A spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0701250000020001", + "intro": "AMS B spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0706250000020001", + "intro": "„AMS G“ spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0702250000020001", + "intro": "„AMS C“ spausdintuvas naudoja maitinimą džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0705250000020001", + "intro": "AMS F spausdintuvas naudoja savo maitinimą džiovinimui įkėlimo ir spausdinimo metu. Norint užtikrinti geresnį džiovinimo efektyvumą, prašome prijungti maitinimo adapterį." + }, + { + "ecode": "0707250000020001", + "intro": "AMS H spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Norėdami užtikrinti geresnį džiovinimo efektyvumą, prijunkite maitinimo adapterį." + }, + { + "ecode": "0704250000020001", + "intro": "AMS E spausdintuvo maitinimą naudoja džiovinimui įkėlimo ir spausdinimo metu. Kad džiovinimas vyktų efektyviau, prijunkite maitinimo adapterį." + }, + { + "ecode": "0500010000020003", + "intro": "" + }, + { + "ecode": "0500030000020010", + "intro": "" + }, + { + "ecode": "0500030000020011", + "intro": "" + }, + { + "ecode": "0500030000020012", + "intro": "" + }, + { + "ecode": "0500030000020013", + "intro": "" + }, + { + "ecode": "0500030000020014", + "intro": "" + }, + { + "ecode": "0500030000020015", + "intro": "" + }, + { + "ecode": "0500030000020016", + "intro": "" + }, + { + "ecode": "0500030000020017", + "intro": "" + }, + { + "ecode": "0500030000020018", + "intro": "" + }, + { + "ecode": "0500030000030007", + "intro": "" + }, + { + "ecode": "0500060000020007", + "intro": "" + }, + { + "ecode": "0500010000020009", + "intro": "" + }, + { + "ecode": "0500010000030009", + "intro": "" + }, + { + "ecode": "0500060000020001", + "intro": "„Toolhead“ kamera nėra įtaisyta; patikrinkite aparatūros jungtį." + }, + { + "ecode": "05000600000200A1", + "intro": "" + }, + { + "ecode": "0500060000020013", + "intro": "" + }, + { + "ecode": "0500060000020012", + "intro": "" + }, + { + "ecode": "03001E0000010003", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; kaitintuvas perkaitęs." + }, + { + "ecode": "0500060000020006", + "intro": "" + }, + { + "ecode": "0500060000020023", + "intro": "" + }, + { + "ecode": "0500060000020005", + "intro": "" + }, + { + "ecode": "0500060000020024", + "intro": "" + }, + { + "ecode": "05000600000200A0", + "intro": "" + }, + { + "ecode": "0500060000020011", + "intro": "" + }, + { + "ecode": "0500060000020008", + "intro": "" + }, + { + "ecode": "0500060000020022", + "intro": "" + }, + { + "ecode": "0500010000020008", + "intro": "" + }, + { + "ecode": "0500060000020014", + "intro": "" + }, + { + "ecode": "0500060000020021", + "intro": "" + }, + { + "ecode": "0300020000010003", + "intro": "Netinkama purkštuko temperatūra; kaitintuvas perkaitęs." + }, + { + "ecode": "0300180000030009", + "intro": "Tai pirmasis spausdinimas, atliekamas esant aukštai spausdinimo pagrindo temperatūrai. Siekiant užtikrinti geresnę pirmojo sluoksnio spausdinimo kokybę, automatiškai atliekamas pagrindo išlyginimas esant aukštai temperatūrai." + }, + { + "ecode": "0C00010000020019", + "intro": "" + }, + { + "ecode": "0C0001000002001A", + "intro": "" + }, + { + "ecode": "0500060000020051", + "intro": "" + }, + { + "ecode": "0500060000020054", + "intro": "" + }, + { + "ecode": "0500060000020043", + "intro": "" + }, + { + "ecode": "0500060000020042", + "intro": "" + }, + { + "ecode": "0500060000020041", + "intro": "" + }, + { + "ecode": "0500060000020053", + "intro": "" + }, + { + "ecode": "0500060000020044", + "intro": "" + }, + { + "ecode": "0500060000020062", + "intro": "" + }, + { + "ecode": "0500060000020061", + "intro": "" + }, + { + "ecode": "0500060000020052", + "intro": "" + }, + { + "ecode": "0C0001000002001B", + "intro": "" + }, + { + "ecode": "0707620000020001", + "intro": "AMS H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803620000020001", + "intro": "AMS-HT D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804610000020001", + "intro": "AMS-HT E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804630000020001", + "intro": "AMS-HT E lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707630000020001", + "intro": "AMS H lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807600000020001", + "intro": "AMS-HT H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705630000020001", + "intro": "AMS F lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704600000020001", + "intro": "AMS E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800600000020001", + "intro": "AMS-HT A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707600000020001", + "intro": "AMS H lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801610000020001", + "intro": "AMS-HT B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706600000020001", + "intro": "AMS G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706630000020001", + "intro": "AMS G lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700610000020001", + "intro": "AMS A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701610000020001", + "intro": "AMS B lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701620000020001", + "intro": "AMS B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701630000020001", + "intro": "AMS B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702600000020001", + "intro": "AMS C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802620000020001", + "intro": "AMS-HT C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700600000020001", + "intro": "AMS A lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700620000020001", + "intro": "AMS A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0700630000020001", + "intro": "AMS A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0701600000020001", + "intro": "AMS B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702610000020001", + "intro": "AMS C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702620000020001", + "intro": "AMS C lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0702630000020001", + "intro": "AMS C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703600000020001", + "intro": "AMS D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703610000020001", + "intro": "AMS D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703620000020001", + "intro": "AMS D lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0703630000020001", + "intro": "AMS D lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806600000020001", + "intro": "AMS-HT G lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706620000020001", + "intro": "AMS G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805630000020001", + "intro": "AMS-HT F lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803630000020001", + "intro": "AMS-HT D lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705610000020001", + "intro": "AMS F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806610000020001", + "intro": "AMS-HT G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704620000020001", + "intro": "AMS E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800630000020001", + "intro": "AMS-HT A lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802600000020001", + "intro": "AMS-HT C lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801630000020001", + "intro": "AMS-HT B lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806630000020001", + "intro": "AMS-HT G lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704630000020001", + "intro": "AMS E lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805610000020001", + "intro": "AMS-HT F lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802630000020001", + "intro": "AMS-HT C lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804620000020001", + "intro": "AMS-HT E lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805620000020001", + "intro": "AMS-HT F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800620000020001", + "intro": "AMS-HT A lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0706610000020001", + "intro": "AMS G lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705620000020001", + "intro": "AMS F lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1805600000020001", + "intro": "AMS-HT F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803610000020001", + "intro": "AMS-HT D lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801600000020001", + "intro": "AMS-HT B lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807620000020001", + "intro": "AMS-HT H lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807630000020001", + "intro": "AMS-HT H lizdo Nr. 4 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1804600000020001", + "intro": "AMS-HT E lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0707610000020001", + "intro": "AMS H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1806620000020001", + "intro": "AMS-HT G lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1801620000020001", + "intro": "AMS-HT B lizdo Nr. 3 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0705600000020001", + "intro": "AMS F lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "0704610000020001", + "intro": "AMS E lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1807610000020001", + "intro": "AMS-HT H lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1803600000020001", + "intro": "AMS-HT D lizdo Nr. 1 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1802610000020001", + "intro": "AMS-HT C lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "1800610000020001", + "intro": "AMS-HT A lizdo Nr. 2 yra perkrautas. Gali būti, kad gija susipynusi arba gijos buferis užstrigo." + }, + { + "ecode": "050003000002000E", + "intro": "Kai kurie moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos naudojimui. Prisijungę prie interneto, eikite į puslapį „Aparatinė programinė įranga“ ir atnaujinkite aparatinę programinę įrangą; taip pat galite atnaujinti aparatinę programinę įrangą neprisijungę prie interneto, vadovaudamiesi wiki nurodymais." + }, + { + "ecode": "0C00030000020015", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Nustatyta, kad „Live View“ kamera buvo pakeista. Jei įdiegtas lazerinis arba pjovimo modulis, išimkite jį, spustelėkite spausdintuvo ekrane „Nustatymai > Kalibravimas“ ir iš naujo kalibruokite „Live View“ kamerą." + }, + { + "ecode": "0500050000010007", + "intro": "Nepavyko patikrinti MQTT komandos. Atnaujinkite „Studio“ (įskaitant tinklo įskiepį) arba „Handy“ iki naujausios versijos, tada iš naujo paleiskite programą ir pabandykite dar kartą." + }, + { + "ecode": "030095000001000A", + "intro": "Lazerinio modulio apačioje esantis aplinkos temperatūros jutiklis veikia netinkamai; jutiklyje yra atvira grandinė." + }, + { + "ecode": "0300950000010009", + "intro": "Lazerinio modulio apačioje esantis aplinkos temperatūros jutiklis veikia netinkamai; jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0500030000020055", + "intro": "Vartotojo informacijos galiojimo laikas pasibaigė, prašome iš naujo susieti įrenginį." + }, + { + "ecode": "0706230000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702220000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804230000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705210000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805220000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702210000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804210000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805230000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020015", + "intro": "AMS B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0701230000020012", + "intro": "AMS B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020013", + "intro": "AMS-HT F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020012", + "intro": "AMS-HT H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020016", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020012", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020015", + "intro": "AMS-HT B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800200000020014", + "intro": "AMS-HT lizdo Nr. 1 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020016", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020013", + "intro": "AMS-HT G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805220000020015", + "intro": "AMS-HT F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020013", + "intro": "AMS-HT F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020014", + "intro": "AMS E lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0707200000020015", + "intro": "AMS H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1807210000020015", + "intro": "AMS-HT H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700210000020014", + "intro": "AMS A lizdo Nr. 2 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020013", + "intro": "AMS-HT D lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020013", + "intro": "AMS-HT C lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807220000020015", + "intro": "AMS-HT H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700210000020016", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706230000020013", + "intro": "AMS G lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704230000020013", + "intro": "AMS E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020015", + "intro": "AMS-HT E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803230000020015", + "intro": "AMS-HT D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707210000020015", + "intro": "AMS H lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0707230000020013", + "intro": "AMS H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803220000020012", + "intro": "AMS-HT D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703210000020015", + "intro": "AMS D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1800220000020015", + "intro": "AMS-HT A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020013", + "intro": "AMS-HT D lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020012", + "intro": "AMS G lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020016", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020015", + "intro": "AMS E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020014", + "intro": "AMS-HT A lizdo Nr. 4 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020014", + "intro": "AMS C lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802200000020012", + "intro": "AMS-HT C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020016", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020015", + "intro": "AMS lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806230000020015", + "intro": "AMS-HT G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700220000020012", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020015", + "intro": "AMS G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803200000020015", + "intro": "AMS-HT D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "0705230000020012", + "intro": "AMS F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806210000020014", + "intro": "AMS-HT G lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700220000020014", + "intro": "AMS A lizdo Nr. 3 gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020015", + "intro": "AMS B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803210000020012", + "intro": "AMS-HT D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020014", + "intro": "AMS-HT E lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020015", + "intro": "AMS-HT E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800230000020012", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020015", + "intro": "AMS-HT G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0706220000020015", + "intro": "AMS G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0701200000020013", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800220000020012", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020013", + "intro": "AMS-HT E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801220000020015", + "intro": "AMS-HT B lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020012", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020014", + "intro": "AMS-HT F lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705200000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804200000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703200000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706230000020025", + "intro": "AMS G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800220000020025", + "intro": "AMS-HT A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1800230000020025", + "intro": "AMS-HT A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807210000020025", + "intro": "AMS-HT H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0707230000020025", + "intro": "AMS H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700230000020025", + "intro": "AMS A lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701210000020025", + "intro": "AMS B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807200000020025", + "intro": "AMS-HT H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801230000020025", + "intro": "AMS-HT B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801220000020025", + "intro": "AMS-HT B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701220000020025", + "intro": "AMS B lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705220000020025", + "intro": "AMS F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ir pernelyg išlenktas." + }, + { + "ecode": "1804210000020025", + "intro": "AMS-HT E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0704220000020025", + "intro": "AMS E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0701200000020025", + "intro": "AMS B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804220000020025", + "intro": "AMS-HT E lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802220000020025", + "intro": "AMS-HT C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803200000020025", + "intro": "AMS-HT D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1802200000020025", + "intro": "AMS-HT C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1804200000020025", + "intro": "AMS-HT E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707210000020025", + "intro": "AMS H lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705200000020025", + "intro": "AMS F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700220000020025", + "intro": "AMS A lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700210000020025", + "intro": "AMS A lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1801200000020025", + "intro": "AMS-HT B lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706210000020025", + "intro": "AMS G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707220000020025", + "intro": "AMS H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805230000020025", + "intro": "AMS-HT F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1801210000020025", + "intro": "AMS-HT B lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704200000020025", + "intro": "AMS E lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807210000020016", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020013", + "intro": "AMS-HT H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020013", + "intro": "AMS-HT C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707200000020014", + "intro": "AMS H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020012", + "intro": "AMS-HT E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020014", + "intro": "AMS C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703200000020013", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702200000020012", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804200000020013", + "intro": "AMS-HT E lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800210000020014", + "intro": "AMS-HT A tipo 2 lizdo gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0706230000020015", + "intro": "AMS G lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020015", + "intro": "AMS-HT B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0704200000020013", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020015", + "intro": "AMS F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1802200000020013", + "intro": "AMS-HT C lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700220000020015", + "intro": "AMS A lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702230000020016", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020014", + "intro": "AMS-HT H lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802220000020016", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020012", + "intro": "AMS E lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801230000020014", + "intro": "AMS-HT B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020016", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020012", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802200000020014", + "intro": "AMS-HT C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0700220000020013", + "intro": "AMS A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700200000020012", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800230000020015", + "intro": "AMS-HT A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1800220000020013", + "intro": "AMS-HT A lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800230000020016", + "intro": "AMS-HT: lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707200000020013", + "intro": "AMS H lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020012", + "intro": "AMS-HT C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702230000020015", + "intro": "AMS C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806220000020014", + "intro": "AMS-HT G lizdo Nr. 3 gijų Gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802200000020015", + "intro": "AMS-HT C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1805220000020016", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707230000020012", + "intro": "AMS H lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800210000020016", + "intro": "AMS-HT: lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020016", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704210000020014", + "intro": "AMS E lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0703230000020016", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020012", + "intro": "AMS-HT B lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0701200000020012", + "intro": "AMS B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020012", + "intro": "AMS-HT B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020015", + "intro": "AMS H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020014", + "intro": "AMS D lizdo Nr. 2 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700200000020013", + "intro": "AMS A lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704200000020016", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707210000020013", + "intro": "AMS H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806230000020012", + "intro": "AMS-HT G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704200000020014", + "intro": "AMS E lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704230000020016", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703230000020013", + "intro": "AMS D lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703220000020012", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805220000020012", + "intro": "AMS-HT F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020012", + "intro": "AMS-HT H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020013", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020016", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803220000020014", + "intro": "AMS-HT D lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704200000020012", + "intro": "AMS E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020016", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803200000020016", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807220000020012", + "intro": "AMS-HT H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804230000020016", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020013", + "intro": "AMS G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020014", + "intro": "AMS-HT H lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020014", + "intro": "AMS B lizdo Nr. 2-ojo gijos jutiklio signalas negaunamas; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806200000020012", + "intro": "AMS-HT G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703200000020016", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020014", + "intro": "AMS D lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704220000020013", + "intro": "AMS E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703210000020013", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701230000020013", + "intro": "AMS B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020014", + "intro": "AMS-HT E lizdo Nr. 4 gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020016", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020014", + "intro": "AMS-HT F lizdo Nr. 3 gijų gijų skaitiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "1806210000020012", + "intro": "AMS-HT G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020013", + "intro": "AMS E lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020014", + "intro": "AMS-HT H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020016", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700210000020013", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020012", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705210000020015", + "intro": "AMS F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0707200000020012", + "intro": "AMS H lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1800220000020016", + "intro": "AMS-HT: lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703220000020015", + "intro": "AMS D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0702210000020016", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701220000020016", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703200000020015", + "intro": "AMS D lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700200000020014", + "intro": "AMS A lizdo Nr. 1 Gijos jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0705200000020012", + "intro": "AMS F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704230000020012", + "intro": "AMS E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020016", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020015", + "intro": "AMS-HT: lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0705230000020016", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802220000020014", + "intro": "AMS-HT C lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804220000020015", + "intro": "AMS-HT E lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020013", + "intro": "AMS-HT D lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706200000020015", + "intro": "AMS G lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800230000020013", + "intro": "AMS-HT A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801200000020014", + "intro": "AMS-HT B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1806210000020013", + "intro": "AMS-HT G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802220000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807210000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800230000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706220000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704230000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700210000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800220000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801230000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707220000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704220000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704210000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803220000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701210000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703220000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806230000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707210000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807230000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802210000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703210000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700200000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701200000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802200000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807200000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801200000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707200000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806200000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800200000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805200000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706200000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0704200000020006", + "intro": "AMS E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803210000020015", + "intro": "AMS-HT D lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0705230000020013", + "intro": "AMS F lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707230000020016", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020016", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0700220000020016", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1804220000020013", + "intro": "AMS-HT E lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020016", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020016", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805210000020013", + "intro": "AMS-HT F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706210000020014", + "intro": "AMS G lizdo Nr. 2 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701220000020014", + "intro": "AMS B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1800220000020014", + "intro": "AMS-HT A lizdo Nr. 3 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1802210000020016", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704200000020015", + "intro": "AMS E lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0700230000020014", + "intro": "AMS A lizdo Nr. 4 gijų jutiklis nesiunčia signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0702200000020013", + "intro": "AMS C lizdo Nr. 1 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802210000020014", + "intro": "AMS-HT C lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707210000020016", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0703210000020012", + "intro": "AMS D lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806200000020014", + "intro": "AMS-HT G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0704210000020012", + "intro": "AMS E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020012", + "intro": "AMS G lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707230000020014", + "intro": "AMS H lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0700210000020012", + "intro": "AMS A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705220000020015", + "intro": "AMS F lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1800210000020012", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805210000020015", + "intro": "AMS-HT F lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0703230000020015", + "intro": "AMS D lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020014", + "intro": "AMS D lizdo Nr. 1 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805210000020012", + "intro": "AMS-HT F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706210000020016", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705200000020016", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704220000020014", + "intro": "AMS E lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804210000020012", + "intro": "AMS-HT E lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807200000020016", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705210000020012", + "intro": "AMS F lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0704210000020016", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1803230000020012", + "intro": "AMS-HT D lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020016", + "intro": "AMS: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801220000020016", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706210000020013", + "intro": "AMS G lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807200000020015", + "intro": "AMS-HT H lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0703200000020012", + "intro": "AMS D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806220000020013", + "intro": "AMS-HT G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802230000020012", + "intro": "AMS-HT C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1801220000020014", + "intro": "AMS-HT B lizdo Nr. 3-iosios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1802220000020015", + "intro": "AMS-HT C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0706230000020012", + "intro": "AMS G lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804210000020016", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806220000020015", + "intro": "AMS-HT G lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos nutrūkimu AMS viduje." + }, + { + "ecode": "1805230000020015", + "intro": "AMS-HT F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1802230000020015", + "intro": "AMS-HT C lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1806210000020015", + "intro": "AMS-HT G lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0702210000020015", + "intro": "AMS C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0703210000020016", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0704230000020015", + "intro": "AMS E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1806200000020013", + "intro": "AMS-HT G lizdo Nr. 1 maitinimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701220000020013", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805210000020016", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020013", + "intro": "AMS F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805200000020014", + "intro": "AMS-HT F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1804200000020012", + "intro": "AMS-HT E lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0703220000020013", + "intro": "AMS D lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700230000020013", + "intro": "AMS A lizdo Nr. 4 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807210000020013", + "intro": "AMS-HT H lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707220000020012", + "intro": "AMS H lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707220000020015", + "intro": "AMS H lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0700230000020016", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020015", + "intro": "AMS B lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1801200000020016", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0707220000020014", + "intro": "AMS H lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701210000020012", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1807220000020016", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020015", + "intro": "AMS-HT A lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "0706230000020014", + "intro": "AMS G lizdo Nr. 4-osios gijos jutiklis neperduoda signalo, o tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702210000020013", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806200000020016", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0706200000020014", + "intro": "AMS G lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1803230000020014", + "intro": "AMS-HT D lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1805200000020015", + "intro": "AMS-HT F lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801210000020015", + "intro": "AMS-HT B lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1800200000020013", + "intro": "AMS-HT A lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020014", + "intro": "AMS-HT B lizdo Nr. 2-ojo gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705220000020016", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020016", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1806230000020016", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701230000020014", + "intro": "AMS B lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801200000020013", + "intro": "AMS-HT B lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020015", + "intro": "AMS-HT E lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1805200000020012", + "intro": "AMS-HT F lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702200000020015", + "intro": "AMS C lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0702230000020012", + "intro": "AMS C lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0702220000020015", + "intro": "AMS C lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1803200000020014", + "intro": "AMS-HT D lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1805230000020016", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800200000020016", + "intro": "AMS-HT: lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1802230000020014", + "intro": "AMS-HT C lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1801220000020013", + "intro": "AMS-HT B lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804210000020014", + "intro": "AMS-HT E lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806220000020016", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702230000020013", + "intro": "AMS C lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702220000020016", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1801230000020013", + "intro": "AMS-HT B lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705230000020015", + "intro": "AMS F lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1802210000020015", + "intro": "AMS-HT C lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "0701220000020012", + "intro": "AMS B lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706220000020014", + "intro": "AMS G lizdo Nr. 3 gijos jutiklis negauna signalo, o tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0706220000020016", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1800210000020013", + "intro": "AMS-HT A lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020013", + "intro": "AMS-HT H lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020014", + "intro": "AMS F lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020014", + "intro": "AMS-HT D lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0707220000020013", + "intro": "AMS H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705200000020013", + "intro": "AMS F lizdo Nr. 1 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705210000020013", + "intro": "AMS F lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804230000020012", + "intro": "AMS-HT E lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805200000020025", + "intro": "AMS-HT F lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0705210000020025", + "intro": "AMS F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806210000020025", + "intro": "AMS-HT G lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703230000020025", + "intro": "AMS D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1807230000020025", + "intro": "AMS-HT H lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800200000020025", + "intro": "AMS-HT A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806200000020025", + "intro": "AMS-HT G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1807220000020025", + "intro": "AMS-HT H lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1806220000020025", + "intro": "AMS-HT G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1806230000020025", + "intro": "AMS-HT G lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0707200000020025", + "intro": "AMS H lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702210000020025", + "intro": "AMS C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805220000020025", + "intro": "AMS-HT F lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703220000020025", + "intro": "AMS D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1803220000020025", + "intro": "AMS-HT D lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704230000020025", + "intro": "AMS E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706220000020025", + "intro": "AMS G lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "1804230000020025", + "intro": "AMS-HT E lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0704210000020025", + "intro": "AMS E lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0705230000020025", + "intro": "AMS F lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702200000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0706210000020006", + "intro": "AMS G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1800210000020006", + "intro": "AMS-HT A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803230000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702230000020006", + "intro": "AMS C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0703230000020006", + "intro": "AMS D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806210000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1806220000020006", + "intro": "AMS-HT G aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1804220000020006", + "intro": "AMS-HT E aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705230000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1802230000020006", + "intro": "AMS-HT C aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1803210000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700230000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0707230000020006", + "intro": "AMS H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1805210000020006", + "intro": "AMS-HT F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0700220000020006", + "intro": "AMS A aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1807220000020006", + "intro": "AMS-HT H aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801210000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701220000020006", + "intro": "AMS B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai AMS viduje ir išorėje nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "1801220000020006", + "intro": "AMS-HT B aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0705220000020006", + "intro": "AMS F aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Prašome patikrinti, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0701230000020016", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807200000020014", + "intro": "AMS-HT H lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0703230000020014", + "intro": "AMS D lizdo Nr. 4 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803210000020013", + "intro": "AMS-HT D lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807230000020016", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702210000020012", + "intro": "AMS C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1806230000020014", + "intro": "AMS-HT G lizdo Nr. 4-gijų gijų skaitiklis negauna signalo; tai gali būti susiję su prastu kontaktu skaitiklio jungtyje arba su pačiu skaitiklio gedimu." + }, + { + "ecode": "0707210000020012", + "intro": "AMS H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706230000020016", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0701200000020014", + "intro": "AMS B lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020013", + "intro": "AMS C lizdo Nr. 3 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706220000020013", + "intro": "AMS G lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803200000020012", + "intro": "AMS-HT D lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707200000020016", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1805220000020013", + "intro": "AMS-HT F lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800200000020012", + "intro": "AMS-HT A lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0707210000020014", + "intro": "AMS H lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0705210000020014", + "intro": "AMS F lizdo Nr. 2 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0702220000020014", + "intro": "AMS C lizdo Nr. 3 gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1803230000020016", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0705220000020014", + "intro": "AMS F lizdo Nr. 3-iosios gijos jutiklis negauna signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "1801210000020013", + "intro": "AMS-HT B lizdo Nr. 2 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804220000020014", + "intro": "AMS-HT E lizdo Nr. 3 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktų sujungimu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1807220000020013", + "intro": "AMS-HT H lizdo Nr. 3 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803210000020016", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807230000020015", + "intro": "AMS-HT H lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1801200000020012", + "intro": "AMS-HT B lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700230000020015", + "intro": "AMS A lizdo Nr. 4 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1805230000020012", + "intro": "AMS-HT F lizdo Nr. 4 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0705230000020014", + "intro": "AMS F lizdo Nr. 4-osios gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "1806210000020016", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "1807210000020012", + "intro": "AMS-HT H lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1805230000020014", + "intro": "AMS-HT F lizdo Nr. 4-gijų gijų jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba pačio jutiklio gedimu." + }, + { + "ecode": "0701210000020013", + "intro": "AMS B lizdo Nr. 2 padavimo įrenginio variklis negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801210000020012", + "intro": "AMS-HT B lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0706200000020012", + "intro": "AMS G lizdo Nr. 1 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "0700200000020015", + "intro": "AMS lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "0705220000020012", + "intro": "AMS F lizdo Nr. 3 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1802210000020012", + "intro": "AMS-HT C lizdo Nr. 2 padavimo įrenginio variklis užstrigo, negali pasukti ritės." + }, + { + "ecode": "1804220000020016", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis prasisuko. Ištraukite giją, nupjaukite susidėvėjusią dalį ir pabandykite dar kartą." + }, + { + "ecode": "0702200000020014", + "intro": "AMS C lizdo Nr. 1 gijos jutiklis neperduoda signalo; tai gali būti susiję su prastu kontaktu jutiklio jungtyje arba su pačiu jutikliu." + }, + { + "ecode": "0701200000020015", + "intro": "AMS B lizdo Nr. 1 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkiu pačiame AMS įrenginyje." + }, + { + "ecode": "1804230000020013", + "intro": "AMS-HT E lizdo Nr. 4 padavimo bloko variklis negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704210000020015", + "intro": "AMS E lizdo Nr. 2 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu pačiame AMS įrenginyje." + }, + { + "ecode": "1803220000020015", + "intro": "AMS-HT D lizdo Nr. 3 gijos būsena yra nenormali; tai gali būti susiję su gijos trūkimu AMS viduje." + }, + { + "ecode": "1803200000020006", + "intro": "AMS-HT D aptiko, kad įdedant giją įtrūko PTFE vamzdelis. Patikrinkite, ar PTFE vamzdeliai, esantys AMS viduje ir išorėje, nenukrito ar nebuvo pažeisti." + }, + { + "ecode": "0702230000020025", + "intro": "AMS C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1800210000020025", + "intro": "AMS-HT: lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702220000020025", + "intro": "AMS C lizdo Nr. 3 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802210000020025", + "intro": "AMS-HT C lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1805210000020025", + "intro": "AMS-HT F lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg išlenktas." + }, + { + "ecode": "0703210000020025", + "intro": "AMS D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0706200000020025", + "intro": "AMS G lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803230000020025", + "intro": "AMS-HT D lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1802230000020025", + "intro": "AMS-HT C lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0703200000020025", + "intro": "AMS D lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0701230000020025", + "intro": "AMS B lizdo Nr. 4 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0700200000020025", + "intro": "AMS A lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "0702200000020025", + "intro": "AMS C lizdo Nr. 1 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "1803210000020025", + "intro": "AMS-HT D lizdo Nr. 2 padavimo pasipriešinimas yra per didelis. Prašome sumažinti padavimo pasipriešinimą, sumažinti ritės sukimosi pasipriešinimą ir vengti, kad gijų vamzdelis būtų per ilgas ar pernelyg sulenktas." + }, + { + "ecode": "07FF450000020001", + "intro": "Neteisingai veikia gijų pjovimo jutiklis; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "18FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "03002C0000010001", + "intro": "Po šildomojo pagrindo aptikta kliūtis. Prašome ją pašalinti, kad spausdinimas vyktų sklandžiai." + }, + { + "ecode": "07FE450000020001", + "intro": "Kairysis gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "07FFA00000020001", + "intro": "Pasibaigė laikas, skirtas dešiniojo purkštuko ištraukimui šaltuoju būdu. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "07FEA00000020001", + "intro": "Pasibaigė kairiojo purkštuko šalto ištraukimo proceso laikas. Spustelėkite „Bandyti dar kartą“ ir tada rankiniu būdu ištraukite giją." + }, + { + "ecode": "0300390000020002", + "intro": "Įrankio galvutėje esantis išorinis ventiliatorius veikia mažu greičiu, galbūt dėl susikaupusių nešvarumų." + }, + { + "ecode": "0300A60000010002", + "intro": "Nustojo veikti „Toolhead Enhanced Cooling Fan“ ryšys; patikrinkite jungtį." + }, + { + "ecode": "0300A60000010001", + "intro": "„Toolhead Enhanced Cooling Fan“ ventiliatorius nėra tinkamai sumontuotas; jis gali būti netvirtai pritvirtintas arba galėjo nukristi." + }, + { + "ecode": "0300270000010006", + "intro": "Purkštuvo poslinkio kalibravimas rodo didelį nuokrypį, kuris, tikėtina, atsirado dėl netinkamo purkštuvo arba kaitinimo pagrindo montavimo. Prašome patikrinti ir bandyti dar kartą." + }, + { + "ecode": "0300270000010003", + "intro": "Purkštuko poslinkio kalibravimo rezultatas rodo didelį nuokrypį, kuris, tikėtina, atsirado dėl to, kad dešiniojo purkštuko kaitinimo pagrindo šilumos izoliacijos plokštė nebuvo įdiegta. Prašome ją tinkamai įdiegti ir pabandyti dar kartą." + }, + { + "ecode": "0300270000010005", + "intro": "Purkštuko poslinkio kalibravimas rodo didelį nuokrypį, kurį galėjo sukelti papildoma šilumos izoliacijos plokštė, pritvirtinta prie dešiniojo purkštuko kaitinimo pagrindo. Prašome tai patikrinti ir bandyti atlikti kalibravimą dar kartą." + }, + { + "ecode": "0300930000010006", + "intro": "Kameros temperatūra yra nenormali. Galbūt oro įvado vietoje esantis kameros temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300930000010005", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300980000010003", + "intro": "Kairiojo šoninio lango Hall jutiklis (apatinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300980000010002", + "intro": "Kairiojo šoninio lango Hall jutiklis (viršutinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300990000010003", + "intro": "Dešiniojo šoninio lango Hall jutiklis (viršutinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300990000010002", + "intro": "Dešiniojo šoninio lango Hall jutiklis (apatinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsijungęs." + }, + { + "ecode": "0300960000010003", + "intro": "Priekinės durų prieškameros jutiklis (apatinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300970000010003", + "intro": "Viršutinio dangčio Hall jutiklis (galinis kairysis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300970000010002", + "intro": "Viršutinio dangčio Hall jutiklis (priekyje dešinėje) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0300960000010002", + "intro": "Priekinės durų prieškameros jutiklis (viršutinis) veikia netinkamai; patikrinkite, ar jungiamasis laidas nėra atsipalaidavęs." + }, + { + "ecode": "0C00040000020017", + "intro": "Vykdant „PrintThenCut“ funkciją nebuvo aptiktas vizualinis žymeklis; prašome medžiagą vėl priklijuoti į teisingą vietą. Tuo pačiu prašome nuvalyti įrankio galvutės kamerą, kad išvengtumėte užteršimo, ir pašalinti visus daiktus, kurie gali trukdyti matomumui." + }, + { + "ecode": "0700400000020001", + "intro": "AMS A. Prarastas gijos buferio padėties signalas: galbūt sutrikęs kabelis arba padėties jutiklis." + }, + { + "ecode": "1803400000020001", + "intro": "Prarastas AMS-HT D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0701400000020001", + "intro": "Prarastas AMS B gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "050003000001000E", + "intro": "Kai kurie išoriniai moduliai nesuderinami su spausdintuvo aparatinės programinės įrangos versija, o tai gali turėti įtakos normaliam veikimui. Norėdami atnaujinti aparatinę programinę įrangą, prisijunkite prie interneto ir eikite į puslapį „Aparatinė programinė įranga“." + }, + { + "ecode": "1801400000020001", + "intro": "AMS-HT B prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0705400000020001", + "intro": "Prarastas AMS F gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1805400000020001", + "intro": "AMS-HT F prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0706400000020001", + "intro": "Prarastas AMS G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0702400000020001", + "intro": "Prarastas AMS C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0703400000020001", + "intro": "Prarastas AMS D gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0704400000020001", + "intro": "AMS E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0707400000020001", + "intro": "Prarastas AMS H gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1806400000020001", + "intro": "Prarastas AMS-HT G gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1802400000020001", + "intro": "Prarastas AMS-HT C gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1804400000020001", + "intro": "AMS-HT E: prarastas gijos buferio padėties signalas – galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1807400000020001", + "intro": "AMS-HT H Gijos buferio padėties signalas prarastas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "1800400000020001", + "intro": "AMS-HT A – prarastas gijos buferio padėties signalas: galbūt sugedo kabelis arba padėties jutiklis." + }, + { + "ecode": "0700900000010002", + "intro": "AMS A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701910000010002", + "intro": "AMS B: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703900000010002", + "intro": "AMS D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702910000010002", + "intro": "AMS C: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0701900000010002", + "intro": "AMS B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0703910000010002", + "intro": "AMS D: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0702900000010002", + "intro": "AMS C: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804910000010002", + "intro": "AMS-HT E 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801910000010002", + "intro": "AMS-HT B 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806900000010002", + "intro": "AMS-HT G 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805910000010002", + "intro": "AMS-HT F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807900000010002", + "intro": "AMS-HT H 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1805900000010002", + "intro": "AMS-HT F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800900000010002", + "intro": "AMS-HT A 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704900000010002", + "intro": "AMS E: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1800910000010002", + "intro": "AMS-HT A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802900000010002", + "intro": "AMS-HT C 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705910000010002", + "intro": "AMS F 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707900000010002", + "intro": "AMS H: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706910000010002", + "intro": "AMS G: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1807910000010002", + "intro": "AMS-HT H 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0707910000010002", + "intro": "AMS H: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1802910000010002", + "intro": "AMS-HT C 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1804900000010002", + "intro": "AMS-HT E 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0705900000010002", + "intro": "AMS F 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0706900000010002", + "intro": "AMS G: 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0704910000010002", + "intro": "AMS E: 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801900000010002", + "intro": "AMS-HT B 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803900000010002", + "intro": "AMS-HT D 1-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1803910000010002", + "intro": "AMS-HT D 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1806910000010002", + "intro": "AMS-HT G 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "0700910000010002", + "intro": "AMS A 2-ojo išmetimo vožtuvo ritės varža neatitinka normos; tai gali būti susiję su netinkamu laidų sujungimu arba gedimu." + }, + { + "ecode": "1801200000020023", + "intro": "AMS-HT B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804200000020023", + "intro": "AMS-HT E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707220000020023", + "intro": "AMS H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700230000020023", + "intro": "AMS: 4-oje lizdoje esanti AMS vidinė lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701230000020023", + "intro": "AMS B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803200000020023", + "intro": "AMS-HT D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802200000020023", + "intro": "AMS-HT C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707210000020023", + "intro": "AMS H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801230000020023", + "intro": "AMS-HT B lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706200000020023", + "intro": "AMS G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806220000020023", + "intro": "AMS-HT G lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706220000020023", + "intro": "AMS G lizdo Nr. 3: AMS viduje esanti lempa yra sudaužyta arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806210000020023", + "intro": "AMS-HT G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti kaitinamosios gijos." + }, + { + "ecode": "1802230000020023", + "intro": "AMS-HT C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805220000020023", + "intro": "AMS-HT F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800220000020023", + "intro": "AMS-HT A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707200000020023", + "intro": "AMS H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805210000020023", + "intro": "AMS-HT F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703230000020023", + "intro": "AMS D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804230000020023", + "intro": "AMS-HT E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704230000020023", + "intro": "AMS E lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704210000020023", + "intro": "AMS E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807210000020023", + "intro": "AMS-HT H lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807220000020023", + "intro": "AMS-HT H lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0707230000020023", + "intro": "AMS H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702210000020023", + "intro": "AMS C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802210000020023", + "intro": "AMS-HT C lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704220000020023", + "intro": "AMS E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701210000020023", + "intro": "AMS B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800230000020023", + "intro": "AMS-HT: lizdo Nr. 4 vamzdelis AMS viduje, yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701220000020023", + "intro": "AMS B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807200000020023", + "intro": "AMS-HT H lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0701200000020023", + "intro": "AMS B lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800200000020023", + "intro": "AMS-HT A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705200000020023", + "intro": "AMS F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705230000020023", + "intro": "AMS F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700210000020023", + "intro": "AMS A lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801220000020023", + "intro": "AMS-HT B lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705210000020023", + "intro": "AMS F lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0704200000020023", + "intro": "AMS E lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803210000020023", + "intro": "AMS-HT D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803220000020023", + "intro": "AMS-HT D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702230000020023", + "intro": "AMS C lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706230000020023", + "intro": "AMS G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700220000020023", + "intro": "AMS A lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0705220000020023", + "intro": "AMS F lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1807230000020023", + "intro": "AMS-HT H lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0706210000020023", + "intro": "AMS G lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702200000020023", + "intro": "AMS C lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703200000020023", + "intro": "AMS D lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805230000020023", + "intro": "AMS-HT F lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804220000020023", + "intro": "AMS-HT E lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806230000020023", + "intro": "AMS-HT G lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1804210000020023", + "intro": "AMS-HT E lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1801210000020023", + "intro": "AMS-HT B lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703220000020023", + "intro": "AMS D lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0700200000020023", + "intro": "AMS A lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1800210000020023", + "intro": "AMS-HT A lizdo Nr. 2: AMS viduje esanti lempa yra sudaužyta arba išvedimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0702220000020023", + "intro": "AMS C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1805200000020023", + "intro": "AMS-HT F lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1803230000020023", + "intro": "AMS-HT D lizdo Nr. 4: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1802220000020023", + "intro": "AMS-HT C lizdo Nr. 3: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "0703210000020023", + "intro": "AMS D lizdo Nr. 2: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "1806200000020023", + "intro": "AMS-HT G lizdo Nr. 1: vamzdelis AMS viduje yra sulūžęs arba išstūmimo hall jutiklis yra sugedęs ir negali aptikti gijos." + }, + { + "ecode": "07FE450000020002", + "intro": "Gijos pjovimo įtaiso pjovimo atstumas yra per didelis. Galimos priežastys: Gijos pjovimo įtaiso stabdiklis praleidžia dantukus, variklis praranda žingsnius arba XY ašys nėra nustatytos į pradinę padėtį." + }, + { + "ecode": "07FF450000020002", + "intro": "Gijos pjovimo įtaiso pjovimo atstumas yra per didelis. Galimos priežastys: Gijos pjovimo įtaiso stabdiklis praleidžia dantukus, variklis praranda žingsnius arba XY ašys nėra nustatytos į pradinę padėtį." + }, + { + "ecode": "18FE450000020002", + "intro": "Gijos pjovimo įtaiso pjovimo atstumas yra per didelis. Galimos priežastys: Gijos pjovimo įtaiso stabdiklis praleidžia dantukus, variklis praranda žingsnius arba XY ašys nėra nustatytos į pradinę padėtį." + }, + { + "ecode": "18FF450000020002", + "intro": "Gijos pjovimo įtaiso pjovimo atstumas yra per didelis. Galimos priežastys: Gijos pjovimo įtaiso stabdiklis praleidžia dantukus, variklis praranda žingsnius arba XY ašys nėra nustatytos į pradinę padėtį." + }, + { + "ecode": "050001000001000A", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0C00040000020026", + "intro": "Nepavyko inicijuoti „Liveview“ kameros, todėl kai kurios AI funkcijos, pvz., „Spaghetti Detection“, bus išjungtos. Prašome iš naujo paleisti spausdintuvą. Jei problema neišsprendžiama, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500060000020002", + "intro": "„Nozzle“ kamera nėra įtaisyta; patikrinkite įrangos jungtį." + }, + { + "ecode": "0500060000020003", + "intro": "„BirdsEye“ kamera nėra įdiegta; patikrinkite įrangos jungtį" + }, + { + "ecode": "0C0003000003001B", + "intro": "Aptikti galimi spageti defektai. Prašome patikrinti spausdinimo kokybę ir nuspręsti, ar užduotį reikia nutraukti." + }, + { + "ecode": "0C0003000002001C", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "030001000003000F", + "intro": "Šiuo metu kameros temperatūra yra aukšta, o šildomasis pagrindas atvėsta lėtai. Norint pagreitinti atvėsinimo procesą, rekomenduojama atidaryti viršutinį dangtį arba priekines dureles." + }, + { + "ecode": "030001000002000F", + "intro": "Nustatyta per aukšta kameros tikslinė temperatūra, o šildomojo pagrindo tikslinė temperatūra – per žema. Šildomojo pagrindo aušinimas buvo praleistas. Rekomenduojama nustatyti suderintas kameros ir šildomojo pagrindo temperatūras." + }, + { + "ecode": "0300930000010004", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, turi atvirą grandinę." + }, + { + "ecode": "0500030000010004", + "intro": "Modulis „Filament Buffer“ veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0700980000020001", + "intro": "AMS A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583040000010045", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0500050000010013", + "intro": "Lazerinio modulio sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C0003000003001A", + "intro": "Svetimkūnio aptikimo funkcija neveikė, galbūt dėl to, kad ji buvo nutraukta rankiniu būdu (pvz., paspaudus stabdymo mygtuką arba atidarius dureles, kai veikė lazerio režimas). Jei taip ir yra, galite į tai nekreipti dėmesio. Kitais atvejais pabandykite iš naujo paleisti spausdintuvą arba atnaujinti aparatinę programinę įrangą, kad atkurtumėte šią funkciją." + }, + { + "ecode": "1803980000020001", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0703980000020001", + "intro": "AMS D Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "050005000001000D", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0300260000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių. Taip pat įsitikinkite, kad spausdinimo plokštė yra teisingai įdėta, kad būtų išvengta susidūrimų su aplinkinėmis konstrukcijomis." + }, + { + "ecode": "0300250000010005", + "intro": "Z ašies variklio sukimasis yra trukdomas; patikrinkite, ar Z slankiklyje arba Z sinchronizavimo skriemulyje nėra įstrigusių svetimkūnių. Taip pat įsitikinkite, kad spausdinimo plokštė yra teisingai įdėta, kad būtų išvengta susidūrimų su aplinkinėmis konstrukcijomis." + }, + { + "ecode": "0500050000010014", + "intro": "Nepavyko atlikti AMS A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701980000020002", + "intro": "AMS B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0581040000010045", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0707980000020001", + "intro": "AMS H Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1800980000020001", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1804980000020002", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0702980000020001", + "intro": "AMS C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020002", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1807980000020001", + "intro": "AMS-HT H Maitinimo adapterio įtampa per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0501040000010044", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0580040000010045", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0584040000010045", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1805980000020001", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0584050000010017", + "intro": "AMS-HT E sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0705980000020001", + "intro": "AMS F Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582040000010045", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0703980000020002", + "intro": "AMS D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020002", + "intro": "AMS G Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586040000010045", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0300390000010001", + "intro": "Įrankio galvutėje esantis išorinis ventiliatorius veikia per lėtai arba sustojo – tai galėjo įvykti dėl užsikimšimo nešvarumais arba dėl laisvo jungties." + }, + { + "ecode": "0500040000010048", + "intro": "Pjaustymo modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0700980000020002", + "intro": "AMS A Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502050000010014", + "intro": "AMS C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0702980000020002", + "intro": "AMS C Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1802980000020002", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020001", + "intro": "AMS E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0706980000020001", + "intro": "AMS G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0502040000010044", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0585040000010045", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0501050000010014", + "intro": "AMS B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0585050000010017", + "intro": "AMS-HT F sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010047", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1807980000020002", + "intro": "AMS-HT H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0587040000010045", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1802980000020001", + "intro": "AMS-HT C Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0586050000010017", + "intro": "AMS-HT G sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0707980000020002", + "intro": "AMS H Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0500050000010015", + "intro": "Oro siurblio sertifikavimas nepavyko. Prašome iš naujo prijungti laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0701980000020001", + "intro": "AMS B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0503050000010014", + "intro": "AMS D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500050000010016", + "intro": "Nepavyko sertifikuoti pjovimo modulio. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0503040000010044", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "1800980000020002", + "intro": "AMS-HT A Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1801980000020001", + "intro": "AMS-HT B Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0500040000010046", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587050000010017", + "intro": "AMS-HT H sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500040000010044", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0581050000010017", + "intro": "AMS-HT B sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1804980000020001", + "intro": "AMS-HT E Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0704980000020002", + "intro": "AMS E Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0582050000010017", + "intro": "AMS-HT C sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0580050000010017", + "intro": "Nepavyko atlikti AMS-HT A sertifikavimo. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0705980000020002", + "intro": "AMS F Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1805980000020002", + "intro": "AMS-HT F Maitinimo adapterio įtampa yra per didelė, todėl gali būti pažeista šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0583050000010017", + "intro": "AMS-HT D sertifikavimas nepavyko. Prašome iš naujo prijungti kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "1803980000020002", + "intro": "AMS-HT D Maitinimo adapterio įtampa yra per didelė, dėl to gali būti pažeista kaitinimo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020001", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per maža, dėl to džiovinimo temperatūra gali būti nepakankama. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "1806980000020002", + "intro": "AMS-HT G Maitinimo adapterio įtampa yra per didelė, dėl to gali būti sugadinta šildymo grandinė. Prašome pakeisti maitinimo adapterį." + }, + { + "ecode": "0C00010000010018", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0C00010000010001", + "intro": "„Toolhead Camera“ neveikia. Patikrinkite įrangos jungtį." + }, + { + "ecode": "0C00010000010003", + "intro": "Neteisingai sinchronizuojasi spausdinimo galvutės kamera ir MC. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C00010000010004", + "intro": "Atrodo, kad įrankio galvutės kameros objektyvas yra nešvarus. Prašome nuvalyti objektyvą." + }, + { + "ecode": "0C00010000010005", + "intro": "„Toolhead Camera“ parametras yra nenormalus. Prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0300A40000010008", + "intro": "Kameros temperatūros jutiklis veikia netinkamai. Prieš iš naujo paleidžiant užduotį, pašalinkite šią problemą." + }, + { + "ecode": "0C00040000010025", + "intro": "Įrenginys neveikia tinkamai; prašome jį iš naujo paleisti." + }, + { + "ecode": "0C00040000020018", + "intro": "Nepavyko atlikti pjovimo peilio poslinkio kalibravimo. Tai gali turėti įtakos pjovimo tikslumui. Prašome pasinaudoti „Assistant“ programa, kad patikrintumėte, ar peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "0500040000020043", + "intro": "„Toolhead“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti darbą." + }, + { + "ecode": "0C00040000020023", + "intro": "Nepavyko išmatuoti storio – matavimo galvutės kamera negalėjo aptikti medžiagos paviršiaus." + }, + { + "ecode": "0C00040000030018", + "intro": "Nepavyko atlikti pjovimo peilio poslinkio kalibravimo. Tai gali turėti įtakos pjovimo tikslumui. Prašome pasitikrinti „Wiki“ puslapyje, ar peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "03000F0000010001", + "intro": "Aptikti neįprasti akselerometro duomenys. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500020000020008", + "intro": "Laiko sinchronizavimas nepavyko" + }, + { + "ecode": "0300A40000010005", + "intro": "Šildomojo pagrindo temperatūros jutiklis veikia netinkamai. Prieš iš naujo paleidžiant užduotį, išspręskite šią problemą." + }, + { + "ecode": "050005000001000E", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0505050000010010", + "intro": "AMS F Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501050000010010", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0507050000010010", + "intro": "AMS H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0300A50000010003", + "intro": "3-iasis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1806930000020003", + "intro": "AMS-HT G šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1806920000020003", + "intro": "AMS-HT G šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707920000020003", + "intro": "AMS H šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705920000020003", + "intro": "AMS F šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701930000020003", + "intro": "AMS B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704930000020003", + "intro": "AMS E heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0582050000010010", + "intro": "AMS-HT C įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0500050000010012", + "intro": "Pjaustymo modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500050000010011", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0584050000010010", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587050000010010", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0586050000010010", + "intro": "AMS-HT G įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0585050000010010", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0580050000010010", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "03009B0000010003", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "050005000001000F", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0502050000010010", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0506050000010010", + "intro": "AMS G Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0504050000010010", + "intro": "AMS E Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0503050000010010", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0300A50000010004", + "intro": "4-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "0706930000020003", + "intro": "AMS G heater 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807920000020003", + "intro": "AMS-HT H šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010002", + "intro": "2-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1800920000020003", + "intro": "AMS-HT A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0706920000020003", + "intro": "AMS G šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702920000020003", + "intro": "AMS C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0C00030000020019", + "intro": "„Vision Encoder Plate“ plokštė nėra uždėta arba uždėta netinkamai. Prašome įsitikinti, kad ji būtų teisingai pritvirtinta ant šildomojo pagrindo." + }, + { + "ecode": "1801920000020003", + "intro": "AMS-HT B šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0704920000020003", + "intro": "AMS E heater 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805920000020003", + "intro": "AMS-HT F šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010005", + "intro": "5-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "1804920000020003", + "intro": "AMS-HT E šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0300A50000010001", + "intro": "1-asis liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas." + }, + { + "ecode": "0703930000020003", + "intro": "AMS D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1804930000020003", + "intro": "AMS-HT E šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0707930000020003", + "intro": "AMS H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1807930000020003", + "intro": "AMS-HT H šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0703920000020003", + "intro": "AMS D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700930000020003", + "intro": "AMS A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1805930000020003", + "intro": "AMS-HT F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0702930000020003", + "intro": "AMS C šildytuvo Nr. 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802920000020003", + "intro": "AMS-HT C šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803930000020003", + "intro": "AMS-HT D šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1803920000020003", + "intro": "AMS-HT D šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1800930000020003", + "intro": "AMS-HT A šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0705930000020003", + "intro": "AMS F šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0701920000020003", + "intro": "AMS B šildytuvo Nr. 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0700920000020003", + "intro": "AMS A šildytuvo 1 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1802930000020003", + "intro": "AMS-HT C šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "1801930000020003", + "intro": "AMS-HT B šildytuvo 2 aušinimo ventiliatorius negali įsijungti, nes maitinimo adapteris nėra prijungtas." + }, + { + "ecode": "0583050000010010", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0581050000010010", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0C00030000020014", + "intro": "Svetimų objektų aptikimo tikslumas sumažėjo. Jei tai pasikartoja dažnai, atlikite „Live View“ kameros kalibravimą (spausdintuvo ekrane pasirinkite „Nustatymai“ > „Kalibravimas“). Jei įrengtas lazeris arba pjovimo modulis, prieš tęsdami pašalinkite jį." + }, + { + "ecode": "0500050000010010", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500040000020034", + "intro": "Lazerinis modulis aptiktas pirmą kartą. Prieš naudojimą atlikite nustatymus (~4 min.), kad pjovimas ir graviravimas būtų tikslūs. Taip pat įsitikinkite, kad gale esanti H2.0 varžtė, tvirtinanti oro siurblį, yra išsukta." + }, + { + "ecode": "1804200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1804220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0704210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0707230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0700210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1800220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1803210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0703230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0701210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704230000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0702230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1800210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0705230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1807230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1805220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1806210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0703230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0701220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0700230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1803220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Ištraukite gijas ir pabandykite dar kartą." + }, + { + "ecode": "1807210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 1. Galbūt RFID žymė yra pažeista arba yra pritvirtinta prie RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1806230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1805210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0702220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0705230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0701200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1806230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1801200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1801230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0701210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1800210000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801200000010085", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT B lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1807210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0701210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir bandyti dar kartą." + }, + { + "ecode": "0702200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806220000010085", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS-HT G lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1803200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "0706220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0703200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0702230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0706230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1804200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1806220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT A lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir bandyti dar kartą." + }, + { + "ecode": "1805200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1802210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1803200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "1801210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS G lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1803200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1804210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0703220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0705220000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT H lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0706210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT G lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0700210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1802230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0703220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS A lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0702200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1805220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1800200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0702220000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS C lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1802220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1807220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1806230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 3. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0704200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0704230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS B lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0707210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT E lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1801200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "1800210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 2. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0707230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS H lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0704220000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0705210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0707210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0702210000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1800220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0700210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707200000010082", + "intro": "Nepavyko nuskaityti informacijos apie giją iš AMS H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0704230000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "1802200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT C lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1803220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0705200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 1. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1800230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS E lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1804200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1804230000010085", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT E lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0707230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800230000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0706220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1805230000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1807200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0701200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "0705220000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS F lizdo Nr. 3. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704230000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 4. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0704210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1801220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0705200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant filamentą. Prašome ištraukti filamentą ir bandyti dar kartą." + }, + { + "ecode": "1801210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT B lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1807210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010082", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS B lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ giją." + }, + { + "ecode": "0700210000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703220000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS D lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806210000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0701200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1804220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT E lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807220000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT H lizdo Nr. 3. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803200000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 1. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1807220000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 3. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1802230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS A lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0704220000010084", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS E lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijos ir pabandyti dar kartą." + }, + { + "ecode": "1805200000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT F lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "1806200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome pašalinti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0701230000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS B lizdo Nr. 4. Galbūt RFID žymė yra pažeista." + }, + { + "ecode": "1805200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT F lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1807200000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT H lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0706200000010086", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio Gijos įdėjimo arba išėmimo metu. Prašome ištraukti filamentą ir pabandyti dar kartą." + }, + { + "ecode": "1805230000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS-HT F lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "0706230000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS G lizdo Nr. 4. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1800220000010084", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT A lizdo Nr. 3. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome nuimti 5 cm gijų ir pabandyti dar kartą." + }, + { + "ecode": "0703200000010086", + "intro": "Nepavyko nuskaityti gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant ar išimant giją. Prašome ištraukti giją ir pabandyti dar kartą." + }, + { + "ecode": "1803230000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT D lizdo Nr. 4. RFID žymė negali pasisukti dėl užstrigimo, įvykusio įdedant arba išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010082", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ gijas." + }, + { + "ecode": "0702230000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 4. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1803220000010081", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT D lizdo Nr. 3. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "1802210000010083", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS-HT C lizdo Nr. 2. Galbūt sugadinta RFID žymė." + }, + { + "ecode": "1801210000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1801210000010082", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT B lizdo Nr. 2. Aptikta neoriginali RFID žymė. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0707230000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS H lizdo Nr. 4. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "0703200000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS D lizdo Nr. 1. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0700200000010081", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS A lizdo Nr. 1. Gali būti, kad AMS pagrindinė plokštė veikia netinkamai." + }, + { + "ecode": "0702210000010086", + "intro": "Nepavyko nuskaityti gijų informacijos iš AMS C lizdo Nr. 2. RFID žymė negali pasisukti dėl užstrigimo, atsiradusio įdedant ar išimant gijas. Prašome ištraukti gijas ir pabandyti dar kartą." + }, + { + "ecode": "0704200000010085", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS E lizdo Nr. 1. Nepavyko patikrinti RFID žymės. Galite pabandyti naudoti „Bambu Lab“ filamentą." + }, + { + "ecode": "1806210000010084", + "intro": "Nepavyko nuskaityti Gijos informacijos iš AMS-HT G lizdo Nr. 2. RFID žymė gali būti pažeista arba įdėta prie pat RFID skaitytuvo krašto. Prašome ištraukti 5 cm Gijos ir pabandyti dar kartą." + }, + { + "ecode": "0C0003000003000D", + "intro": "Nustatyta, kad ekstruderiui gali nefunkcionuoti tinkamai. Prašome patikrinti ir nuspręsti, ar reikia sustabdyti spausdinimą." + }, + { + "ecode": "0C00030000020018", + "intro": "Nustatyta, kad nepakanka sistemos atminties, todėl svetimkūnių aptikimo funkcija neveikė. Užbaigus užduotį, prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą" + }, + { + "ecode": "03001E0000010002", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "1807230000020021", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701210000020011", + "intro": "AMS B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020022", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806210000020018", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801220000020017", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707210000020024", + "intro": "AMS H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020019", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020011", + "intro": "AMS G lizdo Nr. 1 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "0706210000020011", + "intro": "AMS G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020021", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020010", + "intro": "AMS E lizdo Nr. 2 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020011", + "intro": "AMS D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0705210000020010", + "intro": "AMS F lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804210000020024", + "intro": "AMS-HT E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705210000020011", + "intro": "AMS F lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020024", + "intro": "AMS H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700230000020011", + "intro": "AMS A lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705220000020020", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706230000020010", + "intro": "AMS G lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803230000020010", + "intro": "AMS-HT D lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0700200000020021", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706230000020018", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1805230000020019", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1806220000020020", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700200000020019", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701220000020024", + "intro": "AMS B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020011", + "intro": "AMS-HT H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020011", + "intro": "AMS-HT F lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0703210000020022", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805200000020017", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807230000020010", + "intro": "AMS-HT H lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0700220000020020", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0707230000020021", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020022", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020011", + "intro": "AMS-HT G lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803200000020017", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020019", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1800210000020021", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijos buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020011", + "intro": "AMS F lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020022", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020017", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020010", + "intro": "AMS B lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802230000020021", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020021", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705230000020017", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705200000020017", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020018", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703230000020021", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020018", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807200000020018", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0700220000020019", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020018", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803220000020010", + "intro": "AMS-HT D lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0707220000020019", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020018", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020020", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0700210000020021", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020022", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804230000020024", + "intro": "AMS-HT E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020022", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020011", + "intro": "AMS-HT G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704210000020022", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803220000020019", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0703210000020010", + "intro": "AMS D lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801220000020010", + "intro": "AMS-HT B lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704220000020019", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020022", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020019", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020019", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1804220000020022", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020022", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803210000020021", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0703200000020021", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020024", + "intro": "AMS-HT H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020021", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020019", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020011", + "intro": "AMS-HT B lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806220000020022", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020020", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806210000020010", + "intro": "AMS-HT G lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700230000020018", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020021", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701230000020011", + "intro": "AMS B lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702220000020011", + "intro": "AMS C lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703220000020024", + "intro": "AMS D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020024", + "intro": "AMS D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020017", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705210000020017", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800230000020022", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020021", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020021", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020019", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020020", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700230000020021", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020011", + "intro": "AMS E lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020022", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020021", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801220000020022", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702220000020022", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702210000020020", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703220000020017", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802210000020019", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020022", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020019", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707230000020019", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020017", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706210000020022", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801210000020020", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805200000020010", + "intro": "AMS-HT F lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807220000020022", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "03001E0000010007", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "0300020000010009", + "intro": "Netinkamai reguliuojama purkštuko temperatūra. Galbūt nėra sumontuotas kaitinimo galvutės. Norėdami įkaitinti kaitinimo bloką be kaitinimo galvutės, nustatymuose įjunkite techninės priežiūros režimą." + }, + { + "ecode": "0300020000010007", + "intro": "Tinkama purkštuvo temperatūra neatitinka normos; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "1802200000020022", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800210000020011", + "intro": "AMS-HT A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802200000020017", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706200000020019", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020022", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020019", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802220000020020", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020022", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1803230000020019", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020019", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705230000020018", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020017", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700210000020017", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020024", + "intro": "AMS F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020024", + "intro": "AMS-HT F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020010", + "intro": "AMS C lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806220000020017", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803200000020020", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807200000020010", + "intro": "AMS-HT H lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0705210000020021", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0701220000020011", + "intro": "AMS B lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805220000020024", + "intro": "AMS-HT F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700210000020010", + "intro": "AMS A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020020", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020010", + "intro": "AMS G lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020010", + "intro": "AMS-HT D lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020010", + "intro": "AMS-HT G lizdo Nr. 1 išstumia giją, kai pasibaigia AMS laiko limitas." + }, + { + "ecode": "1805210000020024", + "intro": "AMS-HT F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020019", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802200000020018", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704200000020010", + "intro": "AMS E lizdo Nr. 1 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1803200000020022", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020024", + "intro": "AMS E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707230000020020", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0701220000020022", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020024", + "intro": "AMS-HT A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702220000020017", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800210000020019", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706200000020024", + "intro": "AMS G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020019", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702210000020011", + "intro": "AMS C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1802230000020018", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020022", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020022", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703230000020011", + "intro": "AMS D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1806200000020021", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020024", + "intro": "AMS-HT D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804220000020011", + "intro": "AMS-HT E lizdo Nr. 3 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020010", + "intro": "AMS-HT A lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800210000020020", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020024", + "intro": "AMS E lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807230000020019", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020020", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0700220000020022", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800200000020024", + "intro": "AMS-HT A lizdas: nepavyko pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020020", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803220000020020", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804210000020021", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020017", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020020", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801230000020018", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020022", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020021", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805220000020017", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701230000020017", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020024", + "intro": "AMS-HT C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702200000020021", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020017", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020020", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700210000020022", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0704220000020020", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1801210000020022", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705200000020011", + "intro": "AMS F lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020017", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020018", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020022", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020017", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805200000020021", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704230000020010", + "intro": "AMS E lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1806210000020020", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0705230000020019", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702200000020018", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0700210000020011", + "intro": "AMS A lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704200000020024", + "intro": "AMS E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706210000020024", + "intro": "AMS G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703210000020024", + "intro": "AMS D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020011", + "intro": "AMS-HT A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806230000020021", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807200000020021", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020024", + "intro": "AMS A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020018", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020018", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020022", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804220000020010", + "intro": "AMS-HT E lizdo Nr. 3 išstumia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0700200000020020", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0701220000020017", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800220000020018", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020024", + "intro": "AMS B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706220000020017", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1802220000020010", + "intro": "AMS-HT C lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1801200000020021", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020019", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020024", + "intro": "AMS-HT H lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703220000020021", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801210000020011", + "intro": "AMS-HT B lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805210000020018", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020010", + "intro": "AMS-HT C lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1804200000020020", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1806210000020017", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705220000020019", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0702230000020024", + "intro": "AMS C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1804200000020018", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701210000020018", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706200000020021", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "03001E0000010006", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas, todėl patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0300020000010002", + "intro": "Tinkama purkštuko temperatūra neatitinka normos; galbūt šildytuvo grandinėje yra pertrauka." + }, + { + "ecode": "0300020000010006", + "intro": "Tinkama purkštuvo temperatūra neatitinka normos; galbūt jutiklyje įvyko trumpasis jungimas, todėl patikrinkite, ar jungtis tinkamai įjungta." + }, + { + "ecode": "0702200000020024", + "intro": "AMS C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020022", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020018", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705210000020020", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802210000020021", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800220000020010", + "intro": "AMS-HT A lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020024", + "intro": "AMS F lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020018", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0706220000020022", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707230000020018", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0703220000020020", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1804200000020010", + "intro": "AMS-HT E lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801230000020020", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1805210000020011", + "intro": "AMS-HT F lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020018", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701230000020021", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020024", + "intro": "AMS-HT E lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801220000020018", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803220000020022", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020019", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020024", + "intro": "AMS H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701220000020021", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020018", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020010", + "intro": "AMS C lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0704220000020010", + "intro": "AMS E lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1807200000020019", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700220000020011", + "intro": "AMS A lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020010", + "intro": "AMS-HT E lizdo Nr. 2 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0701230000020010", + "intro": "AMS B lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1805220000020019", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1803220000020021", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020010", + "intro": "AMS-HT F lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702220000020024", + "intro": "AMS C lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802220000020011", + "intro": "AMS-HT C lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803220000020011", + "intro": "AMS-HT D lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1804210000020017", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707220000020022", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020024", + "intro": "AMS-HT C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801200000020024", + "intro": "AMS-HT B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020021", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0700210000020020", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "1805220000020010", + "intro": "AMS-HT F lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701220000020018", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020021", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803200000020011", + "intro": "AMS-HT D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1807220000020017", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020011", + "intro": "AMS-HT H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0702230000020019", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703210000020019", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802210000020011", + "intro": "AMS-HT C lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801220000020021", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020020", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800230000020020", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1803200000020019", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1802230000020024", + "intro": "AMS-HT C lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1802230000020022", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806220000020021", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1807210000020020", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707200000020017", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1806220000020010", + "intro": "AMS-HT G lizdo Nr. 3 tiekia giją, kai baigiasi AMS laiko limitas." + }, + { + "ecode": "0702220000020010", + "intro": "AMS C lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "1802230000020020", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703200000020017", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020021", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803230000020021", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1803220000020018", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705200000020010", + "intro": "AMS F lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702200000020020", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020021", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020019", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0700200000020017", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0705230000020020", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707210000020011", + "intro": "AMS H lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0706200000020010", + "intro": "AMS G lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0702230000020017", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801230000020022", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020018", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020018", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020024", + "intro": "AMS-HT H lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806230000020011", + "intro": "AMS-HT G lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020018", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020011", + "intro": "AMS D lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020020", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1800220000020021", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020022", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701210000020017", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020022", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802210000020020", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807230000020022", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1800220000020019", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0703200000020010", + "intro": "AMS D lizdo Nr. 1 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803200000020021", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702230000020022", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0702200000020022", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805230000020018", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802200000020020", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1806230000020019", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800200000020019", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801220000020024", + "intro": "AMS-HT B lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703200000020020", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802220000020019", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801200000020010", + "intro": "AMS-HT B lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706210000020018", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020020", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020021", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805200000020020", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0705230000020010", + "intro": "AMS F lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700230000020017", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0700230000020024", + "intro": "AMS A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700200000020011", + "intro": "AMS A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800220000020017", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020021", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir spausdinimo galvutės." + }, + { + "ecode": "1803220000020024", + "intro": "AMS-HT D lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704210000020017", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701200000020021", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707200000020011", + "intro": "AMS H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801210000020024", + "intro": "AMS-HT B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705200000020020", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1800200000020011", + "intro": "AMS-HT A lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1801230000020010", + "intro": "AMS-HT B lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0703200000020024", + "intro": "AMS D lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0705230000020022", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703210000020011", + "intro": "AMS D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1807210000020010", + "intro": "AMS-HT H lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807230000020024", + "intro": "AMS-HT H lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1805200000020019", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1801230000020021", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300030000020002", + "intro": "Kaitinimo galvutės aušinimo ventiliatorius veikia lėtai. Gali būti, kad jis užsikimšęs. Patikrinkite, ar nėra nešvarumų, ir, jei reikia, išvalykite." + }, + { + "ecode": "03001E0000010009", + "intro": "Kairiojo purkštuko temperatūros reguliavimas veikia netinkamai; galbūt kaitinimo galvutės nėra įmontuotas. Jei norite įkaitinti kaitinimo galvutės, kai jis nėra įmontuotas, nustatymų puslapyje įjunkite techninės priežiūros režimą." + }, + { + "ecode": "1800200000020021", + "intro": "AMS-HT A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020017", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020020", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1807200000020022", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706200000020017", + "intro": "AMS G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805210000020010", + "intro": "AMS-HT F lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1807210000020018", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1800220000020020", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1804220000020024", + "intro": "AMS-HT E lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1801230000020011", + "intro": "AMS-HT B lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800230000020010", + "intro": "AMS-HT A lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0701200000020011", + "intro": "AMS B lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020017", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0707230000020017", + "intro": "AMS H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804200000020022", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1801200000020011", + "intro": "AMS-HT B lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020024", + "intro": "AMS-HT F lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020024", + "intro": "AMS B lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020022", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705230000020021", + "intro": "AMS F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804220000020017", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020020", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0703230000020017", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1800200000020017", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703230000020022", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1806200000020018", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020018", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020018", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803230000020011", + "intro": "AMS-HT D lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800210000020022", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020017", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807220000020018", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020018", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1801210000020010", + "intro": "AMS-HT B lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806230000020010", + "intro": "AMS-HT G lizdo Nr. 4 tiekia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0701210000020010", + "intro": "AMS B lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1804220000020021", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1806230000020024", + "intro": "AMS-HT G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020010", + "intro": "AMS D lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1807210000020021", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706210000020021", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis sustojo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1801230000020019", + "intro": "AMS-HT B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1804210000020011", + "intro": "AMS-HT E lizdo Nr. 2 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1805220000020022", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1802200000020011", + "intro": "AMS-HT C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705200000020019", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704200000020019", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704230000020011", + "intro": "AMS E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0707230000020011", + "intro": "AMS H lizdo Nr. 4 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1801230000020024", + "intro": "AMS-HT B lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704220000020017", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704210000020024", + "intro": "AMS E lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0700220000020017", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020021", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802220000020018", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0703200000020022", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020020", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1801210000020018", + "intro": "AMS-HT B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806200000020024", + "intro": "AMS-HT G lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0702210000020017", + "intro": "AMS C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803220000020017", + "intro": "AMS-HT D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702220000020021", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800200000020010", + "intro": "AMS-HT A lizdo Nr. 1 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0702200000020011", + "intro": "AMS C lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700220000020010", + "intro": "AMS A lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701200000020017", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803230000020017", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020021", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020010", + "intro": "AMS-HT E lizdo Nr. 4 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "0703220000020010", + "intro": "AMS D lizdo Nr. 3 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0703220000020019", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020019", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707200000020024", + "intro": "AMS H lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020019", + "intro": "AMS-HT G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "1800230000020011", + "intro": "AMS-HT A lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "0700230000020022", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700200000020010", + "intro": "AMS A lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1800230000020019", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0706220000020019", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0705220000020022", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807220000020021", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0704210000020021", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0702210000020010", + "intro": "AMS C lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1802200000020021", + "intro": "AMS-HT C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0707210000020010", + "intro": "AMS H lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0300020000010001", + "intro": "Netinkama purkštuvo temperatūra; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "03001E0000010001", + "intro": "Kairiojo purkštuvo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0702230000020018", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805210000020019", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020017", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1807200000020017", + "intro": "AMS-HT H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0704200000020011", + "intro": "AMS E lizdo Nr. 1 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1803210000020011", + "intro": "AMS-HT D lizdo Nr. 2 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0705210000020018", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707200000020021", + "intro": "AMS H lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1800230000020021", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0705220000020024", + "intro": "AMS F lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1803230000020024", + "intro": "AMS-HT D lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1804200000020019", + "intro": "AMS-HT E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020019", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0706210000020010", + "intro": "AMS G lizdo Nr. 2 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0705200000020021", + "intro": "AMS F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804200000020011", + "intro": "AMS-HT E lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1806200000020019", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijų buferio." + }, + { + "ecode": "0704210000020020", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0706220000020018", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0705210000020024", + "intro": "AMS F lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707210000020020", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702210000020024", + "intro": "AMS C lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701230000020020", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020010", + "intro": "AMS H lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1803230000020018", + "intro": "AMS-HT D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1805220000020011", + "intro": "AMS-HT F lizdo Nr. 3 atitraukia giją atgal iki AMS laiko limito." + }, + { + "ecode": "1807230000020018", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1807220000020020", + "intro": "AMS-HT H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0700220000020018", + "intro": "AMS A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės pasipriešinimo jėgos vamzdyje šalia AMS." + }, + { + "ecode": "0706220000020020", + "intro": "AMS G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803210000020019", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701200000020022", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0700220000020024", + "intro": "AMS A lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gija buvo traukiama atgal į AMS." + }, + { + "ecode": "1802200000020024", + "intro": "AMS-HT C lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0701210000020019", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1807210000020022", + "intro": "AMS-HT H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1804210000020022", + "intro": "AMS-HT E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0707210000020018", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0701200000020018", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0707220000020011", + "intro": "AMS H lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0700200000020018", + "intro": "AMS A lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701200000020024", + "intro": "AMS B lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1807220000020010", + "intro": "AMS-HT H lizdo Nr. 3 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1802230000020011", + "intro": "AMS-HT C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "1800210000020024", + "intro": "AMS-HT A lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800200000020018", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0705220000020010", + "intro": "AMS F lizdo Nr. 3 išstumia giją iš AMS laiko ribos." + }, + { + "ecode": "1801200000020019", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806210000020011", + "intro": "AMS-HT G lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1806200000020022", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706230000020011", + "intro": "AMS G lizdo Nr. 4 atitraukia giją iki AMS laiko ribos." + }, + { + "ecode": "1800230000020024", + "intro": "AMS-HT A lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0704200000020017", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0702230000020020", + "intro": "AMS C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020017", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis sustojo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801200000020017", + "intro": "AMS-HT B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1803210000020010", + "intro": "AMS-HT D lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "1806200000020020", + "intro": "AMS-HT G lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0707220000020017", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020021", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0706220000020024", + "intro": "AMS G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1806210000020024", + "intro": "AMS-HT G lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800230000020018", + "intro": "AMS-HT A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806220000020018", + "intro": "AMS-HT G lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1802210000020017", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020020", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinimo elemento buferio." + }, + { + "ecode": "0700230000020010", + "intro": "AMS A lizdo Nr. 4 tiekia giją iš AMS „timeout“." + }, + { + "ecode": "0701230000020019", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0704200000020018", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0704230000020021", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1802210000020010", + "intro": "AMS-HT C lizdo Nr. 2 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0704230000020018", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0707210000020017", + "intro": "AMS H lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0701220000020019", + "intro": "AMS B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1806220000020024", + "intro": "AMS-HT G lizdo Nr. 3 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0707200000020010", + "intro": "AMS H lizdo Nr. 1 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0707230000020010", + "intro": "AMS H lizdo Nr. 4 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "0700210000020019", + "intro": "AMS A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0700200000020024", + "intro": "AMS A lizdo Nr. 1 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0706230000020017", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0706230000020019", + "intro": "AMS G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "0704230000020019", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705220000020021", + "intro": "AMS F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1805230000020021", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "0300900000010003", + "intro": "Nesuveikė kameros šildymas. Galbūt maitinimo šaltinio temperatūra yra per aukšta." + }, + { + "ecode": "0300900000010001", + "intro": "Nesuveikė kameros šildymas. Šildytuvas gali nepūsti karšto oro." + }, + { + "ecode": "0300900000010002", + "intro": "Kameros šildymas neveikia. Galimos priežastys: kamera nėra visiškai uždara, aplinkos temperatūra per žema arba užsikimšęs maitinimo bloko šilumos išsklaidymo angos ventiliacijos kanalas." + }, + { + "ecode": "0700230000020020", + "intro": "AMS A lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1807210000020011", + "intro": "AMS-HT H lizdo Nr. 2 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "0704200000020022", + "intro": "AMS E lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1807230000020020", + "intro": "AMS-HT H lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0703210000020017", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805230000020022", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805210000020020", + "intro": "AMS-HT F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704230000020020", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamojo elemento buferio." + }, + { + "ecode": "0702220000020020", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0702200000020017", + "intro": "AMS C lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703200000020018", + "intro": "AMS D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0702220000020019", + "intro": "AMS C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0701210000020020", + "intro": "AMS B lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1802230000020019", + "intro": "AMS-HT C lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0707220000020021", + "intro": "AMS H lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje tarp gijų buferio ir įrankio galvutės." + }, + { + "ecode": "1804230000020017", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1805220000020018", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0702230000020011", + "intro": "AMS C lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805200000020011", + "intro": "AMS-HT F lizdo Nr. 1 atitraukia giją atgal iki AMS laiko ribos." + }, + { + "ecode": "0704220000020018", + "intro": "AMS E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "0701220000020010", + "intro": "AMS B lizdo Nr. 3 tiekia giją iš AMS laiko ribos." + }, + { + "ecode": "1807200000020011", + "intro": "AMS-HT H lizdo Nr. 1 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0703230000020019", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "0705210000020022", + "intro": "AMS F lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0703220000020018", + "intro": "AMS D lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje šalia AMS." + }, + { + "ecode": "1803210000020020", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1805200000020022", + "intro": "AMS-HT F lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "1805220000020020", + "intro": "AMS-HT F lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "1803200000020018", + "intro": "AMS-HT D lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804220000020020", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020018", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1806230000020020", + "intro": "AMS-HT G lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijų buferio." + }, + { + "ecode": "0706220000020011", + "intro": "AMS G lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1802210000020018", + "intro": "AMS-HT C lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1803210000020024", + "intro": "AMS-HT D lizdo Nr. 2 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "1800220000020022", + "intro": "AMS-HT A lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0706210000020019", + "intro": "AMS G lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1800210000020017", + "intro": "AMS-HT A lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804220000020019", + "intro": "AMS-HT E lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir gijos buferio." + }, + { + "ecode": "1802230000020010", + "intro": "AMS-HT C lizdo Nr. 4 išstumia giją pasibaigus AMS laiko limitui." + }, + { + "ecode": "0706230000020024", + "intro": "AMS G lizdo Nr. 4 nesugebėjo pasukti gijų ritės, kai gijos buvo traukiamos atgal į AMS." + }, + { + "ecode": "0703230000020018", + "intro": "AMS D lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "0704230000020022", + "intro": "AMS E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0705220000020011", + "intro": "AMS F lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1800200000020020", + "intro": "AMS-HT „lizdo Nr. 1“ pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "1802220000020017", + "intro": "AMS-HT C lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1801220000020020", + "intro": "AMS-HT B lizdo Nr. 3 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli kaitinamosios gijos buferio." + }, + { + "ecode": "0704220000020011", + "intro": "AMS E lizdo Nr. 3 atitraukia giją iki AMS laiko limito pabaigos." + }, + { + "ecode": "1805230000020017", + "intro": "AMS-HT F lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "0703210000020018", + "intro": "AMS D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli AMS." + }, + { + "ecode": "1804230000020011", + "intro": "AMS-HT E lizdo Nr. 4 atitraukia giją atgal iki AMS laiko limito pabaigos." + }, + { + "ecode": "0701230000020022", + "intro": "AMS B lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0701200000020020", + "intro": "AMS B lizdo Nr. 1 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje netoli gijos buferio." + }, + { + "ecode": "0704210000020019", + "intro": "AMS E lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir kaitinamosios gijos buferio." + }, + { + "ecode": "1803210000020017", + "intro": "AMS-HT D lizdo Nr. 2 pagalbinis variklis užstrigo dėl per didelės varžos vamzdyje tarp AMS ir spausdintuvo." + }, + { + "ecode": "1804230000020022", + "intro": "AMS-HT E lizdo Nr. 4 pagalbinis variklis užstrigo dėl per didelės trinties vamzdyje netoli įrankio galvutės." + }, + { + "ecode": "0C00040000030024", + "intro": "Nustatyta, kad „BirdsEye“ kameros padėtis yra nukrypusi. Siekiant užtikrinti graviravimo tikslumą, rekomenduojama pakartotinai atlikti „BirdsEye“ kameros nustatymą." + }, + { + "ecode": "0500040000020041", + "intro": "Lazerinis modulis naudojamas jau ilgą laiką. Prašome jį nedelsiant išvalyti, kad nebūtų sutrikdyta lazerio veikla." + }, + { + "ecode": "0500040000020042", + "intro": "„Live View“ kamera yra nešvari arba uždengta; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "03009C0000010001", + "intro": "Oro siurblys neaptiktas. Patikrinkite, ar jungtis tinkamai įjungta." + }, + { + "ecode": "1807700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1805700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0706700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1803700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1804700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1806700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0700700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0701700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0703700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0500060000020031", + "intro": "„ToolHead“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0700700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0702700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0703700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0500060000020032", + "intro": "„Nozzle“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300C10000010003", + "intro": "„Airflow System“ nepavyko įjungti lazerio režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0500010000030006", + "intro": "USB atmintinė nėra suformatuota arba į ją negalima įrašyti; prašome suformatuoti USB atmintinę." + }, + { + "ecode": "03009C0000010002", + "intro": "Oro siurblys veikia netinkamai ir gali būti sugadintas." + }, + { + "ecode": "1807700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0705700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0707700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1801700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1800700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1806700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "1802700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0704700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "0705700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0706700000020006", + "intro": "Pasibaigė laiko limitas, skirtas senam filamentui pašalinti. Galima priežastis: filamentas įstrigo arba užsikimšo ekstruderius/purkštukas." + }, + { + "ecode": "1805700000020003", + "intro": "Nepavyko išspausti gijos. Galima priežastis: užsikimšęs ekstruderius arba purkštukas." + }, + { + "ecode": "0C00040000020007", + "intro": "„BirdsEye“ kamera ruošiasi darbui. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo tarpu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "0300260000010002", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio jautrumas yra mažas; jėgos jutiklis gali būti netinkamai sumontuotas." + }, + { + "ecode": "0300C00000010002", + "intro": "Oro sklendės su filtru perjungimo sklendės gedimas: ji gali būti užstrigusi." + }, + { + "ecode": "0300C10000010001", + "intro": "„Airflow System“ nepavyko įjungti aušinimo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C10000010002", + "intro": "„Airflow System“ nepavyko įjungti šildymo režimo; patikrinkite oro sklendės būseną." + }, + { + "ecode": "0300C00000010003", + "intro": "Automatinių viršutinių ventiliacijos angų sklendžių gedimas: jos gali būti užstrigusios." + }, + { + "ecode": "0300C00000010001", + "intro": "Aktyviosios kameros išmetamo oro vožtuvo gedimas: jis gali būti užstrigęs." + }, + { + "ecode": "0C00010000020017", + "intro": "Purkštuvo kameros objektyvas yra nešvarus, o tai gali turėti įtakos dirbtinio intelekto stebėjimo funkcijoms. Prašome kuo greičiau nuvalyti purkštuvo kameros objektyvo paviršių." + }, + { + "ecode": "0500040000020037", + "intro": "Pjovimo modulis turi būti kalibruotas, kad būtų nustatyta įrankio padėtis. Prieš naudojimą atlikite montavimo kalibravimą. (trukmė – apie 2–4 minutes)" + }, + { + "ecode": "07FE800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1806700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0705700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1800700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "03009D0000020003", + "intro": "Graviravimo lazerio židinio taško Z kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus. Jei problema kartojasi, prašome susisiekti su klientų aptarnavimo skyriumi." + }, + { + "ecode": "0C00010000020002", + "intro": "Kamera ant spausdinimo galvutės veikia netinkamai. Jei ši problema pasikartoja keletą kartų spausdinimo metu, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "1803700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1805700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1802700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1807700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0C00010000020014", + "intro": "Kamera ant purkštuko veikia netinkamai. Jei ši problema spausdinimo metu pasikartoja keletą kartų, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0300280000010003", + "intro": "Ryšio sutrikimas tarp pjovimo modulio ir įrankio galvutės atliekant Z ašies grįžimą į pradinę padėtį. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs ar sugadintas, arba įsitikinkite, ar jėgos jutiklio ritė yra nesugadinta." + }, + { + "ecode": "0500010000020001", + "intro": "Medijos tiekimo kanalas veikia netinkamai. Prašome iš naujo paleisti spausdintuvą. Jei keletas bandymų nepavyks, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0700700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0701700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0702700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0703700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300260000010001", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per mažas. Jutiklis gali būti sumontuotas per toli arba gali būti laisvas." + }, + { + "ecode": "0300280000010001", + "intro": "Pjovimo modulio jėgos jutiklio rodmenys yra nenormalūs. Gali būti, kad nuo įrankio laikiklio nukrito magnetas arba jėgos jutiklis yra sugadintas." + }, + { + "ecode": "0300250000010007", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per didelis. Gali būti, kad jutiklis yra sugadintas arba purkštuvo aušintuvas yra per arti jutiklio." + }, + { + "ecode": "0300260000010007", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per didelis. Jutiklis gali būti sumontuotas per arti arba gali būti laisvas." + }, + { + "ecode": "0300250000010004", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio signalas yra nenormalus. Gali būti, kad jutiklis yra sugadintas arba kad MC-TH ryšys veikia netinkamai." + }, + { + "ecode": "18FE810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FE810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "030025000001000A", + "intro": "Nepavyko atlikti purkštuko poslinkio kalibravimo. gija lipa prie purkštuko, o tai gali turėti įtakos spausdinimo kokybei. Prašome išvalyti purkštuką ir bandyti dar kartą." + }, + { + "ecode": "0300280000010004", + "intro": "Pjovimo modulio jėgos jutiklis veikia netinkamai. Galbūt atsijungė jėgos jutiklio kabelis arba jutiklis yra sugadintas." + }, + { + "ecode": "18FE800000010006", + "intro": "TH plokštė atsijungė ekstruderiui perjungimo proceso metu. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "18FE800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FE800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "18FF800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FF800000010004", + "intro": "Įrankio galvutės kėlimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "07FF810000010004", + "intro": "Ekstruderių perjungimo variklio padėties Holo jutiklis yra trumpai sujungtas; patikrinkite, ar Holo jutiklis veikia netinkamai." + }, + { + "ecode": "030026000001000B", + "intro": "Nepavyko nustatyti purkštuko buvimo: kairysis ekstruderių purkštukas neįmontuotas arba įmontuotas netinkamai." + }, + { + "ecode": "030025000001000B", + "intro": "Nepavyko nustatyti purkštuko buvimo: dešinysis ekstruderių purkštukas neįmontuotas arba įmontuotas netinkamai." + }, + { + "ecode": "0C00010000010012", + "intro": "Nepavyko kalibruoti „Live View“ kameros, todėl kalibravimo rezultato nebuvo galima išsaugoti. Prašome pabandyti kalibruoti iš naujo. Jei kalibravimas nuolat nepavyksta, kreipkitės į klientų aptarnavimo komandą." + }, + { + "ecode": "1804700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0707700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0706700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0704700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "1801700000020008", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "0300250000010001", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio dažnis yra per mažas. Galbūt nėra įmontuotas purkštukas arba purkštuko šilumokaitis yra per toli nuo jutiklio." + }, + { + "ecode": "0C00040000010005", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0300260000010004", + "intro": "kairiojo ekstruderio ekstruzijos jėgos jutiklio signalas yra nenormalus. Jutiklis gali būti sugadintas arba gali būti sutrikęs ryšys su MC-TH." + }, + { + "ecode": "0300280000010007", + "intro": "Nesėkmingas ryšys tarp pjovimo modulio ir įrankio galvutės modulio. Patikrinkite, ar pjovimo modulio signalinis kabelis nėra atsijungęs arba sugadintas. Taip pat priežastis gali būti sugadinta jėgos jutiklio ritė." + }, + { + "ecode": "0300270000010004", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio signalas yra nenormalus. Jutiklis gali būti sugadintas arba laidai gali būti netinkamai prijungti." + }, + { + "ecode": "0C00020000020006", + "intro": "Atrodo, kad purkštuko aukštis yra per didelis. Patikrinkite, ar prie purkštuko nėra likusių Gijos likučių." + }, + { + "ecode": "0702800000010004", + "intro": "AMS C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FE800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "0702810000010004", + "intro": "AMS C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "07FF810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0701800000010004", + "intro": "AMS B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FF810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "0704800000010004", + "intro": "AMS E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1803810000010004", + "intro": "AMS-HT D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1800550000010004", + "intro": "AMS-HT A ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1803550000010004", + "intro": "AMS-HT D ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0706550000010004", + "intro": "AMS G ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0707810000010004", + "intro": "AMS H Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1805810000010004", + "intro": "AMS-HT F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1804810000010004", + "intro": "AMS-HT E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1801800000010004", + "intro": "AMS-HT B Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0705810000010004", + "intro": "AMS F Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1800510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0705700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1803700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800800000010004", + "intro": "AMS-HT A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802810000010004", + "intro": "AMS-HT C Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0704810000010004", + "intro": "AMS E Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1807800000010004", + "intro": "AMS-HT H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1802800000010004", + "intro": "AMS-HT C Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1804800000010004", + "intro": "AMS-HT E Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0707800000010004", + "intro": "AMS H Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1807810000010004", + "intro": "AMS-HT H Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "0706810000010004", + "intro": "AMS G Šildytuvas 2 šildo neįprastai." + }, + { + "ecode": "1806810000010004", + "intro": "AMS-HT G Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "1806800000010004", + "intro": "AMS-HT G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706800000010004", + "intro": "AMS G Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1800700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "1800400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "18FE800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "1802700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0707700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "1805700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FF800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "1806700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FE810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "1807700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0704700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "18FF800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1801700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "18FE810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "18FF810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "18FF810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0500040000020050", + "intro": "Lazerinio saugos langelis nėra įmontuotas." + }, + { + "ecode": "0300910000010002", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad šildytuve yra atvira grandinė arba perdegė terminis saugiklis." + }, + { + "ecode": "0700400000020002", + "intro": "Gijos buferio padėties signalo klaida: galbūt gedimas padėties jutiklyje." + }, + { + "ecode": "0700510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0700700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0701700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0702700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "0703700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "07FE810000010003", + "intro": "Ekstruderių perjungimo variklio Hall signalo rodmenys yra nenormalūs; tai galėjo įvykti dėl vidinio ryšio sutrikimo įrankio galvutės modulyje." + }, + { + "ecode": "0700800000010004", + "intro": "AMS A Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "07FE810000010002", + "intro": "Ekstruderių perjungimo variklio padėties jutiklio grandinė yra atvira. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0300C30000010001", + "intro": "„Active Chamber Exhaust“ srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0700810000010004", + "intro": "AMS A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "07FF800000010003", + "intro": "Įrankio galvutės kėlimo variklio Hall signalo rodmenys yra nenormalūs; tai galbūt lemia vidinis ryšio sutrikimas įrankio galvutės modulyje." + }, + { + "ecode": "0703810000010004", + "intro": "AMS D Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0701810000010004", + "intro": "AMS B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300950000010006", + "intro": "Lazerinis modulis neaptiktas: modulis galėjo nukristi arba greito atsegimo svirtis gali būti neužfiksuota." + }, + { + "ecode": "07FE800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1800810000010004", + "intro": "AMS-HT A Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0705800000010004", + "intro": "AMS F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1805800000010004", + "intro": "AMS-HT F Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0701550000010004", + "intro": "AMS B ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0707550000010004", + "intro": "AMS H ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0704550000010004", + "intro": "AMS E ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS Setup programą." + }, + { + "ecode": "0705550000010004", + "intro": "AMS F ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1802550000010004", + "intro": "AMS-HT C ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1804550000010004", + "intro": "AMS-HT E ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0702550000010004", + "intro": "AMS C ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1805550000010004", + "intro": "AMS-HT F ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "0703550000010004", + "intro": "AMS D ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1801550000010004", + "intro": "AMS-HT B ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "1806550000010004", + "intro": "AMS-HT G ir ekstruderių sujungimas yra netinkamas. Prašome paleisti „AMS Setup“ programą." + }, + { + "ecode": "1807550000010004", + "intro": "AMS-HT H ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0700550000010004", + "intro": "AMS A ir ekstruderių sujungimas yra netinkamas. Prašome paleisti AMS nustatymo programą." + }, + { + "ecode": "0C00030000020017", + "intro": "Nepavyko atlikti lazerinio graviravimo Z ašies fokusavimo kalibravimo. Patikrinkite, ar lazerio bandymo medžiaga (350 g kartonas) yra tinkamai padėta, o jos paviršius – švarus ir nesugadintas." + }, + { + "ecode": "1803800000010004", + "intro": "AMS-HT D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "0706700000020007", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą ir tęskite." + }, + { + "ecode": "18FE800000010002", + "intro": "„Toolhead Lifting Motor“ padėties Hall jutiklio grandinė yra atvira; patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1804700000020007", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS lizdą ir tęskite spausdinimą." + }, + { + "ecode": "0300970000030001", + "intro": "Viršutinis dangtis yra atidarytas." + }, + { + "ecode": "0703800000010004", + "intro": "AMS D Šildytuvas 1 šildo netinkamai." + }, + { + "ecode": "1801810000010004", + "intro": "AMS-HT B Šildytuvas 2 šildo netinkamai." + }, + { + "ecode": "0300A40000010002", + "intro": "Dešiniojo Kaitinimo galvutės temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010004", + "intro": "Kameros temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010003", + "intro": "Kairiojo spausdinimo galvutės temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "0300A40000010001", + "intro": "Šildomojo pagrindo temperatūra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "1803010000010005", + "intro": "AMS-HT D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1805010000010005", + "intro": "AMS-HT F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1802010000010005", + "intro": "AMS-HT C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0705010000010005", + "intro": "AMS F Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1801010000010005", + "intro": "AMS-HT B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0706010000010005", + "intro": "AMS G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1806010000010005", + "intro": "AMS-HT G Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0707010000010005", + "intro": "AMS H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800240000020009", + "intro": "AMS-HT: Atidarytas priekinis dangtelis. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1807240000020009", + "intro": "AMS-HT H priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti drėgmės įsigerimą į giją." + }, + { + "ecode": "1801240000020009", + "intro": "AMS-HT B priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1806240000020009", + "intro": "AMS-HT G priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1802240000020009", + "intro": "AMS-HT C priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1805240000020009", + "intro": "AMS-HT F priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba sukelti, kad gija sugertų drėgmę." + }, + { + "ecode": "1804240000020009", + "intro": "AMS-HT E priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "1803240000020009", + "intro": "AMS-HT D priekinis dangtelis yra atidarytas. Tai gali turėti įtakos džiovinimo efektyvumui arba dėl to gija gali sugerti drėgmę." + }, + { + "ecode": "0707730000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706700000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701710000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704700000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020005", + "intro": "Nepavyko įtraukti AMS E 3-iojo lizdo gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702710000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803720000020002", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805730000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806710000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704730000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0702720000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1805710000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804720000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800720000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020005", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701700000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702720000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705730000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704720000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802730000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704720000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703700000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801730000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700720000020002", + "intro": "Nepavyko įtraukti AMS A 3-iojo lizdo gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020001", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705700000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804710000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020005", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807700000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020002", + "intro": "Nepavyko įtraukti AMS-HT H 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802730000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700710000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1801700000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700710000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos į pjovimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801710000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803730000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705710000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807710000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702710000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1805720000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0704700000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1801700000020002", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801730000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020005", + "intro": "Nepavyko įtraukti AMS-HT D 3-iojo lizdo gijų. Prašome nupjauti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800700000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705700000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802710000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804730000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020005", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707700000020004", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805700000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0707720000020002", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700720000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801710000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806730000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703710000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706720000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801730000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800710000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802710000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805720000020002", + "intro": "Nepavyko įtraukti AMS-HT F 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806720000020005", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų. Prašome nukirpti gijų galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706720000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020002", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807720000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807710000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804700000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1803710000020002", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803720000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805730000020005", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1803700000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805700000020002", + "intro": "Nepavyko įtraukti AMS-HT F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701710000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707730000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807720000020004", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701720000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "1801720000020001", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020002", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704730000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1801720000020004", + "intro": "Nepavyko ištraukti AMS-HT B lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802700000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703710000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706730000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1806700000020004", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700700000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800720000020002", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800720000020005", + "intro": "Nepavyko įtraukti AMS-HT A 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706700000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1800700000020002", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700720000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707720000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802710000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0706720000020005", + "intro": "Nepavyko įtraukti AMS G 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702720000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0704710000020005", + "intro": "Nepavyko įtraukti AMS E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1806720000020002", + "intro": "Nepavyko įtraukti AMS-HT G 3-iojo lizdo gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1807700000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1804730000020004", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1807730000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijų. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705730000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704720000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020005", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0704710000020004", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803700000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0706710000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0707700000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807700000020005", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020005", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805720000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 3 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0701730000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700710000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803730000020005", + "intro": "Nepavyko įtraukti AMS-HT D lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804700000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703700000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 1 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0701710000020001", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020002", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706700000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705700000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020005", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 1 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700010000010005", + "intro": "AMS A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0702010000010005", + "intro": "AMS C Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701010000010005", + "intro": "AMS B Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0703010000010005", + "intro": "AMS D Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1800010000010005", + "intro": "AMS-HT A Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1804010000010005", + "intro": "AMS-HT E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "1807010000010005", + "intro": "AMS-HT H Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0704010000010005", + "intro": "AMS E Gali būti sugedęs pagalbinio variklio srovės jutiklis." + }, + { + "ecode": "0701710000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020001", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707700000020005", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0701730000020004", + "intro": "Nepavyko ištraukti AMS B lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020001", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707720000020005", + "intro": "Nepavyko įtraukti AMS H 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1802700000020005", + "intro": "Nepavyko įtraukti AMS-HT C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0703720000020004", + "intro": "Nepavyko ištraukti AMS D lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801720000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 3 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804710000020002", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijų į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700730000020005", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1804730000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 4 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1800730000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0705720000020001", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1804730000020001", + "intro": "Nepavyko ištraukti AMS-HT E lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0700730000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1802720000020001", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1806710000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0703730000020005", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 4 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1803710000020004", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703730000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1803720000020001", + "intro": "Nepavyko ištraukti AMS-HT D lizdo Nr. 3 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0700700000020001", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1802700000020004", + "intro": "Nepavyko ištraukti AMS-HT C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0706710000020002", + "intro": "Nepavyko įtraukti AMS G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804710000020005", + "intro": "Nepavyko įtraukti AMS-HT E lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0705730000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0700710000020004", + "intro": "Nepavyko ištraukti AMS A lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1805710000020001", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1807730000020002", + "intro": "Nepavyko įtraukti AMS-HT H lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1804720000020005", + "intro": "Nepavyko įtraukti AMS-HT E 3-iojo lizdo gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "1805710000020004", + "intro": "Nepavyko ištraukti AMS-HT F lizdo Nr. 2 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0707710000020002", + "intro": "Nepavyko įtraukti AMS H lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705720000020004", + "intro": "Nepavyko ištraukti AMS F lizdo Nr. 3 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020005", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0700730000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 4 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1800730000020004", + "intro": "Nepavyko ištraukti AMS-HT A lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701700000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702700000020002", + "intro": "Nepavyko įtraukti AMS C lizdo Nr. 1 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806730000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0702700000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "1800710000020005", + "intro": "Nepavyko įtraukti AMS-HT A lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0702700000020004", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 1 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0701730000020002", + "intro": "Nepavyko įtraukti AMS B lizdo Nr. 4 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0705710000020005", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos. Prašome nupjauti gijos galą ir patikrinti, ar ritė nėra užstrigusi." + }, + { + "ecode": "0700700000020002", + "intro": "Nepavyko įtraukti AMS A lizdo Nr. 1 gijos į įrankio galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806710000020002", + "intro": "Nepavyko įtraukti AMS-HT G lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1801710000020005", + "intro": "Nepavyko įtraukti AMS-HT B lizdo Nr. 2 gijos. Prašome nukirpti gijos galą ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "0706730000020004", + "intro": "Nepavyko ištraukti AMS G lizdo Nr. 4 gijos iš spausdinimo galvutės. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0703720000020002", + "intro": "Nepavyko įtraukti AMS D lizdo Nr. 3 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1802720000020002", + "intro": "Nepavyko įtraukti AMS-HT C 3-iojo lizdo gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "0702730000020001", + "intro": "Nepavyko ištraukti AMS C lizdo Nr. 4 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0705710000020002", + "intro": "Nepavyko įtraukti AMS F lizdo Nr. 2 gijos į spausdinimo galvutę. Galima priežastis: užstrigo gija arba ritė." + }, + { + "ecode": "1806700000020001", + "intro": "Nepavyko ištraukti AMS-HT G lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0707730000020001", + "intro": "Nepavyko ištraukti AMS H lizdo Nr. 4 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "1807710000020001", + "intro": "Nepavyko ištraukti AMS-HT H lizdo Nr. 2 gijos iš ekstruderių. Galima priežastis: užsikimšęs ekstruderius arba ekstruderiuje nutrūkusi gija." + }, + { + "ecode": "0704700000020001", + "intro": "Nepavyko ištraukti AMS E lizdo Nr. 1 gijos iš ekstruderio. Galima priežastis: užsikimšęs ekstruderis arba ekstruderio viduje nutrūkusi gija." + }, + { + "ecode": "0C0001000003000C", + "intro": "„Nozzle Camera“ temperatūra yra per aukšta, todėl dirbtinio intelekto atpažinimo funkcija sustabdyta. Funkcija automatiškai vėl pradės veikti, kai temperatūra normalizuosis." + }, + { + "ecode": "0C00030000020016", + "intro": "Svetimų objektų aptikimo funkcija neveikia, o „Live View“ kameros serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "0300950000010008", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0500030000010021", + "intro": "Įranga nesuderinama; patikrinkite „Toolhead“ kamerą." + }, + { + "ecode": "0C00010000020008", + "intro": "Nepavyko gauti vaizdo iš „Live View“ kameros. Šiuo metu negalima naudotis spagečių ir šiukšlių šachtos užsikimšimo aptikimo funkcija." + }, + { + "ecode": "0C00040000010012", + "intro": "„Live View“ kameros duomenų perdavimo ryšys yra sutrikęs." + }, + { + "ecode": "0300950000010001", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti trumpai sujungtas." + }, + { + "ecode": "0C00040000020003", + "intro": "Lazerinė platforma nėra tinkamai išlyginta. Prašome įsitikinti, kad visi keturi kampai būtų išlyginti su šildomuoju pagrindu." + }, + { + "ecode": "0300950000010005", + "intro": "Lazerinio modulio ryšys sutrikęs; patikrinkite jungtį." + }, + { + "ecode": "0500060000020004", + "intro": "„Live View“ kamera nėra įdėta; patikrinkite, ar įranga yra tinkamai prijungta." + }, + { + "ecode": "0C00040000020002", + "intro": "Nepastebėta pjovimo platforma. Prašome uždėti užduočiai reikalingą pjovimo kilimėlį ir tęsti." + }, + { + "ecode": "0300950000010003", + "intro": "Lazerinio modulio perkaitimas" + }, + { + "ecode": "0300950000010004", + "intro": "Lazerinio modulio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0500060000020033", + "intro": "„BirdsEye“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0300950000010002", + "intro": "Lazerinio modulio temperatūros jutiklis gali būti atjungtas." + }, + { + "ecode": "0C00030000020012", + "intro": "Svetimų objektų aptikimo funkcija neveikia. „Live View“ kamera turi būti kalibruota. Spauskite spausdintuvo ekrane „Nustatymai > Kalibravimas“. Jei įdiegtas lazerinis arba pjovimo modulis, prieš kalibravimą jį išimkite." + }, + { + "ecode": "0500040000020031", + "intro": "Prieš pradedant naudoti lazerio/pjaustymo modulį, reikia nustatyti „BirdsEye“ kameros padėtį. Atlikite nustatymus, kad kalibruotumėte kamerą." + }, + { + "ecode": "07FF800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "18FF800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "1800200000020007", + "intro": "AMS-HT: A lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0703210000020007", + "intro": "AMS D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701210000020007", + "intro": "AMS B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0703200000020007", + "intro": "AMS D lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702200000020007", + "intro": "AMS C lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701200000020007", + "intro": "AMS B lizdo Nr. 1 išvedimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703230000020007", + "intro": "AMS D lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700220000020007", + "intro": "AMS: A lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "0300990000010004", + "intro": "Nerastas reikiamas lazerio saugos langelis. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0300960000010004", + "intro": "Priekinis lazerio apsauginis langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0C00040000020019", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, prašome kreiptis į „Wiki“." + }, + { + "ecode": "0300980000010004", + "intro": "Kairysis lazerio saugos langelis neaptiktas. Įdiekite jį pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "1804210000020007", + "intro": "AMS-HT E lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706230000020007", + "intro": "AMS G lizdo Nr. 4 išvesties Hall jutiklis yra atjungtas. Gali būti, kad jungtis blogai prisiliečia." + }, + { + "ecode": "1802230000020007", + "intro": "AMS-HT C lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800220000020007", + "intro": "AMS-HT: 3-iojo lizdo išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707200000020007", + "intro": "AMS H lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807230000020007", + "intro": "AMS-HT H lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704210000020007", + "intro": "AMS E lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0707220000020007", + "intro": "AMS H lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802220000020007", + "intro": "AMS-HT C lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707210000020007", + "intro": "AMS H lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803200000020007", + "intro": "AMS-HT D lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806200000020007", + "intro": "AMS-HT G lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705230000020007", + "intro": "AMS F lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1805220000020007", + "intro": "AMS-HT F lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802210000020007", + "intro": "AMS-HT C lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803220000020007", + "intro": "AMS-HT D lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704220000020007", + "intro": "AMS E lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706210000020007", + "intro": "AMS G lizdo Nr. 2 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1800550000020001", + "intro": "Aptiktas naujas AMS-HT. Prašome jį sukonfigūruoti, kad būtų galima patikrinti, prie kurio ekstruderių yra prijungtas AMS-HT." + }, + { + "ecode": "03009E0000030001", + "intro": "Šio spausdinimo užduoties „Atvirų durų aptikimo“ lygis bus nustatytas kaip „Pranešimas“." + }, + { + "ecode": "1807200000020007", + "intro": "AMS-HT H lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807220000020007", + "intro": "AMS-HT H lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800230000020007", + "intro": "AMS-HT: lizdo Nr. 4 išvestinis „Hall“ jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806230000020007", + "intro": "AMS-HT G lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801220000020007", + "intro": "AMS-HT B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0707230000020007", + "intro": "AMS H lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1801200000020007", + "intro": "AMS-HT B lizdo Nr. 1 išvedimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1807210000020007", + "intro": "AMS-HT H lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1803210000020007", + "intro": "AMS-HT D lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706220000020007", + "intro": "AMS G 3-iojo lizdo išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804200000020007", + "intro": "AMS-HT E lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805210000020007", + "intro": "AMS-HT F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "1804220000020007", + "intro": "AMS-HT E lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009D0000020001", + "intro": "Nepavyko atlikti graviravimo lazerio židinio taško XY kalibravimo. Prašome nuvalyti lazerio platformos lazerio grįžimo į pradinę padėtį zoną ir pakartotinai atlikti lazerio modulio tvirtinimo kalibravimą." + }, + { + "ecode": "0702210000020007", + "intro": "AMS C lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700230000020007", + "intro": "AMS: A lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701230000020007", + "intro": "AMS B lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0300970000010004", + "intro": "Viršutinė lazerio apsauginė plokštė neaptikta. Įdiekite ją pagal „Wiki“ nurodymus ir iš naujo paleiskite užduotį." + }, + { + "ecode": "0704200000020007", + "intro": "AMS E lizdo Nr. 1 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705220000020007", + "intro": "AMS F lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705200000020007", + "intro": "AMS F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0702230000020007", + "intro": "AMS C lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0701220000020007", + "intro": "AMS B lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700550000020001", + "intro": "Aptiktas naujas AMS. Prašome jį sukonfigūruoti, kad būtų galima patikrinti, prie kurio ekstruderių yra prijungtas AMS." + }, + { + "ecode": "0702220000020007", + "intro": "AMS C lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis prastai prisiliečia." + }, + { + "ecode": "0703220000020007", + "intro": "AMS D lizdo Nr. 3 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700210000020007", + "intro": "AMS: A lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0700200000020007", + "intro": "AMS: lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1804230000020007", + "intro": "AMS-HT E lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801210000020007", + "intro": "AMS-HT B lizdo Nr. 2 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805230000020007", + "intro": "AMS-HT F lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0704230000020007", + "intro": "AMS E lizdo Nr. 4 išėjimo Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806220000020007", + "intro": "AMS-HT G lizdo Nr. 3 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1800210000020007", + "intro": "AMS-HT: lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1805200000020007", + "intro": "AMS-HT F lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1806210000020007", + "intro": "AMS-HT G lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0705210000020007", + "intro": "AMS F lizdo Nr. 2 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1801230000020007", + "intro": "AMS-HT B lizdo Nr. 4 išėjimo Hallo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1803230000020007", + "intro": "AMS-HT D lizdo Nr. 4 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "1802200000020007", + "intro": "AMS-HT C lizdo Nr. 1 išvesties Holo jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "0706200000020007", + "intro": "AMS G lizdo Nr. 1 išvesties Hall jutiklis yra atjungtas. Galbūt jungtis blogai prisiliečia." + }, + { + "ecode": "03009B0000010002", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009B0000010001", + "intro": "Avarinio stabdymo mygtukas nėra įdiegtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "03009D0000020002", + "intro": "Graviravimo lazerio židinio taško XY kalibravimo rezultatas žymiai skiriasi nuo projektinių verčių. Prašome iš naujo įdiegti lazerio modulį ir pakartotinai atlikti lazerio modulio nustatymus." + }, + { + "ecode": "0C00010000010011", + "intro": "Nepavyko kalibruoti „Live View“ kameros, prašome kalibruoti iš naujo. Įsitikinkite, kad spausdinimo plokštė yra tuščia, o kameros vaizdas – aiškus ir tinkamai orientuotas. Jei gedimai kartojasi, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0500040000010052", + "intro": "Saugos raktas neįdėtas. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0500040000010051", + "intro": "Avarinio sustabdymo mygtukas nėra tinkamoje padėtyje. Norėdami jį įdiegti, vadovaukitės „Wiki“ instrukcijomis." + }, + { + "ecode": "0300090000010001", + "intro": "Ekstruderiui skirto servovariklio grandinė yra atvira. Galbūt jungtis yra laisva arba variklis sugedo." + }, + { + "ecode": "0300090000010002", + "intro": "Ekstruderiui skirtas servovariklis yra trumpai sujungęs. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300090000010003", + "intro": "Ekstruderių servovariklio varža neatitinka normos; galbūt variklis sugedo." + }, + { + "ecode": "0300160000010001", + "intro": "Ekstruderių servovariklio srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300410000010001", + "intro": "Sistemos įtampa yra nestabili. Įjungiama apsaugos nuo elektros tiekimo sutrikimų funkcija." + }, + { + "ecode": "1803240000010007", + "intro": "AMS-HT D durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1806240000010007", + "intro": "AMS-HT G durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1801240000010007", + "intro": "AMS-HT B durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1805240000010007", + "intro": "AMS-HT F durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1802240000010007", + "intro": "AMS-HT C durų jutiklio veikimas yra nenormalus – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1804240000010007", + "intro": "AMS-HT E durų aptikimas veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1807240000010007", + "intro": "AMS-HT H durų aptikimo funkcija veikia netinkamai – galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "1800240000010007", + "intro": "AMS-HT: nustatyta durų aptikimo anomalija; galbūt Hall jutiklio jungtis yra laisva arba atjungta." + }, + { + "ecode": "07FF700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš tinkamo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite ekstruzuoti dar kartą." + }, + { + "ecode": "07FE700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš kairiojo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl ekstruzuoti." + }, + { + "ecode": "18FF700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš tinkamo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite ekstruzuoti dar kartą." + }, + { + "ecode": "18FE700000020003", + "intro": "Prašome patikrinti, ar medžiaga išeina iš kairiojo purkštuko. Jei ne, švelniai pastumkite medžiagą ir pabandykite vėl ekstruzuoti." + }, + { + "ecode": "0300D00000010002", + "intro": "Peilio laikiklis nukrito; prašome jį vėl pritvirtinti." + }, + { + "ecode": "07FE600000020001", + "intro": "Išorinė ritė, prijungta prie kairiojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "07FF600000020001", + "intro": "Išorinė ritė, prijungta prie dešiniojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0300D00000010001", + "intro": "Nukrito pjovimo modulio pagrindas; prašome jį vėl pritvirtinti." + }, + { + "ecode": "0300280000010005", + "intro": "Pjovimo režimu nepavyko atlikti Z ašies grįžimo į pradinę padėtį. Patikrinkite, ar Z ašies slankiklyje ir Z ašies sinchroniniame skriemulyje nėra svetimkūnių." + }, + { + "ecode": "18FF600000020001", + "intro": "Išorinė ritė, prijungta prie dešiniojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "18FE600000020001", + "intro": "Išorinė ritė, prijungta prie kairiojo ekstruderio, gali būti susipynusi arba užstrigusi." + }, + { + "ecode": "0300280000010008", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties. Patikrinkite, ar peilio laikiklis juda sklandžiai, ir įsitikinkite, kad šildomojo pagrindo kontaktinėje vietoje nėra jokių svetimkūnių." + }, + { + "ecode": "0500030000020020", + "intro": "USB atmintinės talpa yra per maža, kad būtų galima išsaugoti spausdinimo failus tarpinėje atmintyje." + }, + { + "ecode": "1802010000020006", + "intro": "AMS-HT C Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806010000020006", + "intro": "AMS-HT G Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704010000020006", + "intro": "AMS E: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1800010000020006", + "intro": "AMS-HT A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805010000020006", + "intro": "AMS-HT F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0702010000020006", + "intro": "AMS C: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0703010000020006", + "intro": "AMS D: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0705010000020006", + "intro": "AMS F Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701010000020006", + "intro": "AMS B: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0700010000020006", + "intro": "AMS A Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801010000020006", + "intro": "AMS-HT B Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807010000020006", + "intro": "AMS-HT H Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804010000020006", + "intro": "AMS-HT E Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803010000020006", + "intro": "AMS-HT D Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706010000020006", + "intro": "AMS G: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707010000020006", + "intro": "AMS H: Trifazės pagalbinio variklio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020036", + "intro": "Prijungtas naujas pjovimo modulis. Kad pjovimas būtų tikslesnis, prieš naudojimą jį reikia sukonfigūruoti (trunka apie 3 minutes)." + }, + { + "ecode": "0500040000020035", + "intro": "Norint nustatyti fokusavimo padėtį, reikia kalibruoti lazerinį modulį. Prieš naudojimą atlikite montavimo kalibravimą. (trunka apie 2 minutes)" + }, + { + "ecode": "0300C30000010002", + "intro": "Filtro perjungimo sklendės srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300A10000010001", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad įrenginys atvėstų, arba sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0500010000030005", + "intro": "USB atmintinė veikia tik skaitymo režimu. Vaizdo įrašymo ir „Timelapse“ įrašymo funkcijos neveikia. Pagalbos ieškokite „Wiki“ puslapyje." + }, + { + "ecode": "0500040000020038", + "intro": "Įstumkite pjovimo modulį ir užfiksuokite greito atsegimo svirtį. Jei modulis jau buvo įmontuotas, jis gali būti netinkamai išlygintas. Pabandykite jį įmontuoti iš naujo." + }, + { + "ecode": "0300D00000010003", + "intro": "Atsijungė pjovimo modulio kabelis; patikrinkite kabelio jungtį." + }, + { + "ecode": "0500010000020002", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "0500060000020034", + "intro": "„Live View“ kamera nėra prijungta. Patikrinkite įrangą ir kabelių jungtis." + }, + { + "ecode": "18FE800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "1805200000020009", + "intro": "Nepavyko išspausti AMS-HT F lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803200000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805210000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804210000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804220000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "180620000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070522000002000A", + "intro": "Nepavyko sureguliuoti AMS F 3-iojo lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180022000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 3 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180722000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180421000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180422000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "07FF800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "07FE800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "07FE800000020002", + "intro": "Spausdinimo metu kairiojo Kaitinimo galvutės padėtis yra nenormali. Patikrinkite, ar srauto ribotuvas nebraižo spausdinamo modelio." + }, + { + "ecode": "1803210000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 2 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806230000020009", + "intro": "Nepavyko išspausti „AMS-HT G lizdo Nr. 4“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "1800220000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807230000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802200000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801210000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807210000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800210000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802210000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 2 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806220000020009", + "intro": "Nepavyko išspausti „AMS-HT G lizdo Nr. 3“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806200000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804230000020009", + "intro": "Nepavyko išspausti „AMS-HT E lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801220000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802220000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803230000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807200000020009", + "intro": "Nepavyko išspausti AMS-HT H lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800230000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806210000020009", + "intro": "Nepavyko išspausti AMS-HT G lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805220000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807220000020009", + "intro": "Nepavyko išspausti „AMS-HT H lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803220000020009", + "intro": "Nepavyko išspausti AMS-HT D lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1805230000020009", + "intro": "Nepavyko išspausti „AMS-HT F lizdo Nr. 4“ gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804200000020009", + "intro": "Nepavyko išspausti AMS-HT E lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801200000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1800200000020009", + "intro": "Nepavyko išspausti AMS-HT A lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1802230000020009", + "intro": "Nepavyko išspausti AMS-HT C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801230000020009", + "intro": "Nepavyko išspausti AMS-HT B lizdo Nr. 4 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FF800000020001", + "intro": "Per ekstruderių perjungimą kėlimo veiksmas vyksta netinkamai. Patikrinkite, ar neužstrigo srauto ribotuvas arba ar į spausdinimo galvutę neįstrigo gijos medžiaga." + }, + { + "ecode": "070723000002000A", + "intro": "Nepavyko sureguliuoti AMS H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180222000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070223000002000A", + "intro": "Nepavyko sureguliuoti AMS C 4-osios lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180522000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F 3-iojo lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070722000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070023000002000A", + "intro": "Nepavyko sureguliuoti AMS A 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180020000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180120000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180322000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 3 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180321000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180720000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070122000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070123000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070620000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 1 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070321000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070623000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180023000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180521000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180122000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070221000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070323000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070422000002000A", + "intro": "Nepavyko sureguliuoti AMS E 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070420000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070121000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070721000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070523000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180420000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180123000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070622000002000A", + "intro": "Nepavyko sureguliuoti AMS G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180323000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070322000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070220000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070320000002000A", + "intro": "Nepavyko sureguliuoti AMS D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180721000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070521000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180520000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070120000002000A", + "intro": "Nepavyko sureguliuoti AMS B lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180623000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070720000002000A", + "intro": "Nepavyko sureguliuoti AMS H lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180223000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C 4-osios lizdo gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070520000002000A", + "intro": "Nepavyko sureguliuoti AMS F lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180320000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT D lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070421000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180220000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 1 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180621000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180523000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT F lizdo Nr. 4 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070621000002000A", + "intro": "Nepavyko sureguliuoti AMS G lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070020000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 1 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070222000002000A", + "intro": "Nepavyko sureguliuoti AMS C lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180021000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT A lizdo Nr. 2 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070423000002000A", + "intro": "Nepavyko sureguliuoti AMS E lizdo Nr. 4 gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "070022000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 3 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0C0003000002000E", + "intro": "Atrodo, kad jūsų purkštukas yra užsikimšęs arba užsikimšęs medžiaga." + }, + { + "ecode": "180221000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT C lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "070021000002000A", + "intro": "Nepavyko sureguliuoti AMS A lizdo Nr. 2 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180622000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT G 3-iojo lizdo gijų padėties. Gali būti, kad gija arba buferis įstrigo." + }, + { + "ecode": "180423000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT E lizdo Nr. 4 gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180723000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT H 4-osios lizdo gijų padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "180121000002000A", + "intro": "Nepavyko sureguliuoti AMS-HT B lizdo Nr. 2 gijos padėties. Gija arba buferis gali būti įstrigę." + }, + { + "ecode": "0703200000030001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800220000020001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000030001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705200000030001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020005", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "18FE810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1803200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT D lizdo Nr. 1 gija." + }, + { + "ecode": "1804130000010001", + "intro": "AMS-HT E lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1805120000010001", + "intro": "AMS-HT F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706210000020008", + "intro": "AMS G lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705200000020002", + "intro": "AMS F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020001", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707100000010001", + "intro": "AMS H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0704200000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1801130000010001", + "intro": "AMS-HT B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802110000020002", + "intro": "AMS-HT C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805200000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705130000010001", + "intro": "AMS F lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806200000020001", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000020008", + "intro": "AMS D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020008", + "intro": "AMS-HT D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 1 gija." + }, + { + "ecode": "0707210000020001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1804210000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 3 gija." + }, + { + "ecode": "1804560000030001", + "intro": "AMS-HT E šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0707220000030001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704120000010003", + "intro": "AMS E lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705120000010003", + "intro": "AMS F lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704100000010003", + "intro": "AMS E lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1806310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF200000020004", + "intro": "Prašome ištraukti išorinį giją iš dešiniojo ekstruderio." + }, + { + "ecode": "0705210000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707220000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701130000010001", + "intro": "AMS B lizdo Nr. 4-asis variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020005", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000010001", + "intro": "AMS C lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020005", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020008", + "intro": "AMS D lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804210000020008", + "intro": "AMS-HT E lizdo Nr. 2 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800130000010001", + "intro": "AMS-HT A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800230000030002", + "intro": "AMS-HT: 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804220000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807100000010003", + "intro": "AMS-HT H lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802220000020001", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0705210000020005", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705220000020002", + "intro": "AMS F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806200000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1807230000020002", + "intro": "AMS-HT H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807210000020002", + "intro": "AMS-HT H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802560000030001", + "intro": "AMS-HT C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1807220000020008", + "intro": "AMS-HT H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020008", + "intro": "AMS-HT F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802220000020005", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000030001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701100000010001", + "intro": "AMS B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701110000010003", + "intro": "AMS B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702220000030001", + "intro": "Baigėsi AMS C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703210000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703220000020001", + "intro": "AMS D lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801220000020001", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030002", + "intro": "AMS-HT F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000030002", + "intro": "AMS F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705210000020008", + "intro": "AMS F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803200000020005", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1805210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 2 gija." + }, + { + "ecode": "0707220000020005", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801120000020002", + "intro": "AMS-HT B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020001", + "intro": "AMS-HT H lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 3 gija." + }, + { + "ecode": "1805550000010003", + "intro": "AMS-HT F buvo aptiktas neprisijungus prie sistemos, vykstant AMS inicijavimo procesui." + }, + { + "ecode": "1800220000030001", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000020001", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803210000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "0707560000030001", + "intro": "AMS H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806550000010003", + "intro": "AMS-HT G buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1801230000030001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000010003", + "intro": "AMS G lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804110000010001", + "intro": "AMS-HT E lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803230000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707230000020008", + "intro": "AMS H lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704130000010001", + "intro": "AMS E lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801200000030002", + "intro": "AMS-HT B 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020008", + "intro": "AMS-HT H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000020008", + "intro": "AMS H lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803120000010003", + "intro": "AMS-HT D lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803130000020002", + "intro": "AMS-HT D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807110000010003", + "intro": "AMS-HT H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 2 gija elementas." + }, + { + "ecode": "0705200000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806100000010003", + "intro": "AMS-HT G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800210000030002", + "intro": "AMS-HT: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703560000030001", + "intro": "AMS D šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT G lizdo Nr. 1 gija yra nutrūkusi." + }, + { + "ecode": "0704210000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "1807200000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1804230000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704110000010001", + "intro": "AMS E lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800210000020004", + "intro": "AMS-HT A: lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0704210000030001", + "intro": "Baigėsi „AMS E lizdo Nr. 2“ gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706130000020002", + "intro": "AMS G lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804210000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "1804550000010003", + "intro": "AMS-HT E buvo aptikta neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1806210000020002", + "intro": "AMS-HT G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805210000020001", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0706110000010001", + "intro": "AMS G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 1 gija." + }, + { + "ecode": "0706130000010001", + "intro": "AMS G lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802210000030002", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807130000020002", + "intro": "AMS-HT H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020008", + "intro": "AMS D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0704200000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1806300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FE200000020002", + "intro": "Kairiajame ekstruderyje neaptikta iš išorinės ritės tiekiamo gijos; įdėkite naują giją." + }, + { + "ecode": "0700100000010003", + "intro": "AMS A lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0701220000020001", + "intro": "AMS B lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020005", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703210000020001", + "intro": "AMS D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703220000020005", + "intro": "Baigėsi AMS D 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000030001", + "intro": "Baigėsi AMS D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000030002", + "intro": "AMS-HT G 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804130000010003", + "intro": "AMS-HT E lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806110000010003", + "intro": "AMS-HT G lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805130000010003", + "intro": "AMS-HT F lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1802110000010001", + "intro": "AMS-HT C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701210000020008", + "intro": "AMS B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801130000020002", + "intro": "AMS-HT B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701200000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0701230000030001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702210000020001", + "intro": "AMS C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702210000030001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703110000010001", + "intro": "AMS D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020001", + "intro": "AMS D lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700200000020008", + "intro": "AMS: „lizdo Nr. 1“ įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701200000020008", + "intro": "AMS B lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707200000030001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000020005", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705210000020001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802100000020002", + "intro": "AMS-HT C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000010001", + "intro": "AMS-HT F lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000030002", + "intro": "AMS H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0705100000020002", + "intro": "AMS F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800210000020008", + "intro": "AMS-HT: lizdo Nr. 2 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020002", + "intro": "AMS H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704130000020002", + "intro": "AMS E lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803230000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1801220000020002", + "intro": "AMS-HT B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802550000010003", + "intro": "AMS-HT C buvo aptikta neprisijungus prie sistemos, vykstant AMS inicijavimo procesui." + }, + { + "ecode": "0704230000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000030001", + "intro": "Baigėsi AMS G lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705210000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1806200000030002", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704220000020001", + "intro": "AMS E 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803120000010001", + "intro": "AMS-HT D lizdo Nr. 3 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1803210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT D lizdo Nr. 2 gija yra nutrūkusi." + }, + { + "ecode": "0706210000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707120000010001", + "intro": "AMS H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801120000010001", + "intro": "AMS-HT B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801210000020002", + "intro": "AMS-HT B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000030002", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800230000020004", + "intro": "AMS-HT A: 4-oje lizdoje esančioje įrankio galvutėje gali būti nutrūkęs gija." + }, + { + "ecode": "1800230000020005", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806130000010003", + "intro": "AMS-HT G lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1802230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT C lizdo Nr. 4 gija." + }, + { + "ecode": "0705200000020001", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1807230000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805560000030001", + "intro": "AMS-HT F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805210000020008", + "intro": "AMS-HT F lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805210000030002", + "intro": "AMS-HT F lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0707200000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0706230000020001", + "intro": "AMS G lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807120000010003", + "intro": "AMS-HT H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1800220000030002", + "intro": "AMS-HT: 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806560000030001", + "intro": "AMS-HT G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0701230000020008", + "intro": "AMS B lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0705310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1806350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1801210000030002", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020005", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1807110000020002", + "intro": "AMS-HT H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707100000010003", + "intro": "AMS H lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0705220000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1806210000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 2 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803200000020001", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1800120000020002", + "intro": "AMS-HT A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802210000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1800220000020002", + "intro": "AMS-HT A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706210000020002", + "intro": "AMS G lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801220000020005", + "intro": "AMS-HT B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800200000020008", + "intro": "AMS-HT: lizdo Nr. 1 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1806220000030002", + "intro": "AMS-HT G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802200000020002", + "intro": "AMS-HT C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706220000020004", + "intro": "Gali būti, kad AMS G 3-iojo lizdo gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020002", + "intro": "AMS G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800110000010003", + "intro": "AMS-HT A lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805230000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804110000010003", + "intro": "AMS-HT E lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806220000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000030002", + "intro": "AMS E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1804200000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1801230000020005", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705200000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "18FF810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "1807350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700110000020002", + "intro": "AMS A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700200000020003", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700200000020004", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000020001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701100000020002", + "intro": "AMS B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701110000020002", + "intro": "AMS B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000030001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702200000020001", + "intro": "AMS C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703200000020001", + "intro": "AMS D lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0703210000030002", + "intro": "AMS D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000030002", + "intro": "AMS D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1801220000030002", + "intro": "AMS-HT B 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1802220000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1804120000010001", + "intro": "AMS-HT E 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806210000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700110000010001", + "intro": "AMS A lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020001", + "intro": "AMS B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702200000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702210000020005", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0703110000010003", + "intro": "AMS D lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801210000020001", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700560000030001", + "intro": "AMS A šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805120000020002", + "intro": "AMS-HT F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806210000030002", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805100000010003", + "intro": "AMS-HT F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707220000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0704120000010001", + "intro": "AMS E lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020001", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "1802130000010001", + "intro": "AMS-HT C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1806230000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000030001", + "intro": "Baigėsi AMS H lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800130000020002", + "intro": "AMS-HT A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803200000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800230000020002", + "intro": "AMS-HT A 4-oji lizda yra tuščia; įdėkite naują giją." + }, + { + "ecode": "1801100000010001", + "intro": "AMS-HT B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807100000020002", + "intro": "AMS-HT H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707200000020002", + "intro": "AMS H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802220000020008", + "intro": "AMS-HT C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801230000020001", + "intro": "AMS-HT B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805230000030002", + "intro": "AMS-HT F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804200000020004", + "intro": "Gali būti, kad AMS-HT E lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802120000020002", + "intro": "AMS-HT C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000020002", + "intro": "AMS F lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805110000010003", + "intro": "AMS-HT F lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030002", + "intro": "AMS-HT H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807210000020008", + "intro": "AMS-HT H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030002", + "intro": "AMS-HT H 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1805310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704230000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706220000020005", + "intro": "Baigėsi AMS G 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant galvutės." + }, + { + "ecode": "1800550000010003", + "intro": "AMS-HT A buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1806110000010001", + "intro": "AMS-HT G lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1802220000030002", + "intro": "AMS-HT C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0707200000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1803230000020001", + "intro": "AMS-HT D lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802100000010003", + "intro": "AMS-HT C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "0705130000020002", + "intro": "AMS F lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803220000030002", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805230000020002", + "intro": "AMS-HT F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 1 gija." + }, + { + "ecode": "1800200000020004", + "intro": "AMS-HT A: galbūt įrankio galvutėje nutrūko lizdo Nr. 1 gija elementas." + }, + { + "ecode": "1803200000020002", + "intro": "AMS-HT D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800120000010003", + "intro": "AMS-HT A lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000010003", + "intro": "AMS E lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804110000020002", + "intro": "AMS-HT E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1805130000020002", + "intro": "AMS-HT F lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804130000020002", + "intro": "AMS-HT E 4-osios lizdo variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800220000020003", + "intro": "AMS-HT A lizdo Nr. 3 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "0706210000020001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Įdėkite naują giją." + }, + { + "ecode": "0705220000020005", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0707220000020008", + "intro": "AMS H lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801210000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 2 gija yra nutrūkusi spausdintuvo galvutėje." + }, + { + "ecode": "1803300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "18FF800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "1802300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1802310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700210000020003", + "intro": "Gali būti, kad AMS A lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0700230000020003", + "intro": "Gali būti, kad AMS A lizdo Nr. 4 gija yra nutrūkęs AMS." + }, + { + "ecode": "0701200000030002", + "intro": "AMS B lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 spausdinimo gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803120000020002", + "intro": "AMS-HT D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801110000010001", + "intro": "AMS-HT B lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706220000020001", + "intro": "AMS G 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "1803230000020002", + "intro": "AMS-HT D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803110000010003", + "intro": "AMS-HT D lizdo Nr. 2 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700100000010001", + "intro": "AMS A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700100000020002", + "intro": "AMS A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0700130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000020002", + "intro": "AMS C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702210000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0702220000030002", + "intro": "AMS C 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1805210000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802200000030002", + "intro": "AMS-HT C 1-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804220000020008", + "intro": "AMS-HT E lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705230000020002", + "intro": "AMS F lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800200000020005", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805220000020002", + "intro": "AMS-HT F lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020008", + "intro": "AMS G lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707220000020001", + "intro": "Baigėsi AMS H lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "0706200000020002", + "intro": "AMS G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702220000020008", + "intro": "AMS C lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807230000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020002", + "intro": "AMS H lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000030002", + "intro": "AMS H 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0705100000010003", + "intro": "AMS F lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803210000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805210000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 2 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800210000020001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803210000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020002", + "intro": "AMS E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802130000010003", + "intro": "AMS-HT C lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804210000030002", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800200000030002", + "intro": "AMS-HT: 1-oje lizdoje baigėsi gijos medžiaga, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gijos medžiaga." + }, + { + "ecode": "0705220000030002", + "intro": "AMS F 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1802210000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020008", + "intro": "AMS-HT G lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805220000020001", + "intro": "AMS-HT F lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802200000020001", + "intro": "AMS-HT C lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FE800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0705230000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0707310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0705110000010001", + "intro": "AMS F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807210000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1803220000020001", + "intro": "AMS-HT D 3-ioje lizdoje baigėsi gija. Įdėkite naują giją." + }, + { + "ecode": "0707210000020008", + "intro": "AMS H lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000030001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800120000010001", + "intro": "AMS-HT A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020008", + "intro": "AMS-HT B lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707120000020002", + "intro": "AMS H lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705110000010003", + "intro": "AMS F lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807110000010001", + "intro": "AMS-HT H lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1801560000030001", + "intro": "AMS-HT B šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706200000030001", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807210000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804200000020001", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000030002", + "intro": "AMS-HT E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706220000030001", + "intro": "Baigėsi AMS G 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ spausdinimo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0706230000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1804300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706210000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700200000020001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700210000030002", + "intro": "AMS: lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701110000010001", + "intro": "AMS B lizdo Nr. 2-ojo variklio sukimasis sutriko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0701120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702230000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0704100000020002", + "intro": "AMS E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807200000020001", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704560000030001", + "intro": "AMS E šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804230000030002", + "intro": "AMS-HT E 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803110000020002", + "intro": "AMS-HT D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701200000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0703100000010003", + "intro": "AMS D lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703230000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705230000020004", + "intro": "Gali būti, kad AMS F lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1800220000020008", + "intro": "AMS-HT: 3-iojo lizdo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707130000010003", + "intro": "AMS H lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1806200000020002", + "intro": "AMS-HT G lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707220000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 3 spuldzė yra sulūžusi AMS." + }, + { + "ecode": "0706100000020002", + "intro": "AMS G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704210000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706220000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "0705220000030001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707210000030001", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806230000020003", + "intro": "Gali būti, kad „AMS-HT G lizdo Nr. 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1806230000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804100000010003", + "intro": "AMS-HT E lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703230000020008", + "intro": "AMS D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805200000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1802220000030001", + "intro": "Baigėsi AMS-HT C 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020002", + "intro": "AMS-HT E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806220000020008", + "intro": "AMS-HT G lizdo Nr. 3 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704120000020002", + "intro": "AMS E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705120000010001", + "intro": "AMS F lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800100000010003", + "intro": "AMS-HT A lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801200000020001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801230000020008", + "intro": "AMS-HT B lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804220000030002", + "intro": "AMS-HT E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0706110000010003", + "intro": "AMS G lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707120000010003", + "intro": "AMS H lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807200000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020008", + "intro": "AMS-HT G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705100000010001", + "intro": "AMS F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804230000020002", + "intro": "AMS-HT E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "18FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "0707300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1800300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800220000020005", + "intro": "AMS-HT A 3-ioje lizdoje baigėsi gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0707130000020002", + "intro": "AMS H lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804200000020002", + "intro": "AMS-HT E lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700210000020008", + "intro": "AMS A lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020005", + "intro": "Baigėsi AMS-HT G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020008", + "intro": "AMS-HT C lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801110000020002", + "intro": "AMS-HT B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B lizdo Nr. 4 gija." + }, + { + "ecode": "1803220000030001", + "intro": "Baigėsi AMS-HT D 3-iojo lizdo gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1807560000030001", + "intro": "AMS-HT H šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0706110000020002", + "intro": "AMS G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0706230000020005", + "intro": "Baigėsi AMS G lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0705130000010003", + "intro": "AMS F lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804220000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801200000020002", + "intro": "AMS-HT B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801110000010003", + "intro": "AMS-HT B lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 4“ gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706200000020001", + "intro": "AMS G lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803200000030001", + "intro": "Baigėsi AMS-HT D lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706120000010001", + "intro": "AMS G lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806230000020001", + "intro": "AMS-HT G lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1802230000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0706230000030002", + "intro": "AMS G lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FF200000020001", + "intro": "Išsekė dešiniojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "1803310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1805300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1802310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700220000020005", + "intro": "AMS A 3-iojo lizdo gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020001", + "intro": "AMS B lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000030002", + "intro": "AMS C lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020001", + "intro": "AMS C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702230000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0703100000010001", + "intro": "AMS D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000030002", + "intro": "AMS D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0703230000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "0703230000020005", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802220000020002", + "intro": "AMS-HT C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803100000020002", + "intro": "AMS-HT D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1803210000020001", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000020005", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0701210000030002", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701230000020001", + "intro": "AMS B lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701230000020005", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0703200000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702200000020008", + "intro": "AMS C lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707130000010001", + "intro": "AMS H lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807200000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704220000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0704210000020002", + "intro": "AMS E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805200000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801100000010003", + "intro": "AMS-HT B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706200000030002", + "intro": "AMS G lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0704130000010003", + "intro": "AMS E lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706560000030001", + "intro": "AMS G šiuo metu aušinamas sausuoju būdu; prieš pradedant jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806120000010003", + "intro": "AMS-HT G lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705230000020005", + "intro": "Baigėsi AMS F lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0706120000010003", + "intro": "AMS G lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000030002", + "intro": "AMS-HT B 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807220000020002", + "intro": "AMS-HT H lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707210000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 kaitinamoji gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "1802230000020002", + "intro": "AMS-HT C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806120000010001", + "intro": "AMS-HT G 3-iojo lizdo variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704230000020008", + "intro": "AMS E lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805120000010003", + "intro": "AMS-HT F lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805220000020008", + "intro": "AMS-HT F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800100000010001", + "intro": "AMS-HT A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705230000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 4 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0707110000010003", + "intro": "AMS H lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705210000020002", + "intro": "AMS F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1800210000020002", + "intro": "AMS-HT A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1806110000020002", + "intro": "AMS-HT G lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806130000020002", + "intro": "AMS-HT G lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800230000020001", + "intro": "AMS-HT A lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0707210000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1802100000010001", + "intro": "AMS-HT C lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706210000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 2 gija AMS sistemoje yra nutrūkusi." + }, + { + "ecode": "0704200000020001", + "intro": "AMS E lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801200000030001", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805230000020001", + "intro": "AMS-HT F lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1806230000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0706210000030002", + "intro": "AMS G lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1806100000020002", + "intro": "AMS-HT G lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801130000010003", + "intro": "AMS-HT B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807220000030001", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804210000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804220000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 3“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0704100000010001", + "intro": "AMS E lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0704210000020008", + "intro": "AMS E lizdo Nr. 2 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0706120000020002", + "intro": "AMS G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1802230000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0707110000020002", + "intro": "AMS H lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706100000010001", + "intro": "AMS G lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1800210000020003", + "intro": "AMS-HT A lizdo Nr. 2 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1800110000020002", + "intro": "AMS-HT A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807230000020004", + "intro": "Gali būti, kad AMS-HT H lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0704230000020001", + "intro": "AMS E lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0704210000020005", + "intro": "Baigėsi AMS E lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803130000010001", + "intro": "AMS-HT D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0704300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "18FF810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "0707230000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1803300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1804310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700200000030002", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0700210000020004", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0700210000030001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700220000020003", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkęs AMS." + }, + { + "ecode": "0700230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701100000010003", + "intro": "AMS B lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703100000020002", + "intro": "AMS D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1801200000020004", + "intro": "AMS-HT B lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0706100000010003", + "intro": "AMS G lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804230000020001", + "intro": "AMS-HT E lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803220000020004", + "intro": "Gali būti, kad AMS-HT D lizdo Nr. 3 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0700200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020004", + "intro": "AMS A lizdo Nr. 4 gija įrankio galvutėje gali būti nutrūkęs." + }, + { + "ecode": "0700230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0701220000020005", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0702120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703220000030002", + "intro": "AMS D 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1803230000030002", + "intro": "AMS-HT D 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807200000020002", + "intro": "AMS-HT H lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000020004", + "intro": "Gali būti, kad AMS-HT F lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1807230000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 4 gija." + }, + { + "ecode": "1804120000020002", + "intro": "AMS-HT E lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000020008", + "intro": "AMS F lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020002", + "intro": "AMS-HT D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807220000020001", + "intro": "AMS-HT H lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT F lizdo Nr. 3 spuldzės gijas." + }, + { + "ecode": "1800230000020008", + "intro": "AMS-HT: lizdo Nr. 4 maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707230000020005", + "intro": "Baigėsi AMS H lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801550000010003", + "intro": "AMS-HT B buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "0707200000020005", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802230000030002", + "intro": "AMS-HT C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805200000020002", + "intro": "AMS-HT F lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1801200000020005", + "intro": "AMS-HT B lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705210000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0705210000030001", + "intro": "Baigėsi AMS F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705220000020008", + "intro": "AMS F lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802120000010001", + "intro": "AMS-HT C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT B lizdo Nr. 3 gija." + }, + { + "ecode": "0707210000020005", + "intro": "Baigėsi AMS H lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1800310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1803350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0704210000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 2“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0707200000030002", + "intro": "AMS H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1803230000020008", + "intro": "AMS-HT D lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804200000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje AMS-HT E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1807220000020005", + "intro": "Baigėsi AMS-HT H lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1806220000020002", + "intro": "AMS-HT G lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1807130000010001", + "intro": "AMS-HT H lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707230000020001", + "intro": "AMS H lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1801210000020008", + "intro": "AMS-HT B lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1807550000010003", + "intro": "AMS-HT H buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1802210000020001", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0707210000020002", + "intro": "AMS H lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704200000030002", + "intro": "AMS E lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1804210000020002", + "intro": "AMS-HT E lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0705220000020001", + "intro": "Baigėsi AMS F lizdo Nr. 3 gija. Įdėkite naują giją." + }, + { + "ecode": "1800200000020003", + "intro": "AMS-HT A lizdo Nr. 1 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1805230000020003", + "intro": "Gali būti, kad „AMS-HT F lizdo Nr. 4“ spausdintuvo gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "1802230000020001", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804230000020003", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 4“ gija yra nutrūkusi įrenginyje „AMS-HT“." + }, + { + "ecode": "0704300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0704220000020009", + "intro": "Nepavyko išspausti „AMS E lizdo Nr. 3“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0706310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1800350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "1806300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0707310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700120000010003", + "intro": "AMS A lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700200000030001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0700210000020005", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo ant spausdintuvo galvutės." + }, + { + "ecode": "0700230000030002", + "intro": "AMS A 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS." + }, + { + "ecode": "0702220000020001", + "intro": "AMS C lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0702220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0703120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801100000020002", + "intro": "AMS-HT B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1806100000010001", + "intro": "AMS-HT G lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1805110000010001", + "intro": "AMS-HT F lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803110000010001", + "intro": "AMS-HT D lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807120000020002", + "intro": "AMS-HT H lizdo Nr. 3 variklis yra perkrautas. Galbūt gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700200000020005", + "intro": "AMS: lizdo Nr. 1 gija baigėsi, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0700220000030002", + "intro": "AMS A 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0701220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0701230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gijos gija įtrūko įrankio galvutėje." + }, + { + "ecode": "0702130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000020005", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "1801210000020005", + "intro": "AMS-HT B lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1801210000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1804220000020001", + "intro": "AMS-HT E lizdo Nr. 3 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1803560000030001", + "intro": "AMS-HT D šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1805100000020002", + "intro": "AMS-HT F lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704220000020002", + "intro": "AMS E lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0704210000030002", + "intro": "AMS E lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801120000010003", + "intro": "AMS-HT B lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803220000020005", + "intro": "Baigėsi AMS-HT D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806210000020008", + "intro": "AMS-HT G lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000020004", + "intro": "Gali būti, kad AMS-HT C lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0706200000020008", + "intro": "AMS G lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807100000010001", + "intro": "AMS-HT H lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1804100000020002", + "intro": "AMS-HT E lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804100000010001", + "intro": "AMS-HT E lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1807120000010001", + "intro": "AMS-HT H lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705200000020008", + "intro": "AMS F lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704230000030001", + "intro": "Baigėsi AMS E lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704220000030001", + "intro": "Baigėsi AMS E lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701560000030001", + "intro": "AMS B šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1806200000030001", + "intro": "Baigėsi AMS-HT G lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704200000020003", + "intro": "Gali būti, kad AMS E lizdo Nr. 1 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1800130000010003", + "intro": "AMS-HT A lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707100000020002", + "intro": "AMS H lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030002", + "intro": "AMS F 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0706220000030002", + "intro": "AMS G 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0704230000020005", + "intro": "Baigėsi AMS E lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0704200000020008", + "intro": "AMS E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707210000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 2 gijos medžiaga įtrūko įrankio galvutėje." + }, + { + "ecode": "1806210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT G lizdo Nr. 2 gija." + }, + { + "ecode": "0700220000020008", + "intro": "AMS A 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000030001", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705110000020002", + "intro": "AMS F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0707200000020009", + "intro": "Nepavyko išspausti „AMS H lizdo Nr. 1“ gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1801300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0706220000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "18FE200000020001", + "intro": "Išsekė kairiojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "1800400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0706350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0705310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "1801200000020008", + "intro": "AMS-HT B lizdo Nr. 1 įvesties Hallo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803210000020002", + "intro": "AMS-HT D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020005", + "intro": "AMS-HT C lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1802230000020005", + "intro": "AMS-HT C lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1800200000020001", + "intro": "AMS-HT A lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805220000020005", + "intro": "Baigėsi AMS-HT F lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806230000020002", + "intro": "AMS-HT G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0700230000020008", + "intro": "AMS A lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806210000020001", + "intro": "AMS-HT G lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1807210000030002", + "intro": "AMS-HT H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1801220000030001", + "intro": "Baigėsi AMS-HT B lizdo Nr. 3 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1803200000030002", + "intro": "AMS-HT D lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1800110000010001", + "intro": "AMS-HT A lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0706220000020008", + "intro": "AMS G 3-iojo lizdo maitinimo „Hall“ jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801230000020004", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 4 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1806220000020004", + "intro": "Gali būti, kad AMS-HT G lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1803210000030002", + "intro": "AMS-HT D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1805210000020002", + "intro": "AMS-HT F lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802210000020002", + "intro": "AMS-HT C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1804230000020005", + "intro": "Baigėsi AMS-HT E lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1804200000030001", + "intro": "Baigėsi AMS-HT E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000020008", + "intro": "AMS C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802200000030001", + "intro": "Baigėsi AMS-HT C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805100000010001", + "intro": "AMS-HT F lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800220000020004", + "intro": "AMS-HT A lizdo Nr. 3 gija įrankio galvutėje gali būti nutrūkusi." + }, + { + "ecode": "0704220000020008", + "intro": "AMS E lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020005", + "intro": "Baigėsi AMS G lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1805230000020008", + "intro": "AMS-HT F lizdo Nr. 4 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800210000020005", + "intro": "AMS-HT A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1803220000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje nutrūko AMS-HT D lizdo Nr. 3 gija elementas." + }, + { + "ecode": "1804300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1803310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700110000010003", + "intro": "AMS A lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0701120000010001", + "intro": "AMS B lizdo Nr. 3-iojo variklio padėtis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0701130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702100000020002", + "intro": "AMS C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702210000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 kaitinamoji gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "0702220000020005", + "intro": "Baigėsi AMS C 3-iojo lizdo gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo įrankio galvutėje." + }, + { + "ecode": "0703110000020002", + "intro": "AMS D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0703200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703210000030001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1800560000030001", + "intro": "AMS-HT A šiuo metu aušinamas sausuoju būdu; prieš pradėdami jį naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1804210000020001", + "intro": "AMS-HT E lizdo Nr. 2 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0700220000020001", + "intro": "AMS A 3-iojo lizdo gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "0701210000030001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0701230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0703200000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703210000020005", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1802210000020008", + "intro": "AMS-HT C lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800100000020002", + "intro": "AMS-HT A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707210000030002", + "intro": "AMS H lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0702230000020008", + "intro": "AMS C lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801200000020003", + "intro": "Gali būti, kad AMS-HT B lizdo Nr. 1 kaitinamoji gija yra nutrūkusi." + }, + { + "ecode": "1802130000020002", + "intro": "AMS-HT C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800200000020002", + "intro": "AMS-HT A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1803130000010003", + "intro": "AMS-HT D lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706210000020005", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "0705230000020001", + "intro": "AMS F lizdo Nr. 4 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1805200000020001", + "intro": "AMS-HT F lizdo Nr. 1 gija baigėsi. Įdėkite naują giją." + }, + { + "ecode": "1804200000020008", + "intro": "AMS-HT E lizdo Nr. 1 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704220000030002", + "intro": "AMS E 3-ioje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1806130000010001", + "intro": "AMS-HT G lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804120000010003", + "intro": "AMS-HT E lizdo Nr. 3 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807210000020003", + "intro": "Gali būti, kad AMS-HT įrenginyje yra nutrūkęs AMS-HT H lizdo Nr. 2 gija." + }, + { + "ecode": "1804210000020004", + "intro": "Gali būti, kad „AMS-HT E lizdo Nr. 2“ gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "1802200000020008", + "intro": "AMS-HT C lizdo Nr. 1 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706210000030001", + "intro": "Baigėsi AMS G lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0705200000030002", + "intro": "AMS F lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "0707200000020001", + "intro": "Baigėsi AMS H lizdo Nr. 1 gija. Įdėkite naują giją." + }, + { + "ecode": "1805210000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 2 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0704230000020002", + "intro": "AMS E lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0706230000020002", + "intro": "AMS G lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1802110000010003", + "intro": "AMS-HT C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706230000020003", + "intro": "Gali būti, kad AMS G lizdo Nr. 4 gija yra nutrūkusi AMS sistemoje." + }, + { + "ecode": "1803230000020003", + "intro": "Gali būti, kad „AMS-HT D lizdo Nr. 4“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0704230000020004", + "intro": "Gali būti, kad AMS E lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "0702560000030001", + "intro": "AMS C šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "1803210000020008", + "intro": "AMS-HT D lizdo Nr. 2 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800230000020003", + "intro": "AMS-HT A lizdo Nr. 4 gija gali būti nutrūkęs AMS-HT." + }, + { + "ecode": "1806120000020002", + "intro": "AMS-HT G lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705230000030001", + "intro": "Baigėsi AMS F lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1805110000020002", + "intro": "AMS-HT F lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0707230000020003", + "intro": "Gali būti, kad AMS H lizdo Nr. 4 kaitinamoji gija yra sulūžusi AMS." + }, + { + "ecode": "18FF200000020002", + "intro": "Dešiniame ekstruderyje neaptikta išorinės ritės gijos; įdėkite naują giją." + }, + { + "ecode": "1801310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "1807300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0705220000020009", + "intro": "Nepavyko išspausti „AMS F lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0705200000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 1 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1802120000010003", + "intro": "AMS-HT C lizdo Nr. 3 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1801230000020002", + "intro": "AMS-HT B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1805230000030001", + "intro": "Baigėsi AMS-HT F lizdo Nr. 4 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "1806200000020005", + "intro": "AMS-HT G lizdo Nr. 1 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1804230000020008", + "intro": "AMS-HT E lizdo Nr. 4 maitinimo Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706200000020004", + "intro": "Gali būti, kad AMS G lizdo Nr. 1 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0705560000030001", + "intro": "AMS F šiuo metu aušinamas sausuoju būdu; prieš pradedant naudoti, palaukite, kol jis atvės." + }, + { + "ecode": "0705220000020003", + "intro": "Gali būti, kad AMS F lizdo Nr. 3 spausdintuvo gija yra nutrūkusi." + }, + { + "ecode": "1807200000030002", + "intro": "AMS-HT H lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1807230000020008", + "intro": "AMS-HT H lizdo Nr. 4 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803100000010003", + "intro": "AMS-HT D lizdo Nr. 1 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0704110000020002", + "intro": "AMS E lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704200000030001", + "intro": "Baigėsi AMS E lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0707230000020004", + "intro": "Gali būti, kad AMS H lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1803100000010001", + "intro": "AMS-HT D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "18FE810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "0706200000020009", + "intro": "Nepavyko išspausti „AMS G lizdo Nr. 1“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1807310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0706300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "18FE200000020004", + "intro": "Prašome ištraukti išorinį giją iš kairiojo ekstruderio." + }, + { + "ecode": "0700130000010003", + "intro": "AMS A lizdo Nr. 4 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0701210000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija yra nutrūkusi spausdinimo galvutėje." + }, + { + "ecode": "0702100000010003", + "intro": "AMS C lizdo Nr. 1 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702110000010001", + "intro": "AMS C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702110000010003", + "intro": "AMS C lizdo Nr. 2 variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0702120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702200000030001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija. Prašome palaukti, kol bus pašalinta senoji gija." + }, + { + "ecode": "0702210000030002", + "intro": "AMS C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0702230000030002", + "intro": "AMS C 4-oje lizdoje baigėsi gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "0703210000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gijos medžiaga įstrigo įrankio galvutėje." + }, + { + "ecode": "0703220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0707110000010001", + "intro": "AMS H lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1807130000010003", + "intro": "AMS-HT H lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1803550000010003", + "intro": "AMS-HT D buvo aptikta neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "0701220000020008", + "intro": "AMS B lizdo Nr. 3 įvesties Hall jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803220000020008", + "intro": "AMS-HT D lizdo Nr. 3 įvesties Holo jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705200000020005", + "intro": "Baigėsi AMS F lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1806220000020003", + "intro": "Gali būti, kad „AMS-HT G lizdo Nr. 3“ gija yra nutrūkusi „AMS-HT“ įrenginyje." + }, + { + "ecode": "0300C20000010002", + "intro": "Filtro perjungimo sklendės Hallo jutiklio gedimas: patikrinkite, ar laidai nėra atsipalaidavę." + }, + { + "ecode": "0C00010000010010", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Patikrinkite, ar šildomasis stalas yra švarus, ir įsitikinkite, kad kameros vaizdas yra aiškus ir be nešvarumų. Atlikę šiuos veiksmus, atlikite kalibravimą iš naujo." + }, + { + "ecode": "0C0001000001000F", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00010000010013", + "intro": "Nepavyko kalibruoti „Live View“ kameros, o jos serijinis numeris negali būti nuskaitytas. Prašome susisiekti su klientų aptarnavimo komanda." + }, + { + "ecode": "050004000001004F", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "07FE200000020002", + "intro": "Kairiajame ekstruderyje neaptikta iš išorinės ritės tiekiamo gijos; įdėkite naują giją." + }, + { + "ecode": "07FF200000020002", + "intro": "Dešiniame ekstruderyje neaptikta išorinės ritės gijos; įdėkite naują giją." + }, + { + "ecode": "0C00030000020013", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Prašome iš naujo paleisti įrenginius arba atnaujinti aparatinę programinę įrangą." + }, + { + "ecode": "0C00040000010020", + "intro": "Šildomojo pagrindo vizualusis žymeklis yra sugadintas, prašome kreiptis į garantinio aptarnavimo tarnybą." + }, + { + "ecode": "1805970000030001", + "intro": "AMS-HT F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1800970000030001", + "intro": "AMS-HT Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID nuskaitymo." + }, + { + "ecode": "1807970000030001", + "intro": "AMS-HT H Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0706970000030001", + "intro": "AMS G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0705970000030001", + "intro": "AMS F Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1803970000030001", + "intro": "AMS-HT D Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "0707970000030001", + "intro": "AMS H kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1806970000030001", + "intro": "AMS-HT G Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1804970000030001", + "intro": "AMS-HT E Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo padavimo arba RFID skaitymo." + }, + { + "ecode": "1801970000030001", + "intro": "AMS-HT B kameros temperatūra per aukšta; šiuo metu negalima naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "07FF450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "07FE450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1200300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS A." + }, + { + "ecode": "1201300000010004", + "intro": "RFID duomenų negalima nuskaityti dėl šifravimo mikroschemos gedimo AMS B." + }, + { + "ecode": "1202300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS C." + }, + { + "ecode": "1203300000010004", + "intro": "RFID duomenų nuskaityti neįmanoma dėl šifravimo mikroschemos gedimo AMS D." + }, + { + "ecode": "0702970000030001", + "intro": "AMS C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0703970000030001", + "intro": "AMS D kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0700970000030001", + "intro": "AMS: Kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0701970000030001", + "intro": "AMS B kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0704970000030001", + "intro": "AMS E kameros temperatūra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "1802970000030001", + "intro": "AMS-HT C Kameros temperatūra yra per aukšta; šiuo metu neleidžiama naudoti papildomo maitinimo arba skaityti RFID." + }, + { + "ecode": "0300180000000000", + "intro": "" + }, + { + "ecode": "0C00040000020006", + "intro": "" + }, + { + "ecode": "0300260000000000", + "intro": "" + }, + { + "ecode": "1807960000010003", + "intro": "AMS-HT H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1806960000010003", + "intro": "AMS-HT G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000010003", + "intro": "AMS E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1803960000020002", + "intro": "AMS-HT D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1803960000010003", + "intro": "AMS-HT D Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1804960000020002", + "intro": "AMS-HT E Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1800960000020002", + "intro": "AMS-HT A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300260000010003", + "intro": "Nepavyksta nuskaityti duomenų iš kairiojo ekstruderio jėgos jutiklio; galbūt nutrūko ryšys arba jutiklis yra sugadintas." + }, + { + "ecode": "0300250000010003", + "intro": "Nepavyksta nuskaityti duomenų iš dešiniojo ekstruderio jėgos jutiklio; galbūt nutrūko ryšys arba jutiklis yra sugadintas." + }, + { + "ecode": "1801960000020002", + "intro": "AMS-HT B Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1807960000020002", + "intro": "AMS-HT H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1806960000020002", + "intro": "AMS-HT G Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1800550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1805960000020002", + "intro": "AMS-HT F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1803550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1805960000010003", + "intro": "AMS-HT F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0705550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0707960000010003", + "intro": "AMS H Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1800960000010003", + "intro": "AMS-HT A Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704960000020002", + "intro": "AMS E Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0705960000010003", + "intro": "AMS F Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300250000010002", + "intro": "dešiniojo ekstruderio ekstruzijos jėgos jutiklio jautrumas yra mažas; galbūt purkštukas sumontuotas netinkamai." + }, + { + "ecode": "1801960000010003", + "intro": "AMS-HT B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0704550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0705960000020002", + "intro": "AMS F Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0700550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802960000010003", + "intro": "AMS-HT C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0707550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "1802960000020002", + "intro": "AMS-HT C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1801550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706960000010003", + "intro": "AMS G Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "1805550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0706960000020002", + "intro": "AMS G Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "07FE800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "07FF800000020003", + "intro": "Ekstruderių padėties kalibravimo vertės nuokrypis yra per didelis; prašome atlikti pakartotinį kalibravimą." + }, + { + "ecode": "0300250000010008", + "intro": "Dešinioji purkštukė netinkamai liečiasi su kaitinamuoju pagrindu. Patikrinkite, ar ant purkštukės nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukė liečiasi su pagrindu." + }, + { + "ecode": "0300260000010008", + "intro": "Kairysis purkštukas netinkamai liečiasi su kaitinamuoju pagrindu. Patikrinkite, ar ant purkštuko nėra Gijos likučių arba svetimkūnių toje vietoje, kur purkštukas liečiasi su pagrindu." + }, + { + "ecode": "0700960000020002", + "intro": "AMS A Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0701960000020002", + "intro": "AMS B: Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0500050000010001", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0702960000020002", + "intro": "AMS C Aplinkos temperatūra yra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0703960000010003", + "intro": "AMS D Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0500400000010039", + "intro": "Lazerinio modulio serijinio numerio klaida" + }, + { + "ecode": "0702960000010003", + "intro": "AMS C Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0703960000020002", + "intro": "AMS D Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "0300950000010007", + "intro": "Graviravimo lazerio modulis veikia netinkamai; lazeryje gali būti atvira grandinė arba jis gali būti sugadintas." + }, + { + "ecode": "0500400000010040", + "intro": "Pjovimo modulio serijinio numerio klaida" + }, + { + "ecode": "0300990000010001", + "intro": "Atrodo, kad dešinysis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0701960000010003", + "intro": "AMS B Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0700960000010003", + "intro": "AMS A Nepavyksta pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0300180000010006", + "intro": "Šildomojo pagrindo išlyginimo duomenys yra nenormalūs. Patikrinkite, ar ant šildomojo pagrindo ir Z slankiklio nėra svetimkūnių. Jei yra, pašalinkite juos ir pabandykite dar kartą." + }, + { + "ecode": "0500010000030004", + "intro": "USB atmintinėje nepakanka vietos; prašome išlaisvinti šiek tiek vietos." + }, + { + "ecode": "0C00030000020011", + "intro": "Nepavyko atlikti didelio tikslumo purkštuko poslinkio kalibravimo; prašome pakartotinai atlikti kalibravimą." + }, + { + "ecode": "0703550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0707960000020002", + "intro": "AMS H Aplinkos temperatūra per žema, o tai turės įtakos džiovinimo efektyvumui." + }, + { + "ecode": "1804960000010003", + "intro": "AMS-HT E Nepavyko pradėti džiovinimo; ištraukite giją iš gijų laikiklio ir pabandykite dar kartą." + }, + { + "ecode": "0702550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0701550000010002", + "intro": "PTFE vamzdelis yra netinkamai prijungtas tarp spausdinimo galvutės ir buferio. Prašome buferio viršutinę dalį prijungti prie dešiniojo ekstruderio, o apatinę – prie kairiojo ekstruderio." + }, + { + "ecode": "0500020000020003", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700310000020002", + "intro": "AMS A lizdo Nr. 2 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703300000020002", + "intro": "AMS D lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700800000010003", + "intro": "AMS A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300960000010001", + "intro": "Atrodo, kad pagrindinis langas yra atidarytas; užduotis sustabdyta." + }, + { + "ecode": "0703900000010003", + "intro": "AMS D Išmetimo vožtuvas 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700800000010002", + "intro": "AMS A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806310000020002", + "intro": "AMS-HT G lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705010000020008", + "intro": "AMS F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806810000010002", + "intro": "AMS-HT G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1805330000020002", + "intro": "„AMS-HT F lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705320000020002", + "intro": "AMS F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803810000010002", + "intro": "AMS-HT D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704950000010001", + "intro": "AMS E Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801350000010002", + "intro": "AMS-HT B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802310000020002", + "intro": "AMS-HT C lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806800000010003", + "intro": "AMS-HT G Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707800000010003", + "intro": "AMS H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805010000020008", + "intro": "AMS-HT F Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0707300000020002", + "intro": "AMS H lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010003", + "intro": "AMS H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705940000010001", + "intro": "AMS F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707310000020002", + "intro": "AMS H lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803010000020007", + "intro": "AMS-HT D Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707950000010001", + "intro": "AMS H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800330000020002", + "intro": "„AMS-HT A lizdo Nr. 4“ įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705310000020002", + "intro": "AMS F lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803940000010001", + "intro": "AMS-HT D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807900000010003", + "intro": "AMS-HT H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706910000010003", + "intro": "AMS G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706940000010001", + "intro": "AMS G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804950000010001", + "intro": "AMS-HT E 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806010000020008", + "intro": "AMS-HT G Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705300000020002", + "intro": "AMS F lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800910000010003", + "intro": "AMS-HT A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803900000010003", + "intro": "AMS-HT D Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1807310000020002", + "intro": "„AMS-HT H lizdo Nr. 2“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803800000010002", + "intro": "AMS-HT D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801330000020002", + "intro": "AMS-HT B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804310000020002", + "intro": "„AMS-HT E lizdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804800000010003", + "intro": "AMS-HT E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1803800000010003", + "intro": "AMS-HT D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801320000020002", + "intro": "AMS-HT B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "030001000001000D", + "intro": "Anksčiau šildomojo pagrindo šildymo moduliuose įvyko gedimas. Norėdami toliau naudotis spausdintuvu, gedimo šalinimo instrukcijas rasite wiki puslapyje." + }, + { + "ecode": "0300040000020001", + "intro": "Detalės aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300080000010003", + "intro": "„Motor-Z“ varžos rodmenys neatitinka normos; variklis galėjo sugesti." + }, + { + "ecode": "0500040000010002", + "intro": "Nepavyko pranešti apie spausdinimo būseną; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000030008", + "intro": "Atrodo, kad durys yra atidarytos." + }, + { + "ecode": "0500040000030009", + "intro": "Spausdinimo platformos temperatūra viršija gijos stiklėjimo temperatūrą, dėl ko gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras. Durelių atidarymo jutiklis laikinai išjungtas." + }, + { + "ecode": "0500050000030002", + "intro": "Prietaisas yra bandymo etape; prašome atkreipti dėmesį į su informacijos saugumu susijusius klausimus." + }, + { + "ecode": "0700300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701310000020002", + "intro": "AMS B lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702310000020002", + "intro": "AMS C lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010005", + "intro": "Aptiktas naujas „Micro Lidar“ įrenginys. Prieš naudodami jį, kalibruokite jį kalibravimo puslapyje." + }, + { + "ecode": "12FF200000020004", + "intro": "Prašome ištraukti iš ekstruderių ant ritės laikiklio esantį giją." + }, + { + "ecode": "0702950000010001", + "intro": "AMS C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0702010000020008", + "intro": "AMS C Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0703910000010003", + "intro": "AMS D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702810000010003", + "intro": "AMS C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0702350000010002", + "intro": "AMS C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0701010000020007", + "intro": "AMS B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000010011", + "intro": "Nepavyko išmatuoti medžiagos storio: prietaiso parametrai neatitinka normos; prašome iš naujo nustatyti „BirdsEye“ kamerą." + }, + { + "ecode": "0C0003000002000C", + "intro": "Nepavyko aptikti spausdinimo plokštės padėties žymės. Patikrinkite, ar spausdinimo plokštė yra tinkamai išlyginta." + }, + { + "ecode": "0702900000010003", + "intro": "AMS C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0700810000010002", + "intro": "AMS A Šildytuvas 2 yra atjungtas, o tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300A20000010001", + "intro": "MC modulio temperatūra yra per aukšta, galbūt dėl to, kad spausdintuvo kamera yra per karšta. Prieš naudojimą galite pabandyti sumažinti aplinkos temperatūrą." + }, + { + "ecode": "0300360000010001", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010013", + "intro": "„BirdsEye“ kameros ekspozicijos parametrai yra netinkami; prašome bandyti dar kartą." + }, + { + "ecode": "1804910000010003", + "intro": "AMS-HT E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705950000010001", + "intro": "AMS F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802910000010003", + "intro": "AMS-HT C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706350000010002", + "intro": "AMS G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800900000010003", + "intro": "AMS-HT A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1802800000010002", + "intro": "AMS-HT C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "03001B0000010002", + "intro": "Šildomojo pagrindo pagreičio jutiklyje užfiksuotas išorinis trikdys. Gali būti, kad jutiklio signalo laidas nėra tinkamai pritvirtintas." + }, + { + "ecode": "030091000001000C", + "intro": "Kameros šildytuvas Nr. 1 ilgą laiką veikė esant pilnai apkrovai. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300940000030001", + "intro": "kameros aušinimas gali vykti pernelyg lėtai. Jei kambaryje esantis oras nėra toksiškas, galite atidaryti priekines dureles arba viršutinį dangtį, kad pagreitintumėte aušinimą." + }, + { + "ecode": "0500020000020005", + "intro": "Nepavyko prisijungti prie interneto; patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010003", + "intro": "Spausdinimo failo turinys yra neskaitomas; prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "0500050000010006", + "intro": "AP plokštės gamykliniai duomenys yra nenormalūs; prašome pakeisti AP plokštę nauja." + }, + { + "ecode": "0700330000020002", + "intro": "AMS A lizdo Nr. 4 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0701330000020002", + "intro": "AMS B lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0702300000020002", + "intro": "AMS C lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702320000020002", + "intro": "AMS C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0702330000020002", + "intro": "AMS C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703310000020002", + "intro": "AMS D lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C0001000001000B", + "intro": "Nepavyko kalibruoti „Micro Lidar“. Įsitikinkite, kad kalibravimo lentelė yra švari ir niekas jos neužstoja. Tada vėl atlikite įrenginio kalibravimą." + }, + { + "ecode": "0702810000010002", + "intro": "AMS C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703010000020008", + "intro": "AMS D Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050003000001000A", + "intro": "Sistemos būsena yra nenormali; prašome atkurti gamyklinius nustatymus." + }, + { + "ecode": "0702800000010003", + "intro": "AMS C Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba pačio šildytuvo gedimu." + }, + { + "ecode": "0701350000010002", + "intro": "AMS B Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0702940000010001", + "intro": "AMS C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700010000020008", + "intro": "AMS A Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "030001000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; šildomasis stalas išjungtas." + }, + { + "ecode": "0300980000010001", + "intro": "Atrodo, kad kairysis langas yra atidarytas, užduotis sustabdyta." + }, + { + "ecode": "0300330000010001", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0703810000010003", + "intro": "AMS D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706330000020002", + "intro": "„AMS G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805310000020002", + "intro": "AMS-HT F lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807010000020007", + "intro": "AMS-HT H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707800000010002", + "intro": "AMS H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804800000010002", + "intro": "AMS-HT E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706800000010002", + "intro": "AMS G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805320000020002", + "intro": "AMS-HT F lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704310000020002", + "intro": "„AMS E lizdo Nr. 2“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705810000010003", + "intro": "AMS F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0704350000010002", + "intro": "AMS E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806940000010001", + "intro": "AMS-HT G 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801950000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807350000010002", + "intro": "AMS-HT H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0705910000010003", + "intro": "AMS F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020007", + "intro": "AMS-HT E Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707910000010003", + "intro": "AMS H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802900000010003", + "intro": "AMS-HT C Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801810000010002", + "intro": "AMS-HT B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1801310000020002", + "intro": "AMS-HT B lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704800000010002", + "intro": "AMS E Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706010000020007", + "intro": "AMS G: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0706810000010003", + "intro": "AMS G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804810000010003", + "intro": "AMS-HT E Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1802350000010002", + "intro": "AMS-HT C Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1800810000010002", + "intro": "AMS-HT A Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706810000010002", + "intro": "AMS G Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806950000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800950000010001", + "intro": "AMS-HT A 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706320000020002", + "intro": "AMS G lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807810000010003", + "intro": "AMS-HT H Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705800000010002", + "intro": "AMS F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706800000010003", + "intro": "AMS G Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0707010000020008", + "intro": "AMS H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010002", + "intro": "AMS E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806300000020002", + "intro": "RFID žymė, esanti AMS-HT G lizdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806910000010003", + "intro": "AMS-HT G Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1804320000020002", + "intro": "„AMS-HT E lizdo Nr. 3“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805010000020007", + "intro": "AMS-HT F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805910000010003", + "intro": "AMS-HT F Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0706310000020002", + "intro": "AMS G lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0705330000020002", + "intro": "„AMS F lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0706010000020008", + "intro": "AMS G: Pagalbinio variklio fazės apvijos grandinė yra atvira. Galbūt pagalbinis variklis sugedęs." + }, + { + "ecode": "1807910000010003", + "intro": "AMS-HT H Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800010000020007", + "intro": "AMS-HT A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0704800000010003", + "intro": "AMS E Šildytuvas Nr. 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1802940000010001", + "intro": "AMS-HT C 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0707010000020007", + "intro": "AMS H Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1803350000010002", + "intro": "AMS-HT D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1803310000020002", + "intro": "AMS-HT D lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802300000020002", + "intro": "RFID žymė, esanti AMS-HT C lizdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807320000020002", + "intro": "AMS-HT H lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805810000010002", + "intro": "AMS-HT F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010002", + "intro": "AMS-HT C Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803810000010003", + "intro": "AMS-HT D Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804350000010002", + "intro": "AMS-HT E Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0707900000010003", + "intro": "AMS H Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704900000010003", + "intro": "AMS E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802010000020007", + "intro": "AMS-HT C Pagalbinio variklio enkoderio laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1807950000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705010000020007", + "intro": "AMS F Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801800000010002", + "intro": "AMS-HT B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704300000020002", + "intro": "„AMS E lizdo Nr. 1“ esanti RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1801900000010003", + "intro": "AMS-HT B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706900000010003", + "intro": "AMS G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803300000020002", + "intro": "RFID žymė, esanti AMS-HT D lizdo Nr. 1 lizde, yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802950000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801800000010003", + "intro": "AMS-HT B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1807010000020008", + "intro": "AMS-HT H Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805950000010001", + "intro": "AMS-HT F 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020008", + "intro": "AMS-HT B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806320000020002", + "intro": "„AMS-HT G lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803950000010001", + "intro": "AMS-HT D 2-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0705800000010003", + "intro": "AMS F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1804900000010003", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1802810000010003", + "intro": "AMS-HT C Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1800300000020002", + "intro": "AMS-HT A lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0300010000010008", + "intro": "Šildomojo pagrindo kaitinimo proceso metu atsiranda gedimas; galbūt sugedo kaitinimo moduliai." + }, + { + "ecode": "0700320000020002", + "intro": "AMS A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0700400000020004", + "intro": "Gijų buferio signalas yra nenormalus; galbūt įstrigo spyruoklė arba susipynė gijos." + }, + { + "ecode": "0702310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0703300000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000010001", + "intro": "Horizontalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0C0003000002000F", + "intro": "Dalys, praleistos prieš pirmojo sluoksnio patikrinimą; šiam spausdinimui patikrinimas nėra palaikomas." + }, + { + "ecode": "12FF200000020006", + "intro": "Nepavyko išspausti gijos; ekstruderiui gali būti užsikimšęs." + }, + { + "ecode": "0C00040000010014", + "intro": "Nepastebėta pjovimo apsaugos pagrindo, dėl ko\ngali būti pažeistas šildomasis stalas. Prašome jį uždėti ir tęsti." + }, + { + "ecode": "030091000001000E", + "intro": "Maitinimo įtampa neatitinka įrenginio reikalavimų; kameros šildytuvas Nr. 1 išjungtas." + }, + { + "ecode": "0703950000010001", + "intro": "AMS D Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703350000010002", + "intro": "AMS D Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701910000010003", + "intro": "AMS B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700940000010001", + "intro": "AMS A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0700350000010002", + "intro": "AMS A Drėgmės jutiklis yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0703810000010002", + "intro": "AMS D Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0700010000020007", + "intro": "AMS A Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0701800000010002", + "intro": "AMS B Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300C30000010003", + "intro": "Automatinio viršutinio ventiliacijos angos srovės jutiklio gedimas: tai gali būti susiję su atvira grandine arba aparatinės įrangos matavimo grandinės gedimu." + }, + { + "ecode": "0703940000010001", + "intro": "AMS D 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701800000010003", + "intro": "AMS B Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700910000010003", + "intro": "AMS A Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0703010000020007", + "intro": "AMS D: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0300090000020002", + "intro": "Ekstruzijos pasipriešinimas yra neįprastas. Ekstruderius gali būti užsikimšęs arba į antgalį įstrigo gija." + }, + { + "ecode": "0300970000010001", + "intro": "Atrodo, kad viršutinis dangtelis yra atidarytas; užduotis sustabdyta" + }, + { + "ecode": "0300310000010001", + "intro": "Dalies aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0300320000010001", + "intro": "Pagalbinio aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0702010000020007", + "intro": "AMS C: Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805810000010003", + "intro": "AMS-HT F Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "1801940000010001", + "intro": "AMS-HT B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1804330000020002", + "intro": "„AMS-HT E lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807940000010001", + "intro": "AMS-HT H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "030001000001000A", + "intro": "Šildomojo pagrindo temperatūros reguliavimas veikia netinkamai; galbūt sugedo kintamosios srovės plokštė." + }, + { + "ecode": "0300030000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300060000010003", + "intro": "Variklio A varžos rodmenys neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "0300070000010003", + "intro": "„Motor-B“ variklio varža neatitinka normos; variklis gali būti sugedęs." + }, + { + "ecode": "03001A0000020001", + "intro": "Purkštukas užsikimšęs gijomis arba spausdinimo plokštė yra kreiva." + }, + { + "ecode": "03001D0000010001", + "intro": "Ekstruzijos variklio padėties jutiklis veikia netinkamai. Galbūt jungtis su jutikliu yra laisva." + }, + { + "ecode": "0500040000010001", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0700300000020002", + "intro": "AMS A lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701320000020002", + "intro": "AMS B lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703320000020002", + "intro": "AMS D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0703330000020002", + "intro": "„AMS D lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0C00010000020007", + "intro": "„Micro Lidar“ lazerio parametrai nukrypo. Prašome iš naujo kalibruoti spausdintuvą." + }, + { + "ecode": "0C00020000020004", + "intro": "Atrodo, kad purkštuvo aukštis yra per mažas. Patikrinkite, ar purkštuvas nėra susidėvėjęs arba pasviręs. Jei purkštuvas buvo pakeistas, iš naujo kalibruokite „Lidar“." + }, + { + "ecode": "0C00020000020009", + "intro": "Vertikalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00030000020010", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti šildomąjį pagrindą." + }, + { + "ecode": "0703800000010002", + "intro": "AMS D Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701010000020008", + "intro": "AMS B Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0500040000020033", + "intro": "Prašome prijungti modulio jungtį." + }, + { + "ecode": "0700950000010001", + "intro": "AMS A Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0300350000010001", + "intro": "MC modulio aušinimo ventiliatoriaus greitis per mažas arba ventiliatorius sustojo. Jis gali būti užstrigęs arba jungtis gali būti netinkamai įjungta." + }, + { + "ecode": "0C00040000010010", + "intro": "Dėl lazerio modulio gedimo nepavyko išmatuoti medžiagos storio." + }, + { + "ecode": "0700810000010003", + "intro": "AMS A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0700900000010003", + "intro": "AMS A Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701900000010003", + "intro": "AMS B Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0701950000010001", + "intro": "AMS B Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1805940000010001", + "intro": "AMS-HT F 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010002", + "intro": "AMS-HT H Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0704010000020008", + "intro": "AMS E: Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704810000010003", + "intro": "AMS E Šildytuvas Nr. 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1805800000010002", + "intro": "AMS-HT F Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0706300000020002", + "intro": "AMS G lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707350000010002", + "intro": "AMS H Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1801300000020002", + "intro": "AMS-HT B lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800010000020008", + "intro": "AMS-HT A Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000020007", + "intro": "AMS-HT G Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "1804300000020002", + "intro": "„AMS-HT E lizdo Nr. 1“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0704940000010001", + "intro": "AMS E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1806900000010003", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1800800000010003", + "intro": "AMS-HT A Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0705810000010002", + "intro": "AMS F Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800810000010003", + "intro": "AMS-HT A Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1807300000020002", + "intro": "AMS-HT H lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1804810000010002", + "intro": "AMS-HT E Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807810000010002", + "intro": "AMS-HT H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0705350000010002", + "intro": "AMS F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1803010000020008", + "intro": "AMS-HT D Pagalbinio variklio fazės apvija yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802800000010003", + "intro": "AMS-HT C Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801910000010003", + "intro": "AMS-HT B Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805900000010003", + "intro": "AMS-HT F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1807800000010003", + "intro": "AMS-HT H Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0706950000010001", + "intro": "AMS G Šildytuvo Nr. 2 temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "1805350000010002", + "intro": "AMS-HT F Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1802320000020002", + "intro": "AMS-HT C lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800940000010001", + "intro": "AMS-HT A 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704330000020002", + "intro": "„AMS E lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802330000020002", + "intro": "AMS-HT C lizdo Nr. 4 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800800000010002", + "intro": "AMS-HT A Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0704910000010003", + "intro": "AMS E Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806800000010002", + "intro": "AMS-HT G Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804940000010001", + "intro": "AMS-HT E 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "1801010000020007", + "intro": "AMS-HT B Pagalbinio variklio kodavimo įtaiso laidai nėra prijungti. Galbūt pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707940000010001", + "intro": "AMS H 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1804010000020008", + "intro": "AMS-HT E Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1803910000010003", + "intro": "AMS-HT D Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806810000010003", + "intro": "AMS-HT G Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0704010000020007", + "intro": "AMS E: Pagalbinio variklio kodavimo daviklio laidai nėra prijungti. Gali būti, kad pagalbinio variklio jungtis blogai prisiliečia." + }, + { + "ecode": "0707320000020002", + "intro": "AMS H lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707330000020002", + "intro": "„AMS H lizdo Nr. 4“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805300000020002", + "intro": "RFID žymė, esanti AMS-HT F lizdo Nr. 1 lizde, yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0707810000010002", + "intro": "AMS H Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1806350000010002", + "intro": "AMS-HT G Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0704320000020002", + "intro": "„AMS E lizdo Nr. 3“ RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800320000020002", + "intro": "AMS-HT A lizdo Nr. 3 įrenginyje esanti RFID žymė yra sugadinta arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1803320000020002", + "intro": "AMS-HT D lizdo Nr. 3 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1807330000020002", + "intro": "„AMS-HT H lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1800310000020002", + "intro": "AMS-HT A lizdo Nr. 2 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1805800000010003", + "intro": "AMS-HT F Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "1801810000010003", + "intro": "AMS-HT B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpuoju jungimu arba šildytuvo gedimu." + }, + { + "ecode": "0500020000020001", + "intro": "Nepavyko prisijungti prie interneto. Patikrinkite tinklo ryšį." + }, + { + "ecode": "0500040000010006", + "intro": "Nepavyko atnaujinti ankstesnio spausdinimo" + }, + { + "ecode": "0700310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0700400000020003", + "intro": "AMS Hub ryšys sutrikęs; galbūt kabelis nėra tinkamai prijungtas." + }, + { + "ecode": "0701300000020002", + "intro": "AMS B lizdo Nr. 1 esančioje RFID žymėje yra pažeidimų arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "0701310000010004", + "intro": "Šifravimo mikroschemos gedimas" + }, + { + "ecode": "0C00020000020003", + "intro": "Horizontalusis lazeris grįžimo į pradinę padėtį metu nėra pakankamai ryškus. Jei šis pranešimas pasirodo pakartotinai, išvalykite arba pakeiskite šildomąjį stalą." + }, + { + "ecode": "0C00020000020007", + "intro": "Vertikalusis lazeris nedega. Patikrinkite, ar jis nėra uždengtas, arba ar nėra problemų su įrangos jungtimis." + }, + { + "ecode": "0702910000010003", + "intro": "AMS C Išmetimo vožtuvas 2 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0300980000030001", + "intro": "Atrodo, kad kairysis šoninis langas yra atidarytas." + }, + { + "ecode": "0701810000010003", + "intro": "AMS B Šildytuvas 2 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0300090000020003", + "intro": "Ekstruderiui kyla veikimo sutrikimų. Jis gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0703800000010003", + "intro": "AMS D Šildytuvas 1 yra trumpai sujungtas, o tai gali būti susiję su laidų trumpojo jungimo arba šildytuvo gedimu." + }, + { + "ecode": "0701940000010001", + "intro": "AMS B 1-ojo šildytuvo temperatūros jutiklis veikia netinkamai; tai gali būti susiję su prastu jungties kontaktų ryšiu." + }, + { + "ecode": "0701810000010002", + "intro": "AMS B Šildytuvas 2 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "0702800000010002", + "intro": "AMS C Šildytuvas 1 yra atjungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1803330000020002", + "intro": "„AMS-HT D lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1806330000020002", + "intro": "„AMS-HT G lizdo Nr. 4“ RFID žymė yra pažeista arba jos turinio neįmanoma nustatyti." + }, + { + "ecode": "1802010000020008", + "intro": "AMS-HT C Pagalbinio variklio fazės apvijos grandinė yra atvira. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705900000010003", + "intro": "AMS F Išmetimo vožtuvas Nr. 1 nėra prijungtas; tai gali būti susiję su prastu jungties kontaktų sujungimu." + }, + { + "ecode": "1800350000010002", + "intro": "AMS-HT A Drėgmės jutiklis atjungtas; tai gali būti susiję su prastu jungties kontaktu." + }, + { + "ecode": "0703200000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702230000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700200000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 1 gijos; galbūt ekstruderius užkimšo arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701220000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701230000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0701200000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 1 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "0701210000020009", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702220000020009", + "intro": "Nepavyko išspausti „AMS C lizdo Nr. 3“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700210000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702210000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703230000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0702200000020009", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700220000020009", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703220000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0703210000020009", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700230000020009", + "intro": "Nepavyko išspausti „AMS A lizdo Nr. 4“ gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700310000010001", + "intro": "Plokštėje „AMS A RFID 2“ yra klaida." + }, + { + "ecode": "1800010000010003", + "intro": "AMS-HT A pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706120000020004", + "intro": "AMS G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807130000020004", + "intro": "AMS-HT H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1807960000010001", + "intro": "AMS-HT H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1804920000020002", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805910000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802920000020002", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800310000010001", + "intro": "Plokštėje „AMS-HT A RFID 2“ yra klaida." + }, + { + "ecode": "1800020000020002", + "intro": "AMS-HT A jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1803010000020010", + "intro": "AMS-HT D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700550000010003", + "intro": "AMS A buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1800930000010001", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801910000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1803020000020002", + "intro": "AMS-HT D jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1801300000010001", + "intro": "Plokštėje „AMS-HT B RFID 1“ yra klaida." + }, + { + "ecode": "1800810000010001", + "intro": "AMS-HT A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801100000020004", + "intro": "AMS-HT B Šepetėlinis variklis Nr. 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706130000020004", + "intro": "AMS G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707020000020002", + "intro": "AMS H jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0704010000020011", + "intro": "AMS E: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707010000020011", + "intro": "AMS H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000010003", + "intro": "AMS-HT C pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0707930000010001", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704010000020002", + "intro": "AMS E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800010000010001", + "intro": "Pagalbinis variklis „AMS-HT A“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0702550000010003", + "intro": "AMS C buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "0706010000010001", + "intro": "AMS G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803930000020002", + "intro": "AMS-HT D 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803130000020004", + "intro": "AMS-HT D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803110000020004", + "intro": "AMS-HT D Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702310000010001", + "intro": "Plokštėje „AMS C RFID 2“ yra klaida." + }, + { + "ecode": "0701310000010001", + "intro": "Plokštėje „AMS B RFID 2“ yra klaida." + }, + { + "ecode": "0706010000020011", + "intro": "AMS G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0706010000010003", + "intro": "AMS G pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705010000020011", + "intro": "AMS F: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1800110000020004", + "intro": "AMS-HT A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000010003", + "intro": "AMS H pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1805110000020004", + "intro": "AMS-HT F Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805810000010001", + "intro": "AMS-HT F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803120000020004", + "intro": "AMS-HT D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801900000020001", + "intro": "AMS-HT B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1805010000010001", + "intro": "Pagalbinis variklis „AMS-HT F“ prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1804010000020011", + "intro": "AMS-HT E: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020011", + "intro": "AMS-HT C: prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806120000020004", + "intro": "AMS-HT G Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803020000010001", + "intro": "AMS-HT D. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0706010000020009", + "intro": "AMS G: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806010000010003", + "intro": "AMS-HT G pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807500000020001", + "intro": "AMS-HT H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1803960000010001", + "intro": "AMS-HT D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806300000010001", + "intro": "Plokštėje „AMS-HT G RFID 1“ yra klaida." + }, + { + "ecode": "0707800000010001", + "intro": "AMS H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000020011", + "intro": "AMS-HT B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705800000010001", + "intro": "AMS F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000010003", + "intro": "AMS-HT F pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1804120000020004", + "intro": "AMS-HT E Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703550000010003", + "intro": "AMS D buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1807010000020010", + "intro": "AMS-HT H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802900000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807900000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704310000010001", + "intro": "Plokštėje „AMS E RFID 2“ yra klaida." + }, + { + "ecode": "0707120000020004", + "intro": "AMS H Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803500000020001", + "intro": "AMS-HT D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1804500000020001", + "intro": "AMS-HT E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800020000010001", + "intro": "AMS-HT A. Gijos greičio ir ilgio paklaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0704010000010004", + "intro": "AMS E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803100000020004", + "intro": "AMS-HT D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806010000010004", + "intro": "AMS-HT G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1801130000020004", + "intro": "AMS-HT B Šepetėlinis variklis 4 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706110000020004", + "intro": "AMS G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705920000020002", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varža." + }, + { + "ecode": "0707810000010001", + "intro": "AMS H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801020000020002", + "intro": "AMS-HT B jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802010000010001", + "intro": "AMS-HT C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706930000020002", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0707010000020002", + "intro": "AMS H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800910000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807110000020004", + "intro": "AMS-HT H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801810000010001", + "intro": "AMS-HT B 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704020000010001", + "intro": "AMS E. Gijos greičio ir ilgio paklaida: Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1802310000010001", + "intro": "Plokštėje „AMS-HT C RFID 2“ yra klaida." + }, + { + "ecode": "0706100000020004", + "intro": "AMS G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800130000020004", + "intro": "AMS-HT A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000020002", + "intro": "AMS-HT E pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704810000010001", + "intro": "AMS E: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705110000020004", + "intro": "AMS F Šepetėlinis variklis 2 negauna signalo; tai gali būti susiję su prastu kontaktų sujungimu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801020000010001", + "intro": "AMS-HT B. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "1802020000020002", + "intro": "AMS-HT C jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805020000010001", + "intro": "AMS-HT F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806800000010001", + "intro": "AMS-HT G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0704930000010001", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020010", + "intro": "AMS-HT B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806900000020001", + "intro": "AMS-HT G Išmetimo vožtuvas Nr. 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704010000010011", + "intro": "AMS E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804110000020004", + "intro": "AMS-HT E Šepetėlinis variklis 2 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800100000020004", + "intro": "AMS-HT A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802130000020004", + "intro": "AMS-HT C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806500000020001", + "intro": "AMS-HT G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806010000020002", + "intro": "AMS-HT G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804010000010003", + "intro": "AMS-HT E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706960000010001", + "intro": "AMS G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1801920000020002", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0705100000020004", + "intro": "AMS F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803800000010001", + "intro": "AMS-HT D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000020002", + "intro": "AMS-HT D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1804920000010001", + "intro": "AMS-HT E 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000010004", + "intro": "AMS-HT B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803910000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802910000020001", + "intro": "AMS-HT C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806020000010001", + "intro": "AMS-HT G. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1803010000010001", + "intro": "AMS-HT D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0707310000010001", + "intro": "Plokštėje „AMS H RFID 2“ yra klaida." + }, + { + "ecode": "0707020000010001", + "intro": "AMS H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010001", + "intro": "AMS-HT H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705010000010001", + "intro": "„AMS F“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1801930000010001", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807930000010001", + "intro": "AMS-HT H Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800930000020002", + "intro": "AMS-HT A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0702010000010011", + "intro": "AMS C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804960000010001", + "intro": "AMS-HT E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1805920000020002", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706920000010001", + "intro": "AMS G Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1803930000010001", + "intro": "AMS-HT D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1800120000020004", + "intro": "AMS-HT A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803920000010001", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704300000010001", + "intro": "Plokštėje „AMS E RFID 1“ yra klaida." + }, + { + "ecode": "0706930000010001", + "intro": "AMS G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1802800000010001", + "intro": "AMS-HT C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804100000020004", + "intro": "AMS-HT E Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705930000020002", + "intro": "AMS F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0707110000020004", + "intro": "AMS H Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800900000020001", + "intro": "AMS-HT A Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806010000020011", + "intro": "AMS-HT G. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807910000020001", + "intro": "AMS-HT H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0704020000020002", + "intro": "AMS E: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1804010000020009", + "intro": "AMS-HT E Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807010000020011", + "intro": "AMS-HT H. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1802010000020009", + "intro": "AMS-HT C Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1807920000020002", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "0705010000020002", + "intro": "AMS F pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1807020000020002", + "intro": "AMS-HT H jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1805800000010001", + "intro": "AMS-HT F 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705920000010001", + "intro": "AMS F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801800000010001", + "intro": "AMS-HT B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706020000010001", + "intro": "AMS G: Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1806960000010001", + "intro": "AMS-HT G Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1803310000010001", + "intro": "Plokštėje „AMS-HT D RFID 2“ yra klaida." + }, + { + "ecode": "0704930000020002", + "intro": "AMS E Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802930000010001", + "intro": "AMS-HT C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801010000020002", + "intro": "Pagalbinis variklis „AMS-HT B“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0705900000020001", + "intro": "AMS F Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707930000020002", + "intro": "AMS H Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1801310000010001", + "intro": "Plokštėje „AMS-HT B RFID 2“ yra klaida." + }, + { + "ecode": "1806310000010001", + "intro": "Plokštėje „AMS-HT G RFID 2“ yra klaida." + }, + { + "ecode": "1805310000010001", + "intro": "Plokštėje „AMS-HT F RFID 2“ yra klaida." + }, + { + "ecode": "1804800000010001", + "intro": "AMS-HT E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1807010000010003", + "intro": "AMS-HT H pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705020000020002", + "intro": "AMS F jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1805960000010001", + "intro": "AMS-HT F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807010000020002", + "intro": "AMS-HT H pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701300000010001", + "intro": "Plokštėje „AMS B RFID 1“ yra klaida." + }, + { + "ecode": "0702300000010001", + "intro": "Plokštėje „AMS C RFID 1“ yra klaida." + }, + { + "ecode": "0700300000010001", + "intro": "Plokštėje „AMS A RFID 1“ yra klaida." + }, + { + "ecode": "1805920000010001", + "intro": "AMS-HT F 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0706910000020001", + "intro": "AMS G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707960000010001", + "intro": "AMS H Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1806020000020002", + "intro": "AMS-HT G jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802020000010001", + "intro": "AMS-HT C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0704010000020010", + "intro": "AMS E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1803010000010004", + "intro": "AMS-HT D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803810000010001", + "intro": "AMS-HT D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020009", + "intro": "AMS-HT F Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1800010000020002", + "intro": "Pagalbinis variklis AMS-HT A yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0704010000020009", + "intro": "AMS E: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705960000010001", + "intro": "AMS F Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1807300000010001", + "intro": "Plokštėje „AMS-HT H RFID 1“ yra klaida." + }, + { + "ecode": "1806010000010001", + "intro": "AMS-HT G pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1800920000010001", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1801110000020004", + "intro": "AMS-HT B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0705010000020009", + "intro": "AMS F: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801120000020004", + "intro": "AMS-HT B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1803010000010011", + "intro": "AMS-HT D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704910000020001", + "intro": "AMS E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1801500000020001", + "intro": "AMS-HT B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1807120000020004", + "intro": "AMS-HT H Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800960000010001", + "intro": "AMS-HT A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "1800010000020010", + "intro": "AMS-HT A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000010011", + "intro": "AMS-HT F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704960000010001", + "intro": "AMS E Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0707010000020009", + "intro": "AMS H: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1801010000020009", + "intro": "AMS-HT B Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705010000010004", + "intro": "AMS F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0704920000010001", + "intro": "AMS E Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0707500000020001", + "intro": "AMS H ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800800000010001", + "intro": "AMS-HT A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000010004", + "intro": "AMS-HT E pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1806010000010011", + "intro": "AMS-HT G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705300000010001", + "intro": "Plokštėje „AMS F RFID 1“ yra klaida." + }, + { + "ecode": "1802120000020004", + "intro": "AMS-HT C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707300000010001", + "intro": "AMS H RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0706920000020002", + "intro": "AMS G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704110000020004", + "intro": "AMS E Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701550000010003", + "intro": "AMS B buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "0707910000020001", + "intro": "AMS H Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807010000010011", + "intro": "AMS-HT H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704550000010003", + "intro": "AMS E klaida buvo aptikta neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1805900000020001", + "intro": "AMS-HT F Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1802300000010001", + "intro": "Plokštėje „AMS-HT C RFID 1“ yra klaida." + }, + { + "ecode": "1805120000020004", + "intro": "AMS-HT F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805300000010001", + "intro": "Plokštėje „AMS-HT F RFID 1“ yra klaida." + }, + { + "ecode": "1803010000020011", + "intro": "AMS-HT D Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705310000010001", + "intro": "Plokštėje „AMS F RFID 2“ yra klaida." + }, + { + "ecode": "1800010000020009", + "intro": "AMS-HT A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805010000020002", + "intro": "Pagalbinis variklis „AMS-HT F“ yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000010011", + "intro": "AMS B – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0500040000020030", + "intro": "„BirdsEye“ kamera nėra įdiegta. Išjunkite spausdintuvą ir tada įdiekite kamerą." + }, + { + "ecode": "0704920000020002", + "intro": "AMS E 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0706810000010001", + "intro": "AMS G: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0705120000020004", + "intro": "AMS F Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1800010000020011", + "intro": "AMS-HT A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0704010000010003", + "intro": "AMS E pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706300000010001", + "intro": "Plokštėje „AMS G RFID 1“ yra klaida." + }, + { + "ecode": "1807010000020009", + "intro": "AMS-HT H Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0705130000020004", + "intro": "AMS F Šepetėlinis variklis 4 negauna signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802110000020004", + "intro": "AMS-HT C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0707010000020010", + "intro": "AMS H Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1806100000020004", + "intro": "AMS-HT G Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801960000010001", + "intro": "AMS-HT B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0705010000010011", + "intro": "AMS F – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1807010000010004", + "intro": "AMS-HT H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1805930000020002", + "intro": "AMS-HT F 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0704900000020001", + "intro": "AMS E Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707100000020004", + "intro": "AMS H Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706010000020010", + "intro": "AMS G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804020000010001", + "intro": "AMS-HT E. Gijos greičio ir ilgio paklaida: galbūt neveikia Gijos jutiklis." + }, + { + "ecode": "0707920000010001", + "intro": "AMS H Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0705910000020001", + "intro": "AMS F Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0706010000020002", + "intro": "AMS G pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1800300000010001", + "intro": "„AMS-HT A RFID 1“ plokštėje yra klaida." + }, + { + "ecode": "0707010000010004", + "intro": "AMS H pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1803900000020001", + "intro": "AMS-HT D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1804310000010001", + "intro": "Plokštėje „AMS-HT E RFID 2“ yra klaida." + }, + { + "ecode": "1800920000020002", + "intro": "AMS-HT A 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806910000020001", + "intro": "AMS-HT G Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707010000010011", + "intro": "AMS H – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804930000020002", + "intro": "AMS-HT E 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805100000020004", + "intro": "AMS-HT F Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805130000020004", + "intro": "AMS-HT F Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0706310000010001", + "intro": "Plokštėje „AMS G RFID 2“ yra klaida." + }, + { + "ecode": "1803010000020009", + "intro": "AMS-HT D Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706900000020001", + "intro": "AMS G Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "1806930000010001", + "intro": "AMS-HT G Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807920000010001", + "intro": "AMS-HT H 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs; tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010011", + "intro": "AMS A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1804910000020001", + "intro": "AMS-HT E Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0705930000010001", + "intro": "AMS F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804900000020001", + "intro": "AMS-HT E Išmetimo vožtuvas Nr. 1 veikia netinkamai; tai gali būti susiję su per didele varža." + }, + { + "ecode": "1807020000010001", + "intro": "AMS-HT H. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1804810000010001", + "intro": "AMS-HT E 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1805010000020010", + "intro": "AMS-HT F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0704010000010001", + "intro": "„AMS E“ pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1803300000010001", + "intro": "Plokštėje „AMS-HT D RFID 1“ yra klaida." + }, + { + "ecode": "1806010000020010", + "intro": "AMS-HT G Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706500000020001", + "intro": "AMS G ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1800010000010011", + "intro": "AMS-HT A – Pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705020000010001", + "intro": "AMS F. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1802920000010001", + "intro": "AMS-HT C 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807100000020004", + "intro": "AMS-HT H Šepetėlinis variklis 1 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703310000010001", + "intro": "Plokštėje „AMS D RFID 2“ yra klaida." + }, + { + "ecode": "0704800000010001", + "intro": "AMS E 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0707010000010001", + "intro": "AMS H pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1806010000020009", + "intro": "AMS-HT G Pagalbinis variklis turi nesubalansuotą trifazę varžą. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1804130000020004", + "intro": "AMS-HT E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704100000020004", + "intro": "AMS E Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1806110000020004", + "intro": "AMS-HT G Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1805930000010001", + "intro": "AMS-HT F Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0704500000020001", + "intro": "AMS E ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0704130000020004", + "intro": "AMS E Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0704120000020004", + "intro": "AMS E Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802810000010001", + "intro": "AMS-HT C 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1801010000010011", + "intro": "AMS-HT B – pagalbinio variklio kalibravimo parametrų klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707130000020004", + "intro": "AMS H Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1804010000010011", + "intro": "AMS-HT E – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1801010000010003", + "intro": "AMS-HT B pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0706550000010003", + "intro": "AMS G buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1807930000020002", + "intro": "AMS-HT H 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1805020000020002", + "intro": "AMS-HT F jutiklis negauna signalo. Galbūt jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "1806920000010001", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804020000020002", + "intro": "AMS-HT E jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1800500000020001", + "intro": "AMS-HT: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0705010000020010", + "intro": "AMS F Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1805500000020001", + "intro": "AMS-HT F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0707900000020001", + "intro": "AMS H Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0707550000010003", + "intro": "AMS H buvo aptiktas neprisijungus prie tinklo per AMS inicijavimo procesą." + }, + { + "ecode": "1802500000020001", + "intro": "AMS-HT C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1805010000010004", + "intro": "AMS-HT F pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703300000010001", + "intro": "AMS D RFID 1 plokštėje yra klaida." + }, + { + "ecode": "0703010000010011", + "intro": "AMS D – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0707920000020002", + "intro": "AMS H 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1803920000020002", + "intro": "AMS-HT D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1803010000010003", + "intro": "AMS-HT D pagalbinio variklio sukimo momento valdymas veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0705500000020001", + "intro": "AMS F ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1806920000020002", + "intro": "AMS-HT G 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1800010000010004", + "intro": "AMS-HT A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020010", + "intro": "AMS-HT C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0706010000010011", + "intro": "AMS G – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705550000010003", + "intro": "AMS F buvo aptiktas neprisijungus prie sistemos per AMS inicijavimo procesą." + }, + { + "ecode": "1805010000020011", + "intro": "AMS-HT F Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1806930000020002", + "intro": "AMS-HT G 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1807810000010001", + "intro": "AMS-HT H 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804300000010001", + "intro": "Plokštėje „AMS-HT E RFID 1“ yra klaida." + }, + { + "ecode": "1801920000010001", + "intro": "AMS-HT B 1-ojo šildytuvo aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "1807310000010001", + "intro": "Plokštėje „AMS-HT H RFID 2“ yra klaida." + }, + { + "ecode": "1804930000010001", + "intro": "AMS-HT E Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1804010000010001", + "intro": "AMS-HT E pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0705810000010001", + "intro": "AMS F 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1804010000020010", + "intro": "AMS-HT E Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1802100000020004", + "intro": "AMS-HT C Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1802930000020002", + "intro": "AMS-HT C 2-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1806810000010001", + "intro": "AMS-HT G 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706010000010004", + "intro": "AMS G pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000010011", + "intro": "AMS-HT C – pagalbinio variklio kalibravimo parametro klaida. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0705010000010003", + "intro": "AMS F pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1807800000010001", + "intro": "AMS-HT H 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0706800000010001", + "intro": "AMS G 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1806130000020004", + "intro": "AMS-HT G Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1801930000020002", + "intro": "AMS-HT B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "1802010000010004", + "intro": "AMS-HT C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1802010000020002", + "intro": "AMS-HT C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1801010000010001", + "intro": "AMS-HT B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "0706020000020002", + "intro": "AMS G: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "1802960000010001", + "intro": "AMS-HT C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500010000030007", + "intro": "Jei neįdėta USB atmintinė, negalima įrašyti laiko tarpo fotografijos." + }, + { + "ecode": "0300110000020002", + "intro": "Y ašies rezonansinis dažnis labai skiriasi nuo paskutinio kalibravimo rezultato. Prašome nuvalyti Y ašies kreipiamąją strypą ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0300200000010002", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: patikrinkite, ar įstrigo įrankio galvutė, ar Y ašies vežimėlis susiduria su per dideliu pasipriešinimu." + }, + { + "ecode": "0500030000010007", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "07FE810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "07FE810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FE800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF810000010001", + "intro": "Ekstruderiui valdyti skirtas variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF800000010001", + "intro": "Pjovimo galvutės kėlimo variklis veikia netinkamai. Patikrinkite, ar jungiamasis kabelis nėra atsipalaidavęs." + }, + { + "ecode": "07FF810000020001", + "intro": "Ekstruderių perjungimas veikia netinkamai. Patikrinkite, ar įrankio galvutėje nėra įstrigusių daiktų." + }, + { + "ecode": "0500030000010026", + "intro": "„Toolhead“ išplėtimo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtį ir vėl jį įjunkite." + }, + { + "ecode": "0300200000010001", + "intro": "X ašies grįžimo į pradinę padėtį sutrikimas: patikrinkite, ar neužstrigo įrankio galvutė arba ar X ašies linijinio bėgio pasipriešinimas nėra per didelis." + }, + { + "ecode": "0300100000020002", + "intro": "X ašies rezonansinis dažnis žymiai skiriasi nuo paskutinio kalibravimo rezultatų. Prašome nuvalyti X ašies linijinę bėgelę ir po spausdinimo atlikti kalibravimą." + }, + { + "ecode": "0500040000020039", + "intro": "Prašome prijungti modulio jungtį" + }, + { + "ecode": "07FF200000020004", + "intro": "Prašome ištraukti išorinį giją iš dešiniojo ekstruderio." + }, + { + "ecode": "07FF200000020001", + "intro": "Išsekė dešiniojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0300990000030001", + "intro": "Nustatyta, kad dešinysis šoninis langas yra atidarytas." + }, + { + "ecode": "0701010000010001", + "intro": "AMS B pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200220000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 3 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201220000020005", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202110000010003", + "intro": "AMS C lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203820000020001", + "intro": "AMS D lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701960000010001", + "intro": "AMS B Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700100000020004", + "intro": "AMS A Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702010000020002", + "intro": "AMS C pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201300000010001", + "intro": "AMS B lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201320000010001", + "intro": "AMS B lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202210000020002", + "intro": "AMS C lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202210000020005", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202230000030002", + "intro": "AMS C lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203300000010001", + "intro": "AMS D lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0703800000010001", + "intro": "AMS D 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0300010000010001", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuve įvyko trumpasis jungimas." + }, + { + "ecode": "0703810000010001", + "intro": "AMS D 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010001", + "intro": "AMS C pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200330000020002", + "intro": "AMS A lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1201200000030001", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201220000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201230000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202130000010001", + "intro": "AMS C lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1202720000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1203210000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "0C0003000003000B", + "intro": "Pirmojo sluoksnio tikrinimas: prašome palaukti akimirką." + }, + { + "ecode": "0701900000020001", + "intro": "AMS B Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0702920000010001", + "intro": "AMS C Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0300360000020002", + "intro": "Kameros šilumos cirkuliacijos ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "1200100000020002", + "intro": "AMS A lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020003", + "intro": "AMS A lizdo Nr. 1 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200720000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1200830000020001", + "intro": "AMS A lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202300000020002", + "intro": "AMS C lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000010001", + "intro": "AMS C lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202830000020001", + "intro": "AMS C lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020010", + "intro": "AMS B Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200230000030002", + "intro": "AMS A lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202120000010001", + "intro": "AMS C lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202210000020001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1202230000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 4 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202230000030001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203100000010001", + "intro": "AMS D lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203110000010003", + "intro": "AMS D lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203220000020005", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0703010000020009", + "intro": "AMS D: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0C0003000001000A", + "intro": "Jūsų spausdintuvas veikia gamykliniame režime. Kreipkitės į techninę pagalbą." + }, + { + "ecode": "050004000002001A", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 3." + }, + { + "ecode": "1200200000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 1 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1200820000020001", + "intro": "AMS A lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202330000020002", + "intro": "AMS C lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1203130000010003", + "intro": "AMS D lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0700130000020004", + "intro": "AMS A Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700920000020002", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus pasipriešinimo jėga." + }, + { + "ecode": "0702910000020001", + "intro": "AMS C Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703110000020004", + "intro": "AMS D Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0701010000020011", + "intro": "AMS B. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijų laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0700810000010001", + "intro": "AMS A 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "1200210000030001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1201200000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202710000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000020002", + "intro": "AMS D lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0703130000020004", + "intro": "AMS D Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300330000020002", + "intro": "Kameros ištraukiamojo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0500040000020032", + "intro": "Įdėkite lazerinį modulį ir užfiksuokite greito atsegimo svirtį." + }, + { + "ecode": "0701920000010001", + "intro": "AMS B Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0701020000010001", + "intro": "AMS B. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "0702010000010003", + "intro": "AMS C pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000030002", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202230000020002", + "intro": "AMS C lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0702920000020002", + "intro": "AMS C 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0701930000010001", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000010004", + "intro": "AMS A pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0700500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000020002", + "intro": "AMS A lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020002", + "intro": "AMS A lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202200000020002", + "intro": "AMS C lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202230000020003", + "intro": "AMS C lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1203200000020002", + "intro": "AMS D lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203210000020001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "0702110000020004", + "intro": "AMS C Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703910000020001", + "intro": "AMS D Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020015", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 2." + }, + { + "ecode": "0702020000010001", + "intro": "AMS C. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200710000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201130000010001", + "intro": "AMS B lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201300000030003", + "intro": "AMS B lizdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201330000010001", + "intro": "AMS B lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010003", + "intro": "AMS C lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202220000020002", + "intro": "AMS C lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202310000030003", + "intro": "AMS C lizdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203220000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020003", + "intro": "AMS A lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1200230000020004", + "intro": "AMS A lizdo Nr. 4 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200330000010001", + "intro": "AMS A lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020002", + "intro": "AMS B lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1202220000020001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000030001", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0300350000020002", + "intro": "MC modulio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0703020000020002", + "intro": "AMS D Kilometražo skaitiklis negauna signalo. Gali būti, kad kilometražo skaitiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0C00040000020004", + "intro": "Šiai užduočiai tokio tipo platforma nėra palaikoma. Norėdami tęsti, pasirinkite tinkamą platformą." + }, + { + "ecode": "1200210000020003", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi PTFE vamzdyje." + }, + { + "ecode": "1200220000020005", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200230000030001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi. Vykdomas senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200300000010001", + "intro": "AMS A lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1201200000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1201220000020002", + "intro": "AMS B lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 4 gija PTFE vamzdelyje yra nutrūkusi." + }, + { + "ecode": "1201320000030003", + "intro": "AMS B lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203230000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 4 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1203230000020005", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0700020000020002", + "intro": "AMS A jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "050004000002001C", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 1 lizde." + }, + { + "ecode": "1200110000010001", + "intro": "AMS A lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200230000020002", + "intro": "AMS A lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200310000020002", + "intro": "AMS A lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1200500000020001", + "intro": "AMS: Ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201210000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202100000020002", + "intro": "AMS C lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203110000010001", + "intro": "AMS D lizdo Nr. 2 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "0703010000020011", + "intro": "AMS D. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0701910000020001", + "intro": "AMS B Išmetimo vožtuvas 2 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0300320000020002", + "intro": "Pagalbinio dalinio aušinimo ventiliatoriaus sukimosi greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0701110000020004", + "intro": "AMS B Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0703930000010001", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1200220000030001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi. Vyksta senosios gijos išvalymas; prašome palaukti." + }, + { + "ecode": "1200800000020001", + "intro": "AMS A lizdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000020001", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1201200000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija; įdėkite naują giją." + }, + { + "ecode": "1201220000030001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202200000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0703010000020010", + "intro": "AMS D Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0700010000020010", + "intro": "AMS A Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701100000020004", + "intro": "AMS B Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1201300000020002", + "intro": "AMS B lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1201310000030003", + "intro": "AMS B lizdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201710000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 2-osios lizdo gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202130000010003", + "intro": "AMS C lizdo Nr. 4 variklio sukimo momento reguliatorius veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202200000030002", + "intro": "AMS C lizdo Nr. 1 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020005", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203330000030003", + "intro": "AMS D lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0700930000020002", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020011", + "intro": "AMS C: Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "0300960000030001", + "intro": "Priekinės durys yra atidarytos." + }, + { + "ecode": "050003000002000C", + "intro": "Belaidžio ryšio įrangos klaida: išjunkite ir vėl įjunkite „Wi-Fi“ arba iš naujo paleiskite įrenginį." + }, + { + "ecode": "0300090000020001", + "intro": "Ekstruzijos variklis yra perkrautas. Ekstruderius gali būti užsikimšęs arba gijos medžiaga gali būti įstrigusi antgalyje." + }, + { + "ecode": "0703930000020002", + "intro": "AMS D Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžos jėga." + }, + { + "ecode": "1200200000030001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201700000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201730000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1202220000030001", + "intro": "Baigėsi AMS C lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202310000020002", + "intro": "AMS C lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1202320000020002", + "intro": "AMS C lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203220000020002", + "intro": "AMS D lizdo Nr. 3 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203220000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203230000020002", + "intro": "AMS D lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "0C00040000010015", + "intro": "Nenustatytas lazerio apsauginis įdėklas. Įdėkite jį ir tęskite." + }, + { + "ecode": "0703120000020004", + "intro": "AMS D Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0700800000010001", + "intro": "AMS A 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0500040000020011", + "intro": "Neįmanoma atpažinti AMS A lizdo Nr. 2 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0500040000020017", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 4." + }, + { + "ecode": "0701500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200120000010003", + "intro": "AMS „A lizdo Nr. 3“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200320000010001", + "intro": "AMS A lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202300000030003", + "intro": "AMS C lizdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1203700000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203800000020001", + "intro": "AMS D lizdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0701010000020009", + "intro": "AMS B: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701020000020002", + "intro": "AMS B: jutiklis negauna signalo. Gali būti, kad jutiklio jungtis blogai prisiliečia." + }, + { + "ecode": "0500040000020018", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 1 lizde." + }, + { + "ecode": "0703010000010003", + "intro": "AMS D pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020001", + "intro": "AMS A lizdo Nr. 3 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1201210000020002", + "intro": "AMS B lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201220000020001", + "intro": "Baigėsi AMS B lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203200000020004", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1203300000030003", + "intro": "AMS D lizdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "07FE200000020004", + "intro": "Prašome ištraukti išorinį giją iš kairiojo ekstruderio." + }, + { + "ecode": "1200210000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 2 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201210000020004", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija yra nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201210000020005", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030002", + "intro": "AMS C lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1202220000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 3 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202230000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 4 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000030002", + "intro": "AMS D lizdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203220000030002", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203320000010001", + "intro": "AMS D lizdo Nr. 3 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203330000010001", + "intro": "AMS D lizdo Nr. 4 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0701810000010001", + "intro": "AMS B: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0701120000020004", + "intro": "AMS B Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200110000010003", + "intro": "AMS „A lizdo Nr. 2“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201820000020001", + "intro": "AMS B lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202130000020002", + "intro": "AMS C lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0702120000020004", + "intro": "AMS C Šepetėlinis variklis 3 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702810000010001", + "intro": "AMS C: 2-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0702800000010001", + "intro": "AMS C 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703960000010001", + "intro": "AMS D Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700010000010003", + "intro": "AMS A pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "0703020000010001", + "intro": "AMS D. Gijos greičio ir ilgio paklaida: galbūt Gijos jutiklis veikia netinkamai." + }, + { + "ecode": "1200100000010001", + "intro": "AMS A lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200210000020001", + "intro": "AMS A lizdo Nr. 2 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200220000030002", + "intro": "AMS: baigėsi „lizdo Nr. 3“ gija, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201330000020002", + "intro": "AMS B lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "1202110000020002", + "intro": "AMS C lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1202120000020002", + "intro": "AMS C lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0700010000020009", + "intro": "AMS A Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "0701010000020002", + "intro": "AMS B pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200220000020004", + "intro": "AMS A lizdo Nr. 3 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1201130000010003", + "intro": "AMS B lizdo Nr. 4 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203230000020003", + "intro": "AMS D lizdo Nr. 4 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "050004000002001F", + "intro": "Neįmanoma atpažinti „AMS D lizdo Nr. 4“ esančios RFID žymės." + }, + { + "ecode": "1200130000010001", + "intro": "AMS A lizdo Nr. 4 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201210000020003", + "intro": "Gali būti, kad AMS B lizdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1201220000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 3 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201230000020001", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1201230000020006", + "intro": "Nepavyko išspausti AMS B lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1202120000010003", + "intro": "AMS C lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1202210000020006", + "intro": "Nepavyko išspausti AMS C lizdo Nr. 2 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203200000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 1 gijos; galbūt ekstruderius užsikimšęs arba gija per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1203210000030002", + "intro": "AMS D lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203720000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "07FE200000020001", + "intro": "Išsekė kairiojo ekstruderio išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0500040000020013", + "intro": "AMS A lizdo Nr. 4 įrenginyje esančios RFID žymės negalima atpažinti." + }, + { + "ecode": "1200130000020002", + "intro": "AMS A lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201220000030002", + "intro": "AMS B lizdo Nr. 3 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201720000010001", + "intro": "AMS B gijos greičio ir ilgio paklaida: lizdo Nr. 3 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1202330000030003", + "intro": "AMS C lizdo Nr. 4 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203130000010001", + "intro": "AMS D lizdo Nr. 4 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203210000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203210000030001", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000030001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "0700960000010001", + "intro": "AMS A Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0500040000020010", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS A lizdo Nr. 1." + }, + { + "ecode": "050004000002001E", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 3." + }, + { + "ecode": "0700010000010001", + "intro": "AMS A pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020005", + "intro": "AMS: baigėsi „lizdo Nr. 1“ gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdinimo galvutėje." + }, + { + "ecode": "1200320000020002", + "intro": "AMS A 3-iojo lizdo RFID žymė yra sugadinta." + }, + { + "ecode": "1202200000020005", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1202210000030001", + "intro": "Baigėsi AMS C lizdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1202320000030003", + "intro": "AMS C lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "1203300000020002", + "intro": "AMS D lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1203330000020002", + "intro": "AMS D lizdo Nr. 4 RFID žymė yra sugadinta." + }, + { + "ecode": "0703100000020004", + "intro": "AMS D Šepetėlinis variklis 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0C00040000020008", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0701930000020002", + "intro": "AMS B Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702500000020001", + "intro": "AMS C ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1201120000010003", + "intro": "AMS B lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201200000020005", + "intro": "Baigėsi AMS B lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203100000010003", + "intro": "AMS D lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203110000020002", + "intro": "AMS D lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "0300270000010001", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio dažnis yra per mažas. Jutiklis gali būti sugadintas." + }, + { + "ecode": "0700110000020004", + "intro": "AMS A Šepetėlinis variklis 2 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0300310000020002", + "intro": "Dalies aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "0702960000010001", + "intro": "AMS C Džiovinimo proceso metu gali įvykti terminis išsiveržimas. Prašome išjungti AMS maitinimo šaltinį." + }, + { + "ecode": "0700120000020004", + "intro": "AMS A Šepetėlinis variklis 3 nesiunčia signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "1200230000020006", + "intro": "Nepavyko išspausti AMS A lizdo Nr. 4 gijos; galbūt užsikimšo ekstruderius arba gija yra per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "1201810000020001", + "intro": "AMS B lizdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202220000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020005", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1203220000020001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija; įdėkite naują giją." + }, + { + "ecode": "1203230000030002", + "intro": "AMS D lizdo Nr. 4 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203310000010001", + "intro": "AMS D lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "0300270000010007", + "intro": "Purkštuvo poslinkio kalibravimo jutiklio dažnis yra per didelis. Jutiklis gali būti sugadintas." + }, + { + "ecode": "0703010000010001", + "intro": "AMS D pagalbinis variklis prasisuko. Galbūt nusidėvėjo ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200200000020001", + "intro": "AMS A lizdo Nr. 1 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200210000030002", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo, kuriame yra ta pati gija." + }, + { + "ecode": "1201230000030002", + "intro": "AMS B lizdo Nr. 4 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203810000020001", + "intro": "AMS D lizdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203830000020001", + "intro": "AMS D lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0C00040000010016", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "0701920000020002", + "intro": "AMS B 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702130000020004", + "intro": "AMS C Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020019", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS C lizdo Nr. 2 lizde." + }, + { + "ecode": "0703500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1200130000010003", + "intro": "AMS „lizdo Nr. 4“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200220000020003", + "intro": "AMS A lizdo Nr. 3 gija PTFE vamzdyje gali būti nutrūkusi." + }, + { + "ecode": "1202210000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 2 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202230000020001", + "intro": "Baigėsi AMS C lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203120000010001", + "intro": "AMS D lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1203710000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: lizdo Nr. 2 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1200210000020005", + "intro": "AMS A lizdo Nr. 2 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201100000010003", + "intro": "AMS B lizdo Nr. 1 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201100000020002", + "intro": "AMS B lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201310000020002", + "intro": "AMS B lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1201800000020001", + "intro": "AMS B lizdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202800000020001", + "intro": "AMS C lizdo Nr. 1 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 3 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203310000020002", + "intro": "AMS D lizdo Nr. 2 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000020002", + "intro": "AMS D lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1203320000030003", + "intro": "AMS D lizdo Nr. 3 RFID negalima nuskaityti dėl konstrukcinės klaidos." + }, + { + "ecode": "0703920000010001", + "intro": "AMS D Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "1201110000010003", + "intro": "AMS B lizdo Nr. 2 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1201120000020002", + "intro": "AMS B lizdo Nr. 3 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201230000020002", + "intro": "AMS B lizdo Nr. 4 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1201230000020005", + "intro": "Baigėsi AMS B lizdo Nr. 4 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1201830000020001", + "intro": "AMS B lizdo Nr. 4 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1202200000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija galvutėje yra nutrūkusi." + }, + { + "ecode": "1202730000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203120000010003", + "intro": "AMS D lizdo Nr. 3 variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1203210000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 2 gijos; ekstruderiui galėjo užsikimšti arba gija gali būti per plona, dėl ko ekstruderiui slysta." + }, + { + "ecode": "1203500000020001", + "intro": "AMS D ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "0702010000020009", + "intro": "AMS C: Pagalbinio variklio trifazės varžos pusiausvyra sutrikusi. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "050004000002001B", + "intro": "Neįmanoma atpažinti AMS C lizdo Nr. 4 įrenginyje esančios RFID žymės." + }, + { + "ecode": "050004000002001D", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS D lizdo Nr. 2 lizde." + }, + { + "ecode": "1201210000030002", + "intro": "AMS B lizdo Nr. 2 gija baigėsi, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1203100000020002", + "intro": "AMS D lizdo Nr. 1 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203210000020002", + "intro": "AMS D lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1203230000020001", + "intro": "Baigėsi AMS D lizdo Nr. 4 gija; įdėkite naują giją." + }, + { + "ecode": "1203310000030003", + "intro": "AMS D lizdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702020000020002", + "intro": "AMS C: jutiklis negauna signalo. Galbūt jutiklio jungtis prastai prisiliečia." + }, + { + "ecode": "0703920000020002", + "intro": "AMS D 1-ojo šildytuvo aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0700020000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: galbūt sugedo Gijos jutiklis." + }, + { + "ecode": "0702010000010004", + "intro": "AMS C pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "0703010000010004", + "intro": "AMS D pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1202110000010001", + "intro": "AMS C lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija; įdėkite naują giją." + }, + { + "ecode": "1202700000010001", + "intro": "AMS C gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1203200000020003", + "intro": "Gali būti, kad AMS D lizdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1203200000020005", + "intro": "Baigėsi AMS D lizdo Nr. 1 gija, o senosios gijos išvalymas vyko netinkamai; prašome patikrinti, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "050003000001000B", + "intro": "Ekranas veikia netinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500040000020016", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 3." + }, + { + "ecode": "0701010000010003", + "intro": "AMS B pagalbinio variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200200000020002", + "intro": "AMS A lizdo Nr. 1 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200200000030002", + "intro": "AMS: baigėsi „lizdo Nr. 1“ gija, todėl sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1200210000020002", + "intro": "AMS A lizdo Nr. 2 yra tuščias; įdėkite naują giją." + }, + { + "ecode": "1200700000010001", + "intro": "AMS: Gijos greičio ir ilgio paklaida: lizdo Nr. 1 gijos jutiklių sistema gali būti sugedusi." + }, + { + "ecode": "1201110000010001", + "intro": "AMS B lizdo Nr. 2 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201120000010001", + "intro": "AMS B lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1201320000020002", + "intro": "AMS B lizdo Nr. 3 RFID žymė yra sugadinta." + }, + { + "ecode": "1202330000010001", + "intro": "AMS C lizdo Nr. 4 RFID ritė yra sugadinta arba RFID (RF) įrangos grandinėje yra gedimas." + }, + { + "ecode": "0702930000020002", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatoriaus sukimosi greitis yra per mažas, o tai gali būti susiję su per didele ventiliatoriaus varžą." + }, + { + "ecode": "0702010000020010", + "intro": "AMS C Pagalbinio variklio varža neatitinka normos. Pagalbinis variklis gali būti sugedęs." + }, + { + "ecode": "1200300000030003", + "intro": "AMS A lizdo Nr. 1 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1201210000030001", + "intro": "Baigėsi AMS B lizdo Nr. 2 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1201500000020001", + "intro": "AMS B ryšys sutrikęs; patikrinkite jungiamąjį kabelį." + }, + { + "ecode": "1202210000020004", + "intro": "Gali būti, kad „AMS C lizdo Nr. 2“ gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202310000010001", + "intro": "AMS C lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1203730000010001", + "intro": "AMS D gijos greičio ir ilgio paklaida: 4-osios lizdo gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "0701800000010001", + "intro": "AMS B 1-ojo šildytuvo srovės jutiklis veikia netinkamai." + }, + { + "ecode": "0703900000020001", + "intro": "AMS D Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0703010000020002", + "intro": "AMS D pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200210000020004", + "intro": "AMS A lizdo Nr. 2 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1200230000020005", + "intro": "AMS A lizdo Nr. 4 gija baigėsi, o senosios gijas išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "1200330000030003", + "intro": "AMS A lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200730000010001", + "intro": "AMS: Gijos greičio ir ilgio klaida: 4-osios lizdo Gijos jutiklis gali būti sugedęs." + }, + { + "ecode": "1201310000010001", + "intro": "AMS B lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202100000010001", + "intro": "AMS C lizdo Nr. 1 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1202200000020003", + "intro": "Gali būti, kad AMS C lizdo Nr. 1 gija PTFE vamzdyje yra nutrūkusi." + }, + { + "ecode": "1202200000030001", + "intro": "Baigėsi AMS C lizdo Nr. 1 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203210000020005", + "intro": "Baigėsi AMS D lizdo Nr. 2 gija, o senosios gijos išvalymas vyko netinkamai; patikrinkite, ar gija neužstrigo spausdintuvo galvutėje." + }, + { + "ecode": "0702100000020004", + "intro": "AMS C Šepetėlinis variklis Nr. 1 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0702900000020001", + "intro": "AMS C Išmetimo vožtuvas 1 veikia netinkamai, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0701130000020004", + "intro": "AMS B Šepetėlinis variklis 4 neperduoda signalo; tai gali būti susiję su prastu kontaktu variklio jungtyje arba variklio gedimu." + }, + { + "ecode": "0500040000020014", + "intro": "Neįmanoma atpažinti RFID žymės, esančios AMS B lizdo Nr. 1 lizde." + }, + { + "ecode": "0700010000020002", + "intro": "AMS A pagalbinis variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200120000010001", + "intro": "AMS A lizdo Nr. 3 variklis prasisuko. Galbūt netinkamai veikia ekstruzijos ratas arba gija yra per plona." + }, + { + "ecode": "1200310000010001", + "intro": "AMS A lizdo Nr. 2 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1200320000030003", + "intro": "AMS A lizdo Nr. 3 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1202220000020004", + "intro": "Gali būti, kad AMS C lizdo Nr. 3 gija įstrigo įrankio galvutėje." + }, + { + "ecode": "1202300000010001", + "intro": "AMS C lizdo Nr. 1 RFID ritė yra sugadinta arba RFID įrangos grandinėje yra gedimas." + }, + { + "ecode": "1202810000020001", + "intro": "AMS C lizdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "0700910000020001", + "intro": "AMS A Išmetimo vožtuvo 2 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0700920000010001", + "intro": "AMS A Šildytuvo Nr. 1 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "050003000001000C", + "intro": "MC variklio valdymo modulis veikia netinkamai. Išjunkite įrenginį, patikrinkite jungtis ir vėl jį įjunkite." + }, + { + "ecode": "0700900000020001", + "intro": "AMS A Išmetimo vožtuvo 1 veikimas yra nenormalus, o tai gali būti susiję su per didele varža." + }, + { + "ecode": "0500040000020012", + "intro": "Neįmanoma atpažinti AMS A lizdo Nr. 3 įrenginyje esančios RFID žymės." + }, + { + "ecode": "0701010000010004", + "intro": "AMS B pagalbinio variklio greičio reguliatorius veikia netinkamai. Greičio jutiklis gali būti sugedęs." + }, + { + "ecode": "1200100000010003", + "intro": "AMS „A lizdo Nr. 1“ variklio sukimo momento valdymo sistema veikia netinkamai. Gali būti sugedęs srovės jutiklis." + }, + { + "ecode": "1200110000020002", + "intro": "AMS A lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1200200000020004", + "intro": "AMS A lizdo Nr. 1 gija gali būti nutrūkusi įrankio galvutėje." + }, + { + "ecode": "1202820000020001", + "intro": "AMS C lizdo Nr. 3 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1203130000020002", + "intro": "AMS D lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1203220000030001", + "intro": "Baigėsi AMS D lizdo Nr. 3 gija. Šalinama senoji gija; prašome palaukti." + }, + { + "ecode": "1203230000020006", + "intro": "Nepavyko išspausti AMS D lizdo Nr. 4 gijos; ekstruderius gali būti užsikimšęs arba gija gali būti per plona, dėl ko ekstruderius slysta." + }, + { + "ecode": "0700930000010001", + "intro": "AMS A Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti dėl to, kad ventiliatorius įstrigo." + }, + { + "ecode": "0700010000020011", + "intro": "AMS A. Prarastas variklio pagalbos parametras. Ištraukite giją iš gijos laikiklio ir iš naujo paleiskite AMS." + }, + { + "ecode": "1200230000020001", + "intro": "AMS A lizdo Nr. 4 gija baigėsi; įdėkite naują giją." + }, + { + "ecode": "1200300000020002", + "intro": "AMS A lizdo Nr. 1 RFID žymė yra sugadinta." + }, + { + "ecode": "1200310000030003", + "intro": "AMS A lizdo Nr. 2 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "1200810000020001", + "intro": "AMS A lizdo Nr. 2 gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1201100000010001", + "intro": "AMS B lizdo Nr. 1 variklis prasisuko. Gali būti, kad ekstruzijos ratas veikia netinkamai arba gija yra per plona." + }, + { + "ecode": "1201110000020002", + "intro": "AMS B lizdo Nr. 2 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201130000020002", + "intro": "AMS B lizdo Nr. 4 variklis yra perkrautas. Gali būti, kad gija susipynusi arba įstrigusi." + }, + { + "ecode": "1201200000030002", + "intro": "AMS B lizdo Nr. 1 gija baigėsi ir sistema automatiškai perėjo prie lizdo su ta pačia gija." + }, + { + "ecode": "1201330000030003", + "intro": "AMS B lizdo Nr. 4 RFID negalima nuskaityti dėl struktūrinės klaidos." + }, + { + "ecode": "0702930000010001", + "intro": "AMS C Šildytuvo Nr. 2 aušinimo ventiliatorius užsikimšęs, o tai gali būti susiję su tuo, kad ventiliatorius įstrigo." + }, + { + "ecode": "12FF200000020001", + "intro": "Spool laikiklyje baigėsi gija; įdėkite naują giją." + }, + { + "ecode": "12FF200000020002", + "intro": "Spool laikiklyje nėra gijos; įdėkite naują giją." + }, + { + "ecode": "12FF200000020005", + "intro": "Gali būti nutrūkęs gija įrankio galvutėje." + }, + { + "ecode": "12FF200000020007", + "intro": "Nepavyko patikrinti gijos padėties įrankio galvutėje; spustelėkite čia, jei reikia pagalbos." + }, + { + "ecode": "12FF200000030007", + "intro": "Tikrinama visų AMS lizdų gijų padėtis, prašome palaukti." + }, + { + "ecode": "12FF800000020001", + "intro": "Spool laikiklyje esanti gija gali būti susipynusi arba įstrigusi." + }, + { + "ecode": "1200450000020001", + "intro": "Gijų pjovimo jutiklis veikia netinkamai. Patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "1200450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. X ašies variklis gali praleisti žingsnius." + }, + { + "ecode": "1200450000020003", + "intro": "Gijos pjovimo įtaiso rankena neatsileido. Gali būti, kad rankena arba peilis užstrigo, arba yra problemų su Gijos jutiklio jungtimi." + }, + { + "ecode": "1200510000030001", + "intro": "AMS funkcija išjungta; įdėkite giją iš ritės laikiklio." + }, + { + "ecode": "0C0001000001000A", + "intro": "Gali būti, kad „Micro Lidar“ šviesos diodas yra sugedęs." + }, + { + "ecode": "0C00020000020002", + "intro": "Horizontali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00020000020008", + "intro": "Vertikali lazerio linija yra per plati. Patikrinkite, ar šildomoji platforma nėra užsiteršusi." + }, + { + "ecode": "0C00030000010009", + "intro": "Pirmojo sluoksnio tikrinimo modulis netikėtai perkrautas. Tikrinimo rezultatas gali būti netikslus." + }, + { + "ecode": "0C00030000020001", + "intro": "Nepavyko atlikti gijų ekspozicijos matavimo, nes šioje medžiagoje lazerio atspindys yra per silpnas. Pirmojo sluoksnio patikra gali būti netiksli." + }, + { + "ecode": "0C00030000020002", + "intro": "Pirmojo sluoksnio patikrinimas nutrauktas dėl nenormalių LIDAR duomenų." + }, + { + "ecode": "0C00030000020004", + "intro": "Dabartiniam spausdinimo užsakymui pirmojo sluoksnio patikra nepalaikoma." + }, + { + "ecode": "0C00030000020005", + "intro": "Pirmojo sluoksnio patikrinimas baigėsi neįprastai, todėl dabartiniai rezultatai gali būti netikslūs." + }, + { + "ecode": "0C00030000030006", + "intro": "Atliekų šachtoje galėjo susikaupti pašalintas gijos medžiaga. Prašome patikrinti ir išvalyti šachtą." + }, + { + "ecode": "0C00030000030007", + "intro": "Aptikti galimi pirmojo sluoksnio defektai. Prašome patikrinti pirmojo sluoksnio kokybę ir nuspręsti, ar reikia sustabdyti užduotį." + }, + { + "ecode": "0C00030000030008", + "intro": "Aptikti galimi spageti defektai. Prašome patikrinti spausdinimo kokybę ir nuspręsti, ar užduotį reikia nutraukti." + }, + { + "ecode": "0C00030000030010", + "intro": "Atrodo, kad jūsų spausdintuvas spausdina neišspaudžiant medžiagos." + }, + { + "ecode": "0703300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0703350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0702300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0702350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0701300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0701350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700300000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700310000030003", + "intro": "RFID negalima nuskaityti dėl aparatinės įrangos ar struktūrinės klaidos." + }, + { + "ecode": "0700350000010001", + "intro": "Temperatūros ir drėgmės jutiklis rodo paklaidą. Galbūt mikroschema yra sugedusi." + }, + { + "ecode": "0700450000020001", + "intro": "Gijų pjaustytuvo jutiklis veikia netinkamai; patikrinkite, ar jungtis yra tinkamai įjungta." + }, + { + "ecode": "0700450000020002", + "intro": "Gijos pjaustytuvo pjovimo atstumas yra per didelis. XY variklis gali praleisti žingsnius." + }, + { + "ecode": "0500040000020020", + "intro": "" + }, + { + "ecode": "0300930000010007", + "intro": "Kameros temperatūra yra nenormali. Galbūt maitinimo bloke esantis temperatūros jutiklis yra trumpai sujungęs." + }, + { + "ecode": "0300930000010008", + "intro": "Kameros temperatūra yra nenormali. Gali būti, kad maitinimo bloke esantis temperatūros jutiklis turi atvirą grandinę." + }, + { + "ecode": "0300940000020003", + "intro": "Kameroje nepavyko pasiekti reikiamos temperatūros. Įrenginys sustos ir lauks, kol pasieks reikiamą kameros temperatūrą." + }, + { + "ecode": "0300940000030002", + "intro": "Jei kameros temperatūros nustatymo vertė viršys ribą, bus nustatyta ribinė vertė." + }, + { + "ecode": "0500020000020002", + "intro": "Nepavyko prisijungti prie įrenginio; patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020004", + "intro": "Nesankcionuotas vartotojas: patikrinkite savo paskyros duomenis." + }, + { + "ecode": "0500020000020006", + "intro": "Įvyko srautinio perdavimo funkcijos klaida. Patikrinkite tinklo ryšį ir pabandykite dar kartą. Jei problema neišsprendžiama, galite iš naujo paleisti arba atnaujinti spausdintuvą." + }, + { + "ecode": "0500020000020007", + "intro": "Nepavyko prisijungti prie „Liveview“ paslaugos; patikrinkite savo interneto ryšį." + }, + { + "ecode": "0500030000010001", + "intro": "MC modulis veikia netinkamai; prašome iš naujo paleisti įrenginį arba patikrinti įrenginio laidų jungtis." + }, + { + "ecode": "0500030000010002", + "intro": "Įrankio galvutė veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010003", + "intro": "AMS modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010005", + "intro": "Vidinė paslauga veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010006", + "intro": "Įvyko sistemos avarinė situacija. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010008", + "intro": "Įvyko sistemos įšalimas. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010009", + "intro": "Įvyko sistemos įšalimas. Sistema buvo atkurta automatiškai ją perkrovus." + }, + { + "ecode": "0500030000010023", + "intro": "kameros temperatūros reguliavimo modulis veikia netinkamai. Prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "0500030000010025", + "intro": "Dabartinė Aparatinė programinė įranga veikia netinkamai. Prašome ją atnaujinti dar kartą." + }, + { + "ecode": "0500040000010004", + "intro": "Spausdinimo failas yra neteisėtas." + }, + { + "ecode": "0500040000020007", + "intro": "Spausdinimo platformos temperatūra viršija gijos vitrifikacijos temperatūrą, dėl to gali užsikimšti purkštukas. Prašome palikti spausdintuvo priekines dureles atviras arba sumažinti spausdinimo platformos temperatūrą." + }, + { + "ecode": "0300400000020001", + "intro": "Duomenų perdavimas per nuoseklųjį prievadą vyksta netinkamai; galbūt Aparatinė programinė įranga veikia netinkamai." + }, + { + "ecode": "0300900000010004", + "intro": "Kameros šildymas neveikia. Šildymo ventiliatoriaus greitis per mažas." + }, + { + "ecode": "0300900000010005", + "intro": "Kameros šildymas neveikia. Šiluminė varža per didelė." + }, + { + "ecode": "0300900000010010", + "intro": "kameros temperatūros reguliatoriaus ryšys sutrikęs." + }, + { + "ecode": "0300910000010001", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300910000010003", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300910000010006", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300910000010007", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "0300910000010008", + "intro": "1-ojo kameros šildytuvo temperatūra nepasiekė nustatytos vertės." + }, + { + "ecode": "030091000001000A", + "intro": "1-ojo kameros šildytuvo temperatūra yra nenormali. Gali būti sugedusi kintamosios srovės plokštė." + }, + { + "ecode": "0300920000010001", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuve gali būti trumpasis jungimas." + }, + { + "ecode": "0300920000010002", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad šildytuve įvyko grandinės pertrauka arba suveikė terminis saugiklis." + }, + { + "ecode": "0300920000010003", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Šildytuvas perkaitęs." + }, + { + "ecode": "0300920000010006", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300920000010007", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti, kad jutiklio grandinė yra atvira." + }, + { + "ecode": "0300920000010008", + "intro": "2-ojo kameros šildytuvo temperatūra nepasiekė nustatytos vertės." + }, + { + "ecode": "030092000001000A", + "intro": "Kameros šildytuvo Nr. 2 temperatūra yra nenormali. Gali būti sugedusi oro kondicionavimo plokštė." + }, + { + "ecode": "0300930000010001", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis yra trumpai sujungtas." + }, + { + "ecode": "0300930000010002", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklio grandinė yra atvira." + }, + { + "ecode": "0300930000010003", + "intro": "Kameros temperatūra yra nenormali. Galbūt kameros šildytuvo temperatūros jutiklis, esantis prie oro išėjimo angos, yra trumpai sujungtas." + }, + { + "ecode": "0300050000010001", + "intro": "Variklio valdiklis perkaista. Galbūt jo aušintuvas yra laisvas arba aušinimo ventiliatorius sugadintas." + }, + { + "ecode": "0300060000010001", + "intro": "Variklis „A“ turi atvirą grandinę. Gali būti, kad jungtis yra laisva arba variklis sugedęs." + }, + { + "ecode": "0300060000010002", + "intro": "Variklis „A“ yra trumpai sujungtas. Jis galbūt sugedo." + }, + { + "ecode": "0300070000010001", + "intro": "„Motor-B“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300070000010002", + "intro": "„Motor-B“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "0300080000010001", + "intro": "„Motor-Z“ yra atvira grandinė. Galbūt jungtis yra laisva, arba variklis sugedo." + }, + { + "ecode": "0300080000010002", + "intro": "„Motor-Z“ įvyko trumpasis jungimas. Gali būti, kad jis sugedo." + }, + { + "ecode": "03000A0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 1 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000A0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000A0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 1 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000A0000010004", + "intro": "Jėgos jutiklyje Nr. 1 užfiksuotas išorinis trikdys. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000A0000010005", + "intro": "Jėgos jutiklis Nr. 1 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000B0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 2 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000B0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000B0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 2 signalas yra per silpnas. Galbūt nutrūko elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000B0000010004", + "intro": "Jėgos jutiklyje Nr. 2 užfiksuotas išorinis trikdys. Šildomojo pagrindo plokštė galėjo paliesti kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000B0000010005", + "intro": "Jėgos jutiklis Nr. 2 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03000C0000010001", + "intro": "Šildomojo pagrindo jėgos jutiklis Nr. 3 yra pernelyg jautrus. Jis gali būti įstrigęs tarp deformacijos svirties ir šildomojo pagrindo atramos, arba reguliavimo varžtas gali būti pernelyg stipriai priveržtas." + }, + { + "ecode": "03000C0000010002", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra silpnas. Jėgos jutiklis gali būti sugedęs arba jo elektrinė jungtis gali būti netinkama." + }, + { + "ecode": "03000C0000010003", + "intro": "Šildomojo pagrindo jėgos jutiklio Nr. 3 signalas yra per silpnas. Gali būti nutrūkęs elektroninis ryšys su jutikliu." + }, + { + "ecode": "03000C0000010004", + "intro": "Jėgos jutiklyje Nr. 3 užfiksuotas išorinis trikdis. Galbūt šildomojo pagrindo plokštė palietė kažką už šildomojo pagrindo ribų." + }, + { + "ecode": "03000C0000010005", + "intro": "Jėgos jutiklis Nr. 3 užfiksavo netikėtą nuolatinę jėgą. Galbūt užstrigo šildomasis stalas arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "0300100000020001", + "intro": "X ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300110000020001", + "intro": "Y ašies rezonansinis dažnis yra žemas. Gali būti, kad sinchroninis diržas yra laisvas." + }, + { + "ecode": "0300130000010001", + "intro": "Variklio A srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos diskretizavimo grandinės gedimu." + }, + { + "ecode": "0300140000010001", + "intro": "„Motor-B“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300150000010001", + "intro": "„Motor-Z“ srovės jutiklis veikia netinkamai. Tai gali būti susiję su aparatinės įrangos duomenų ėmimo grandinės gedimu." + }, + { + "ecode": "0300170000010001", + "intro": "Hotendo aušinimo ventiliatoriaus greitis per mažas arba jis sustojo. Galbūt jis užstrigo arba jungtis nėra tinkamai įjungta." + }, + { + "ecode": "0300170000020002", + "intro": "Hotendo aušinimo ventiliatoriaus greitis yra mažas. Jis gali būti užstrigęs ir reikia jį išvalyti." + }, + { + "ecode": "03001B0000010001", + "intro": "Šildomojo pagrindo pagreičio jutiklio signalas yra silpnas. Jutiklis galėjo nukristi arba būti pažeistas." + }, + { + "ecode": "03001B0000010003", + "intro": "Šildomojo pagrindo pagreičio jutiklis užfiksavo netikėtą nuolatinę jėgą. Gali būti, kad jutiklis užstrigo arba sugedo analoginis įvesties blokas." + }, + { + "ecode": "03001C0000010001", + "intro": "Ekstruzijos variklio valdiklis veikia netinkamai. Gali būti, kad MOSFET trumpojo jungimo." + }, + { + "ecode": "0300200000010003", + "intro": "X ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300200000010004", + "intro": "Y ašies grįžimas į pradinę padėtį vyksta netinkamai: galbūt laisvas sinchroninis diržas." + }, + { + "ecode": "0300010000010002", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt šildytuvo grandinė yra atvira arba termininis jungiklis yra atviras." + }, + { + "ecode": "0300010000010003", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; šildytuvas perkaitęs." + }, + { + "ecode": "0300010000010006", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklyje įvyko trumpasis jungimas." + }, + { + "ecode": "0300010000010007", + "intro": "Šildomojo pagrindo temperatūra yra nenormali; galbūt jutiklio grandinė yra atvira." + }, + { + "ecode": "030001000001000C", + "intro": "Šildomasis stalas ilgą laiką veikė esant maksimaliam apkrovimui. Temperatūros reguliavimo sistema gali veikti netinkamai." + }, + { + "ecode": "0300010000030008", + "intro": "Šildomo pagrindo temperatūra viršija ribinę vertę ir automatiškai prisitaiko prie ribinės temperatūros." + } + ] + }, + "device_error": { + "ver": 202506171403, + "lt": [ + { + "ecode": "03008022", + "intro": "Šildomoji platforma, judėdama žemyn, gali užstrigti. Prašome pašalinti visus daiktus, esančius po šildomąja platforma, ir patikrinti, ar jos judėjimo metu nekyla pasipriešinimo ar užstrigimo." + }, + { + "ecode": "0502400C", + "intro": "" + }, + { + "ecode": "05024009", + "intro": "" + }, + { + "ecode": "0502400B", + "intro": "" + }, + { + "ecode": "05024008", + "intro": "" + }, + { + "ecode": "0502400A", + "intro": "" + }, + { + "ecode": "05024007", + "intro": "" + }, + { + "ecode": "0C008002", + "intro": "" + }, + { + "ecode": "05004042", + "intro": "Dėl energijos apribojimų, pradėjus AMS džiovinimą, bus sustabdytos dabartinės operacijos, pavyzdžiui, purkštukų kaitinimas ir ventiliatoriaus veikimas. Ar norite tęsti džiovinimą?" + }, + { + "ecode": "05004040", + "intro": "Spausdintuvas pasiekė maitinimo ribą. Norėdami įjungti džiovinimo funkciją, prie šio AMS prijunkite specialų maitinimo adapterį." + }, + { + "ecode": "05004041", + "intro": "Spausdinimo metu negalima pradėti AMS džiovinimo." + }, + { + "ecode": "0500806B", + "intro": "Greito atjungimo svirtis nėra užfiksuota. Prašome nuspausti išorinį įrankio galvutės modulį, kad įsitikintumėte, jog jis tinkamai įsitaisė, tada nuspaudžiant svirtį užfiksuokite ją vietoje." + }, + { + "ecode": "0502C010", + "intro": "Dėl spausdintuvo galios apribojimų AMS džiovinimo metu negalima atlikti spausdinimo, kalibravimo, valdymo ir kitų veiksmų. Prieš pradėdami bet kokią kitą operaciją, sustabdykite džiovinimo procesą." + }, + { + "ecode": "0500808D", + "intro": "Nepavyko atlikti pjovimo modulio poslinkio kalibravimo, dėl to pjūviai gali būti netikslūs. Įsitikinkite, kad 80 g baltas spausdinimo popierius yra tinkamai įdėtas, ir patikrinkite, ar pjovimo peilio galiukas nėra nusidėvėjęs." + }, + { + "ecode": "03004014", + "intro": "Nepavyko atlikti Z ašies grįžimo į pradinę padėtį: temperatūros reguliavimo sutrikimas." + }, + { + "ecode": "05FE806A", + "intro": "Nepavyko atpažinti kairiojo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra užteršta. Prieš kitą spausdinimą spausdintuvo ekrane nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "0500806A", + "intro": "Nepavyko atpažinti kairiojo ir dešiniojo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra užteršta. Prieš kitą spausdinimą spausdintuvo ekrane nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "05FF806A", + "intro": "Nepavyko atpažinti tinkamo spausdinimo galvutės. Gali būti, kad tai neoriginali spausdinimo galvutė arba jos žymė yra nešvari. Prieš kitą spausdinimą spausdintuvo ekrane nustatykite spausdinimo galvutės tipą." + }, + { + "ecode": "0502C00F", + "intro": "Įrenginys užimtas ir negali atlikti purkštukų atpažinimo." + }, + { + "ecode": "05008090", + "intro": "Prašome pritvirtinti 80 g baltą spausdinimo popierių prie platformos vidurio." + }, + { + "ecode": "05004007", + "intro": "Įrenginys turi būti atnaujintas remonto metu, todėl šiuo metu spausdinti negalima." + }, + { + "ecode": "18068005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18018004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18018006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18008006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18058006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18038005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18078004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18078005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18068006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18008005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18038004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18028006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18008004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18048006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18078006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18018005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18038006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Gali būti, kad AMS nėra suderintas su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS-HT PTFE vamzdelis." + }, + { + "ecode": "18028004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18028005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18058005", + "intro": "AMS-HT nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18068004", + "intro": "AMS-HT nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07FF8025", + "intro": "Pasibaigė šalto ištraukimo laiko limitas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "07FE8025", + "intro": "Pasibaigė šalto ištraukimo laiko limitas. Prašome nedelsiant imtis veiksmų arba patikrinti, ar ekstruderyje nesulūžo gija, ir spustelėkite „Pagalbininką“, kad sužinotumėte daugiau." + }, + { + "ecode": "03008071", + "intro": "„Toolhead Enhanced Cooling Fan“ modulis veikia netinkamai." + }, + { + "ecode": "0502400E", + "intro": "Nepavyko pradėti naujos užduoties: nebuvo užbaigtas purkštuko šaltasis traukimas." + }, + { + "ecode": "07008004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07028005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07038005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07FF8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07FE8004", + "intro": "Nepavyko atitraukti gijos iš kairiojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "18068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07068004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18FF8004", + "intro": "Nepavyko atitraukti gijos iš dešiniojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "07048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07048005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18FF8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07068003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18FE8005", + "intro": "Nepavyko ištraukti gijos už AMS-HT ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "18038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07048004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "18008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07058005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07068006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07058003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07078003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07048006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07078005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "18048003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "18018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07008005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07008006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07018005", + "intro": "AMS nepavyko išstumti gijų. Galite nupjauti gijų galą tiesiai ir įdėti jį iš naujo. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar AMS esančiuose PTFE vamzdeliuose nėra nusidėvėjimo požymių." + }, + { + "ecode": "07FE8005", + "intro": "Nepavyko ištraukti gijos už AMS ribų. Prašome nupjauti gijos galą tiesiai ir patikrinti, ar ritė nėra įstrigusi." + }, + { + "ecode": "07038006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07FF8004", + "intro": "Nepavyko atitraukti gijos iš dešiniojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "07028006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "07028003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07018003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07038003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07028004", + "intro": "AMS nepavyko atitraukti gijos. Tai galėjo įvykti dėl užstrigusios ritės arba dėl to, kad gijos galas įstrigo trasoje." + }, + { + "ecode": "07008003", + "intro": "Nepavyko ištraukti gijos iš ekstruderio. Tai galėjo įvykti dėl užsikimšusio ekstruderio arba dėl to, kad gija nutrūko ekstruderio viduje." + }, + { + "ecode": "07018006", + "intro": "Nepavyksta paduoti gijos į ekstruderį. Galbūt AMS nėra suderinta su ekstruderiu. Galite pakartotinai atlikti AMS nustatymus. Taip pat priežastis gali būti susipynusi gija arba įstrigusi ritė. Jei tai nepadeda, patikrinkite, ar prijungtas AMS PTFE vamzdelis." + }, + { + "ecode": "18FE8004", + "intro": "Nepavyko atitraukti gijos iš kairiojo ekstruderio. Patikrinkite, ar gija neužstrigo ekstruderio viduje." + }, + { + "ecode": "050080A0", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar plokštė yra tinkamai įdėta ir išlyginta visuose keturiuose kampuose, taip pat įsitikinkite, kad padėties žymės yra aiškios ir nesusidėvėjusios." + }, + { + "ecode": "0502400D", + "intro": "Nepavyko paleisti naujos užduoties: gijų įkėlimas/iškėlimas nebaigtas." + }, + { + "ecode": "0580409C", + "intro": "AMS-HT A įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0582409C", + "intro": "AMS-HT C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0584409C", + "intro": "AMS-HT E Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0501409D", + "intro": "AMS B Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0500409F", + "intro": "Aptiktas nesertifikuotas oro siurblys; įrenginys negali toliau veikti. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500409B", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0587409C", + "intro": "AMS-HT H Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004097", + "intro": "Aptiktas nesertifikuotas lazerinis modulis; įrenginys negali toliau veikti. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0503409D", + "intro": "AMS D Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05864096", + "intro": "Aptiktas nesertifikuotas AMS-HT G; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05024098", + "intro": "Aptiktas nesertifikuotas AMS C; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0581409C", + "intro": "AMS-HT B įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "05014098", + "intro": "Aptiktas nesertifikuotas AMS B; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0585409C", + "intro": "AMS-HT F įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0502409D", + "intro": "AMS C Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05814096", + "intro": "Aptiktas nesertifikuotas AMS-HT B; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05844096", + "intro": "Aptiktas nesertifikuotas AMS-HT F; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05824096", + "intro": "Aptiktas nesertifikuotas AMS-HT C; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05854096", + "intro": "Aptiktas nesertifikuotas AMS-HT E; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05804096", + "intro": "Aptiktas nesertifikuotas AMS-HT A; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05834096", + "intro": "Aptiktas nesertifikuotas AMS-HT D; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500409E", + "intro": "Aptiktas nesertifikuotas pjovimo modulis; įrenginys negali toliau veikti. Prašome iš naujo prijungti modulio laidą arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500409D", + "intro": "AMS A Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05874096", + "intro": "Aptiktas nesertifikuotas AMS-HT H; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS-HT kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500409A", + "intro": "Oro siurblio Aparatinė programinė įranga neatitinka spausdintuvo; prietaisas negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004098", + "intro": "Aptiktas nesertifikuotas AMS A; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0586409C", + "intro": "AMS-HT G Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "03004050", + "intro": "Pasibaigė „Liveview“ kameros kalibravimo laiko limitas; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05008079", + "intro": "Prašome padėti lazerinio bandymo medžiagą (350 g kartoną) ir po ja išdėstyti atramines juosteles, kad medžiaga neišsikreiptų." + }, + { + "ecode": "05034098", + "intro": "Aptiktas nesertifikuotas AMS D; įrenginys negali toliau veikti. Prašome iš naujo prijungti AMS kabelį arba iš naujo paleisti spausdintuvą." + }, + { + "ecode": "05004099", + "intro": "Pjovimo modulio Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "0583409C", + "intro": "AMS-HT D įrangos Aparatinė programinė įranga neatitinka spausdintuvo; įrenginys negali toliau veikti. Atnaujinkite ją puslapyje „Firmware“." + }, + { + "ecode": "0C008034", + "intro": "Nepavyko inicijuoti „Liveview“ kameros. Spausdinimas vis tiek gali būti tęsiamas, tačiau kai kurios AI funkcijos bus išjungtos. Jei po perkrovimo ši problema pasikartos, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004035", + "intro": "„BirdsEye“ kamera veikia netinkamai. Prašome pabandyti iš naujo paleisti įrenginį. Jei problema neišsprendžiama net po keleto paleidimų iš naujo, patikrinkite kameros ryšio būseną arba susisiekite su klientų aptarnavimo tarnyba." + }, + { + "ecode": "0C008043", + "intro": "Dirbtinis intelektas aptiko purkštuko užsikimšimą. Patikrinkite purkštuko būklę. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0C008042", + "intro": "AI spausdinimo stebėjimo sistema aptiko „spageti“ tipo defektą. Prašome patikrinti spausdinimą ir imtis reikiamų veiksmų." + }, + { + "ecode": "03004070", + "intro": "Prašome įkaitinti purkštuką iki temperatūros, viršijančios 170 °C." + }, + { + "ecode": "0500808E", + "intro": "Nepavyko inicijuoti „BirdsEye“ kameros. Įrankio galvutės kamera neaptiko šildomojo pagrindo žymių. Prašome nuvalyti kaitinamą pagrindą, pašalinti visus objektus ir pagalvėles bei užtikrinti, kad pagrindo žymės būtų matomos. Išsamų sprendimą rasite programoje „Assistant“." + }, + { + "ecode": "0500808F", + "intro": "Purkštuvo kameros objektyvas yra nešvarus, o tai trukdo dirbtinio intelekto stebėjimui. Nuvalykite objektyvą neaustine šluoste, užteptą nedideliu kiekiu alkoholio. Saugokitės karšto spausdintuvo galvutės; prieš liesti palaukite, kol ji atvės." + }, + { + "ecode": "05008086", + "intro": "Įrankio galvutės kamera yra nešvari, o tai trukdo dirbti dirbtinio intelekto funkcijai; prašome nuvalyti objektyvo paviršių." + }, + { + "ecode": "0500808B", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome išvalyti šildomąjį stalą, pašalinti visus daiktus ir kilimėlį bei užtikrinti, kad šildomojo stalo žymekliai būtų matomi. Tuo pačiu išvalykite „BirdsEye“ kamerą ir įrankio galvutės kamerą bei pašalinkite viską, kas galėtų užstoti kamerų vaizdą." + }, + { + "ecode": "03004008", + "intro": "AMS nepavyko pakeisti gijos." + }, + { + "ecode": "0C00402A", + "intro": "Vizualusis žymeklis nebuvo aptiktas. Prašome vėl įklijuoti popierių į tinkamą vietą." + }, + { + "ecode": "05004033", + "intro": "AMS Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004034", + "intro": "Lazerinio modulio Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05008085", + "intro": "Kamera ant įrankio galvutės uždengta" + }, + { + "ecode": "05004031", + "intro": "Priedo Aparatinė programinė įranga neatitinka spausdintuvo. Atnaujinkite ją puslapyje „Aparatinė programinė įranga“." + }, + { + "ecode": "05004044", + "intro": "„BirdsEye“ kameros gedimas: kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "03004044", + "intro": "Liepsnos jutiklis veikia netinkamai. Gali būti, kad jutiklis trumpai sujungtas. Prieš pradėdami spausdinimo užduotį, pašalinkite šią problemą." + }, + { + "ecode": "05008062", + "intro": "Spausdinimo plokštės žymeklis nebuvo aptiktas. Patikrinkite, ar spausdinimo plokštė teisingai uždėta ant šildomojo pagrindo, ar visi keturi kampai suderinti ir ar matomas žymeklis." + }, + { + "ecode": "0C00402C", + "intro": "Įrenginio duomenų perdavimo klaida. Prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0500808C", + "intro": "Nustatytas spausdinimo plokštės poslinkis. Prašome suderinti spausdinimo plokštę su šildomuoju pagrindu ir tada tęsti." + }, + { + "ecode": "07FFC010", + "intro": "Įdėkite giją, kol jos nebegalėsite įstumti giliau. Valymo metu gali šiek tiek dūmoti, todėl įdėjus giją uždarykite priekinę durelę ir viršutinį dangtį." + }, + { + "ecode": "07FEC010", + "intro": "Įdėkite giją, kol jos nebegalėsite įstumti giliau. Valymo metu gali šiek tiek dūmoti, todėl įdėjus giją uždarykite priekinę durelę ir viršutinį dangtį." + }, + { + "ecode": "07FEC012", + "intro": "Paspauskite juodą PTFE vamzdžio jungtį ir atjunkite PTFE vamzdį. Baigę šią operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "07FFC012", + "intro": "Paspauskite juodą PTFE vamzdžio jungtį ir atjunkite PTFE vamzdį. Baigę šią operaciją, spustelėkite „Tęsti“." + }, + { + "ecode": "07FEC011", + "intro": "Prašome rankiniu būdu ir lėtai ištraukti giją iš ekstruderio. Tada spustelėkite „Tęsti“." + }, + { + "ecode": "07FFC011", + "intro": "Prašome rankiniu būdu ir lėtai ištraukti giją iš ekstruderio. Tada spustelėkite „Tęsti“." + }, + { + "ecode": "05004039", + "intro": "Dėl esamos užduoties negalima įdiegti lazerio/pjaustymo modulio, todėl užduotis buvo sustabdyta." + }, + { + "ecode": "0500403B", + "intro": "Šiuo metu įrenginyje negalima pradėti lazerio pjovimo užduočių. Prašome naudoti kompiuterinę aparatinę programinę įrangą, kad pradėtumėte užduotį." + }, + { + "ecode": "07044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18044025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07014025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18074025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18064025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "07054025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18004025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18034025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "18024025", + "intro": "Nepavyko nuskaityti gijų informacijos." + }, + { + "ecode": "03008055", + "intro": "Ant įrankio galvutės sumontuotas modulis neatitinka užduoties. Įdiekite tinkamą modulį." + }, + { + "ecode": "0300800D", + "intro": "Nustatyta, kad ekstruderiui kyla veikimo sutrikimų. Jei šie trūkumai yra priimtini, pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500C036", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0300804F", + "intro": "Šiuo metu vyksta pakrovimo/iškrovimo procesas. Prašome sustabdyti procesą arba išimti lazerinį/pjaustymo modulį." + }, + { + "ecode": "0300804E", + "intro": "Tai spausdinimo užduotis. Prašome nuimti lazerio/pjaustymo modulį nuo įrankio galvutės." + }, + { + "ecode": "0500808A", + "intro": "„BirdsEye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į pagalbininką." + }, + { + "ecode": "05008089", + "intro": "Užduotis sustabdyta, nes nepavyko atlikti buvimo patikrinimo. Norėdami tęsti, patikrinkite spausdintuvą." + }, + { + "ecode": "05008074", + "intro": "Lazerinė platforma yra pasislinkusi. Įsitikinkite, kad visi keturi platformos kampai būtų suderinti su šildomuoju pagrindu ir kad žymeklis nebūtų užstotas." + }, + { + "ecode": "05FE8081", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05FF8081", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05FF8080", + "intro": "Nėra įmontuotas reikiamas spausdinimo galvutės elementas." + }, + { + "ecode": "05008069", + "intro": "Nepavyko atpažinti kairiojo ir dešiniojo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės dalis arba jos žymė yra užteršta. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FE8069", + "intro": "Nepavyko atpažinti kairiojo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės arba jos žymė yra užteršta. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FF8069", + "intro": "Nepavyko atpažinti reikiamo Kaitinimo galvutės. Gali būti, kad tai neoriginali Kaitinimo galvutės dalis arba jos žymė yra nešvari. Prašome rankiniu būdu nustatyti Kaitinimo galvutės tipą." + }, + { + "ecode": "05FE8080", + "intro": "Kairysis spausdinimo galas nėra sumontuotas." + }, + { + "ecode": "05008080", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008081", + "intro": "Kairysis ir dešinysis Kaitinimo galvutės nėra sumontuoti." + }, + { + "ecode": "05008088", + "intro": "„Birdseye“ kamera yra nešvari" + }, + { + "ecode": "05008087", + "intro": "„BirdsEye“ kamera užstota" + }, + { + "ecode": "03004002", + "intro": "Automatinis pagrindo išlyginimas nepavyko; užduotis buvo sustabdyta." + }, + { + "ecode": "0C004020", + "intro": "„BirdsEye“ kameros nustatymas nepavyko. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas. Tuo pačiu metu nuvalykite tiek „BirdsEye“ kamerą, tiek įrankio galvutės kamerą ir pašalinkite visus svetimkūnius, trukdančius jų matomumui." + }, + { + "ecode": "03008021", + "intro": "Gali būti, kad purkštukas nėra įmontuotas arba įmontuotas netinkamai. Prieš tęsdami darbą, įsitikinkite, kad purkštukas įmontuotas teisingai." + }, + { + "ecode": "03008048", + "intro": "Pasibaigė lazerinio modulio atrakinimo laiko limitas, todėl užduotis negali būti tęsiama. Prašome iš naujo paleisti spausdintuvą ir pabandyti dar kartą." + }, + { + "ecode": "03008061", + "intro": "Nepavyko įjungti „Airflow System“ režimo; patikrinkite oro sklendės būklę." + }, + { + "ecode": "0300801A", + "intro": "Kilo gijų ekstruzijos klaida; prašome patikrinti pagalbinę programą, kad išspręstumėte šią problemą. Išsprendę problemą, atsižvelgdami į faktinę spausdinimo būklę, nuspręskite, ar atšaukti, ar tęsti spausdinimo užduotį." + }, + { + "ecode": "05008084", + "intro": "„Live View“ kamera yra nešvari; prašome ją nuvalyti ir tęsti." + }, + { + "ecode": "0500401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "18068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE8007", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "10018003", + "intro": "Pjaustymo faile laiko sulėtinimo režimas nustatytas kaip „Tradicinis“. Dėl to gali atsirasti paviršiaus defektų. Ar norite jį įjungti?" + }, + { + "ecode": "18008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8007", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį, tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "07058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FE8012", + "intro": "Nepavyko gauti atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07068012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18058012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18078012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07048012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004065", + "intro": "Užduočiai atlikti reikalinga lazerinė platforma, tačiau šiuo metu naudojama pjovimo platforma. Prašome ją pakeisti, programoje išmatuoti medžiagos storį ir tada iš naujo paleisti užduotį." + }, + { + "ecode": "05004075", + "intro": "Nenustatyta jokia lazerio platforma, o tai gali turėti įtakos storio matavimo tikslumui. Prašome teisingai pastatyti lazerio platformą ir įsitikinti, kad galiniai žymekliai nebūtų uždengti, tada prieš pradedant užduotį programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "18FFC00A", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "07FFC00A", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "0500807D", + "intro": "Šiai užduočiai reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „StrongGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "03008014", + "intro": "Ant purkštuko yra susikaupęs gijos medžiaga arba spausdinimo plokštė įtaisyta netinkamai. Atšaukite šį spausdinimą ir išvalykite purkštuką arba sureguliuokite spausdinimo plokštę atsižvelgdami į esamą padėtį. Taip pat galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "03008017", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai. Patikrinkite ir išvalykite kaitinamą pagrindą. Tada pasirinkite „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004025", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07008012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07018012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FE8007", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "0300801C", + "intro": "Ekstruzijos pasipriešinimas yra nenormalus. Ekstruderius gali būti užsikimšęs; kreipkitės į asistentą. Išsprendus problemą, galite pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "07FE8012", + "intro": "Nepavyko gauti atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FEC00A", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "05008055", + "intro": "Lazerinis modulis yra įdiegtas, tačiau aptikta pjovimo platforma. Įdėkite lazerinę platformą ir atlikite lazerio kalibravimą." + }, + { + "ecode": "03004020", + "intro": "Nepavyko nustatyti, ar yra antgalis. Daugiau informacijos rasite „Assistant“ programoje." + }, + { + "ecode": "0500402E", + "intro": "Sistema nepalaiko failų sistemos, kurią šiuo metu naudoja USB atmintinė. Prašome pakeisti USB atmintinę arba ją suformatuoti į FAT32." + }, + { + "ecode": "05008063", + "intro": "Kalibravimo metu platforma neaptikta; įsitikinkite, kad lazerinė platforma yra tinkamai pastatyta." + }, + { + "ecode": "05008066", + "intro": "Užduočiai atlikti reikalinga pjovimo platforma, tačiau šiuo metu naudojama yra lazerinė platforma. Prašome ją pakeisti pjovimo platforma (pjovimo apsauginis pagrindas + „LightGrip“ pjovimo kilimėlis)." + }, + { + "ecode": "18FEC00A", + "intro": "Atkreipkite dėmesį į kairiojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį ir tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "18038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18028012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "18FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05004076", + "intro": "Prieš pradėdami užduotį, tinkamai pastatykite lazerinę platformą ir įsitikinkite, kad galiniai žymekliai nėra užstoti, tada programoje iš naujo paleiskite storio matavimą." + }, + { + "ecode": "0500807A", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba pasitikrinti pagalbinę programą, kad išspręstumėte šią problemą." + }, + { + "ecode": "03008000", + "intro": "Spausdinimas buvo sustabdytas dėl nežinomos priežasties. Norėdami tęsti spausdinimo užduotį, pasirinkite „Tęsti“." + }, + { + "ecode": "03008016", + "intro": "Purkštukas užsikimšęs gijomis. Prašome atšaukti šį spausdinimą ir išvalyti purkštuką arba pasirinkti „Tęsti“, kad atnaujintumėte spausdinimo užduotį." + }, + { + "ecode": "0500401B", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004020", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004022", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004023", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05004029", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401C", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "0501401E", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014026", + "intro": "Prieiga prie debesies atmesta. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "05014028", + "intro": "Debesies atsakymas yra neteisingas. Jei bandėte keletą kartų, bet vis tiek nepavyksta, kreipkitės į klientų aptarnavimo tarnybą." + }, + { + "ecode": "07038012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "07FF8012", + "intro": "Nepavyko gauti AMS atitikmenų lentelės; norėdami bandyti dar kartą, pasirinkite „Tęsti“." + }, + { + "ecode": "05008064", + "intro": "Prašome teisingai pastatyti lazerinę platformą ir užtikrinti, kad galiniai žymekliai nebūtų užstoti, kad būtų galima atlikti lazerio kalibravimą." + }, + { + "ecode": "07FF8007", + "intro": "Atkreipkite dėmesį į dešiniojo ekstruderio antgalį. Jei gijos medžiaga jau išspaudta, pasirinkite „Tęsti“; jei ne, šiek tiek pastumkite giją į priekį, tada pasirinkite „Bandyti dar kartą“." + }, + { + "ecode": "03004000", + "intro": "Nepavyko nustatyti Z ašies pradinės padėties; užduotis buvo sustabdyta." + }, + { + "ecode": "0300800A", + "intro": "„AI Print Monitoring“ aptiko susikaupusį filamentą. Prašome pašalinti filamentą iš atliekų išmetimo angos." + }, + { + "ecode": "0300800B", + "intro": "Pjovimo galvutė įstrigo. Įsitikinkite, kad pjovimo galvutės rankena yra išstumta, ir patikrinkite gijos jutiklio laido jungtį." + }, + { + "ecode": "03008065", + "intro": "MC modulio temperatūra per aukšta. Galimas priežastis rasite „Wiki“ puslapyje." + }, + { + "ecode": "05004070", + "intro": "Lazerinis arba pjovimo modulis yra prijungtas, todėl įrenginys negali pradėti 3D spausdinimo užduoties." + }, + { + "ecode": "0300804B", + "intro": "Užduotis sustabdyta. Atidarytas langas „Lazerinė sauga“." + }, + { + "ecode": "0300400B", + "intro": "Vidaus komunikacijos išimtis" + }, + { + "ecode": "03008001", + "intro": "Spausdinimas sustabdytas dėl spausdinimo faile įrašytos sustabdymo komandos." + }, + { + "ecode": "05014038", + "intro": "Regioniniai nustatymai neatitinka spausdintuvo; patikrinkite spausdintuvo regioninius nustatymus." + }, + { + "ecode": "03008051", + "intro": "Pjovimo modulis nukrito arba jo kabelis atjungtas; patikrinkite modulį." + }, + { + "ecode": "0C004024", + "intro": "„Birdseye“ kamera sumontuota ne tiesiai. Norėdami ją sumontuoti iš naujo, kreipkitės į asistentą." + }, + { + "ecode": "03004042", + "intro": "Lazerinės saugos langas nėra tinkamai sumontuotas. Užduotis buvo sustabdyta." + }, + { + "ecode": "0300404D", + "intro": "Šiuo metu Kaitinimo galvutės, šildomojo pagrindo arba Kameros temperatūra yra per aukšta. Prieš iš naujo paleidžiant užduotį, palaukite, kol ji atvės iki kameros temperatūros." + }, + { + "ecode": "10018004", + "intro": "„Prime Tower“ funkcija neįjungta, o failo pjaustymo metu laiko sulėtinimo režimas nustatytas kaip „Smooth“. Dėl to gali atsirasti paviršiaus defektų. Ar norite ją įjungti?" + }, + { + "ecode": "18008011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18078011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18038011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18018011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18058011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18068011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "18048011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "03008041", + "intro": "Platformos aptikimo laiko limitas pasibaigęs: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03004067", + "intro": "Kalibravimo rezultatas viršija ribinę vertę." + }, + { + "ecode": "03004011", + "intro": "„Flow Dynamics“ kalibravimas nepavyko; prašome iš naujo pradėti spausdinimą arba kalibravimą." + }, + { + "ecode": "18028011", + "intro": "Baigėsi AMS-HT gija. Įdėkite naują giją į tą pačią AMS-HT angą." + }, + { + "ecode": "05008072", + "intro": "„Live View“ kamera užblokuota" + }, + { + "ecode": "05008083", + "intro": "Montavimo kalibravimo metu medžiaga neleidžiama. Prašome pašalinti medžiagą nuo platformos." + }, + { + "ecode": "0C004041", + "intro": "Nepavyko kalibruoti įrankio galvutės kameros. Įsitikinkite, kad kalibravimo žymė ant šildomojo pagrindo arba aukščio kalibravimo žymė grįžimo į pradinę padėtį zonoje yra švari ir nepažeista, tada pakartokite kalibravimo procesą." + }, + { + "ecode": "1800C06A", + "intro": "AMS-HT A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06A", + "intro": "AMS-HT F nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06C", + "intro": "AMS-HT H veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06C", + "intro": "AMS-HT A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06B", + "intro": "AMS-HT H keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014002", + "intro": "„Timelapse“ funkcija nepalaikoma, nes spausdinimo seka nustatyta kaip „Pagal objektą“." + }, + { + "ecode": "1800C06D", + "intro": "AMS-HT A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06A", + "intro": "AMS-HT D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06C", + "intro": "AMS-HT D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06C", + "intro": "AMS-HT F veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C069", + "intro": "AMS-HT D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C06A", + "intro": "AMS-HT C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06E", + "intro": "Variklis „AMS-HT F“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06C", + "intro": "AMS-HT G veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06D", + "intro": "AMS-HT G padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06E", + "intro": "AMS-HT Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C069", + "intro": "AMS-HT F džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1807C06D", + "intro": "AMS-HT H padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06C", + "intro": "AMS-HT C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06A", + "intro": "AMS-HT H nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06A", + "intro": "AMS-HT B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C069", + "intro": "AMS-HT H džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1803C06E", + "intro": "AMS-HT D variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06D", + "intro": "AMS-HT B padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06B", + "intro": "AMS-HT F keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06D", + "intro": "AMS-HT C padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06E", + "intro": "Variklis „AMS-HT C“ atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06C", + "intro": "AMS-HT E veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06A", + "intro": "AMS-HT E nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C069", + "intro": "AMS-HT G džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06D", + "intro": "AMS-HT E padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06B", + "intro": "AMS-HT G keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C069", + "intro": "AMS-HT A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1802C069", + "intro": "AMS-HT C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06C", + "intro": "AMS-HT B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1807C06E", + "intro": "AMS-HT H variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1000C003", + "intro": "„Timelapse“ funkcijos įjungimas tradiciniame režime gali sukelti gedimus; šią funkciją įjunkite tik prireikus." + }, + { + "ecode": "1804C069", + "intro": "AMS-HT E džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1801C06E", + "intro": "Variklis „AMS-HT B“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1805C06D", + "intro": "AMS-HT F padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06D", + "intro": "AMS-HT D padeda įdėti giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C06B", + "intro": "AMS-HT B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06E", + "intro": "Variklis „AMS-HT G“ atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1801C069", + "intro": "AMS-HT B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "1804C06E", + "intro": "AMS-HT E variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1803C06B", + "intro": "AMS-HT D keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1804C06B", + "intro": "AMS-HT E keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1806C06A", + "intro": "AMS-HT G nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1802C06B", + "intro": "AMS-HT C keičia giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "1800C06B", + "intro": "AMS-HT A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "10014001", + "intro": "„Timelapse“ funkcija nepalaikoma, nes pjaustymo nustatymuose įjungtas „Spiral Vase“ režimas." + }, + { + "ecode": "0500806E", + "intro": "Ant šildomojo pagrindo aptikti svetimkūniai; prašome patikrinti ir išvalyti kaitinamą pagrindą." + }, + { + "ecode": "05004004", + "intro": "Įrenginys užimtas ir negali pradėti naujos užduoties. Prieš siunčiant naują užduotį, palaukite, kol bus užbaigta dabartinė užduotis." + }, + { + "ecode": "0C004025", + "intro": "„Birdseye“ kamera yra nešvari. Prašome ją nuvalyti ir iš naujo paleisti procesą." + }, + { + "ecode": "05008061", + "intro": "Nerasta spausdinimo plokštės. Patikrinkite, ar ji įdėta teisingai." + }, + { + "ecode": "0300804A", + "intro": "Avarinio stabdymo mygtukas įmontuotas netinkamai. Prieš tęsdami, prašome jį įmontuoti iš naujo pagal „Wiki“ nurodymus." + }, + { + "ecode": "0701C06C", + "intro": "AMS B veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C069", + "intro": "AMS B džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0700C06E", + "intro": "AMS Variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06C", + "intro": "AMS D veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C069", + "intro": "AMS D džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06B", + "intro": "AMS B keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06C", + "intro": "AMS A veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C069", + "intro": "AMS C džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0703C06B", + "intro": "AMS D keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "03008054", + "intro": "Prašome įdėti popierių, reikalingą funkcijai „Spausdinti ir iškirpti“." + }, + { + "ecode": "0703C06D", + "intro": "AMS D padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06D", + "intro": "AMS B padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06A", + "intro": "AMS C nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06E", + "intro": "AMS C variklis atlieka savikontrolę. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06C", + "intro": "AMS C veikia „Feed Assist“ režimu. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06B", + "intro": "AMS C keičia giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06D", + "intro": "AMS A padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0701C06A", + "intro": "AMS B nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0702C06D", + "intro": "AMS C padeda įdėti giją. Nepavyksta pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008082", + "intro": "Prieš apdorojant, nuimkite apsauginę plėvelę nuo matinio blizgaus akrilo." + }, + { + "ecode": "0703C06A", + "intro": "AMS D nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06B", + "intro": "AMS A keičia kaitinimo giją. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "05008053", + "intro": "Kairysis ir dešinysis purkštukai neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamus purkštukus. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "05FE8053", + "intro": "Kairysis purkštukas neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštuką. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "05008060", + "intro": "Dabartinis įrankio galvutėje esantis modulis neatitinka reikalavimų. Prašome pakeisti modulį, vadovaudamiesi ekrane pateiktomis instrukcijomis." + }, + { + "ecode": "05FF8053", + "intro": "Pasirinkta purkštukė neatitinka pjaustymo failo. Prašome pradėti spausdinimą iš naujo, atlikus pakartotinį pjaustymą, arba tęsti spausdinimą, pakeitus tinkamą purkštukę. Įspėjimas: Kaitinimo galvutės temperatūra yra aukšta." + }, + { + "ecode": "0700C069", + "intro": "AMS A džiovinimo metu įvyko klaida. Daugiau informacijos rasite programoje „Assistant“." + }, + { + "ecode": "0701C06E", + "intro": "AMS B variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0700C06A", + "intro": "AMS A nuskaito RFID. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0703C06E", + "intro": "AMS D variklis atlieka savikontrolę. Nepavyko pradėti džiovinimo. Prašome pabandyti vėliau." + }, + { + "ecode": "0500C07F", + "intro": "Įrenginys užimtas ir negali atlikti šios operacijos. Norėdami tęsti, sustabdykite arba nutraukite dabartinę užduotį." + }, + { + "ecode": "05008056", + "intro": "Pjovimo modulis įdiegtas, tačiau aptikta lazerio platforma. Prašome pastatyti pjovimo platformą kalibravimui." + }, + { + "ecode": "0C008016", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba ieškoti sprendimų pagalbos skyriuje." + }, + { + "ecode": "07018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18018016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "0702800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS C iki ekstruderio, yra tinkamai prijungtas." + }, + { + "ecode": "0706800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1801800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT B iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1804800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1802800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT C iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0704800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS E iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1800800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0705800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS F iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1806800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT G iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0C004021", + "intro": "Nepavyko įdiegti „BirdsEye“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0C004026", + "intro": "Nepavyko inicijuoti „Live View“ kameros; prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "07008016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07028016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18048016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18068016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18078016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18038016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "07058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "18058016", + "intro": "Ekstruderiu negalima ekstruzuoti įprastu būdu; kreipkitės į asistentą. Atlikite gedimų šalinimą. Jei defektai yra priimtini, prašome tęsti darbą." + }, + { + "ecode": "1803800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0500C032", + "intro": "Prie įrankio galvutės prijungtas lazerio/pjaustymo modulis. Džiovinimo procesas buvo automatiškai sustabdytas." + }, + { + "ecode": "0700800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS A iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0C00402D", + "intro": "Įrankio galvutės kamera neveikia tinkamai; prašome iš naujo paleisti įrenginį." + }, + { + "ecode": "1807800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "1805800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS-HT F iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0707800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS H iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0703800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS D iki ekstruderių, yra tinkamai prijungtas." + }, + { + "ecode": "0701800A", + "intro": "Aptiktas PTFE vamzdžio atjungimas. Patikrinkite, ar PTFE vamzdis, einantis nuo AMS B iki ekstruderio, yra tinkamai prijungtas." + }, + { + "ecode": "0500806C", + "intro": "Prašome teisingai pastatyti pjovimo platformą ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "07FE8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "07018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500805A", + "intro": "Prašome pjaustymo kilimėlį uždėti ant pjaustymo apsauginio pagrindo." + }, + { + "ecode": "07068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "18058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8001", + "intro": "Nepavyko nupjauti kairiojo ekstruderio gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "18FF8013", + "intro": "Pasibaigė laiko limitas, skirtas senam dešiniojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18048007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "05008071", + "intro": "Pjovimo platforma nerasta. Prašome patikrinti, ar ji buvo teisingai pastatyta." + }, + { + "ecode": "05008073", + "intro": "Šildomojo pagrindo ribotuvas užblokuotas arba užterštas. Prašome jį išvalyti ir užtikrinti, kad ribotuvas būtų matomas, nes priešingu atveju platformos padėties nuokrypio nustatymas gali būti netikslus." + }, + { + "ecode": "05008068", + "intro": "Prašome teisingai uždėti gerai priglundančią pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807C", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „StrongGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "05008067", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „LightGrip“ pjovimo kilimėlį." + }, + { + "ecode": "07018007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "03008042", + "intro": "Užduotis sustabdyta, nes durys arba viršutinis dangtis yra atidaryti." + }, + { + "ecode": "07FF8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "0500805C", + "intro": "Pjaustymo kilimėlio tipo „Grip“ neatitinka reikalavimų; prašome uždėti „LightGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "05008059", + "intro": "Pjovimo platformos pagrindas nėra tinkamai išlygintas. Prašome įsitikinti, kad keturi platformos kampai sutampa su šildomuoju pagrindu." + }, + { + "ecode": "07FF8013", + "intro": "Pasibaigė laiko limitas, skirtas senam dešiniojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8001", + "intro": "Nepavyko nupjauti dešiniojo ekstruderio gijų. Patikrinkite pjoviklį." + }, + { + "ecode": "07038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FE8013", + "intro": "Pasibaigė laiko limitas, skirtas senam kairiojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FE8010", + "intro": "Patikrinkite, ar kairėje pusėje esanti išorinė gijų ritė arba gijas nėra užstrigę." + }, + { + "ecode": "07FE8002", + "intro": "kairiojo ekstruderio pjovimo įtaisas užstrigo. Prašome ištraukti pjovimo įtaiso rankenėlę." + }, + { + "ecode": "07FE8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "07FE8001", + "intro": "Nepavyko nupjauti kairiojo ekstruderio gijos. Patikrinkite pjoviklį." + }, + { + "ecode": "07FF8002", + "intro": "dešiniojo ekstruderio pjoviklis užstrigo. Prašome ištraukti pjoviklio rankenėlę." + }, + { + "ecode": "07FF8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "07008013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07028013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07038013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "0500806F", + "intro": "Pjaustymo kilimėlio tipo paviršius neatitinka reikalavimų; prašome uždėti „StrongGrip“ pjaustymo kilimėlį." + }, + { + "ecode": "18FE8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "18068013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8013", + "intro": "Pasibaigė laiko limitas, skirtas senam kairiojo ekstruderio filamentui išvalyti: Prašome patikrinti, ar filamentas neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07058013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18038007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FF8002", + "intro": "dešiniojo ekstruderio pjoviklis užstrigo. Prašome ištraukti pjoviklio rankenėlę." + }, + { + "ecode": "18FF8020", + "intro": "Nepavyko pakeisti ekstruderių; kreipkitės į asistentą." + }, + { + "ecode": "18028007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18008007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18018013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FE8002", + "intro": "kairiojo ekstruderio pjovimo įtaisas užstrigo. Prašome ištraukti pjovimo įtaiso rankenėlę." + }, + { + "ecode": "18FF8024", + "intro": "Nepavyko kalibruoti ekstruderių padėties; kreipkitės į asistentą." + }, + { + "ecode": "18068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18078013", + "intro": "Pasibaigė senos gijos išvalymo laikas: Prašome patikrinti, ar gija neužstrigo arba ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "18FF8001", + "intro": "Nepavyko nupjauti dešiniojo ekstruderio gijų. Patikrinkite pjoviklį." + }, + { + "ecode": "07068007", + "intro": "Nepavyko išspausti gijos. Patikrinkite, ar ekstruderius nėra užsikimšęs." + }, + { + "ecode": "07FF8010", + "intro": "Patikrinkite, ar įdėta tinkama išorinė gijų ritė arba ar gijas nėra užstrigęs." + }, + { + "ecode": "03004052", + "intro": "Nepavyko nustatyti peilio Z ašies pradinės padėties" + }, + { + "ecode": "0500807E", + "intro": "Prašome ant pjovimo apsaugos pagrindo uždėti „StrongGrip“ pjovimo kilimėlį." + }, + { + "ecode": "05008058", + "intro": "Prašome teisingai uždėti „Light Grip“ pjaustymo kilimėlį ir įsitikinti, kad žymeklis būtų matomas." + }, + { + "ecode": "0500807B", + "intro": "Prašome uždėti pjovimo platformą (pjovimo apsauginį pagrindą + „LightGrip“ pjovimo kilimėlį)." + }, + { + "ecode": "0C008018", + "intro": "Svetimų objektų aptikimo funkcija neveikia. Galite tęsti užduotį arba peržiūrėti pagalbinę informaciją, kaip išspręsti šią problemą." + }, + { + "ecode": "0500805B", + "intro": "Pjaustymo kilimėlio tipas nežinomas; prašome jį pakeisti tinkamu pjaustymo kilimėliu." + }, + { + "ecode": "03008064", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų. (Šio spausdinimo užduoties durelių atidarymo aptikimas bus nustatytas į „Pranešimo“ lygį)" + }, + { + "ecode": "0C008017", + "intro": "Platformoje aptikti svetimkūniai; prašome juos laiku pašalinti." + }, + { + "ecode": "05008077", + "intro": "Vizualinis žymeklis nebuvo aptiktas. Prašome įsitikinti, kad popierius yra tinkamai įdėtas." + }, + { + "ecode": "05008078", + "intro": "Dabartinė medžiaga neatitinka supjaustyto failo nustatymų. Įdėkite tinkamą medžiagą ir įsitikinkite, kad ant jos esantis QR kodas nėra pažeistas ar nešvarus." + }, + { + "ecode": "0500403F", + "intro": "Nepavyko atsisiųsti spausdinimo užduoties; patikrinkite tinklo ryšį." + }, + { + "ecode": "0C00803F", + "intro": "Dirbtinis intelektas aptiko purkštuko užsikimšimą. Patikrinkite purkštuko būklę. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0C008040", + "intro": "Dirbtinis intelektas aptiko spausdinimo ore trūkumą. Patikrinkite Kaitinimo galvutės ekstruzijos būseną. Dėl sprendimų kreipkitės į asistentą." + }, + { + "ecode": "0500403D", + "intro": "Įrankio galvutės modulis nėra sukonfigūruotas. Prieš pradėdami užduotį, jį sukonfigūruokite." + }, + { + "ecode": "07FE8011", + "intro": "Išsibaigė prie kairiojo ekstruderio prijungtas išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "0300400C", + "intro": "Užduotis buvo atšaukta." + }, + { + "ecode": "07FF8011", + "intro": "Iš dešiniojo ekstruderio prijungtas išorinis filamentas baigėsi; įdėkite naują filamentą." + }, + { + "ecode": "18FF8011", + "intro": "Iš dešiniojo ekstruderio prijungtas išorinis filamentas baigėsi; įdėkite naują filamentą." + }, + { + "ecode": "18FE8011", + "intro": "Išsibaigė prie kairiojo ekstruderio prijungtas išorinis filamentas; įdėkite naują filamentą." + }, + { + "ecode": "18FF8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18078021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18038021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07048021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07068021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18008021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18018021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18068021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18028021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07078021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18058021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07058021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18FE8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "18048021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07028021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07018021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07FF8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07008021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07FE8021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "07038021", + "intro": "AMS nustatymas nepavyko; kreipkitės į asistentą." + }, + { + "ecode": "05008051", + "intro": "Nustatyta, kad spausdinimo plokštė neatitinka Gcode failo. Prašome pakoreguoti pjaustymo programos nustatymus arba naudoti tinkamą plokštę." + }, + { + "ecode": "18038017", + "intro": "AMS-HT D džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07078010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18048010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18FEC008", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18038010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18008010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018017", + "intro": "AMS-HT B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18FF8006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "18078010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18028017", + "intro": "AMS-HT C džiūsta. Prieš pakraunant ar iškraunant medžiagą, sustabdykite džiovinimo procesą." + }, + { + "ecode": "0C00403E", + "intro": "Nepavyko atlikti itin tikslaus purkštuko poslinkio kalibravimo – galbūt dėl sugadinto šablono arba dėl to, kad dviejų pasirinktų gijų spalvos yra pernelyg panašios. Prieš atliekant pakartotinį kalibravimą, pašalinkite atspausdintą šabloną ir pakeiskite gijas tokiomis, kurių spalvų kontrastas yra didesnis." + }, + { + "ecode": "18008017", + "intro": "AMS-HT A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "18FE8006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "07068011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C004027", + "intro": "Nepavyko kalibruoti „Live View“ kameros. Daugiau informacijos rasite pagalbos vadove; po apdorojimo pakalibruokite kamerą iš naujo." + }, + { + "ecode": "18FEC006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "07058010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18018010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18FF8003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "18FFC009", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "18FEC009", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "18FEC003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18FE8003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "18068010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "18FFC008", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18058010", + "intro": "AMS-HT pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07048010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07068010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07078011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "18FFC003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "18FFC006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07058011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07048011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "0C008015", + "intro": "Platformoje aptikti daiktai; prašome juos laiku pašalinti." + }, + { + "ecode": "05024006", + "intro": "Aptiktas nežinomas modulis. Prašome pabandyti atnaujinti aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "07018017", + "intro": "AMS B džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07028017", + "intro": "AMS C džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "03004013", + "intro": "Kol AMS džiūsta, spausdinimo procesą pradėti negalima." + }, + { + "ecode": "07038017", + "intro": "AMS D džiūsta. Prieš kraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "07008017", + "intro": "AMS A džiūsta. Prieš pakraunant ar iškraunant medžiagą, prašome sustabdyti džiovinimo procesą." + }, + { + "ecode": "05024003", + "intro": "Spausdintuvas šiuo metu spausdina, todėl judesio tikslumo didinimo funkcijos neįmanoma įjungti ar išjungti." + }, + { + "ecode": "05024005", + "intro": "AMS dar nebuvo kalibruotas, todėl spausdinimo pradėti negalima." + }, + { + "ecode": "07FEC003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "07FEC008", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500405D", + "intro": "Lazerinio modulio serijinio numerio klaida: nepavyksta atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "0500805E", + "intro": "Pjovimo modulio serijinio numerio klaida: nepavyko atlikti kalibravimo arba sukurti projekto." + }, + { + "ecode": "07FFC008", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500C010", + "intro": "Išskirtinė USB atmintinės skaitymo ir rašymo klaida; įdėkite ją iš naujo arba pakeiskite." + }, + { + "ecode": "07FFC003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje arba PTFE vamzdyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdį)" + }, + { + "ecode": "0500402F", + "intro": "USB atmintinės sektorių duomenys yra sugadinti; prašome ją suformatuoti. Jei ji vis tiek nebus atpažinta, prašome pakeisti USB atmintinę." + }, + { + "ecode": "05024002", + "intro": "Spausdintuvas neturi judesio tikslumo didinimo kalibravimo duomenų; judesio tikslumo didinimo funkcijos neįmanoma įjungti." + }, + { + "ecode": "03008049", + "intro": "Dabartinis numeris yra negaliojantis." + }, + { + "ecode": "07FF8003", + "intro": "Ištraukite giją iš dešiniojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "05004008", + "intro": "Nepavyko pradėti spausdinti; išjunkite ir vėl įjunkite spausdintuvą, tada iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "0500400B", + "intro": "Kilo problemų atsisiunčiant failą. Patikrinkite savo interneto ryšį ir iš naujo išsiųskite spausdinimo užduotį." + }, + { + "ecode": "05004018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0500402C", + "intro": "Nepavyko gauti IP adreso. Tai galėjo įvykti dėl belaidžio ryšio trukdžių, dėl kurių nepavyko perduoti duomenų, arba dėl to, kad maršrutizatoriaus DHCP adresų rezervas yra išnaudotas. Prašome priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą. Jei problema neišsprendžiama, patikrinkite maršrutizatoriaus nustatymus ir įsitikinkite, ar IP adresų rezervas nėra išnaudotas." + }, + { + "ecode": "0500400A", + "intro": "Šis failo pavadinimas nėra palaikomas. Pervardykite failą ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0500400D", + "intro": "Atlikite savikontrolę ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "0501401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014033", + "intro": "Jūsų programėlės regionas neatitinka jūsų spausdintuvo; atsisiųskite programėlę, skirtą atitinkamam regionui, ir vėl užregistruokite savo paskyrą." + }, + { + "ecode": "07FE8003", + "intro": "Ištraukite giją iš kairiojo ekstruderio ritės laikiklio. Jei šis pranešimas ir toliau rodomas, patikrinkite, ar ekstruderyje nėra nutrūkusios gijos. (Jei ketinate naudoti AMS, prijunkite PTFE vamzdelį.)" + }, + { + "ecode": "0500402D", + "intro": "Sistemos išimtis" + }, + { + "ecode": "03008047", + "intro": "Pasibaigė greito atjungimo svirties aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008008", + "intro": "Purkštuvo temperatūros gedimas" + }, + { + "ecode": "03008009", + "intro": "Šildomojo pagrindo temperatūros gedimas" + }, + { + "ecode": "05004002", + "intro": "Nepalaikomas spausdinimo failo kelias arba pavadinimas. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004006", + "intro": "Spausdinimo užduočiai atlikti nepakanka laisvos atminties vietos. Atkūrus gamyklinius nustatymus, galima atlaisvinti vietos." + }, + { + "ecode": "05014039", + "intro": "Įrenginio prisijungimo galiojimo laikas pasibaigė; pabandykite susieti dar kartą." + }, + { + "ecode": "03008046", + "intro": "Pasibaigė svetimkūnio aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "03008062", + "intro": "Kameros temperatūra yra per aukšta. Tai gali būti susiję su aukšta aplinkos temperatūra." + }, + { + "ecode": "03008045", + "intro": "Pasibaigė medžiagos aptikimo laiko limitas: prašome iš naujo paleisti spausdintuvą." + }, + { + "ecode": "0300800C", + "intro": "Aptiktas praleistas žingsnis: automatinis atkūrimas baigtas; prašome tęsti spausdinimą ir patikrinti, ar nėra sluoksnių poslinkio problemų." + }, + { + "ecode": "0500401A", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014018", + "intro": "Nepavyko išanalizuoti informacijos apie konfigūracijos priskyrimą; pabandykite dar kartą." + }, + { + "ecode": "0300400F", + "intro": "Maitinimo įtampa neatitinka spausdintuvo reikalavimų." + }, + { + "ecode": "05024004", + "intro": "Kai kurios funkcijos nėra palaikomos dabartiniame įrenginyje. Patikrinkite „Studio“ funkcijų nustatymus arba atnaujinkite aparatinę programinę įrangą iki naujausios versijos." + }, + { + "ecode": "0500806D", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "18028023", + "intro": "AMS-HT C modelyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18078023", + "intro": "AMS-HT H įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18058023", + "intro": "AMS-HT F įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18008023", + "intro": "AMS-HT A įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0C004022", + "intro": "Nepavyko nustatyti „BirdsEye“ kameros. Patikrinkite, ar lazerinis modulis veikia tinkamai." + }, + { + "ecode": "18038023", + "intro": "AMS-HT D įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18068023", + "intro": "AMS-HT G įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18048023", + "intro": "AMS-HT E įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07078023", + "intro": "AMS H įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07068023", + "intro": "AMS G įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07048023", + "intro": "AMS E įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "18018023", + "intro": "AMS-HT B įrenginyje nepavyko užtikrinti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07058023", + "intro": "AMS F įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0300801D", + "intro": "Ekstruderių servovariklio padėties jutiklis veikia netinkamai. Pirmiausia išjunkite spausdintuvą ir patikrinkite, ar jungiamasis kabelis nėra atsijungęs." + }, + { + "ecode": "07008023", + "intro": "AMS A įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07028023", + "intro": "AMS C įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07038023", + "intro": "AMS D įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "07018023", + "intro": "AMS B įrenginyje nepavyko atlikti aušinimo proceso po džiovinimo." + }, + { + "ecode": "0C00403D", + "intro": "Vaizdo kodavimo plokštė nebuvo aptikta. Patikrinkite, ar ji teisingai pritvirtinta prie šildomojo pagrindo." + }, + { + "ecode": "07FFC006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FFC009", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "07FF8006", + "intro": "Prašome įkišti giją į dešiniojo ekstruderio PTFE vamzdelį tol, kol jos nebegalima įstumti giliau." + }, + { + "ecode": "03008044", + "intro": "Kameroje buvo aptiktas gaisras." + }, + { + "ecode": "0C00C004", + "intro": "Aptiktas galimas „spaghetti“ gedimas." + }, + { + "ecode": "05004043", + "intro": "Dėl energijos apribojimų tik vienas AMS gali naudoti prietaiso energiją džiovinimui." + }, + { + "ecode": "05004052", + "intro": "Aptikta klaida kaitinimo galvutės dalyje." + }, + { + "ecode": "05004050", + "intro": "Aptikta spausdinimo plokštės klaida." + }, + { + "ecode": "03004068", + "intro": "Judesio tikslumo gerinimo proceso metu įvyko žingsnio praradimas. Prašome bandyti dar kartą." + }, + { + "ecode": "05004054", + "intro": "Ant kilimėlio aptikta klaida." + }, + { + "ecode": "0500403E", + "intro": "Dabartinė įrankio galvutė nepalaiko inicijavimo." + }, + { + "ecode": "03004066", + "intro": "Nepavyko kalibruoti judesio tikslumo." + }, + { + "ecode": "0C00C006", + "intro": "Atliekų šachtoje galėjo susikaupti išvalytos gijos." + }, + { + "ecode": "03008063", + "intro": "kameros temperatūra per aukšta. Prašome atidaryti viršutinį dangtį ir priekines dureles, kad patalpa atvėstų." + }, + { + "ecode": "03008043", + "intro": "Lazerinis modulis veikia netinkamai." + }, + { + "ecode": "07FEC006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "0C00800B", + "intro": "Šildomojo pagrindo žymeklis nebuvo aptiktas. Prašome pašalinti visus daiktus ir nuimti kilimėlį. Įsitikinkite, kad žymeklis nėra užstotas." + }, + { + "ecode": "07FEC009", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "0C004029", + "intro": "Medžiaga nerasta. Prašome patvirtinti padėtį ir tęsti." + }, + { + "ecode": "0C008005", + "intro": "Atliekų šachtoje susikaupė išvalytos gijos, dėl kurio gali įvykti įrankio galvutės susidūrimas." + }, + { + "ecode": "0300801E", + "intro": "Ekstruzijos variklis yra perkrautas. Patikrinkite, ar ekstruderius nėra užsikimšęs arba ar gija nėra įstrigęs antgalyje." + }, + { + "ecode": "0C008033", + "intro": "Greito atsegimo svirtis nėra užfiksuota. Norėdami ją užfiksuoti, paspauskite ją žemyn." + }, + { + "ecode": "07FE8006", + "intro": "Prašome įkišti giją į kairiojo ekstruderio PTFE vamzdelį, kol jos nebegalėsite įstumti giliau." + }, + { + "ecode": "03004010", + "intro": "Nepavyko atlikti purkštuko poslinkio kalibravimo." + }, + { + "ecode": "0C008009", + "intro": "Nepavyko rasti spausdinimo plokštės orientavimo žymės." + }, + { + "ecode": "1000C001", + "intro": "Dėl aukštos pagrindo temperatūros gali užsikimšti purkštuvo gija. Galite atidaryti kameros dureles." + }, + { + "ecode": "1000C002", + "intro": "CF medžiagos spausdinimas kartu su nerūdijančiu plienu gali sugadinti purkštuką." + }, + { + "ecode": "07038010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07038011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07028010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07028011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07018010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "07018011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008011", + "intro": "Baigėsi AMS gija. Įdėkite naują giją į tą pačią AMS angą." + }, + { + "ecode": "07008010", + "intro": "AMS pagalbinis variklis yra perkrautas. Tai gali būti susiję su susipainiojusia gija arba įstrigusia rite." + }, + { + "ecode": "0501401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0501401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05014021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05014027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05014031", + "intro": "Šiuo metu vyksta įrenginio aptikimo ir susiejimo procesas, todėl QR kodas negali būti rodomas ekrane. Galite palaukti, kol susiejimas bus baigtas, arba nutraukti įrenginio aptikimo ir susiejimo procesą programėlėje / „Studio“ ir vėl pabandyti nuskaityti ekrane rodomą QR kodą, kad atliktumėte susiejimą." + }, + { + "ecode": "05014032", + "intro": "Šiuo metu vyksta QR kodo susiejimas, todėl negalima atlikti susiejimo naudojant įrenginio paiešką. Norėdami atlikti susiejimą, galite nuskaityti ekrane rodomą QR kodą arba uždaryti ekrane rodomą QR kodo puslapį ir pabandyti atlikti susiejimą naudojant įrenginio paiešką." + }, + { + "ecode": "05014034", + "intro": "Pjaustymo eiga jau ilgą laiką nebuvo atnaujinama, o spausdinimo užduotis buvo nutraukta. Patikrinkite parametrus ir iš naujo paleiskite spausdinimą." + }, + { + "ecode": "05014035", + "intro": "Įrenginys šiuo metu vykdo prisijungimo procedūrą ir negali atsakyti į naujus prisijungimo prašymus." + }, + { + "ecode": "05024001", + "intro": "Šiame spausdinimo užsakyme bus naudojamas esama gija. Nustatymų pakeisti negalima." + }, + { + "ecode": "05004001", + "intro": "Nepavyko prisijungti prie „Bambu Cloud“. Patikrinkite savo tinklo ryšį." + }, + { + "ecode": "05004003", + "intro": "Spausdinimas buvo sustabdytas, nes spausdintuvas negalėjo išanalizuoti failo. Prašome iš naujo išsiųsti spausdinimo užduotį." + }, + { + "ecode": "05004005", + "intro": "Atnaujinant aparatinę programinę įrangą negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "05004009", + "intro": "Atnaujinant žurnalus negalima siųsti spausdinimo užduočių." + }, + { + "ecode": "0500400E", + "intro": "Spausdinimas buvo atšauktas." + }, + { + "ecode": "05004014", + "intro": "Spausdinimo užduoties pjaustymas nepavyko. Patikrinkite nustatymus ir iš naujo paleiskite spausdinimo užduotį." + }, + { + "ecode": "05004017", + "intro": "Įrišimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05004019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "0500401D", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500401F", + "intro": "Autentifikavimo laikas pasibaigė. Patikrinkite, ar jūsų telefonas ar kompiuteris turi prieigą prie interneto, ir įsitikinkite, kad „Bambu Studio“ arba „Bambu Handy“ programa veikia pirmojo plano režimu, kol vyksta įrišimo operacija." + }, + { + "ecode": "05004021", + "intro": "Nepavyko prisijungti prie debesies – tai galėjo įvykti dėl tinklo nestabilumo, kurį sukėlė trukdžiai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "05004024", + "intro": "Nepavyko prisijungti prie debesies. Galimos priežastys: dėl trukdžių kilęs tinklo nestabilumas, negalėjimas prisijungti prie interneto arba maršrutizatoriaus ugniasienės konfigūracijos apribojimai. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus arba patikrinti maršrutizatoriaus konfigūraciją." + }, + { + "ecode": "05004027", + "intro": "Nepavyko prisijungti prie debesies; tai gali būti susiję su tinklo nestabilumu dėl trukdžių. Prieš bandydami dar kartą, galite pabandyti priartinti spausdintuvą prie maršrutizatoriaus." + }, + { + "ecode": "0500402A", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus – tai galėjo įvykti dėl belaidžio ryšio trukdžių arba dėl to, kad esate per toli nuo maršrutizatoriaus. Prašome pabandyti dar kartą arba priartinti spausdintuvą prie maršrutizatoriaus ir pabandyti dar kartą." + }, + { + "ecode": "0500402B", + "intro": "Nepavyko prisijungti prie maršrutizatoriaus dėl neteisingo slaptažodžio. Patikrinkite slaptažodį ir pabandykite dar kartą." + }, + { + "ecode": "05004037", + "intro": "Jūsų supjaustytas failas nėra suderinamas su dabartiniu spausdintuvo modeliu. Šio failo negalima atspausdinti šiuo spausdintuvu." + }, + { + "ecode": "05004038", + "intro": "Pjaustyto failo purkštuko skersmuo neatitinka dabartinių purkštuko nustatymų. Šio failo spausdinti negalima." + }, + { + "ecode": "05008013", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "05008030", + "intro": "" + }, + { + "ecode": "05008036", + "intro": "Jūsų suskaidytas failas neatitinka dabartinio spausdintuvo modelio. Tęsti?" + }, + { + "ecode": "05014017", + "intro": "Susiejimas nepavyko. Prašome bandyti dar kartą arba iš naujo paleisti spausdintuvą ir bandyti dar kartą." + }, + { + "ecode": "05014019", + "intro": "Spausdintuvas jau yra susietas. Prašome jį atsisieti ir pabandyti dar kartą." + }, + { + "ecode": "03004001", + "intro": "Spausdintuvas pasiekė laiko limitą, laukdamas, kol purkštukas atvės prieš grįžtant į pradinę padėtį." + }, + { + "ecode": "03004005", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03004006", + "intro": "Purkštukas užsikimšęs." + }, + { + "ecode": "03004009", + "intro": "Nepavyko atlikti XY ašių grįžimo į pradinę padėtį." + }, + { + "ecode": "0300400A", + "intro": "Nepavyko nustatyti mechaninio rezonanso dažnio." + }, + { + "ecode": "0300400D", + "intro": "Atkūrimas nepavyko po elektros tiekimo nutraukimo." + }, + { + "ecode": "0300400E", + "intro": "Variklio savikontrolė nepavyko." + }, + { + "ecode": "03008003", + "intro": "„AI Print Monitoring“ aptiko „spaghetti“ defektus. Prieš tęsdami spausdinimą, patikrinkite atspausdinto modelio kokybę." + }, + { + "ecode": "03008007", + "intro": "Kai spausdintuvas neteko maitinimo, spausdinimo užduotis buvo nebaigta. Jei modelis vis dar prilipęs prie spausdinimo plokštės, galite pabandyti atnaujinti spausdinimo užduotį." + }, + { + "ecode": "0300800E", + "intro": "Spausdinimo failas nėra prieinamas. Patikrinkite, ar nebuvo išimta laikmena." + }, + { + "ecode": "0300800F", + "intro": "Atrodo, kad durys yra atidarytos, todėl spausdinimas buvo sustabdytas." + }, + { + "ecode": "03008010", + "intro": "Kaitinimo galvutės aušinimo ventiliatoriaus greitis yra nenormalus." + }, + { + "ecode": "03008013", + "intro": "Vartotojas sustabdė spausdinimą. Norėdami tęsti spausdinimą, pasirinkite „Tęsti“." + }, + { + "ecode": "03008018", + "intro": "Kameros temperatūros matavimo gedimas." + }, + { + "ecode": "03008019", + "intro": "Spausdinimo plokštė neįdėta." + } + ] + } + } +} \ No newline at end of file diff --git a/resources/images/extruder_sync.svg b/resources/images/extruder_sync.svg new file mode 100644 index 0000000000..4e18766368 --- /dev/null +++ b/resources/images/extruder_sync.svg @@ -0,0 +1,3 @@ + + + diff --git a/resources/profiles/Afinia.json b/resources/profiles/Afinia.json index e684195301..a11cc0ecf6 100644 --- a/resources/profiles/Afinia.json +++ b/resources/profiles/Afinia.json @@ -1,6 +1,6 @@ { "name": "Afinia", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "Afinia configurations", "machine_model_list": [ @@ -124,14 +124,6 @@ "name": "fdm_filament_tpu", "sub_path": "filament/fdm_filament_tpu.json" }, - { - "name": "Afinia ABS", - "sub_path": "filament/Afinia ABS.json" - }, - { - "name": "Afinia ABS+", - "sub_path": "filament/Afinia ABS+.json" - }, { "name": "Afinia ABS+@HS", "sub_path": "filament/Afinia ABS+@HS.json" @@ -140,34 +132,18 @@ "name": "Afinia ABS@HS", "sub_path": "filament/Afinia ABS@HS.json" }, - { - "name": "Afinia Value ABS", - "sub_path": "filament/Afinia Value ABS.json" - }, { "name": "Afinia Value ABS@HS", "sub_path": "filament/Afinia Value ABS@HS.json" }, - { - "name": "Afinia PLA", - "sub_path": "filament/Afinia PLA.json" - }, { "name": "Afinia PLA@HS", "sub_path": "filament/Afinia PLA@HS.json" }, - { - "name": "Afinia Value PLA", - "sub_path": "filament/Afinia Value PLA.json" - }, { "name": "Afinia Value PLA@HS", "sub_path": "filament/Afinia Value PLA@HS.json" }, - { - "name": "Afinia TPU", - "sub_path": "filament/Afinia TPU.json" - }, { "name": "Afinia TPU@HS", "sub_path": "filament/Afinia TPU@HS.json" diff --git a/resources/profiles/Afinia/filament/Afinia ABS+.json b/resources/profiles/Afinia/filament/Afinia ABS+.json deleted file mode 100644 index 1f64df4ffe..0000000000 --- a/resources/profiles/Afinia/filament/Afinia ABS+.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "GFSB00", - "name": "Afinia ABS+", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "nozzle_temperature": [ - "275" - ], - "nozzle_temperature_initial_layer": [ - "275" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia ABS+@HS.json b/resources/profiles/Afinia/filament/Afinia ABS+@HS.json index 5c84c3456e..79a5b294b9 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS+@HS.json +++ b/resources/profiles/Afinia/filament/Afinia ABS+@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "wAJTMxtCY7EoavRi", "name": "Afinia ABS+@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia ABS.json b/resources/profiles/Afinia/filament/Afinia ABS.json deleted file mode 100644 index 650ae97fa5..0000000000 --- a/resources/profiles/Afinia/filament/Afinia ABS.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "GFSB00", - "name": "Afinia ABS", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia ABS@HS.json b/resources/profiles/Afinia/filament/Afinia ABS@HS.json index b7dfb114b1..90c4f9610a 100644 --- a/resources/profiles/Afinia/filament/Afinia ABS@HS.json +++ b/resources/profiles/Afinia/filament/Afinia ABS@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "qCDnb2iBaz4hd4vX", "name": "Afinia ABS@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia PLA.json b/resources/profiles/Afinia/filament/Afinia PLA.json deleted file mode 100644 index ef830ee2ea..0000000000 --- a/resources/profiles/Afinia/filament/Afinia PLA.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFA00", - "setting_id": "GFSA00", - "name": "Afinia PLA", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_pla", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Afinia" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia PLA@HS.json b/resources/profiles/Afinia/filament/Afinia PLA@HS.json index 59f4f3eb77..6f37a09ac3 100644 --- a/resources/profiles/Afinia/filament/Afinia PLA@HS.json +++ b/resources/profiles/Afinia/filament/Afinia PLA@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "N3sCgjdjvp6FTtw9", "name": "Afinia PLA@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia TPU.json b/resources/profiles/Afinia/filament/Afinia TPU.json deleted file mode 100644 index 57f76ff509..0000000000 --- a/resources/profiles/Afinia/filament/Afinia TPU.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "type": "filament", - "name": "Afinia TPU", - "inherits": "fdm_filament_tpu", - "from": "system", - "filament_id": "GFU01", - "instantiation": "true", - "filament_vendor": [ - "Afinia" - ], - "filament_density": [ - "1.22" - ], - "nozzle_temperature_initial_layer": [ - "230" - ], - "filament_cost": [ - "41.99" - ], - "nozzle_temperature": [ - "230" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia TPU@HS.json b/resources/profiles/Afinia/filament/Afinia TPU@HS.json index a56e931003..c2590ff9ef 100644 --- a/resources/profiles/Afinia/filament/Afinia TPU@HS.json +++ b/resources/profiles/Afinia/filament/Afinia TPU@HS.json @@ -3,6 +3,7 @@ "name": "Afinia TPU@HS", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "zUqTgAEbqTN1EdRl", "filament_id": "GFU01_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Afinia/filament/Afinia Value ABS.json b/resources/profiles/Afinia/filament/Afinia Value ABS.json deleted file mode 100644 index 0c553c3f58..0000000000 --- a/resources/profiles/Afinia/filament/Afinia Value ABS.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFB00", - "setting_id": "GFSB00", - "name": "Afinia Value ABS", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_abs", - "filament_flow_ratio": [ - "0.95" - ], - "filament_cost": [ - "24.99" - ], - "filament_vendor": [ - "Afinia" - ], - "fan_max_speed": [ - "60" - ], - "filament_max_volumetric_speed": [ - "16" - ], - "nozzle_temperature": [ - "245" - ], - "nozzle_temperature_initial_layer": [ - "245" - ], - "slow_down_layer_time": [ - "12" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json b/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json index 7a262c7621..79b0ea9db3 100644 --- a/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json +++ b/resources/profiles/Afinia/filament/Afinia Value ABS@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "OxIiEYjbhEvSykaQ", "name": "Afinia Value ABS@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/filament/Afinia Value PLA.json b/resources/profiles/Afinia/filament/Afinia Value PLA.json deleted file mode 100644 index e996c7269f..0000000000 --- a/resources/profiles/Afinia/filament/Afinia Value PLA.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "filament", - "filament_id": "GFA00", - "setting_id": "GFSA00", - "name": "Afinia Value PLA", - "from": "system", - "instantiation": "true", - "inherits": "fdm_filament_pla", - "filament_cost": [ - "24.99" - ], - "filament_density": [ - "1.26" - ], - "filament_flow_ratio": [ - "0.98" - ], - "filament_max_volumetric_speed": [ - "21" - ], - "filament_vendor": [ - "Afinia" - ], - "filament_long_retractions_when_cut": [ - "1" - ], - "filament_retraction_distances_when_cut": [ - "18" - ], - "nozzle_temperature": [ - "190" - ], - "nozzle_temperature_initial_layer": [ - "190" - ], - "compatible_printers": [ - "Afinia H400 Pro 0.4 nozzle", - "Afinia H400 Pro 0.6 nozzle" - ] -} diff --git a/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json b/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json index 7c880473e7..20dceb0249 100644 --- a/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json +++ b/resources/profiles/Afinia/filament/Afinia Value PLA@HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "BASsUdyvElEVJ9AA", "name": "Afinia Value PLA@HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json index 334b0be2e9..1c93b3f1cd 100644 --- a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json +++ b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "iwkXfmEyz9RLZTvh", "name": "Afinia H+1(HS) 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json index 2c9a572f7c..ecfca28454 100644 --- a/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/machine/Afinia H+1(HS) 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "vngsrxKvEIsmr8tQ", "name": "Afinia H+1(HS) 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json index db9eec0164..18e497cd01 100644 --- a/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.12mm Fine @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FueWYijuvLNWzNmL", "name": "0.12mm Fine @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json index 103dea6577..cebbfe2206 100644 --- a/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.16mm Optimal @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Ntf0ZMcETTPz7EY1", "name": "0.16mm Optimal @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json index 82d5875fac..571fdf3e01 100644 --- a/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.18mm Fine @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.18_nozzle_0.6_HS", "from": "system", - "setting_id": "GP021", + "setting_id": "b7oGgrSCik70LqdL", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json index 5e9dfb0225..e5449b7e16 100644 --- a/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.20mm Standard @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Lxid5Z2e0fvVDMMm", "name": "0.20mm Standard @Afinia H+1(HS)", "from": "system", "inherits": "fdm_process_afinia_HS_common", diff --git a/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json index 646068c010..0dad08c3b0 100644 --- a/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.24mm Draft @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "APeSqnRZh6I9OTFr", "name": "0.24mm Draft @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json index a01a9bdf8d..1d984a149d 100644 --- a/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.24mm Standard @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.24_nozzle_0.6_HS", "from": "system", - "setting_id": "GP022", + "setting_id": "QlOnQEeUXkGaxZS5", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json b/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json index 2952d97305..e8fb41dcb8 100644 --- a/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json +++ b/resources/profiles/Afinia/process/0.28mm Extra Draft @Afinia H+1(HS).json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VZ3NOVzdVWqZ37Ge", "name": "0.28mm Extra Draft @Afinia H+1(HS)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json index 8f46a23c3b..187bb12009 100644 --- a/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.30mm Standard @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP023", + "setting_id": "7PPJm0girx11EP80", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json index d8de7e2b5b..63fc4df090 100644 --- a/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.30mm Strength @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP024", + "setting_id": "BewLobRVuiw6HPuc", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json index 1e57406d32..c693fc468b 100644 --- a/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.36mm Draft @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.36_nozzle_0.6_HS", "from": "system", - "setting_id": "GP025", + "setting_id": "pBS3NpSZPjtySd3X", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json b/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json index b8ff4e3930..e9f4057178 100644 --- a/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json +++ b/resources/profiles/Afinia/process/0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Afinia H+1(HS) 0.6 nozzle", "inherits": "fdm_process_afinia_0.42_nozzle_0.6_HS", "from": "system", - "setting_id": "GP026", + "setting_id": "kHUEpY5ZMtYrLKtO", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Anker.json b/resources/profiles/Anker.json index 2d578cab61..544d889b4f 100644 --- a/resources/profiles/Anker.json +++ b/resources/profiles/Anker.json @@ -1,6 +1,6 @@ { "name": "Anker", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Anker configurations", "machine_model_list": [ diff --git a/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json index faf5fa349b..aaa175bacd 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS 0.2 nozzle", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99_20", + "setting_id": "BD5ODYVM90Ig44C5", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json index 03aaf51db8..76c10b1018 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS 0.25 nozzle", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99_25", + "setting_id": "WS5wXckNuiQqSVwO", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic ABS.json b/resources/profiles/Anker/filament/Anker Generic ABS.json index 26244878ad..5588d39ff3 100644 --- a/resources/profiles/Anker/filament/Anker Generic ABS.json +++ b/resources/profiles/Anker/filament/Anker Generic ABS.json @@ -3,7 +3,7 @@ "name": "Anker Generic ABS", "inherits": "Anker Generic ABS @base", "from": "system", - "setting_id": "GFSB99", + "setting_id": "axEspGzFJnrnidm4", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json index fbe42caf7d..b13a09de2a 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA 0.2 nozzle", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98_20", + "setting_id": "G7pzEyyhPFDnae3R", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json index 6e8d955d9a..fad3cb2a20 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA 0.25 nozzle", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98_25", + "setting_id": "ErUUDTQ7h1wNHAKT", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic ASA.json b/resources/profiles/Anker/filament/Anker Generic ASA.json index e336c9f606..66041c0463 100644 --- a/resources/profiles/Anker/filament/Anker Generic ASA.json +++ b/resources/profiles/Anker/filament/Anker Generic ASA.json @@ -3,7 +3,7 @@ "name": "Anker Generic ASA", "inherits": "Anker Generic ASA @base", "from": "system", - "setting_id": "GFSB98", + "setting_id": "QiFoBW5WuDUJGmFZ", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json index 7ab4dc9e8f..3e7a0b85d1 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA 0.2 nozzle", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99_20", + "setting_id": "NZB26MSD9WbOeY2S", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json index 265dd5f86c..8c0233d67e 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA 0.25 nozzle", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99_25", + "setting_id": "Wj7oXTGUxo8lie1B", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PA-CF.json b/resources/profiles/Anker/filament/Anker Generic PA-CF.json index de4fb91abe..b821bede88 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA-CF", "inherits": "Anker Generic PA-CF @base", "from": "system", - "setting_id": "GFSN98", + "setting_id": "qdsEps11ugFHJkn7", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PA.json b/resources/profiles/Anker/filament/Anker Generic PA.json index 9ca9cae250..43f3724ea9 100644 --- a/resources/profiles/Anker/filament/Anker Generic PA.json +++ b/resources/profiles/Anker/filament/Anker Generic PA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PA", "inherits": "Anker Generic PA @base", "from": "system", - "setting_id": "GFSN99", + "setting_id": "QbIiX554Yee6vb32", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json index f223c41366..87f09622b9 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PC 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC 0.2 nozzle", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99_20", + "setting_id": "GhIOAidtgDkzh9Aj", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json index 96f2c82c03..38794a6a44 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PC 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC 0.25 nozzle", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99_25", + "setting_id": "TQm9EPdenyGJMvgP", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PC.json b/resources/profiles/Anker/filament/Anker Generic PC.json index 2a58425c3f..3be5d34b71 100644 --- a/resources/profiles/Anker/filament/Anker Generic PC.json +++ b/resources/profiles/Anker/filament/Anker Generic PC.json @@ -3,7 +3,7 @@ "name": "Anker Generic PC", "inherits": "Anker Generic PC @base", "from": "system", - "setting_id": "GFSC99", + "setting_id": "xY25QcIsR9pWai3n", "instantiation": "true", "compatible_printers": [ "Anker M5 All-Metal 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json index 764eaed49e..18686402e1 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG 0.2 nozzle", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99_20", + "setting_id": "VItvDP6zmenWXwPO", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json index 1c1da73433..689836eae3 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG 0.25 nozzle", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99_25", + "setting_id": "UgKfPuleh1xnoJLT", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PETG-CF.json b/resources/profiles/Anker/filament/Anker Generic PETG-CF.json index 15c1407d2d..3f0dd59e94 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG-CF", "inherits": "Anker Generic PETG-CF @base", "from": "system", - "setting_id": "GFSG98", + "setting_id": "j8PLF6AZD0R0oVs8", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PETG.json b/resources/profiles/Anker/filament/Anker Generic PETG.json index 0f5e45c853..ed70b54983 100644 --- a/resources/profiles/Anker/filament/Anker Generic PETG.json +++ b/resources/profiles/Anker/filament/Anker Generic PETG.json @@ -3,7 +3,7 @@ "name": "Anker Generic PETG", "inherits": "Anker Generic PETG @base", "from": "system", - "setting_id": "GFSG99", + "setting_id": "FMnK9qOMiqDcGqhd", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json index 658c2ae138..6c31b3949c 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA 0.2 nozzle", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99_20", + "setting_id": "j6QmCITPJoP7bWHq", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json index c30858ecda..d3775b07e2 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA 0.25 nozzle", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99_25", + "setting_id": "uKfcnPWdXxAGB5Ls", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json index 4bf1e13f50..90c78475bd 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk 0.2 nozzle", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96_20", + "setting_id": "A1l6NiwRrasdV556", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json index dc2e005546..45032d46c3 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk 0.25 nozzle", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96_25", + "setting_id": "yzHmKTOtA9JamlNf", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA Silk.json b/resources/profiles/Anker/filament/Anker Generic PLA Silk.json index 8012419011..df8b1d7cdb 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA Silk.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA Silk", "inherits": "Anker Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL96", + "setting_id": "BGttYO9m2rGcnrEG", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json index 33153469bf..9923efcd6f 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+ 0.2 nozzle", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95_20", + "setting_id": "6IcMSjyxt0szdUuY", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json index 484bc39ee4..809b57ef69 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+ 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+ 0.25 nozzle", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95_25", + "setting_id": "a2Rf07ZUhpTPONN1", "instantiation": "true", "filament_max_volumetric_speed": [ "3" diff --git a/resources/profiles/Anker/filament/Anker Generic PLA+.json b/resources/profiles/Anker/filament/Anker Generic PLA+.json index 01f2dd78ad..4c4ded7c11 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA+.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA+.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA+", "inherits": "Anker Generic PLA+ @base", "from": "system", - "setting_id": "GFSL95", + "setting_id": "0yQN44WNvLVjQu2b", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA-CF.json b/resources/profiles/Anker/filament/Anker Generic PLA-CF.json index f8bc9648b8..7a2d6d5e97 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA-CF.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA-CF", "inherits": "Anker Generic PLA-CF @base", "from": "system", - "setting_id": "GFSL98", + "setting_id": "diNUVM7UcHLnOr9J", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PLA.json b/resources/profiles/Anker/filament/Anker Generic PLA.json index 5929a78827..1c4b7bc5fb 100644 --- a/resources/profiles/Anker/filament/Anker Generic PLA.json +++ b/resources/profiles/Anker/filament/Anker Generic PLA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PLA", "inherits": "Anker Generic PLA @base", "from": "system", - "setting_id": "GFSL99", + "setting_id": "qfKC91VAAFZSExhm", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic PVA.json b/resources/profiles/Anker/filament/Anker Generic PVA.json index 89bd96f996..97039a12d6 100644 --- a/resources/profiles/Anker/filament/Anker Generic PVA.json +++ b/resources/profiles/Anker/filament/Anker Generic PVA.json @@ -3,7 +3,7 @@ "name": "Anker Generic PVA", "inherits": "Anker Generic PVA @base", "from": "system", - "setting_id": "GFSS99", + "setting_id": "GRtdOKUkQfZ5eDH4", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/filament/Anker Generic TPU.json b/resources/profiles/Anker/filament/Anker Generic TPU.json index 898d22cea1..fb99d95f0d 100644 --- a/resources/profiles/Anker/filament/Anker Generic TPU.json +++ b/resources/profiles/Anker/filament/Anker Generic TPU.json @@ -3,7 +3,7 @@ "name": "Anker Generic TPU", "inherits": "Anker Generic TPU @base", "from": "system", - "setting_id": "GFSR99", + "setting_id": "YyTaPGGiEyAzmh9A", "instantiation": "true", "compatible_printers": [ "Anker M5 0.4 nozzle", diff --git a/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json index d905248520..e4543fa084 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM004", + "setting_id": "kN8Hohcpw8f5ntpr", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json index 7258b9ae49..88662e7bab 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7dfus0FEePH32qeb", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json index 7f47fdf115..42810014ea 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM001", + "setting_id": "P4a46X3GsXKseJZA", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json index 56a4ab451f..11d8b3cf62 100644 --- a/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM010", + "setting_id": "Oc59gC5v0WBApuk0", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json index 19667043c0..0240748426 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM005", + "setting_id": "oGl7LwEgqjA1YhCr", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json index 4a5933c630..8a5600df05 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM008", + "setting_id": "imIr5Mjp5nZ3e7Od", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json index b949db9625..6434e3c76b 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM002", + "setting_id": "coZ1LkMyEaPb0IUW", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json index 58b274b81d..4c5c7a82ef 100644 --- a/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5 All-Metal 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5 All-Metal 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM011", + "setting_id": "Ud7gCUZXdNlpBEoB", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json index b43d2a47f3..b88d21dae3 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.2 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM006", + "setting_id": "gydejA4b2J8t11NZ", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json index d7cbb238d2..7aec134ac4 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.25 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM009", + "setting_id": "rvdyXQTYJawcfGrp", "instantiation": "true", "nozzle_diameter": [ "0.25" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json index 4fb54bd71f..573784f2f3 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM003", + "setting_id": "nU0a3nS7wts4sQW4", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json b/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json index 8730e027a1..d6d1212b63 100644 --- a/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json +++ b/resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anker M5C 0.6 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM012", + "setting_id": "vMRJqTpMxHG2tMbO", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json index 64710c9c95..997c3cee11 100644 --- a/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Optimal 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Optimal 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP010", + "setting_id": "ue2qhXydEN7TC2g8", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json index 1f428d36f6..1fb1cc62ca 100644 --- a/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Optimal 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Optimal 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP013", + "setting_id": "0BaK6KcVfmLfDWQ5", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json b/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json index e596034d1e..e146e9dd2b 100644 --- a/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json +++ b/resources/profiles/Anker/process/0.05mm Ultradetail @Anker.json @@ -3,7 +3,7 @@ "name": "0.05mm Ultradetail @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP002", + "setting_id": "GmuMBllBDCV3wgp6", "instantiation": "true", "layer_height": "0.05", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Detail @Anker.json b/resources/profiles/Anker/process/0.10mm Detail @Anker.json index 81b391d936..7332859c39 100644 --- a/resources/profiles/Anker/process/0.10mm Detail @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Detail @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Detail @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP003", + "setting_id": "doEmSk2yclAlrDje", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json index 63965432cc..863b6d9a90 100644 --- a/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Standard 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP011", + "setting_id": "VsbQS5WHAe8eWdMb", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json index 9008650519..6d6476b6eb 100644 --- a/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.10mm Standard 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP014", + "setting_id": "tVkN8yO3KNU7RBil", "instantiation": "true", "layer_height": "0.10", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json index c8f9638793..b376aef87c 100644 --- a/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Detail 0.6 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Detail 0.6 nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP016", + "setting_id": "G86FJ5HcZrezkPiL", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json index 7efbfedaf6..5e4a102210 100644 --- a/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Draft 0.2 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Draft 0.2 nozzle @Anker", "inherits": "fdm_process_anker_common_0_2", "from": "system", - "setting_id": "GP012", + "setting_id": "mvB5mkr4Rcnt6nfL", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json b/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json index 5685472ca5..a69f72ec3e 100644 --- a/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Draft 0.25 nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Draft 0.25 nozzle @Anker", "inherits": "fdm_process_anker_common_0_25", "from": "system", - "setting_id": "GP015", + "setting_id": "2z0V3ymNPvCkaMKl", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Fast @Anker.json b/resources/profiles/Anker/process/0.15mm Fast @Anker.json index 05c880275c..253fc15a8e 100644 --- a/resources/profiles/Anker/process/0.15mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP007", + "setting_id": "AmygchBTj8t7w1p8", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.15mm Optimal @Anker.json b/resources/profiles/Anker/process/0.15mm Optimal @Anker.json index dce863255e..fa793b0ef7 100644 --- a/resources/profiles/Anker/process/0.15mm Optimal @Anker.json +++ b/resources/profiles/Anker/process/0.15mm Optimal @Anker.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP004", + "setting_id": "B60G1FrfJwUViHQb", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/Anker/process/0.20mm Fast @Anker.json b/resources/profiles/Anker/process/0.20mm Fast @Anker.json index 80dce09426..fecf2f4e54 100644 --- a/resources/profiles/Anker/process/0.20mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.20mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP008", + "setting_id": "Qu11kOAqDc189BDd", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json index 00a31c9594..bd4ed02497 100644 --- a/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Optimal 0.6 nozzle @Anker.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.20mm Optimal 0.6 nozzle @Anker", + "renamed_from": "0.20mm Optimal 0.6 nozzle @Anker.json", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP017", + "setting_id": "re5qmcOFJ1OJP3Ip", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.20mm Standard @Anker.json b/resources/profiles/Anker/process/0.20mm Standard @Anker.json index f22fdba81b..59fcf74ff5 100644 --- a/resources/profiles/Anker/process/0.20mm Standard @Anker.json +++ b/resources/profiles/Anker/process/0.20mm Standard @Anker.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP001", + "setting_id": "pIFD3fv1vaRXYpPA", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.20", diff --git a/resources/profiles/Anker/process/0.25mm Draft @Anker.json b/resources/profiles/Anker/process/0.25mm Draft @Anker.json index 46033dd6d2..a8d1a2ad2d 100644 --- a/resources/profiles/Anker/process/0.25mm Draft @Anker.json +++ b/resources/profiles/Anker/process/0.25mm Draft @Anker.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP005", + "setting_id": "jYoKBJ0eOXh4FZ8Q", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Anker/process/0.25mm Fast @Anker.json b/resources/profiles/Anker/process/0.25mm Fast @Anker.json index dff9ea3a7c..c04fad9f93 100644 --- a/resources/profiles/Anker/process/0.25mm Fast @Anker.json +++ b/resources/profiles/Anker/process/0.25mm Fast @Anker.json @@ -3,7 +3,7 @@ "name": "0.25mm Fast @Anker", "inherits": "fdm_process_anker_fast_common", "from": "system", - "setting_id": "GP009", + "setting_id": "wrZr3PBnVbQ6AVn9", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json index 297bacaed2..4b03a6964b 100644 --- a/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.30mm Standard 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP018", + "setting_id": "dZht9nv2lKNm1JHa", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.30", diff --git a/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json b/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json index b64e8f6cab..d219c6ebfd 100644 --- a/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json +++ b/resources/profiles/Anker/process/0.30mm Superdraft @Anker.json @@ -3,7 +3,7 @@ "name": "0.30mm Superdraft @Anker", "inherits": "fdm_process_anker_common", "from": "system", - "setting_id": "GP006", + "setting_id": "ilmQ7GegvVeH9AxA", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.30", diff --git a/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json index 9c922031b3..df2e384858 100644 --- a/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.35mm Draft 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.35mm Draft 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP019", + "setting_id": "LAKBtstaShZ3atGa", "instantiation": "true", "layer_height": "0.35", "initial_layer_print_height": "0.35", diff --git a/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json b/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json index 01ff1a7859..2f91c1feb8 100644 --- a/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json +++ b/resources/profiles/Anker/process/0.40mm Superdraft 0.6mm nozzle @Anker.json @@ -3,7 +3,7 @@ "name": "0.40mm Superdraft 0.6mm nozzle @Anker", "inherits": "fdm_process_anker_common_0_6", "from": "system", - "setting_id": "GP020", + "setting_id": "pZ1lqDq7UEaKzUAb", "instantiation": "true", "layer_height": "0.40", "initial_layer_print_height": "0.40", diff --git a/resources/profiles/Anycubic.json b/resources/profiles/Anycubic.json index a1a904f663..d0a5ad0852 100644 --- a/resources/profiles/Anycubic.json +++ b/resources/profiles/Anycubic.json @@ -1,6 +1,6 @@ { "name": "Anycubic", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Anycubic configurations", "machine_model_list": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json index ff036af09a..f560328d28 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RDI26qeSRSTe0PDg", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json index 5a9a4c9ca7..4e5b8117bc 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Moc1cylP6mmSQjlb", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json index 873002b125..5b5dbd88a8 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2xgfnUKyOUQwYWPa", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json index d0f1af45cd..762dee8f05 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NOiAgxA0BbvLhR1v", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ 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 index ab43c94e9c..a37305a1bd 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MDWaiSjl89E6Edsn", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ 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 index 46ad643f22..5638f4c226 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wZjVYc7dBDSKRusJ", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ 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 index 170834c938..37cd31a19e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AbB6JtoPRsNgmxyy", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ 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 index fda4fbd20b..8a9663981c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "exX565xnrLPkYkvu", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json index ea2340f7df..5443dacb34 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ABS @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ABS @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KeEk3yQZrKmJY9Q0", "filament_id": "GFABS", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json index 64ae44b59f..56f4d8957a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U66DGcpZeZ24VfPe", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json index 483ca46b00..af221cecff 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "06j8OTuYw3Sh9BxL", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json index e6f1c80e26..0c2d38c349 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s2XJm0JghCSUDzhh", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json index 9955d0770f..7395073bce 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rf792xZNR7tRGKNg", "filament_id": "GFA99", "instantiation": "true", "filament_settings_id": [ 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 index c103bdb580..59113ee018 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wqK6AVf1mNkIOmnt", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ 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 index 4d8b89d7e1..6ee5e7d750 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aMgpooFosBBvlKKR", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ 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 index 2889d2f2a2..8dc0f96a2c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Isk7NkdH7GxsEZkS", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ 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 index 647414f393..3ca00083f5 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ew0Lg6u3e5Xj19Bz", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json index 0ad0775984..cf04fda679 100644 --- a/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic ASA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic ASA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PEg6aLXcyUc70p9F", "filament_id": "GFASA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json b/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json index 69c852c0d6..c2863fd513 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic ABS.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "az6wmXeWSCKcUEsK", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json b/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json index 0bfbd36da1..6bddb8f194 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic ASA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qKcef8t7nj8nBjPu", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json b/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json index e5779fc0fd..ed1cf5e236 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2PXsJyI9YyoE8lc", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PA.json index 1b0f289700..5c93bd4a56 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xzI6EgoKa3DFYyoZ", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PC.json b/resources/profiles/Anycubic/filament/Anycubic Generic PC.json index 27c063a374..20d83e1d1f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PC.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PC.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3zgBtEkj1fQpDkxO", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json b/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json index 11b251c75c..cfda82354d 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PETG.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CEd987NP90bPdkW7", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json b/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json index c8ec24c00d..8246ddafb0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9gFgyEJelaCIVwAH", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json index 7c896dc2ca..3fb18f36a3 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PLA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2MiX54GMiZjFzwBI", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json b/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json index f9bb789365..5cc9abce40 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic PVA.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I1GMbOsMYktU7EbM", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json b/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json index 74ebc31dca..25d961c5e8 100644 --- a/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json +++ b/resources/profiles/Anycubic/filament/Anycubic Generic TPU.json @@ -3,7 +3,7 @@ "name": "Anycubic Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xrbLc7y1AInpumtv", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ 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 index 7a47ca5563..66428b6c93 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hcL5OHthGzApICTk", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ 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 index 8e64b2cf56..be313bf621 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OJbFCKoG5DtVGT9J", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ 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 index 23b4d955c9..077e222d49 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6mMIVw8iheDn1OuV", "filament_id": "GFPA", "instantiation": "true", "filament_settings_id": [ 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 index 4523f46c0d..a67c82ac59 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "epl6B2WNjV1dxG5Z", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ 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 index cadca22172..6a58147c35 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eMUXd3PFKHl41TIq", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ 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 index d14951edbd..553f17901d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PA6-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y9XYrUJrUYKcBhCI", "filament_id": "GFPA6-CF", "instantiation": "true", "filament_settings_id": [ 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 index d50ffe201b..bdc62ab11a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nO6m8EaBKREWUi3f", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ 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 index 9db630112f..04cd241a06 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ebKput7Vyn4IQez1", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ 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 index b585d9871d..429647426e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PAHT-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jzrflGdwy9U8kl1c", "filament_id": "GFPAHT-CF", "instantiation": "true", "filament_settings_id": [ 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 index 2f0ca3c0a0..cfe5743cb9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7F0I28djSlDopbIp", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ 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 index 49e47b8ab5..c8ed72562f 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wF10XxL2tNXh8C1p", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ 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 index 75de94fb97..76e21e1ed2 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t3VfcIKMk0ELiPP7", "filament_id": "GFPC", "instantiation": "true", "filament_settings_id": [ 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 index 08d06de570..3321afd452 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dOOXRvGwMe3NeUj0", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ 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 index 2dc25ce2ae..73378f1ffd 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H0IECyfsMaCMdefe", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ 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 index 77b5eb895d..11ac6e7bec 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7nu7lbiAHMeFBIJc", "filament_id": "GFPC-CF", "instantiation": "true", "filament_settings_id": [ 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 index 4da8298e69..53e4aba120 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "puSuSfNyKlYlmLjL", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ 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 index 1661144a3c..183655a8a9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1Qdmjm0MNJKU7aCD", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ 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 index 68e647f896..61de49c647 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PC-GF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0qp7SdwN9luxLFO", "filament_id": "GFPC-GF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json index 02d733cd30..035648964d 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PEBA 95A @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gmni9H2Du5nxBqQu", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ 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 index d1164f0c2e..93b2dd3423 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zCqTTjac3ydSAw3q", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ 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 index c381575ae8..1abbe033ae 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1bCJcP2RcDlvIqEo", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ 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 index 5e54a05de5..5f2fbc693c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PEBA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5v6coSKjAl220Cnq", "filament_id": "GFPEBA", "instantiation": "true", "filament_settings_id": [ 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 index 4adb240476..852d9be237 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "saRQ24o8KHgc1YnM", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ 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 index 2d3fa28907..688d699495 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hYFR2CtiXab9KZUp", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ 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 index 19720adb7f..95fd9fd80e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PET-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RCaf3c84JsWkuJzd", "filament_id": "GFPET-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json index 71d684de42..cc24576ed0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qe2wYLf7CEMjmfxj", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json index ccfbfbaa16..bd02903dcc 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uNktFymJ3RbGa7k0", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json index 6c1e84c5f3..e7f271b6a4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EaW663aw4torYXG8", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json index f451f60029..a0e8481d7f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lgVEMmBHMen0sWsI", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json index e9d69da287..d513cdd1d4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uLRMTzyJIara4Hr2", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ 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 index fb41ccf99d..9c59bd3643 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FAyFkKpV5w6G5dU2", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ 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 index 85accba0dc..d97f7fc564 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "duduwoswLHk9I9sY", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ 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 index 1c97fa1a5d..bd1a1768c0 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b3GU7ytZPEYNNyne", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ 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 index ca99792e83..d8913fe29e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SrHKJh6prBzMz4Se", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json index 63c556d770..a14c08e5c4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PETG @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PETG @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HyTi93UGno6uAJEO", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ 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 index 1e3979c8ac..6263a4c033 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ajFzrQq9AvGtZCui", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ 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 index 6cfdb5855b..d374e345e0 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VOV59iBwqwMtmi48", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ 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 index f0631df81c..1e4342272a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PETG-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L6GIF36jbXf5NVOw", "filament_id": "GFPETG-CF", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json index 1579611ead..7e8a8b189b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XIq1GeZdHqOl9Gtr", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json index b5aed9fcf7..2e2c0d094a 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EaVdXQHAyocYUCez", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json index c4f02100dc..e96d1b0884 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UpC1Qut0kjYRD9po", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json index 93d6e0ac13..c60020dfda 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ELCOJflyY3DfpPAH", "filament_id": "GFL92", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json index c7f0d89455..4e058c6f74 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.2 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "enkHPcq0yYHsRk7g", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json index 02d95a13e4..42d757d7e9 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qw4uL96miCLTNE7b", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json index 03ba6c0cd7..f01ded111e 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.6 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KrlWgkC2kVdSRNUx", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json index eb87552ce0..0a12e310b4 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 0.8 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gK0NhTnxz1VBNHbu", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json index bfdf206d24..c94f05a52f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4nCPU0WS74OXowyr", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json index 6d1b74b971..3fc828b305 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0Ae57Dt0KXnpQUJu", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json index af2fd286c4..7f862c1b1c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "otxG4N1WrXHUw8Z9", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json index e18cf3e559..03627128bc 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra Neo 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04_kobra_neo", + "setting_id": "GblA3LvgCL63V7Qx", "filament_id": "GFL99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json index a8350ad2fa..717e533526 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zYYM5Fznkiz0UgHN", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ 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 index 28e464da68..13a4eccfc2 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0T8Mul8Ta7zqRjS", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ 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 index 6990767f5a..f4a7632c12 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "61KPHMw1fRcuaGHk", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ 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 index dbb1809d7c..82691cd80f 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RQJLrGtzvbP2PksP", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ 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 index 3e9e60661d..d00931d974 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "50Ailboxk7bEclVp", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json index 40674aed05..795805eb82 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hyHPSJZgUpLcW7u", "filament_id": "GFPLA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json index 426e793f62..3df60b8a89 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m7o0ek6sbOavVUpG", "filament_id": "GFL98", "instantiation": "true", "filament_vendor": [ 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 index 6ff3699574..5bb37daa1f 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "NVrxrFGYkHRyzrFq", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ 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 index e477e7888e..284a1f93fd 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "swLSkqq7X3PhbRiQ", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ 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 index 91757fb235..26d53a4f72 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rsOyKXt6G37Ze51l", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json index ffde5500e3..0050079b0d 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Glow @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7GISZDRG9YilzBXM", "filament_id": "GFPLA Glow", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json index e9ecf2421f..d36e50bf95 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sio4qE22N2krNjx1", "filament_id": "GFL96", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json index 743e87b081..c5e434f90f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4FQaTeouNl9pL4Vl", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json index df8718fc52..d996d2d84b 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AEKT5WgqOTAVYijs", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ 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 index f2d09466b6..ad8be5c9f1 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "xTuh6dk8MdeAovdB", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ 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 index a30d3f8ae1..4f2a9b55e4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BpBYwZqt4ik1XIFp", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ 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 index 7812f63475..809c243223 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2Rk0UA3rtW53ECqo", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json index 198aeac557..12ba8b6984 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA High Speed @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hQ90rvCLS2rVEPVJ", "filament_id": "GFPLA High Speed", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json index 930561a004..18450cf484 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Luminous @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wi26Yq5bX8oGt4CA", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json index 478c9b4908..88dc0be839 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kVOaVF3YyfGrXTdW", "filament_id": "GFL95", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json index 026574f1d9..74e41f42aa 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qSpZJ4cRcg3xb2b2", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ 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 index 3aadc072d3..64a690ea12 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "WvmwXnXSDPPtXS8S", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ 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 index 4fd40e7609..bf2a4dfa91 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jFKsrMeqeUAcMAyf", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ 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 index 5ae1f5d02f..6b0be29514 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ueznw2fLdjN2EbIC", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json index b74c69215b..dc79a8b11f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Matte @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxYmWTeCtw0VvUcC", "filament_id": "GFPLA Matte", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json index 31436e69f8..f7a73c748c 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA SE @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1EID0A7FceyLzja5", "filament_id": "GFL97", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json index d7bca871dd..51dbc781fa 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Fszb00FtQHFOcDmz", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json index 43288219e2..24db6eab18 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wnt68LydXcNxhGhN", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ 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 index 367fb7617f..269f5acf24 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "AzEerDakdHs9Rj3I", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ 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 index dbb243d79f..aeaed4784e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pUB5V3n7yAbPxFQC", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ 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 index 746114e3e7..91edc58d3c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N96XNT6EoNVVFYz0", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json index 842506fc88..426ea3744d 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Silk @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yc1P4D9Z42Abjfut", "filament_id": "GFPLA Silk", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json index 6f9f20aa31..f29c6e2674 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA Slik @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zAUNjIY9cGOO3Np5", "filament_id": "GFL94", "instantiation": "true", "filament_vendor": [ 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 index 1daf646b57..74b39048ee 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "DkuffHU9VM48p50f", "filament_id": "GFPLA Translucent", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json index 25394dbfa8..836edf10c5 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1va1bLu3J0b5GQt3", "filament_id": "GFL93", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json index 3976b1746d..625e0ddad2 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XN8zwImhwbZCkl6m", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json index c5969db564..a7b7d4f595 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vs1ZyZJWHFue8Vc8", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ 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 index 2cfc195f60..e437edc973 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CjXfeHJpdOaSEzN0", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ 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 index f2070e9fdc..7bd1cded91 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ol5UhwlAQy7yrXYU", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ 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 index 38ee87e918..087e7e479c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u9nOmt30hBeZoN2w", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json index 710bae40fe..9bddef96ad 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PLA+ @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lehlBFE2WVyi24s0", "filament_id": "GFPLA+", "instantiation": "true", "filament_settings_id": [ 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 index 989e1a4253..ee6ea50ef1 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y9mFng36B2vAnP19", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ 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 index c060a0d0ad..91927df4a8 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9XGVjrGzNa4Br8kB", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ 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 index e56a9ff87c..7619db9764 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PLA-CF @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "Anycubic Generic PLA-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vPSse40nqlQ0xBnp", "filament_id": "GFPLA-CF", "instantiation": "true", "filament_settings_id": [ 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 index c60da7bfdb..30c1a36997 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RXGVKThses3TsFql", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ 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 index 6b731819c9..388a395309 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1QcMzxPPVVj8k9Zy", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ 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 index 1e9ebf3ee5..9ffe3a4047 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "70hdDTET074FJB0W", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json index 17c982ac9b..f166aa4a6f 100644 --- a/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic PVA @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic PVA @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uZIHFQ0GxFemfZUN", "filament_id": "GFPVA", "instantiation": "true", "filament_settings_id": [ 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 index 57f35fc16c..9579f701eb 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "V130y2Wie3uJtzho", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ 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 index 3bcf2fac44..ababa2bbb9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BAYwaV7mcaLAo1uD", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ 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 index bc776e77e0..70fc1e02d7 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FvdMeI7MlR1OEt0y", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json index 6a88f18041..a7067cc8a7 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU 95A @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9zwUSJcKXHTuDM1i", "filament_id": "GFTPU 95A", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json index f71ace7649..dbf66104c0 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CdtZIoH8bvFOFU6l", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json index a9f4530976..13f0c712e3 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F3l2tNcFwp9qG7W6", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json index 8b5696bd3b..4310aba363 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WkMd8rjotz7XNLDM", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json index bda501638c..85252f7057 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ias4IbNNwygyeow9", "filament_id": "GFU99", "instantiation": "true", "filament_settings_id": [ 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 index 45e4197630..7f8d97a333 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9UgHz7Bgv8GpydSE", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ 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 index aff088d1e6..e9b2079dff 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IcPG0rhSw4AuIcPl", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ 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 index 347a14e982..d3b82264a5 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fVVxpwKdzpOMntDc", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json index ce624e19df..7ac3014639 100644 --- a/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic TPU for ACE @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z6f3hM30bVcmttUo", "filament_id": "GFTPU for ACE", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json index fc436a2308..71e7beac0e 100644 --- a/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic ABS @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W3GiC5YLzxbbjXLY", "filament_id": "GFB99", "instantiation": "true", "filament_vendor": [ 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 index 5bd4a26700..0c49ed86e1 100644 --- 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 @@ -3,7 +3,7 @@ "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", + "setting_id": "aFlpGq8eSJQEO1Ie", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json index 5787266731..36d7edc211 100644 --- a/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic PETG @Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9hdOsLCrVX3dkem2", "filament_id": "GFPETG", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json index 9cef57a3e9..cb51a5a339 100644 --- a/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG Basic @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tUSAvzLu6pVk37kn", "filament_id": "GFG99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json index f18d9fe4a6..42739229b1 100644 --- a/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/filament/Generic TPU @Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Anycubic Kobra 3 0.4 nozzle", "inherits": "Anycubic Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kHB2rrxkyz4Clu3N", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json index 96fbc6f25b..0400c26a1d 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Fiberon PA6-CF20 @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF20 @Anycubic Kobra S1", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSL57_AC", + "setting_id": "DmRzQzlSf2KdWwKu", "filament_id": "GFL57", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json index b9a9267260..21be878b04 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Panchroma PLA @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSPM001_AC", + "setting_id": "gsXcm0Q6TdKW0GBx", "filament_id": "GFPM001", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json index 54e1323cac..a594a3fe92 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL79_AC", + "setting_id": "R7XUcQ4LSZA2i4PG", "filament_id": "GFL79", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json index abdc6a6e1d..008247a00a 100644 --- a/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json +++ b/resources/profiles/Anycubic/filament/Polymaker/Polymaker PLA Pro Metallic @Anycubic Kobra S1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro Metallic @Anycubic Kobra S1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL80_AC", + "setting_id": "iFJbVP8Ui0h5sv5X", "filament_id": "GFL80", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json index fce68b3d7f..3c8df5f163 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic 4Max Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "jEkuUvCQyBNL2MFy", "instantiation": "true", "printer_model": "Anycubic 4Max Pro", "default_print_profile": "0.20mm Standard @Anycubic 4MaxPro", diff --git a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json index fe17d0b210..40b4613eb8 100644 --- a/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic 4Max Pro 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic 4Max Pro 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "SzWHDonRrgyHlGEW", "instantiation": "true", "printer_model": "Anycubic 4Max Pro 2", "default_print_profile": "0.20mm Standard @Anycubic 4MaxPro2", diff --git a/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json index 2392bcab54..d79bebdf71 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Chiron 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Chiron 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "l7eK78cq6VEaMYfb", "instantiation": "true", "printer_model": "Anycubic Chiron", "default_print_profile": "0.20mm Standard @Anycubic Chiron", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json index d213508bbc..e32ed5b2fb 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nyudbXDikl51Tr9N", "instantiation": "true", "printer_model": "Anycubic Kobra", "default_print_profile": "0.20mm Standard @Anycubic Kobra", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json index 44488a7511..cadcce6d5a 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "A5NqCueiXvqICdAN", "instantiation": "true", "printer_model": "Anycubic Kobra 2", "default_print_profile": "0.20mm Standard @Anycubic Kobra2", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json index be902d770a..9497594f62 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "vp0DZVLgGGz8clHc", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Max 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json index fcb20562d3..f3d67776af 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005", + "setting_id": "LIsjlFTwoNWK2WyU", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Neo 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json index dedcafaf0a..1cce9bddff 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "9nAwSZ5vXCWD9qnT", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Plus 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json index ffae6e9e85..690f77a01c 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 2 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "yQ1l7ZmiAu0DyGxR", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 2 Pro 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json index 3dcc879363..cbd4a67cfb 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "N1JltE63FhgypxCh", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.2 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json index f3ae129a52..624233053e 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "E1yQxO2andqiuIIv", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json index 33ce456c5d..d613138128 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1jaDeBe7CJNcv9jW", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.6 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json index bbd62e0ae4..60b3864454 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oSz15RnEtcH6vjxN", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json index 8a776dfcfb..dbb112bfae 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "lj7NBHJtE1211s3A", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json index 8346ccf3e7..272d19cd75 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7Soa9b5ZLJGE4azO", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.6 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json index 97aef7dcac..993258d59b 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "eIkFSkCh3UahGLAF", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra 3 Max 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json index 1bc2e7afd2..58ce426f05 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Gtfgaixnuy5sZZED", "instantiation": "true", "printer_model": "Anycubic Kobra Max", "default_print_profile": "0.20mm Standard @Anycubic KobraMax", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json index 558f86143b..ab8a4a0e2b 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005_kobra_neo", + "setting_id": "OYpKGADZU98KNq2m", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra Neo 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json index c3a747b7d9..9b700b7a5f 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "6P8w81ez1853W0NK", "instantiation": "true", "printer_model": "Anycubic Kobra Plus", "default_print_profile": "0.20mm Standard @Anycubic KobraPlus", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json index 7127c64dcc..9ca15821da 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IfuZplbodKgggoSZ", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 0.4 nozzle", 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 index fcfb8a7f14..7e6195aca7 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.25 nozzle", + "setting_id": "Puudpg2z8v7I6IQA", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.25 nozzle", 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 index 4c647815c5..482534d2de 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.4 nozzle", + "setting_id": "gI3IJRLKNc1fyiO6", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.4 nozzle", 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 index 63a916be73..0feeec8104 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.6 nozzle", + "setting_id": "p7ilBBLpGn5OYr2e", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.6 nozzle", 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 index fa706c6327..172c30885e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "Anycubic Kobra S1 Max 0.8 nozzle", + "setting_id": "eD3ZKZ62sl6JMvUr", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra S1 Max 0.8 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json index 72e5707665..5dc35e5584 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Kobra X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Kobra X 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM040", + "setting_id": "tNXmqWS23vQPHt5Y", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Anycubic Kobra X 0.4 nozzle", diff --git a/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json index 6d767a4179..7686b955ab 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Predator 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Predator 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "MwdK4pzPlNcVU3eW", "instantiation": "true", "printer_model": "Anycubic Predator", "default_print_profile": "0.20mm Standard @Anycubic Predator", diff --git a/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json index 862b97e1c7..5bcd1fd942 100644 --- a/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic Vyper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic Vyper 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "4dZHITQQJ9IB8MHj", "instantiation": "true", "printer_model": "Anycubic Vyper", "default_print_profile": "0.20mm Standard @Anycubic Vyper", diff --git a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json index f94fbf6621..9d35099001 100644 --- a/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json +++ b/resources/profiles/Anycubic/machine/Anycubic i3 Mega S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Anycubic i3 Mega S 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5dhgi6AGtzKSrNiD", "instantiation": "true", "printer_model": "Anycubic i3 Mega S", "default_print_profile": "0.20mm Standard @Anycubic i3MegaS", 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 index a4f9f74e3c..6ba2afe3b3 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bZRQrVuJgsKO0PYK", "instantiation": "true", "print_settings_id": "0.06mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.06", 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 be5df8d4b6..54a0df5369 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 @@ -3,7 +3,7 @@ "name": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LtQ4DLU2kDaVk34E", "instantiation": "true", "print_settings_id": "0.08mm HighDetail @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.08", 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 fa758a8187..a4a88b3149 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 @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bt7jNDC4CFGFPH2M", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.08", 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 index 64f9ae67cc..5626bb449c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bfq9DtBsHIrbsZfD", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.08", 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 index 3d95d09050..e49ba929c0 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E2tI71ShF3oOgMME", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.08", 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 ce03d4d129..2b02de44b3 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 @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y6mNgT0LKSJEmPFE", "instantiation": "true", "print_settings_id": "0.08mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.08", 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 2a216e90a3..1e8c4a2c90 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 @@ -3,7 +3,7 @@ "name": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "A1AIAEHc3y6zYkv9", "instantiation": "true", "print_settings_id": "0.10mm Detail @Anycubic Kobra 3 0.2 nozzle", "layer_height": "0.1", 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 index 92745cc003..14fe54d530 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OmytVExIkdNyyyKT", "instantiation": "true", "print_settings_id": "0.10mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.1", 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 f8ab5c8bd0..6fd6f1ace7 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 @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wCpKK52totl5oGWj", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.12", 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 3a5d63fef9..a33932e016 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 @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AWLEg4FRuO88XinK", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.12", 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 402386ae4f..c8d7c6f284 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 @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "UPyfWzsf73YJVFb6", "instantiation": "true", "print_settings_id": "0.12mm Detail @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.12", 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 7b8a19ea17..0a67e8371a 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 @@ -3,7 +3,7 @@ "name": "0.12mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "d4hdmBF6NJ4fWyQv", "instantiation": "true", "print_settings_id": "0.12mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.12", 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 395994f87c..38fd80bfae 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 @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ES10Vs7eo1TLB3T5", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.12", 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 index 1dce201c94..b20feba94a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "z8TDucaoilYiK8V1", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.12", 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 index 693c1e7e0c..99957845b8 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D1bJFkXoVSZ2QLSA", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.12", 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 85c47f9697..29dd4e03f9 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 @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gxV6IqdjNyzhXzFm", "instantiation": "true", "print_settings_id": "0.12mm Standard @Anycubic Kobra X 0.4 nozzle.json", "layer_height": "0.12", 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 index fdea0ece35..b31c2c5af4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hl64YdObrtpqJM2s", "instantiation": "true", "print_settings_id": "0.14mm Standard @Anycubic Kobra S1 Max 0.25 nozzle", "layer_height": "0.14", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json index 90ac431440..35c1d4b30a 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2Qq27PfeoCqMAZKw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json index b727ad0ab9..ff48fca663 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fcqsKbEsGbAs6rUU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json index ffb76223be..e74fae9dad 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E1VHkuwE0sHTzmb2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json index a165e90c5d..3618dac281 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7H2BzvHgy0o9nc1g", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json index decb8e2976..a14a4961dd 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ukTEpT2XRtJyGKUp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json index 7a7ca61260..e974680931 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3Gu40CNOXnzDsZfD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json index be0251a8a4..0da034eeb7 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ln2Zw2E5e3Azq3nc", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json index a9253a608e..b4647a7c39 100644 --- a/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.15mm Optimal @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zKGotAmWJTB14cT8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "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 index d158f88254..04c0b4d8e5 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hiz2L1qh67izjl1e", "instantiation": "true", "print_settings_id": "0.16mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.16", 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 e15494d478..055dc89ed1 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 @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aIoPwYRKAgFrpbEv", "instantiation": "true", "print_settings_id": "0.16mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.16", 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 fdef77ff1a..13f0e7e127 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 @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "goHFyZFYHFEqoSy7", "instantiation": "true", "print_settings_id": "0.16mm Optimal @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.16", 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 97f716e4e6..469c3c4ba3 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 @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TTQdkZA2uJRYHhG2", "instantiation": "true", "print_settings_id": "0.16mm Optimal @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.16", 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 7d795f6f5f..aab5a3f23c 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 @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ufqLQ4X2E81IUPzx", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.16", 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 9ea61a320d..09ff8e393c 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 @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5tq9GD9dQXT89WNj", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.16", 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 fee307ecb7..4b83264a1d 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 @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "hxhzsMkFHUHBBWq8", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.16", 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 index cbe43a4076..edf43e2875 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Yl10d32pjposFVu9", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.16", 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 fb53ce7666..664f118e3d 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 @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LGufe8i6pUT0ZqXa", "instantiation": "true", "print_settings_id": "0.16mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.16", 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 9b9e21adf0..ac80f014ab 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 @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "v3FDmkDlVsokXSos", "instantiation": "true", "print_settings_id": "0.18mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.18", 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 index d5ab647545..4b2fd1df30 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Y55zuAyFSNMHZlCt", "instantiation": "true", "print_settings_id": "0.18mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.18", 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 index 30a033b0af..f276232436 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "M7CigEUqzwefI8ed", "instantiation": "true", "print_settings_id": "0.20mm High Quality @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.2", 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 456ae972a9..75fb6457ea 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 @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LaiwjsXwl634PsXv", "instantiation": "true", "print_settings_id": "0.20mm High Quality @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json index 2900a4a7bf..25fdb2819d 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic 4MaxPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Kx84xWCL5ioNtf3l", "instantiation": "true", "initial_layer_speed": "40", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json index 4b9c6d59a1..f0e718b0ff 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4fNa2Y66ms9j0vdh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json index 30471ae66e..b92ce992ca 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4tYPv79lny7OAesb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 97407e08f3..0e65291255 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2fbYNczU72ALy6dM", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Max 0.4 nozzle", "layer_height": "0.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 1864c98012..dc555a5838 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fCMzS0xvnXPSn9iq", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.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 5c6f12d627..863a0a0af9 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2mUrNfcyNc1hCoGP", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Plus 0.4 nozzle", "layer_height": "0.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 f8e9ed2ad2..96fa4642c9 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nttqa5s1WjUYIjNc", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.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 c100066f8d..5573902ecf 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zAh3OBPup750aLrS", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.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 5a774acaf5..58b0b90e5e 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "X2HJTRqzDR7SFGYl", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.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 997dc006b6..b1af0fb13d 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SkwyBc3vbgPMjDHU", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.20", 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 0e2f229719..0626025cc4 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "3B9LKlmTDiJY4UIT", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.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 3c5ae5367a..6a02522e0e 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BWCmyBN7JsJFOQjp", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle", "layer_height": "0.2", 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 index 327aaf2b73..4a00460633 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "h9txQrwg5GiCgORR", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.2", 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 efd0162508..cbe349b771 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wvvWF1n9xUOyohpn", "instantiation": "true", "print_settings_id": "0.20mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json index 5e2cf2dabe..c9d3e750a3 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PCsMHJ36HdywhVBA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json index fc9ac50930..b68731cb78 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dd3a8DNtunKVpWWY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json index 91ead18467..77e3b32b80 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pqXeGE9OxboQGBMi", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json index 563f15ebb3..326db3295d 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZnZf41QpEAXorp2U", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json index 4c2723deda..ccd1fb897b 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Predator.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Predator", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "ivQ4JSJ86wwdkFb0", "instantiation": "true", "default_acceleration": "1500", "default_jerk": "9", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json index a060440158..341ece7bef 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jvz2LYWpcGJVgzZn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json index d9cc108c6e..d0eb582143 100644 --- a/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.20mm Standard @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lI7dHvKmsEmoSw1k", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 916e0a2f7f..2ac098d8a7 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 @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xDnGqSIVqiagTsHH", "instantiation": "true", "print_settings_id": "0.24mm Draft @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.24", 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 2581762c62..587aaecfe8 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FnFtwuPyDnMFa7Fj", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.24", 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 a86f754d77..548f9050fc 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2qPWqFYU873K8058", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.24", 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 ec94279cf6..aef03dc9b2 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QlMk6ExKnTgt1DJK", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.24", 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 index b732b322aa..28aeb2a4a6 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NDu3QAQvTHNboRRR", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.24", 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 index cb9df3a011..de6d9f4c09 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ehgM1Fri1VLP8d2m", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.24", 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 index edd4a7a115..8d42e7ab86 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9oyIahCs4Md5T140", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.24", 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 04dda6f1a0..e4ca7f3027 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 @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xTBwuYlea7uuZrkd", "instantiation": "true", "print_settings_id": "0.24mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.24", 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 dd3c9c0252..dcb8ee9848 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 @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5Kt9gP2WLUKkpLz6", "instantiation": "true", "print_settings_id": "0.28mm Draft @Anycubic Kobra 2 Pro 0.4 nozzle", "layer_height": "0.28", 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 e5109f344a..a256d2e635 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 @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kqlV7SX75vSK4tXQ", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.28", 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 fc6a501064..5deb25af55 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 @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JN0hfGxiHeef7zc7", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 3 Max 0.4 nozzle", "layer_height": "0.28", 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 c6e64b4d06..7b19ca18ba 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 @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra Neo 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004_kobra_neo", + "setting_id": "6hlVHetcYAirKbOG", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra 2 Neo 0.4 nozzle", "layer_height": "0.28", 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 index 04d8aad6f8..213c1bd438 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "P21QEQqy7DYRu61b", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra S1 Max 0.4 nozzle", "layer_height": "0.28", 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 dd6f188d40..debbe6e0cf 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 @@ -3,7 +3,7 @@ "name": "0.28mm Standard @Anycubic Kobra X", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "daFO46LKFCkpDIA1", "instantiation": "true", "print_settings_id": "0.28mm Standard @Anycubic Kobra X 0.4 nozzle", "layer_height": "0.28", 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 c1e05690d1..fa16040b96 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 @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2vhe6g90nuRDOMMH", "instantiation": "true", "print_settings_id": "0.28mm SuperDraft @Anycubic Kobra 3 0.4 nozzle", "layer_height": "0.28", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json index 5f8f210789..974306bcd2 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic 4MaxPro2.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic 4MaxPro2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SnMGK6A5jGzj9KAm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json index 58cbf66311..0fd1a8efeb 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Chiron.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Chiron", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "B0Ar6gbysEbWId84", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json index 591f57780c..3ec6a42418 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Kobra", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jzWHjr9rKzgX2mbz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json index ad7355611c..18456d7b99 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Kobra2.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Kobra2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "IWsii200XlEuhz3n", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json index 671ad267b2..bb3ddf9389 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraMax.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic KobraMax", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "IB9gk84SYRkMza9u", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json index 4e3e57e70b..4190064c90 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic KobraPlus.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic KobraPlus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lSoaR17JUQSesbgG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json index f7f98b2f5f..e72286dd06 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic Vyper.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic Vyper", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pXawQlRvbdiJJANG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json index 8bd6d77f15..70bb8ad91e 100644 --- a/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json +++ b/resources/profiles/Anycubic/process/0.30mm Draft @Anycubic i3MegaS.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Anycubic i3MegaS", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7PNQ3S9tucM5wFyj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 6c768da89e..03ed5252c7 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eCGVCFP3kQylIyrd", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra 3 0.6 nozzle", "layer_height": "0.3", 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 cb390b04df..4820247cd2 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sIuoaZkkyzbslvAX", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.30", 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 index 6d116c8358..1c8042a175 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O8vKonzzc8WA5pYY", "instantiation": "true", "print_settings_id": "0.30mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.3", 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 76fe68130f..745f784736 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 @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qzptf1s7j5AK9EiA", "instantiation": "true", "print_settings_id": "0.32mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.32", 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 index 0cdc37581a..10b86fe268 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0bCUIOLe0kqiwAIZ", "instantiation": "true", "print_settings_id": "0.32mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.32", 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 ce9a786c74..93ff4febe6 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 @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PvB4L8rGa9HfNAhm", "instantiation": "true", "print_settings_id": "0.36mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.36", 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 index 9069f4ea47..66eb279711 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ii1Ycsf3xI93uZy9", "instantiation": "true", "print_settings_id": "0.36mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.36", 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 d3fc636a72..1130f63061 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3TZkjtI8Wk0eZAZb", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle", "layer_height": "0.4", 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 5292286451..fadd6675d3 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AaPC4BA5LwsTPaBn", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.40", 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 index 0046750514..1085832db4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O5xBpGApHGyVlyLw", "instantiation": "true", "print_settings_id": "0.40mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.4", 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 3c2eb20b9b..12b7ec1ebf 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 @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jJE6IPMGvUsHtqrZ", "instantiation": "true", "print_settings_id": "0.42mm Standard @Anycubic Kobra 3 Max 0.6 nozzle", "layer_height": "0.42", 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 index e7f2ea817a..f11acb406f 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rPalfYXk0fCx0yjv", "instantiation": "true", "print_settings_id": "0.42mm Standard @Anycubic Kobra S1 Max 0.6 nozzle", "layer_height": "0.42", 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 52a8025a8c..98b75e6a31 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 @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "I21Rm2YucOA0Kc2g", "instantiation": "true", "print_settings_id": "0.48mm Standard @Anycubic Kobra 3 Max 0.8 nozzle", "layer_height": "0.48", 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 index 48f510cb13..88705184ec 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y0r7Q7PMNRH8ujFF", "instantiation": "true", "print_settings_id": "0.48mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.48", 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 index 51da005e82..84ab9fa483 100644 --- 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 @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rOL0gJh6Y7pDsBnk", "instantiation": "true", "print_settings_id": "0.56mm Standard @Anycubic Kobra S1 Max 0.8 nozzle", "layer_height": "0.56", diff --git a/resources/profiles/Artillery.json b/resources/profiles/Artillery.json index 09fd18b30e..a610fdbaf6 100644 --- a/resources/profiles/Artillery.json +++ b/resources/profiles/Artillery.json @@ -1,6 +1,6 @@ { "name": "Artillery", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Artillery configurations", "machine_model_list": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json index 4c18ea91ec..b468e95d51 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "m023Z8IkkHMHxuag", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json index 527303f59f..f21c7a5a31 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery ABS @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "QGbNWGw8rqvq025W", "instantiation": "true", "chamber_temperature": [ "50" diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json index 7330e07195..8516077d0a 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "PxGFsoMcfFrTDqzL", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json index b64f564dd6..1bd222ade6 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ABS @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ABS @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "o4JZKQmCdnO0hCXZ", "filament_id": "P39db358", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ABS.json b/resources/profiles/Artillery/filament/Artillery ABS.json index aeaa42eec5..111c2c39a1 100644 --- a/resources/profiles/Artillery/filament/Artillery ABS.json +++ b/resources/profiles/Artillery/filament/Artillery ABS.json @@ -3,6 +3,7 @@ "name": "Artillery ABS", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "fsbfMiamVemzRxkG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json index ec3a56ae84..9894337b5c 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "AE7wKVIZXHXSXzL5", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json index bf05ec519a..eb4a720cc3 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery ASA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "eSwM3ZfSBWqR8Gcf", "instantiation": "true", "chamber_temperature": [ "55" diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json index 8d30e40615..422b050df8 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.6 nozzle", "from": "User", + "setting_id": "znMfTFfxvJC7a732", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json index 39a6dea2df..16a9ff7c3d 100644 --- a/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery ASA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery ASA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "y2DU36j0slaHzg04", "filament_id": "P87436f6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery Generic ABS.json b/resources/profiles/Artillery/filament/Artillery Generic ABS.json index 47b7cddff5..df06b7f844 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic ABS.json +++ b/resources/profiles/Artillery/filament/Artillery Generic ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "C4oiu2SBLwfTEcXu", "name": "Artillery Generic ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic ASA.json b/resources/profiles/Artillery/filament/Artillery Generic ASA.json index e79c4cf970..e3b8cc1f93 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic ASA.json +++ b/resources/profiles/Artillery/filament/Artillery Generic ASA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB98", - "setting_id": "GFSA04", + "setting_id": "1gls4zCclgN68Hlc", "name": "Artillery Generic ASA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PETG.json b/resources/profiles/Artillery/filament/Artillery Generic PETG.json index 0c451725fc..cc2f29e875 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PETG.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PETG.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSA04", + "setting_id": "Ou4NR5DVvalg5kCe", "name": "Artillery Generic PETG", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json b/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json index a12243a19d..7c1a231dbc 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PLA-CF.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL98", - "setting_id": "GFSA04", + "setting_id": "h23GL00BFCliLh9N", "name": "Artillery Generic PLA-CF", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic PLA.json b/resources/profiles/Artillery/filament/Artillery Generic PLA.json index 31cca4841e..1211c22b3c 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic PLA.json +++ b/resources/profiles/Artillery/filament/Artillery Generic PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "Bpy4tAvspysDWosL", "name": "Artillery Generic PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery Generic TPU.json b/resources/profiles/Artillery/filament/Artillery Generic TPU.json index bee1d4e4ce..ff724d1925 100644 --- a/resources/profiles/Artillery/filament/Artillery Generic TPU.json +++ b/resources/profiles/Artillery/filament/Artillery Generic TPU.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSA04", + "setting_id": "u8YE6r4sGJ0jvqBn", "name": "Artillery Generic TPU", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json index 16a9d66a40..756e67a5e2 100644 --- a/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "lOsH1teHe8Pgzx2g", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json index 416ae1f61f..ec9009a5e1 100644 --- a/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PA-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PA-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "b4BKJMUxArvLuEOh", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json index 43a4cd66aa..4fa54353f0 100644 --- a/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PC @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PC @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "WawbnfhWn4MT6Hz7", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json index 11ca527876..6fd06c0d66 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "a5jwQ6nyffW1Vqv1", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json index ad8fa315e7..a82b3b7948 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PET @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "QeiSAakfMW7HyhJ7", "instantiation": "true", "chamber_temperature": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json index 3e662fbb06..26e71cefc8 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "VGu7C3uk8d6ibIg4", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json index 075bfde2e1..b5461ec03c 100644 --- a/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PET @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PET @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "Oj11BhU0QajmDrh3", "filament_id": "P11851ba", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json index 86a78ccb09..5ed45d7e7d 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "kAlZ7nCYo53UVVx3", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json index 70e0ee64bd..f6bbdd3cef 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "g7UIfJTOPzMQzfrH", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json index 3821c0a681..3fcc8e175b 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "uuPf0MfNTZ2lihtG", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json index ff965670c6..4842427a49 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "dQBp2T4ap90uAOYs", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json index 39ae6a7136..03fc583bfa 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "GrdWgUGdXt23jnBu", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json index c967ad175e..b8a3c33acd 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG Basic @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "RTQvSwJBWnut5aBo", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json index 6198724fb6..3ab0575058 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "Wkt1IClO4nwH3Xa7", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json index a19ee276a1..2b83852a34 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PETG Basic @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "Zlvodz3cris0hmof", "filament_id": "P284941e", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json index 953f8c5162..22d124da46 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PETG-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "JvmeW29kHCp7HiA6", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Artillery/filament/Artillery PETG.json b/resources/profiles/Artillery/filament/Artillery PETG.json index 156b6af9c6..ecea0ae80b 100644 --- a/resources/profiles/Artillery/filament/Artillery PETG.json +++ b/resources/profiles/Artillery/filament/Artillery PETG.json @@ -3,6 +3,7 @@ "name": "Artillery PETG", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "1MyhYGMxJCmZnJRP", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json index 92000f3c64..258f94de1a 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "sqlU8YRYqavJBap3", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json index 7929e9f9a2..573a888662 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "7V8Vj5ykHmTYtxcC", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json index 17d9eb7643..340947ce24 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "J8rOxOcsB6HN00HI", "filament_id": "Pfcf9c4c", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json index 13614b29e7..cee58991c8 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "N3iYnDshA5ruihVE", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json index 6839998445..56498727fa 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "zBUD1JyuZF9MOncA", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json index aef8546dec..884e7d428e 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "NKkZjEtDjxOMLjoo", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json index a2bd263441..cffdcde5ed 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "c9BAMzt2w30nB2rC", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Basic @Artillery M1 Pro 0.8 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json index 1793998f5f..18e7f77ad4 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic+ @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "2VIrSoq3kufjHMXj", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "100" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Basic.json b/resources/profiles/Artillery/filament/Artillery PLA Basic.json index 00991a28da..052ceac5e5 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Basic.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Basic.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Basic", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "DcGBMRjdcgLx6pWG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json index 654239e8b5..aff1bcb3cb 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "tgmFMdyhSX05kuxw", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Matte @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json index 123fec2e8a..abd44e77d1 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "9zqAIfywiv9zm77X", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json index 012c4a6121..a1fc1e5999 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "W6ipHAoCgHIUIT3g", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Matte @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json index 2584bd461e..4217f6836d 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "HggSuUWe1zWOlQIK", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Matte.json b/resources/profiles/Artillery/filament/Artillery PLA Matte.json index d96703637a..83e40133aa 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Matte.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Matte.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Matte", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "kt8uKXpMqxrFrHaG", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json index 29bb1ad3d4..d2f3184864 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "TDwRIGXkpJIW38jG", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Silk @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json index 93eb32c421..e8d65f465b 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "BWMjPUWXwumQoY5H", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json index 127c60e829..ce102bb364 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "PpuiGWbDlVZwBIxb", "instantiation": "true", "filament_settings_id": [ "Artillery PLA Silk @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json index 27b24b56d9..6fb25927e3 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk @Artillery M1 Pro 0.8 nozzle", "inherits": "Artillery PLA @Artillery M1 Pro 0.8 nozzle", "from": "User", + "setting_id": "dr2wlzDc1AC3tciI", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Artillery/filament/Artillery PLA Silk.json b/resources/profiles/Artillery/filament/Artillery PLA Silk.json index a9518ce7cb..85cd2eec08 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Silk.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Silk.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Silk", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "rd0U4uP6mM8S8lDg", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA Tough.json b/resources/profiles/Artillery/filament/Artillery PLA Tough.json index e1e7ed2789..8f1ce758b5 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA Tough.json +++ b/resources/profiles/Artillery/filament/Artillery PLA Tough.json @@ -3,6 +3,7 @@ "name": "Artillery PLA Tough", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "hLFvQXsyyUrguGEp", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json index b295fd6b91..36c7d69b83 100644 --- a/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PLA-CF @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "oT12s9CEV1CTD6eB", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json index 4977538e4a..f7f700fa96 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "FIcb3cOIanxmvHe2", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json index f5f35a105e..4c558166c5 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery PVA @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "r2q4QIlfTUCIz43f", "instantiation": "true", "chamber_temperature": [ "50" diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json index f9e4dd8848..b15f191878 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "h5xquKMT9l0rwcTU", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json index 3a659c01dd..1e682947c2 100644 --- a/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery PVA @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery PVA @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "cElJlbCAgAqSQiPZ", "filament_id": "P8163162", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json index eaae028136..d722aa592f 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Artillery TPU @Artillery M1 Pro 0.4 nozzle", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "p6vnCneuwtM0PzL7", "instantiation": "true", "close_fan_the_first_x_layers": [ "1" diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json index 83f2e1138f..9d29c06e42 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery TPU @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "QIgpIamYbSdI4DPW", "filament_id": "P2fbf0c0", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json index dfbc8c7fd1..d323279979 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/filament/Artillery TPU @Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Artillery TPU @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "W22GbPPOgtH4NAAH", "filament_id": "P2fbf0c0", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Artillery/filament/Artillery TPU.json b/resources/profiles/Artillery/filament/Artillery TPU.json index d8da5a6a25..b769e8c61a 100644 --- a/resources/profiles/Artillery/filament/Artillery TPU.json +++ b/resources/profiles/Artillery/filament/Artillery TPU.json @@ -3,6 +3,7 @@ "name": "Artillery TPU", "inherits": "Artillery Generic PLA", "from": "system", + "setting_id": "IcV1jLJaS5rmdNOY", "instantiation": "true", "compatible_printers": [ "Artillery Sidewinder X3 Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json index 9a6201acbd..d9b85067a1 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Genius 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "F9lEQfH826Mqt6u3", "name": "Artillery Genius 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json index f9a948f0f2..07beadf546 100644 --- a/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Genius Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "afpW4NvrOWzQvHbB", "name": "Artillery Genius Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json index 0cdc03b4e4..4aa9f9d9a4 100644 --- a/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Hornet 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "02YSChoFQuBRQ8vf", "name": "Artillery Hornet 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json index bfd4b9b885..e5617c4fe6 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "o6k3pZtOPuDdgiBX", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json index 41e89dcf1e..a265906570 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "IiEdnorTA9zHd33j", "instantiation": "true", "is_artillery": "1", "emit_machine_limits_to_gcode": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json index ca8b18950a..85be2e70be 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.6 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "8hI1uCr4i2vAl0wn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json index 1629b794a1..db91e5320b 100644 --- a/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery M1 Pro 0.8 nozzle.json @@ -2,6 +2,7 @@ "type": "machine", "name": "Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "XRihoaBgTTi4xZeN", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json index 9305ac9c26..81e96a2593 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X1 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "nY4RXX9Ylh7AIc4U", "name": "Artillery Sidewinder X1 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json index c3d1ff4af7..b3100851fb 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM003", + "setting_id": "cUhse9TrF7ElM5dh", "name": "Artillery Sidewinder X2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json index 2b30199703..42e66ff875 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X3 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM005", + "setting_id": "kYxFDURI6G6xkM0G", "instantiation": "true", "printer_model": "Artillery Sidewinder X3 Plus", "default_print_profile": "0.20mm Standard @Artillery Genius", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json index 44abb53442..3b12ce6ede 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X3 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X3 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "KYpHdc1Ckp5Qh8So", "instantiation": "true", "printer_model": "Artillery Sidewinder X3 Pro", "default_print_profile": "0.20mm Standard @Artillery Genius", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json index 47dd74a6cf..b9013a99bf 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X4 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM006", + "setting_id": "ye6pO8K8ZFpvlRGW", "instantiation": "true", "printer_model": "Artillery Sidewinder X4 Plus", "printer_settings_id": "Artillery X4Plus 0.4 nozzle", diff --git a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json index 2c46fd17d7..4642e015a1 100644 --- a/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/machine/Artillery Sidewinder X4 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Artillery Sidewinder X4 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM007", + "setting_id": "7cLTEGUDiY31gDxn", "instantiation": "true", "printer_model": "Artillery Sidewinder X4 Pro", "printer_settings_id": "Artillery X4Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json index 453a279893..62fce30113 100644 --- a/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.06mm High Quality @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "yjALHQJzGGaE4nMS", "instantiation": "true", "initial_layer_speed": "30", "layer_height": "0.06", diff --git a/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json index 8172e18fc3..89def78666 100644 --- a/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.06mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "GGVrn86YvCTCKZO0", "instantiation": "true", "default_acceleration": "10000", "initial_layer_speed": "30", 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 c89ee8e095..a1175a96f5 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 @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "QF2Yc6fHJtqBPrXv", "instantiation": "true", "default_acceleration": "10000", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json index fa5672a3a1..44b3f1631d 100644 --- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "OmUulk4l2blPQkQ6", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json index a527379ef8..4afcf0d536 100644 --- a/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "vY9gUUB7AiAFercJ", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", 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 ce5ad5c7f1..929fafed81 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 @@ -2,6 +2,7 @@ "type": "process", "name": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "YmxzYTHsl0LXG2bA", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 912a4cb702..5a53fa08fd 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 @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "HNsKMUSaLsnb56Mf", "instantiation": "true", "default_acceleration": "4000", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json index 60d7884bb3..18239301c7 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "t7RZ1WqjOTKtTvTM", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json index 35a9413ade..c416051fd7 100644 --- a/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "bvdtnW6gJqWSXpgx", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json index cff1fb582e..2b24780c18 100644 --- a/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.08mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "tBkgo42o4VJmt6fi", "instantiation": "true", "default_acceleration": "10000", "outer_wall_acceleration": "5000", diff --git a/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json index 7fd222d21f..fe6847d4ad 100644 --- a/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.10mm High Quality @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm High Quality @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "FksB6fr8muTxgySq", "instantiation": "true", "layer_height": "0.1", "print_settings_id": "0.10mm High Quality @Artillery M1 Pro 0.2 nozzle" diff --git a/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json index 433a8131cc..d126cb7f2d 100644 --- a/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.10mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "MlIENHkEv5irBncX", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.1", 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 8384c1cdc6..a7647a1f00 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 @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "x77JwohWlmbh4qgO", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json index f9f92816ee..a1c6eaf5ea 100644 --- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "sO9baFXRvMQahUO5", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json index c24d947376..e0246540b8 100644 --- a/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Fine @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "5ZEec1wnkgABwHco", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", 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 73eb6f2de0..b6f6ae5347 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 @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NnbXJ8LEQMO0jp4U", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "4000", diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json index 004f65edc1..99345dbb09 100644 --- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "FaKYo6nzKhI0Z011", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json index a9a8831364..db7e682ad7 100644 --- a/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "DWIk4uCd9AbHEo6P", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json index bb0b154e8e..bc1fd76e6d 100644 --- a/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.12mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "6zREvsM8m1lrSSXd", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.12", diff --git a/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json b/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json index 268ea189b2..c94d97c63d 100644 --- a/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json +++ b/resources/profiles/Artillery/process/0.14mm Standard @Artillery M1 Pro 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @Artillery M1 Pro 0.2 nozzle", "inherits": "0.08mm High Quality @Artillery M1 Pro 0.2 nozzle", "from": "system", + "setting_id": "2s1GRYNjuHNG5KIs", "instantiation": "true", "default_acceleration": "10000", "layer_height": "0.14", diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json index 4038633a0a..8112e2e609 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lF4fXJjfALsU4vVF", "name": "0.15mm Optimal @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json index 05b273eaa0..9a6cac5bec 100644 --- a/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.15mm Optimal @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vo47lgntuWkTLKZb", "name": "0.15mm Optimal @Artillery Genius", "from": "system", "instantiation": "true", 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 543be5a464..238359be48 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 @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "dSOnw27edcrR4o46", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json index c0bf7fe2f8..2e8d9db8bc 100644 --- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "jBHKTmqFc3PVi59U", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json index f96c08bec9..87daa994a9 100644 --- a/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm High Quality @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm High Quality @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "mDIvOenbjjpSNKyQ", "instantiation": "true", "default_acceleration": "3000", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json index 9e1e28b7fa..25d53a28f7 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "XEpSP538KuWRSmGA", "name": "0.16mm Optimal @Artillery Hornet", "from": "system", "instantiation": "true", 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 dd8991d970..a31ce771ad 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 @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "aAfwz34MwaEgtwUF", "instantiation": "true", "bottom_shell_layers": "4", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json index e95d4207b7..06244e2d4a 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3bBfTCC809w3YcXr", "name": "0.16mm Optimal @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json index 8216b1c646..12cb5004c0 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "74JozXicjuBdCW7R", "instantiation": "true", "initial_layer_print_height": "0.2", "inner_wall_speed": "150", diff --git a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json index f5aa888f5e..2713494e7c 100644 --- a/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.16mm Optimal @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "IfymREBi4rl7oSEc", "instantiation": "true", "initial_layer_print_height": "0.2", "internal_solid_infill_line_width": "0.42", diff --git a/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json index eb4981715c..c9df7f5833 100644 --- a/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.18mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "5lMFP3Wy0cSIDOwA", "instantiation": "true", "layer_height": "0.18", "print_settings_id": "0.18mm Standard @Artillery M1 Pro 0.6 nozzle", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json index c325bcded1..99516c7732 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CsTy51kncEm8X0yJ", "name": "0.20mm Standard @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json index 76d78c1e12..0a36259661 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lzsTJzIBChXesgUG", "name": "0.20mm Standard @Artillery Genius", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json index af408f5411..b8eecf1f0f 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "i2UAXXKCEaBJmX5R", "name": "0.20mm Standard @Artillery Hornet", "from": "system", "instantiation": "true", 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 a5e12d58e3..3baeec4a3b 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "9dVH4oV6niEWJpMU", "instantiation": "true", "bottom_shell_layers": "3", "brim_type": "no_brim", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json index 260119f8bd..fcb3b2fea1 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A2tF591xYPxvYPYn", "name": "0.20mm Standard @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json index b77b66cce9..815e9b00c0 100644 --- a/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json +++ b/resources/profiles/Artillery/process/0.20mm Standard @Artillery X2.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Uuco1eKObqt1aypG", "name": "0.20mm Standard @Artillery X2", "from": "system", "instantiation": "true", 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 d2e8e3c47d..b13efe200b 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X3Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NIfaLn1TsPL1ofx7", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 b550831c47..264a3e5f15 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X3Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "SwsU8x0FgAa4zu3n", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 371cf4af0c..8bf69da267 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "mkmduwO5DkaKKmHC", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 c5314cf214..56f172e941 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ul9qsUxPgW3DpGtk", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 0a2eb73185..837e4eb6a7 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 @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "KswPAAYezpKlVDY4", "instantiation": "true", "bottom_shell_layers": "3", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json index 90b325c673..f7354759cd 100644 --- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "f3IylWXlIgJGcZVl", "instantiation": "true", "outer_wall_speed": "60", "print_settings_id": "0.20mm Strength @Artillery X4Plus 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json index c5a061bc0d..5332ebef2e 100644 --- a/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.20mm Strength @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.20mm Strength @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "yKWFscwmMJUXqfZx", "instantiation": "true", "outer_wall_speed": "60", "print_settings_id": "0.20mm Strength @Artillery X4Pro 0.4 nozzle", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json index d4f8cf2a0a..33893b53df 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery Hornet.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vK3z8VB7eFi5wSEy", "name": "0.24mm Draft @Artillery Hornet", "from": "system", "instantiation": "true", 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 4b4f738188..d175fb9f9d 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ZzpGr7z94TVfX4mq", "instantiation": "true", "bottom_shell_layers": "3", "filename_format": "{input_filename_base}_{filament_type[initial_tool]}_M1Pro.gcode", 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 cc263a85b1..5f3c183e51 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 @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "ex2FH49ORQnD1yqa", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", 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 1dc4a6ac09..38a240bad5 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 @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "I4dmTQMzFSL2kRs4", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json index f9c48c0300..6abc742265 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X1.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "pMfIpILEXxTfa574", "name": "0.24mm Draft @Artillery X1", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json index 5a3e219bce..9a49edcc90 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "krzkGt2IApYkTbyY", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.24", diff --git a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json index 07b3949fa0..32585de1e2 100644 --- a/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Draft @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "mqI6PUPKUuiXSsEK", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.24", diff --git a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json index 45fcb7a801..69d6026b48 100644 --- a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "5Yzcw1B4GIP2WCyU", "instantiation": "true", "detect_thin_wall": "0", "print_settings_id": "0.24mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json index 13ee07fba7..05c25620c3 100644 --- a/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.24mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "1UVaGo1CgrBK06bL", "instantiation": "true", "bottom_shell_layers": "3", "print_settings_id": "0.24mm Standard @Artillery M1 Pro 0.8 nozzle" diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json index baca53025c..500c492659 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OGYrkEdpgzTfzZLw", "name": "0.25mm Draft @Artillery Genius Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json index e6368c472e..f17fd83593 100644 --- a/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json +++ b/resources/profiles/Artillery/process/0.25mm Draft @Artillery Genius.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "UditC85gTRgxvpSp", "name": "0.25mm Draft @Artillery Genius", "from": "system", "instantiation": "true", 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 652a43780e..6540876295 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery M1 Pro 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", + "setting_id": "93PArensP4A479N1", "instantiation": "true", "bottom_shell_layers": "3", "default_acceleration": "10000", diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json index 748d11ff8d..11a9f747b0 100644 --- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery X4Plus 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Plus 0.4 nozzle", "from": "system", + "setting_id": "tkyrVk3kwrsJD0id", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.28", diff --git a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json index 2a394d3ef4..077463cfe4 100644 --- a/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json +++ b/resources/profiles/Artillery/process/0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @Artillery X4Pro 0.4 nozzle", "inherits": "0.20mm Standard @Artillery X4Pro 0.4 nozzle", "from": "system", + "setting_id": "cUbUCL09wxToqm8D", "instantiation": "true", "initial_layer_print_height": "0.2", "layer_height": "0.28", diff --git a/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json index b4f3b28710..faf535fe88 100644 --- a/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.30mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "cYp2DoLjg70Kafug", "instantiation": "true", "detect_thin_wall": "0", "layer_height": "0.3", diff --git a/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json index b09a18af17..a03af457f0 100644 --- a/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.30mm Strength @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Strength @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "HyRUZ0WuFbg8EY6N", "instantiation": "true", "initial_layer_infill_speed": "55", "initial_layer_speed": "35", diff --git a/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json index 33e2170c80..b0abbbb6b0 100644 --- a/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.32mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "BcNE4DUXFgcFm3Lv", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.32", diff --git a/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json index b58e831aec..0e391f70ab 100644 --- a/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.36mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "VIJcOU9p4IpiqaR9", "instantiation": "true", "layer_height": "0.36", "print_settings_id": "0.36mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json index 39a4d48741..dc129e0379 100644 --- a/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.40mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "LfZjT6ofWiFLPIWP", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.4", diff --git a/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json b/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json index 0fd0282ad0..39665a1ccf 100644 --- a/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json +++ b/resources/profiles/Artillery/process/0.42mm Standard @Artillery M1 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @Artillery M1 Pro 0.6 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.6 nozzle", "from": "system", + "setting_id": "Kc4Z2rwQkMXX19tk", "instantiation": "true", "layer_height": "0.42", "print_settings_id": "0.42mm Standard @Artillery M1 Pro 0.6 nozzle" diff --git a/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json index 83a9fdac0a..eadfade02c 100644 --- a/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.48mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "q89egMqcu5vwK6D2", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.48", diff --git a/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json b/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json index b3f55ec91d..1b11fc8342 100644 --- a/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json +++ b/resources/profiles/Artillery/process/0.56mm Standard @Artillery M1 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Standard @Artillery M1 Pro 0.8 nozzle", "inherits": "0.24mm Draft @Artillery M1 Pro 0.8 nozzle", "from": "system", + "setting_id": "zsfD9umab8v4UWTM", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.56", diff --git a/resources/profiles/BBL.json b/resources/profiles/BBL.json index 65e1586830..67551e9685 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.16", + "version": "02.01.00.19", "force_update": "0", "description": "BBL configurations", "machine_model_list": [ @@ -2177,6 +2177,10 @@ "name": "Generic ABS @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic ABS @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth ABS rABS", + "sub_path": "filament/addnorth/addnorth ABS rABS.json" + }, { "name": "PolyLite ABS @BBL A1", "sub_path": "filament/Polymaker/PolyLite ABS @BBL A1.json" @@ -3005,6 +3009,22 @@ "name": "Generic PA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PA @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PA Adura", + "sub_path": "filament/addnorth/addnorth PA Adura.json" + }, + { + "name": "addnorth PA Adura FDA", + "sub_path": "filament/addnorth/addnorth PA Adura FDA.json" + }, + { + "name": "addnorth PA6 Addlantis", + "sub_path": "filament/addnorth/addnorth PA6 Addlantis.json" + }, + { + "name": "addnorth PVDF Adamant S1", + "sub_path": "filament/addnorth/addnorth PVDF Adamant S1.json" + }, { "name": "Generic PA-CF", "sub_path": "filament/Generic PA-CF.json" @@ -3029,6 +3049,10 @@ "name": "Generic PA-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PA-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PA-CF Adura X", + "sub_path": "filament/addnorth/addnorth PA-CF Adura X.json" + }, { "name": "Bambu PC @BBL A1", "sub_path": "filament/Bambu PC @BBL A1.json" @@ -3329,6 +3353,10 @@ "name": "Generic PC @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PC @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PC BLend HT LCF", + "sub_path": "filament/addnorth/addnorth PC BLend HT LCF.json" + }, { "name": "Generic PCTG @BBL A1", "sub_path": "filament/Generic PCTG @BBL A1.json" @@ -4185,6 +4213,30 @@ "name": "Generic PETG @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PETG @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PETG Base", + "sub_path": "filament/addnorth/addnorth PETG Base.json" + }, + { + "name": "addnorth PETG ESD", + "sub_path": "filament/addnorth/addnorth PETG ESD.json" + }, + { + "name": "addnorth PETG Economy", + "sub_path": "filament/addnorth/addnorth PETG Economy.json" + }, + { + "name": "addnorth PETG Flame v0", + "sub_path": "filament/addnorth/addnorth PETG Flame v0.json" + }, + { + "name": "addnorth PETG PRO Matte", + "sub_path": "filament/addnorth/addnorth PETG PRO Matte.json" + }, + { + "name": "addnorth PETG rPETG Matte", + "sub_path": "filament/addnorth/addnorth PETG rPETG Matte.json" + }, { "name": "Generic PETG HF @BBL A1", "sub_path": "filament/Generic PETG HF @BBL A1.json" @@ -4305,6 +4357,10 @@ "name": "Generic PETG-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PETG-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PETG-CF Rigid X", + "sub_path": "filament/addnorth/addnorth PETG-CF Rigid X.json" + }, { "name": "PolyLite PETG @BBL A1", "sub_path": "filament/Polymaker/PolyLite PETG @BBL A1.json" @@ -6589,6 +6645,34 @@ "name": "Generic PLA @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA E-PLA", + "sub_path": "filament/addnorth/addnorth PLA E-PLA.json" + }, + { + "name": "addnorth PLA Economy", + "sub_path": "filament/addnorth/addnorth PLA Economy.json" + }, + { + "name": "addnorth PLA HT-PLA PRO Matte", + "sub_path": "filament/addnorth/addnorth PLA HT-PLA PRO Matte.json" + }, + { + "name": "addnorth PLA Textura", + "sub_path": "filament/addnorth/addnorth PLA Textura.json" + }, + { + "name": "addnorth PLA Wood", + "sub_path": "filament/addnorth/addnorth PLA Wood.json" + }, + { + "name": "addnorth PLA X-PLA", + "sub_path": "filament/addnorth/addnorth PLA X-PLA.json" + }, + { + "name": "addnorth PLA rPLA RE-ADD", + "sub_path": "filament/addnorth/addnorth PLA rPLA RE-ADD.json" + }, { "name": "Generic PLA High Speed @BBL A1", "sub_path": "filament/Generic PLA High Speed @BBL A1.json" @@ -6649,6 +6733,10 @@ "name": "Generic PLA High Speed @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA High Speed @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA X-PLA High Speed", + "sub_path": "filament/addnorth/addnorth PLA X-PLA High Speed.json" + }, { "name": "Generic PLA Silk", "sub_path": "filament/Generic PLA Silk.json" @@ -6689,6 +6777,10 @@ "name": "Generic PLA Silk @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA Silk @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA Premium Silk", + "sub_path": "filament/addnorth/addnorth PLA Premium Silk.json" + }, { "name": "Generic PLA-CF", "sub_path": "filament/Generic PLA-CF.json" @@ -6729,6 +6821,10 @@ "name": "Generic PLA-CF @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic PLA-CF @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth PLA-CF Carbon Fiber", + "sub_path": "filament/addnorth/addnorth PLA-CF Carbon Fiber.json" + }, { "name": "Numakers PLA+ @BBL A1", "sub_path": "filament/Numakers/Numakers PLA+ @BBL A1.json" @@ -6981,10 +7077,6 @@ "name": "Panchroma PLA @BBL X1C 0.2 nozzle", "sub_path": "filament/Polymaker/Panchroma PLA @BBL X1C 0.2 nozzle.json" }, - { - "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", - "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json" - }, { "name": "Panchroma PLA Celestial @BBL A1", "sub_path": "filament/Polymaker/Panchroma PLA Celestial @BBL A1.json" @@ -7381,6 +7473,10 @@ "name": "Panchroma PLA Silk @BBL X1C", "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C.json" }, + { + "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", + "sub_path": "filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json" + }, { "name": "Panchroma PLA Starlight @BBL A1", "sub_path": "filament/Polymaker/Panchroma PLA Starlight @BBL A1.json" @@ -8889,6 +8985,18 @@ "name": "Generic TPU @BBL X2D 0.4 nozzle", "sub_path": "filament/Generic TPU @BBL X2D 0.4 nozzle.json" }, + { + "name": "addnorth TPU EasyFlex", + "sub_path": "filament/addnorth/addnorth TPU EasyFlex.json" + }, + { + "name": "addnorth TPU Pro Matte 85A", + "sub_path": "filament/addnorth/addnorth TPU Pro Matte 85A.json" + }, + { + "name": "addnorth TPU Pro Matte 95A", + "sub_path": "filament/addnorth/addnorth TPU Pro Matte 95A.json" + }, { "name": "Generic TPU for AMS @BBL A1", "sub_path": "filament/Generic TPU for AMS @BBL A1.json" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json index b78033c2ac..c94baa16f8 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PA-CF @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PA-CF @P1-X1", "inherits": "AliZ PA-CF @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ003_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json index 97fe6ec6f6..9549920f5a 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG @P1-X1", "inherits": "AliZ PETG @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ001_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json index 797a387940..be611e7ee7 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG-CF @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-CF @P1-X1", "inherits": "AliZ PETG-CF @base", "from": "system", - "setting_id": "AliZPX1FSG50", + "setting_id": "AZ01-1_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json index 1bfcba6652..b25bfa6521 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PETG-Metal @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-Metal @P1-X1", "inherits": "AliZ PETG-Metal @base", "from": "system", - "setting_id": "AliZPX1FSG50", + "setting_id": "AZ01-2_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json index 095c5ab58b..c60138f745 100644 --- a/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json +++ b/resources/profiles/BBL/filament/AliZ/AliZ PLA @P1-X1.json @@ -3,7 +3,7 @@ "name": "AliZ PLA @P1-X1", "inherits": "AliZ PLA @base", "from": "system", - "setting_id": "AliZPX1FSA04", + "setting_id": "AliZ002_00", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json index 64d87e8fcf..c8b70f19cc 100644 --- a/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu ABS @BBL H2DP.json @@ -123,8 +123,7 @@ "0 0 0 0 0 0" ], "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" + "Bambu Lab H2D Pro 0.4 nozzle" ], "filament_start_gcode": [ "; filament start gcode\n" diff --git a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json index a632048629..6ff818396f 100644 --- a/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu ASA @BBL H2DP 0.6 nozzle.json @@ -117,8 +117,7 @@ "0 0 0 0 0 0" ], "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" + "Bambu Lab H2D Pro 0.6 nozzle" ], "filament_start_gcode": [ "; filament start gcode\n" diff --git a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json index d1a9a461aa..f72a06450b 100644 --- a/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json +++ b/resources/profiles/BBL/filament/Bambu PETG HF @BBL H2DP 0.6 nozzle.json @@ -132,8 +132,7 @@ "0 0 0 0 0 0" ], "compatible_printers": [ - "Bambu Lab H2D Pro 0.6 nozzle", - "Bambu Lab H2D Pro 0.8 nozzle" + "Bambu Lab H2D Pro 0.6 nozzle" ], "filament_start_gcode": [ "; filament start gcode\n" diff --git a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json index 58f53237ac..85660b9ad0 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Basic @BBL H2DP.json @@ -144,8 +144,7 @@ "0 0 0 0 0 0" ], "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" + "Bambu Lab H2D Pro 0.4 nozzle" ], "filament_start_gcode": [ "; filament start gcode\n" diff --git a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json index de4a8fa7b0..a12465e381 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json +++ b/resources/profiles/BBL/filament/Bambu PLA Matte @BBL H2DP.json @@ -150,8 +150,7 @@ "0 0 0 0 0 0" ], "compatible_printers": [ - "Bambu Lab H2D Pro 0.4 nozzle", - "Bambu Lab H2D Pro 0.6 nozzle" + "Bambu Lab H2D Pro 0.4 nozzle" ], "filament_start_gcode": [ "; filament start gcode\n" diff --git a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json index ad96efaef4..5d2d8d305a 100644 --- a/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json +++ b/resources/profiles/BBL/filament/Bambu PLA Tough @BBL X1C.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Bambu PLA Tough @BBL X1C", + "renamed_from": "Bambu PLA Impact @BBL X1C", "inherits": "Bambu PLA Tough @base", "from": "system", "setting_id": "GFSA09_02", diff --git a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json index c3762e96d3..57370c05ef 100644 --- a/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Overture/Overture Matte PLA @BBL A1M 0.2 nozzle.json @@ -9,6 +9,6 @@ "1.8" ], "compatible_printers": [ - "Bambu Lab P1P 0.2 nozzle" + "Bambu Lab A1 mini 0.2 nozzle" ] } diff --git a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json index e348b1e22f..6d72159532 100644 --- a/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json +++ b/resources/profiles/BBL/filament/Polymaker/Fiberon PETG-ESD @BBL X1.json @@ -7,8 +7,6 @@ "instantiation": "true", "compatible_printers": [ "Bambu Lab X1 0.4 nozzle", - "Bambu Lab X1 Carbon 0.4 nozzle", - "Bambu Lab P1S 0.4 nozzle", "Bambu Lab X1E 0.4 nozzle" ], "overhang_fan_speed": [ diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json index 057f04d232..e516c24976 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL A1", + "renamed_from": "Panchroma PLA Stain @BBL A1", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_00", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json index 4492871b7c..b9698daa75 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL A1M.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL A1M", + "renamed_from": "Panchroma PLA Stain @BBL A1M", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_02", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json index 39c5f418f0..fcb4636518 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL P1P.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL P1P", + "renamed_from": "Panchroma PLA Stain @BBL P1P", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_04", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json index c5720db9ae..804564f4e8 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Satin @BBL X1.json @@ -1,6 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Satin @BBL X1", + "renamed_from": "Panchroma PLA Stain @BBL X1", "inherits": "Panchroma PLA Satin @base", "from": "system", "setting_id": "GFSPM005_06", diff --git a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json index 23d4b2af54..592eea2e73 100644 --- a/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json +++ b/resources/profiles/BBL/filament/Polymaker/Panchroma PLA Silk @BBL X1C 0.2 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "name": "Panchroma PLA Silk @BBL X1C 0.2 nozzle", - "inherits": "Panchroma PLA @base", + "inherits": "Panchroma PLA Silk @base", "from": "system", "setting_id": "GFSPM004_09", "instantiation": "true", diff --git a/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json b/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json new file mode 100644 index 0000000000..2889bc0a39 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth ABS rABS.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth ABS rABS", + "inherits": "Generic ABS @base", + "from": "system", + "setting_id": "GF_ANRA_00", + "filament_id": "GF_ANRA", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "105" + ], + "eng_plate_temp_initial_layer": [ + "105" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "25" + ], + "fan_min_speed": [ + "0" + ], + "filament_adhesiveness_category": [ + "200" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "43" + ], + "filament_density": [ + "1.03" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth ABS rABS" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "ABS" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "105" + ], + "hot_plate_temp_initial_layer": [ + "105" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "255", + "255" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "50" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "100" + ], + "textured_plate_temp": [ + "105" + ], + "textured_plate_temp_initial_layer": [ + "105" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json new file mode 100644 index 0000000000..9da0cc2b6e --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura FDA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA Adura FDA", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANAF_00", + "filament_id": "GF_ANAF", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "50" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA Adura FDA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json new file mode 100644 index 0000000000..037ae82eed --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA Adura.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA Adura", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANAD_00", + "filament_id": "GF_ANAD", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "50" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA Adura" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "265", + "265" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "70" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json b/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json new file mode 100644 index 0000000000..3b8f50c799 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA-CF Adura X.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA-CF Adura X", + "inherits": "Generic PA-CF @base", + "from": "system", + "setting_id": "GF_ANAX_00", + "filament_id": "GF_ANAX", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "109" + ], + "filament_density": [ + "1.2" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA-CF Adura X" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "280", + "280" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "280" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "120" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json b/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json new file mode 100644 index 0000000000..dc5e815df5 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PA6 Addlantis.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PA6 Addlantis", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANLA_00", + "filament_id": "GF_ANLA", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "60" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.18" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.99", + "0.99" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.62 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PA6 Addlantis" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA6" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "275", + "275" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "285" + ], + "nozzle_temperature_range_low": [ + "265" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "0" + ], + "slow_down_layer_time": [ + "15" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "110" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json b/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json new file mode 100644 index 0000000000..e1e67fbb71 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PC BLend HT LCF.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PC BLend HT LCF", + "inherits": "Generic PC @base", + "from": "system", + "setting_id": "GF_ANPBX_00", + "filament_id": "GF_ANPBX", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "109" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "15", + "15" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PC BLend HT LCF" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PC" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "285", + "285" + ], + "nozzle_temperature_initial_layer": [ + "275", + "275" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "265" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "185" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json new file mode 100644 index 0000000000..288368dd07 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Base.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Base", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPE_00", + "filament_id": "GF_ANPE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "35.6" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Base" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json new file mode 100644 index 0000000000..060ffe6b56 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG ESD.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG ESD", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANEG_00", + "filament_id": "GF_ANEG", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "76" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 high reliability - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG ESD" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "255" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json new file mode 100644 index 0000000000..c83d353302 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Economy.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Economy", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANGE_00", + "filament_id": "GF_ANGE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "27" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Economy" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json new file mode 100644 index 0000000000..96aec4f471 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG Flame v0.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG Flame v0", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPF_00", + "filament_id": "GF_ANPF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "71" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.97", + "0.97" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "20", + "20" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.4 high reliability - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG Flame V0" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "290", + "290" + ], + "nozzle_temperature_initial_layer": [ + "290", + "290" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "255" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "70" + ], + "textured_plate_temp_initial_layer": [ + "70" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json new file mode 100644 index 0000000000..a73d5ae48a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG PRO Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG PRO Matte", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANPM_00", + "filament_id": "GF_ANPM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "54.5" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG PRO Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "260", + "260" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "235" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "1" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json new file mode 100644 index 0000000000..1c4f092d54 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG rPETG Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG rPETG Matte", + "inherits": "Generic PETG @base", + "from": "system", + "setting_id": "GF_ANRM_00", + "filament_id": "GF_ANRM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "40" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "36" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG rPETG Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "255", + "255" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "225" + ], + "overhang_fan_speed": [ + "90" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json b/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json new file mode 100644 index 0000000000..927ef1ca6e --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PETG-CF Rigid X.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PETG-CF Rigid X", + "inherits": "Generic PETG-CF @base", + "from": "system", + "setting_id": "GF_ANRX_00", + "filament_id": "GF_ANRX", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "100" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "70" + ], + "eng_plate_temp_initial_layer": [ + "70" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "5" + ], + "filament_adhesiveness_category": [ + "300" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.3" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.95", + "0.95" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026 – Special thanks to Mats.Z (3DP24, Jonkoping University / Campus Varnamo) for profile improvements during internship autumn 2025.", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PETG-CF Rigid X" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PETG-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "80" + ], + "hot_plate_temp_initial_layer": [ + "80" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "270", + "270" + ], + "nozzle_temperature_initial_layer": [ + "270", + "270" + ], + "nozzle_temperature_range_high": [ + "275" + ], + "nozzle_temperature_range_low": [ + "245" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "10%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "6" + ], + "slow_down_min_speed": [ + "40" + ], + "supertack_plate_temp": [ + "70" + ], + "supertack_plate_temp_initial_layer": [ + "70" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "80" + ], + "textured_plate_temp_initial_layer": [ + "80" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json new file mode 100644 index 0000000000..d008217fcf --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA E-PLA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA E-PLA", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANEP_00", + "filament_id": "GF_ANEP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "5" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA E-PLA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json new file mode 100644 index 0000000000..51b2924577 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Economy.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Economy", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANPL_00", + "filament_id": "GF_ANPL", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "23" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Economy" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json new file mode 100644 index 0000000000..5ab0cc036a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA HT-PLA PRO Matte.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA HT-PLA PRO Matte", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANHTP_00", + "filament_id": "GF_ANHTP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "55" + ], + "filament_density": [ + "1.4" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "11" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "nil", + "nil" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA HT-PLA PRO Matte" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "70" + ], + "hot_plate_temp_initial_layer": [ + "70" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "245" + ], + "nozzle_temperature_range_low": [ + "210" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "75" + ], + "textured_plate_temp_initial_layer": [ + "75" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json new file mode 100644 index 0000000000..caa3fb10ed --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Premium Silk.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Premium Silk", + "inherits": "Generic PLA Silk @base", + "from": "system", + "setting_id": "GF_ANPS_00", + "filament_id": "GF_ANPS", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "50" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "2" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "90" + ], + "fan_min_speed": [ + "70" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "42.5" + ], + "filament_density": [ + "1.26" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "10" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Premium Silk" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "245", + "245" + ], + "nozzle_temperature_range_high": [ + "255" + ], + "nozzle_temperature_range_low": [ + "235" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json new file mode 100644 index 0000000000..97c7026910 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Textura.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Textura", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANTE_00", + "filament_id": "GF_ANTE", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "55" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "10", + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Textura" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json new file mode 100644 index 0000000000..faa711ee14 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA Wood.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA Wood", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANPLW_00", + "filament_id": "GF_ANPLW", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "35" + ], + "cool_plate_temp_initial_layer": [ + "35" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "54.5" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "8", + "8" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA Wood" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "230", + "230" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json new file mode 100644 index 0000000000..3ffec96061 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA High Speed.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA X-PLA High Speed", + "inherits": "Generic PLA High Speed @base", + "from": "system", + "setting_id": "GF_ANXPH_00", + "filament_id": "GF_ANXPH", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "20" + ], + "filament_density": [ + "1.24" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "12" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA X-PLA High Speed" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json new file mode 100644 index 0000000000..b8016af159 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA X-PLA.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA X-PLA", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANXP_00", + "filament_id": "GF_ANXP", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "55" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "39" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "14", + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA X-PLA" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "65" + ], + "hot_plate_temp_initial_layer": [ + "65" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235", + "235" + ], + "nozzle_temperature_initial_layer": [ + "230", + "230" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "25%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json new file mode 100644 index 0000000000..ad47884179 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA rPLA RE-ADD.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PLA rPLA RE-ADD", + "inherits": "Generic PLA @base", + "from": "system", + "setting_id": "GF_ANRPL_00", + "filament_id": "GF_ANRPL", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "55" + ], + "cool_plate_temp_initial_layer": [ + "5" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "23" + ], + "filament_density": [ + "1.25" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98", + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "12", + "16" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "0.6", + "0.6" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA rPLA RE-ADD" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "PLA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "240" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "45" + ], + "supertack_plate_temp_initial_layer": [ + "45" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json b/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json new file mode 100644 index 0000000000..608be46906 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PLA-CF Carbon Fiber.json @@ -0,0 +1,320 @@ +{ + "type": "filament", + "name": "addnorth PLA-CF Carbon Fiber", + "inherits": "Generic PLA-CF @base", + "from": "system", + "setting_id": "GF_ANPCF_00", + "filament_id": "GF_ANPCF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "0" + ], + "eng_plate_temp_initial_layer": [ + "0" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "100" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "37" + ], + "filament_density": [ + "1.27" + ], + "filament_deretraction_speed": [ + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n\n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "0.98" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil" + ], + "filament_max_volumetric_speed": [ + "14" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1" + ], + "filament_retract_before_wipe": [ + "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_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PLA-CF Carbon Fiber" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PLA-CF" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil" + ], + "filament_wipe_distance": [ + "nil" + ], + "filament_z_hop": [ + "nil" + ], + "filament_z_hop_types": [ + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "55" + ], + "hot_plate_temp_initial_layer": [ + "55" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "235" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "190" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "0" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "7" + ], + "slow_down_min_speed": [ + "20" + ], + "supertack_plate_temp": [ + "50" + ], + "supertack_plate_temp_initial_layer": [ + "50" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "55" + ], + "textured_plate_temp_initial_layer": [ + "55" + ], + "version": "2.0.0.87" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json b/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json new file mode 100644 index 0000000000..8ca7e5e5ab --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth PVDF Adamant S1.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth PVDF Adamant S1", + "inherits": "Generic PA @base", + "from": "system", + "setting_id": "GF_ANPV_00", + "filament_id": "GF_ANPV", + "instantiation": "true", + "activate_air_filtration": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "chamber_temperatures": [ + "50" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "3" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "100" + ], + "eng_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "25" + ], + "filament_adhesiveness_category": [ + "400" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "146" + ], + "filament_density": [ + "1.8" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "4", + "4" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.6 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "nil", + "nil" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "0%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth PVDF Adamant S1" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "filament_type": [ + "PA" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "0.4", + "0.4" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "2" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "100" + ], + "hot_plate_temp_initial_layer": [ + "100" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "260", + "260" + ], + "nozzle_temperature_initial_layer": [ + "265", + "265" + ], + "nozzle_temperature_range_high": [ + "260" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "80" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "required_nozzle_HRC": [ + "40" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "12" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "135" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json new file mode 100644 index 0000000000..05c7af8947 --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU EasyFlex.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth TPU EasyFlex", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANEF_00", + "filament_id": "GF_ANEF", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "40", + "40" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.9", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.7 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "nil", + "nil" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU EasyFlex" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json new file mode 100644 index 0000000000..e6236ed79a --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 85A.json @@ -0,0 +1,339 @@ +{ + "type": "filament", + "name": "addnorth TPU Pro Matte 85A", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANTA_00", + "filament_id": "GF_ANTA", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "30" + ], + "cool_plate_temp_initial_layer": [ + "30" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "nil", + "nil" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.2", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.2 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "40", + "40" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU Pro Matte 85A" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "250", + "250" + ], + "nozzle_temperature_initial_layer": [ + "250", + "250" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "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_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json new file mode 100644 index 0000000000..6b971b7d5c --- /dev/null +++ b/resources/profiles/BBL/filament/addnorth/addnorth TPU Pro Matte 95A.json @@ -0,0 +1,340 @@ +{ + "type": "filament", + "name": "addnorth TPU Pro Matte 95A", + "inherits": "Generic TPU @base", + "from": "system", + "setting_id": "GF_ANTM_00", + "filament_id": "GF_ANTM", + "instantiation": "true", + "activate_air_filtration": [ + "0" + ], + "additional_cooling_fan_speed": [ + "70" + ], + "chamber_temperatures": [ + "0" + ], + "circle_compensation_speed": [ + "200" + ], + "close_fan_the_first_x_layers": [ + "1" + ], + "compatible_printers": [ + "Bambu Lab A1 mini 0.4 nozzle", + "Bambu Lab A1 mini 0.6 nozzle", + "Bambu Lab A1 mini 0.8 nozzle", + "Bambu Lab A1 0.4 nozzle", + "Bambu Lab A1 0.6 nozzle", + "Bambu Lab A1 0.8 nozzle", + "Bambu Lab P1P 0.4 nozzle", + "Bambu Lab P1P 0.6 nozzle", + "Bambu Lab P1P 0.8 nozzle", + "Bambu Lab P1S 0.4 nozzle", + "Bambu Lab P1S 0.6 nozzle", + "Bambu Lab P1S 0.8 nozzle", + "Bambu Lab X1 0.4 nozzle", + "Bambu Lab X1 0.6 nozzle", + "Bambu Lab X1 0.8 nozzle", + "Bambu Lab X1 Carbon 0.4 nozzle", + "Bambu Lab X1 Carbon 0.6 nozzle", + "Bambu Lab X1 Carbon 0.8 nozzle", + "Bambu Lab X1E 0.4 nozzle", + "Bambu Lab X1E 0.6 nozzle", + "Bambu Lab X1E 0.8 nozzle", + "Bambu Lab H2D 0.4 nozzle", + "Bambu Lab H2D 0.6 nozzle", + "Bambu Lab H2D 0.8 nozzle", + "Bambu Lab H2D Pro 0.4 nozzle", + "Bambu Lab H2D Pro 0.6 nozzle", + "Bambu Lab H2D Pro 0.8 nozzle", + "Bambu Lab H2S 0.4 nozzle", + "Bambu Lab H2S 0.6 nozzle", + "Bambu Lab H2S 0.8 nozzle", + "Bambu Lab P2S 0.4 nozzle", + "Bambu Lab P2S 0.6 nozzle", + "Bambu Lab P2S 0.8 nozzle", + "Bambu Lab X2D 0.2 nozzle", + "Bambu Lab X2D 0.4 nozzle", + "Bambu Lab X2D 0.6 nozzle", + "Bambu Lab X2D 0.8 nozzle" + ], + "compatible_printers_condition": "", + "compatible_prints": [], + "compatible_prints_condition": "", + "complete_print_exhaust_fan_speed": [ + "70" + ], + "cool_plate_temp": [ + "0" + ], + "cool_plate_temp_initial_layer": [ + "0" + ], + "counter_coef_1": [ + "0" + ], + "counter_coef_2": [ + "0.008" + ], + "counter_coef_3": [ + "-0.041" + ], + "counter_limit_max": [ + "0.033" + ], + "counter_limit_min": [ + "-0.035" + ], + "default_filament_colour": [ + "" + ], + "diameter_limit": [ + "50" + ], + "during_print_exhaust_fan_speed": [ + "70" + ], + "enable_overhang_bridge_fan": [ + "1" + ], + "enable_pressure_advance": [ + "0" + ], + "eng_plate_temp": [ + "30" + ], + "eng_plate_temp_initial_layer": [ + "30" + ], + "fan_cooling_layer_time": [ + "100" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "100" + ], + "filament_adhesiveness_category": [ + "600" + ], + "filament_change_length": [ + "10" + ], + "filament_cost": [ + "82" + ], + "filament_density": [ + "1.1" + ], + "filament_deretraction_speed": [ + "40", + "40" + ], + "filament_diameter": [ + "1.75" + ], + "filament_end_gcode": [ + "; filament end gcode \n" + ], + "filament_extruder_variant": [ + "Direct Drive Standard" + ], + "filament_flow_ratio": [ + "1", + "1" + ], + "filament_is_support": [ + "0" + ], + "filament_long_retractions_when_cut": [ + "nil", + "nil" + ], + "filament_max_volumetric_speed": [ + "3.9", + "5" + ], + "filament_minimal_purge_on_wipe_tower": [ + "15" + ], + "filament_notes": "File Version:2.3 - V.Pack:18_05_2026", + "filament_pre_cooling_temperature": [ + "0", + "0" + ], + "filament_prime_volume": [ + "45" + ], + "filament_ramming_travel_time": [ + "0", + "0" + ], + "filament_ramming_volumetric_speed": [ + "-1", + "-1" + ], + "filament_retract_before_wipe": [ + "nil", + "nil" + ], + "filament_retract_restart_extra": [ + "nil", + "nil" + ], + "filament_retract_when_changing_layer": [ + "0", + "0" + ], + "filament_retraction_distances_when_cut": [ + "nil", + "nil" + ], + "filament_retraction_length": [ + "1", + "1" + ], + "filament_retraction_minimum_travel": [ + "nil", + "nil" + ], + "filament_retraction_speed": [ + "40", + "40" + ], + "filament_scarf_gap": [ + "15%" + ], + "filament_scarf_height": [ + "10%" + ], + "filament_scarf_length": [ + "10" + ], + "filament_scarf_seam_type": [ + "none" + ], + "filament_settings_id": [ + "addnorth TPU Pro Matte 95A" + ], + "filament_shrink": [ + "100%" + ], + "filament_soluble": [ + "0" + ], + "filament_start_gcode": [ + "; filament start gcode {if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200 {elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150 {elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50 {endif} {if activate_air_filtration[current_extruder] && support_air_filtration} M106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} {endif}" + ], + "filament_type": [ + "TPU" + ], + "filament_vendor": [ + "addnorth" + ], + "filament_wipe": [ + "nil", + "nil" + ], + "filament_wipe_distance": [ + "nil", + "nil" + ], + "filament_z_hop": [ + "nil", + "nil" + ], + "filament_z_hop_types": [ + "nil", + "nil" + ], + "full_fan_speed_layer": [ + "0" + ], + "hole_coef_1": [ + "0" + ], + "hole_coef_2": [ + "-0.008" + ], + "hole_coef_3": [ + "0.23415" + ], + "hole_limit_max": [ + "0.22" + ], + "hole_limit_min": [ + "0.088" + ], + "hot_plate_temp": [ + "35" + ], + "hot_plate_temp_initial_layer": [ + "35" + ], + "impact_strength_z": [ + "10" + ], + "nozzle_temperature": [ + "240", + "240" + ], + "nozzle_temperature_initial_layer": [ + "235", + "235" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "nozzle_temperature_range_low": [ + "230" + ], + "overhang_fan_speed": [ + "100" + ], + "overhang_fan_threshold": [ + "50%" + ], + "overhang_threshold_participating_cooling": [ + "95%" + ], + "pre_start_fan_time": [ + "2" + ], + "pressure_advance": [ + "0.02" + ], + "reduce_fan_stop_start_freq": [ + "1" + ], + "required_nozzle_HRC": [ + "3" + ], + "slow_down_for_layer_cooling": [ + "1" + ], + "slow_down_layer_time": [ + "10" + ], + "slow_down_min_speed": [ + "10" + ], + "supertack_plate_temp": [ + "0" + ], + "supertack_plate_temp_initial_layer": [ + "0" + ], + "temperature_vitrification": [ + "50" + ], + "textured_plate_temp": [ + "35" + ], + "textured_plate_temp_initial_layer": [ + "35" + ], + "version": "2.0.0.77" +} diff --git a/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json b/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json index 91ce654616..57646a32c1 100644 --- a/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json +++ b/resources/profiles/BBL/process/0.20mm Standard @BBL X1C.json @@ -1,6 +1,7 @@ { "type": "process", "name": "0.20mm Standard @BBL X1C", + "renamed_from": "0.20mm Bambu Support W @BBL X1C", "inherits": "fdm_process_single_0.20", "from": "system", "setting_id": "GP004", diff --git a/resources/profiles/BIQU.json b/resources/profiles/BIQU.json index 4cdfde4ada..6c28578e82 100644 --- a/resources/profiles/BIQU.json +++ b/resources/profiles/BIQU.json @@ -1,6 +1,6 @@ { "name": "BIQU", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "BIQU configurations", "machine_model_list": [ diff --git a/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json index 5c612636fc..1f98c673e8 100644 --- a/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU B1 (0.4 nozzle)", "inherits": "fdm_biqu_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YmXhSXftWo9gFxGH", "instantiation": "true", "printer_model": "BIQU B1", "default_print_profile": "0.20mm Standard @BIQU B1 (0.4 nozzle)", diff --git a/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json index bdd391ce69..8acfe76925 100644 --- a/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU BX (0.4 nozzle)", "inherits": "fdm_biqu_common", "from": "system", - "setting_id": "GM001", + "setting_id": "SPFU6hzjCMM2wcSN", "instantiation": "true", "printer_model": "BIQU BX", "default_print_profile": "0.20mm Standard @BIQU BX (0.4 nozzle)", diff --git a/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json index fc7c2422f7..cc0e00d7e0 100644 --- a/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/machine/BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GA2GSWco5cgRn8FI", "instantiation": "true", "printer_model": "BIQU Hurakan", "default_print_profile": "0.20mm Standard @BIQU Hurakan (0.4 nozzle)", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json index 50199fb9c3..a676c9a3c2 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hkw059dSjrqefnMN", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json index db9b5c101e..858b406728 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JTHikxAlQpFhhVnY", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json index d9800e3937..00f7eb68af 100644 --- a/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.12mm Fine @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "j3UlRzemuXhuMN2x", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json index 28b8786840..e402540132 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LuSsVUHsjH9AXAa7", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json index 01069282b4..a4b971af1b 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oKvCk7bS0INwdkVG", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json index 74aa7772a0..bf95f6db10 100644 --- a/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.15mm Optimal @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Z5tWEqid41XII3U0", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json index 7f20f63563..842480ca32 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yLS8fsznByRsXWLW", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json index b746f9016a..53d5e5086a 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dtgvV4cqDwI9nLUq", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json index 455e54d591..ff26992161 100644 --- a/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.20mm Standard @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WlgKtMxt18527nqV", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json index 31df154df0..b46aa67474 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU B1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU B1 (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dEngYdlxzbLKNHtc", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json index 1bde58b72e..70997aa3b4 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU BX (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU BX (0.4 nozzle)", "inherits": "fdm_process_biqu_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BUtiLCRe368ot8iM", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json b/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json index a1f2be3ed8..4499ba5b65 100644 --- a/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json +++ b/resources/profiles/BIQU/process/0.24mm Draft @BIQU Hurakan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @BIQU Hurakan (0.4 nozzle)", "inherits": "fdm_process_hurakan_common", "from": "system", - "setting_id": "GP004", + "setting_id": "X21POUmiKQDhd12A", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Blocks.json b/resources/profiles/Blocks.json index 5a40e50ce1..269391c4c3 100644 --- a/resources/profiles/Blocks.json +++ b/resources/profiles/Blocks.json @@ -1,6 +1,6 @@ { "name": "Blocks", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "Blocks configurations", "machine_model_list": [ diff --git a/resources/profiles/Blocks/filament/Blocks Generic ABS.json b/resources/profiles/Blocks/filament/Blocks Generic ABS.json index d0f9b84563..db6ee6f3c9 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ABS.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ABS.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "BSSI004", + "setting_id": "QhLaLEkxhvIMa3Ik", "filament_id": "BSFI004", "instantiation": "true", "filament_flow_ratio": [ @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json index e7ae0c8756..6836bee45e 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ASA-CF", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "BSSI010", + "setting_id": "FF6D7i492XTrb8AO", "filament_id": "BSFI010", "instantiation": "true", "filament_flow_ratio": [ @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic ASA.json b/resources/profiles/Blocks/filament/Blocks Generic ASA.json index 84df95597a..5601ef2264 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic ASA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic ASA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "BSSI005", + "setting_id": "DcgqA071S6MRVbKI", "filament_id": "BSFI005", "instantiation": "true", "filament_flow_ratio": [ @@ -85,10 +85,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json index 51ec66f622..a145a7f31d 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "BSSI007", + "setting_id": "B254XDRQzysz7YUd", "filament_id": "BSFI007", "instantiation": "true", "filament_type": [ @@ -91,10 +91,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PA.json b/resources/profiles/Blocks/filament/Blocks Generic PA.json index cc1d5383b3..9c385d7cdb 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "BSSI006", + "setting_id": "3L5IYVTlkt8V0EiW", "filament_id": "BSFI006", "instantiation": "true", "filament_flow_ratio": [ @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PC.json b/resources/profiles/Blocks/filament/Blocks Generic PC.json index d468fcc194..9d4e153f27 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PC.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PC.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "BSSI008", + "setting_id": "VUPeelf61TmTQrun", "filament_id": "BSFI008", "instantiation": "true", "filament_flow_ratio": [ @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PETG.json b/resources/profiles/Blocks/filament/Blocks Generic PETG.json index 50f3bb5d04..8bfeaed6b9 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PETG.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PETG.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PETG", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "BSSI002", + "setting_id": "FKkbjL1V4ZEjXB0H", "filament_id": "BSFI002", "instantiation": "true", "filament_flow_ratio": [ @@ -87,14 +87,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json index da53ba5964..5928bc953e 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "BSSI010", + "setting_id": "RHKPeXZiv4E2p4lP", "filament_id": "BSFI010", "instantiation": "true", "filament_flow_ratio": [ @@ -22,10 +22,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PLA.json b/resources/profiles/Blocks/filament/Blocks Generic PLA.json index 584c021d60..bc8c34fc26 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PLA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PLA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "BSSI001", + "setting_id": "N3wDUqmBETfelOoG", "filament_id": "BSFI001", "instantiation": "true", "filament_flow_ratio": [ @@ -45,14 +45,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic PVA.json b/resources/profiles/Blocks/filament/Blocks Generic PVA.json index 5f8fcc5858..becd53db6c 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic PVA.json +++ b/resources/profiles/Blocks/filament/Blocks Generic PVA.json @@ -3,7 +3,7 @@ "name": "Blocks Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "BSSI009", + "setting_id": "J74KgdSzf503Tk9p", "filament_id": "BSFI009", "instantiation": "true", "filament_flow_ratio": [ @@ -16,10 +16,8 @@ "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/filament/Blocks Generic TPU.json b/resources/profiles/Blocks/filament/Blocks Generic TPU.json index 72ca5ae059..decdf2eaf1 100644 --- a/resources/profiles/Blocks/filament/Blocks Generic TPU.json +++ b/resources/profiles/Blocks/filament/Blocks Generic TPU.json @@ -3,7 +3,7 @@ "name": "Blocks Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "BSSI003", + "setting_id": "xFRwN8ZEwEGlLFwo", "filament_id": "BSFI003", "instantiation": "true", "filament_max_volumetric_speed": [ @@ -60,14 +60,11 @@ "BLOCKS Pro S100 0.8 nozzle", "BLOCKS Pro S100 1.0 nozzle", "BLOCKS Pro S100 1.2 nozzle", - "BLOCKS Pro S100", "BLOCKS RD50 V2 0.4 nozzle", "BLOCKS RD50 V2 0.6 nozzle", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RF50 0.4 nozzle", "BLOCKS RF50 0.6 nozzle", - "BLOCKS RF50 0.8 nozzle", - "BLOCKS RF50" + "BLOCKS RF50 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json index 08fb9b001f..e8cc1893c7 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "G7HQgaspHXduDM8O", "instantiation": "true", - "settings_id": "GM001", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json index 29685d503b..49e519d2ec 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "XkWdS210oUMQN17N", "instantiation": "true", - "settings_id": "GM002", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.30mm Standard 0.6 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json index 7f0207bd2f..3c3a29f111 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "I6PdeCS7SbvIlkZf", "instantiation": "true", - "settings_id": "GM003", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.40mm Standard 0.8 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json index 09679bc2ef..1be375c34b 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.0 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "elLdUyy9RhUoa37o", "instantiation": "true", - "settings_id": "GM004", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.50mm Standard 1.0 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json index 5187221b39..426fdafd55 100644 --- a/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS Pro S100 1.2 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS Pro S100 1.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "xtsGSJ4JkbHTPi44", "instantiation": "true", - "settings_id": "GM005", "printer_model": "BLOCKS Pro S100", "default_print_profile": "0.60mm Standard 1.2 nozzle @Blocks", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json index ac8e033abb..3d2908a403 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "wItS0IoWbzTJK7iD", "instantiation": "true", - "settings_id": "GM006", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json index 09130c6fba..bf41f1070f 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "3oE6MbdWA6AzYAa5", "instantiation": "true", - "settings_id": "GM007", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.26mm Standard 0.6 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json index 3163c4fa68..23c0808be2 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RD50 V2 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RD50 V2 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "g04N8FbsS1P92qZA", "instantiation": "true", - "settings_id": "GM008", "printer_model": "BLOCKS RD50 V2", "default_print_profile": "0.38mm Standard 0.8 nozzle @Blocks_RD50_V2", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json index 8235676d8a..a589b6620b 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.4 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "icpImzXl3Xx16srx", "instantiation": "true", - "settings_id": "GM009", "printer_model": "BLOCKS RF50", "default_print_profile": "0.20mm Standard 0.4 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json index b698852793..fea3007abc 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.6 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "RIbar6niHpubv5IC", "instantiation": "true", - "settings_id": "GM010", "printer_model": "BLOCKS RF50", "default_print_profile": "0.26mm Standard 0.6 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json b/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json index a315d14573..c8d6cec882 100644 --- a/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json +++ b/resources/profiles/Blocks/machine/BLOCKS RF50 0.8 nozzle.json @@ -3,8 +3,8 @@ "name": "BLOCKS RF50 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", + "setting_id": "YTckxiK7XiR4GfOJ", "instantiation": "true", - "settings_id": "GM011", "printer_model": "BLOCKS RF50", "default_print_profile": "0.38mm Standard 0.8 nozzle @Blocks_RF50", "max_layer_height": [ diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json index 76a16a8c53..8e2a5a26ef 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.12mm Fine 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8g0CmJDZhpbtbSLL", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", "top_shell_layers": "6", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json index 640226f3e3..86f9cb5adb 100644 --- a/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.12mm Fine 0.4 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.12mm Fine 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qM5TCMjtTCThNyIS", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.2", "bottom_shell_layers": "6", "top_shell_layers": "6", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json index fbfa92a381..fa173b2bba 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.16mm Optimal 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qYqbjNz16oTBOijO", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "5", "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json index 48fe4dd8ce..ae773410b3 100644 --- a/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.16mm Optimal 0.4 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.16mm Optimal 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7vr8tF75IxNYOfy9", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.2", "bottom_shell_layers": "5", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json index 82c7035b28..2c39093189 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.20mm Optimal 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "IiIASiATlPKWXVqG", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json index ed6877668d..7c02d847bc 100644 --- a/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Optimal 0.6 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.20mm Optimal 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "PTRq9vSbhBdwNQo2", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json index 5624796ff0..9f66196279 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "47aDtVL6E5DVr7Mt", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json index fd03aeec70..ec45900e1e 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "k6jOPNbpunHqwbVl", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "4", "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json index 8da0040650..32beb61fe9 100644 --- a/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.20mm Standard 0.4 nozzle @Blocks_RF50.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gwPin2OF8praSH3q", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.2", @@ -14,7 +14,6 @@ "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json index 30471ca68b..2bc124f2dc 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ETADjxV6ViJQdnHA", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json index fed5fa9882..9a9bfb2f49 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vLfwlqx8ZvCfUjMB", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", "top_shell_layers": "5", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json index c10fe7360c..d9d6895c3d 100644 --- a/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.24mm Draft 0.4 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.24mm Draft 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HRSFefUk1ng3BuZN", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "5", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json index 0ef855cbc3..4a21f69535 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.26mm Standard 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "Hlo2kNKKaU73D6lM", "instantiation": "true", "layer_height": "0.26", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json index 8e497d11bd..6744554909 100644 --- a/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.26mm Standard 0.6 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.26mm Standard 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "QIOKDVdV2vAioPdS", "instantiation": "true", "layer_height": "0.26", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json index d11fbe797d..7f4af4528f 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.28mm Extra Draft 0.4 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hzvbUnJIZb7TnPMu", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json index f6d6dde563..0b3b324664 100644 --- a/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.28mm Extra Draft 0.4 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.28mm Extra Draft 0.4 nozzle @Blocks_RF50", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L7k7a4piZopE2QcB", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.4 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json index 7a5e8203a1..0cef66fb5a 100644 --- a/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Extra Draft 0.4 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.30mm Extra Draft 0.4 nozzle @Blocks", "inherits": "fdm_process_blocks_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UbuICsmppKDsaaZ4", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.4 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json index fd52c4e679..bbb74c97a9 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "YqkYzp5zdH4R5upm", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", "layer_height": "0.3", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json index 1255e86686..26c4b0773b 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "mxKcwnZ66FyXlLjV", "instantiation": "true", "layer_height": "0.30", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json index db40c0564f..704d355221 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 0.8 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.30mm Optimal 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "1w3zzORSbCmdLll4", "instantiation": "true", "layer_height": "0.30", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json index 1dd169217a..8820018b9d 100644 --- a/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Optimal 1.0 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.30mm Optimal 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "8pBawPScHkyQu0SW", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "4", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json index ee2d2909bb..d2a815e849 100644 --- a/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.30mm Standard 0.6 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.30mm Standard 0.6 nozzle @Blocks", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "EPI3PAVK9LpJOZWO", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", "layer_height": "0.30", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json index ace54417bd..ebecec49b8 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.32mm Draft 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "AvDKLcC3gvKsIwRk", "instantiation": "true", "layer_height": "0.32", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json index 1cc9996584..05c4c06e22 100644 --- a/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.32mm Draft 0.6 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.32mm Draft 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "a9pWDZyKiqBAeQIN", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.3", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json index 5f4050a0d5..91311d8009 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.38mm Extra Draft 0.6 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "VDezd0KdeD8tk1Sx", "instantiation": "true", "layer_height": "0.38", "bottom_shell_layers": "3", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json index 411b5b3a57..18d38c7c34 100644 --- a/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Extra Draft 0.6 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.38mm Extra Draft 0.6 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "uIIZR5hRxqqfHms1", "instantiation": "true", "layer_height": "0.38", "initial_layer_print_height": "0.3", "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json index 12d38319b4..6aec880584 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.38mm Standard 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "7zxjBEdM3uwaxnq9", "instantiation": "true", "layer_height": "0.38", "bottom_shell_layers": "4", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json index 1cff2c3122..b4359ae990 100644 --- a/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.38mm Standard 0.8 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.38mm Standard 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BCOEQmZHcO1zgeS9", "instantiation": "true", "layer_height": "0.38", "initial_layer_print_height": "0.4", "bottom_shell_layers": "4", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json index d4dc31c406..45fdd61179 100644 --- a/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Draft 0.6 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.40mm Draft 0.6 nozzle @Blocks", "inherits": "fdm_process_common 0.6 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "CShVKoGspbMJNPw8", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "2", "layer_height": "0.40", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json index 66caf1634a..177b620e51 100644 --- a/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.40mm Standard 0.8 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.40mm Standard 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "TSRjmfWaatY7oLJB", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", "layer_height": "0.40", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json index c960a96369..c5909e2b21 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.46mm Draft 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BmJAogItwZ4epXFK", "instantiation": "true", "layer_height": "0.46", "bottom_shell_layers": "3", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json index a098d140cf..6e286f3309 100644 --- a/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.46mm Draft 0.8 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.46mm Draft 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "3Ff2hKKOMu8RbExs", "instantiation": "true", "layer_height": "0.46", "initial_layer_print_height": "0.4", "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json index edc49d7eee..fc1a875d67 100644 --- a/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Draft 0.8 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.50mm Draft 0.8 nozzle @Blocks", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "vOtZHrDS88Shmf2m", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json index e763f74059..6b59b1c101 100644 --- a/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Optimal 1.2 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.50mm Optimal 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "BKrEAKqDYzdH43wc", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json index 84a2459572..80e3ba5649 100644 --- a/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.50mm Standard 1.0 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.50mm Standard 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "D40iksDm7mFjhSKn", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", "layer_height": "0.50", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json index bee2667615..d9e56aa672 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2.json @@ -3,14 +3,13 @@ "name": "0.54mm Extra Draft 0.8 nozzle @Blocks_RD50_V2", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "zEU21m57lJslrtWm", "instantiation": "true", "layer_height": "0.54", "bottom_shell_layers": "3", "top_shell_layers": "4", "top_solid_infill_flow_ratio": "0.96", "compatible_printers": [ - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json index 5c13cc45b4..e0d5a486de 100644 --- a/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json +++ b/resources/profiles/Blocks/process/0.54mm Extra Draft 0.8 nozzle @Blocks_RF50.json @@ -3,14 +3,13 @@ "name": "0.54mm Extra Draft 0.8 nozzle @Blocks_RF50", "inherits": "fdm_process_common 0.8 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "8uJVEmWMNB1BzrhR", "instantiation": "true", "layer_height": "0.54", "initial_layer_print_height": "0.4", "bottom_shell_layers": "3", "top_shell_layers": "4", "compatible_printers": [ - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_speed": "300", diff --git a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json index 6c00c3dcee..e59174620f 100644 --- a/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Draft 1.0 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.60mm Draft 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "UJUe8XCBzZf8NyCL", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", "layer_height": "0.60", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json index 1743755e31..598534c050 100644 --- a/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.60mm Standard 1.2 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.60mm Standard 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "PSBFrTykpkytPI2Q", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", "layer_height": "0.60", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json index 2c2785593a..905bb32a48 100644 --- a/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Draft 1.2 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.70mm Draft 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "0ZQ0USGX9SwAKr29", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", "layer_height": "0.70", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json index 28bfe4f502..49eaf2c7b9 100644 --- a/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.70mm Extra Draft 1.0 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.70mm Extra Draft 1.0 nozzle @Blocks", "inherits": "fdm_process_common 1.0 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "69PFmjOVFBOIp3Qg", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", "layer_height": "0.70", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.0 nozzle" ] } diff --git a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json index 7a3153f3dc..df6d97a9d7 100644 --- a/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json +++ b/resources/profiles/Blocks/process/0.80mm Extra Draft 1.2 nozzle @Blocks.json @@ -3,13 +3,12 @@ "name": "0.80mm Extra Draft 1.2 nozzle @Blocks", "inherits": "fdm_process_common 1.2 nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "iBwRI5JJewW5HJSv", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "2", "layer_height": "0.80", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 1.2 nozzle" ] } diff --git a/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json b/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json index d9eb0a4508..51ecf6c306 100644 --- a/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json +++ b/resources/profiles/Blocks/process/fdm_process_common 0.6 nozzle.json @@ -9,11 +9,8 @@ "bridge_flow": "0.95", "brim_width": "5", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.6 nozzle", - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.6 nozzle", - "BLOCKS RF50", "BLOCKS RF50 0.6 nozzle" ], "print_sequence": "by layer", diff --git a/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json b/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json index 79303aa65c..10089234ee 100644 --- a/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json +++ b/resources/profiles/Blocks/process/fdm_process_common 0.8 nozzle.json @@ -5,11 +5,8 @@ "from": "system", "instantiation": "false", "compatible_printers": [ - "BLOCKS Pro S100", "BLOCKS Pro S100 0.8 nozzle", - "BLOCKS RD50 V2", "BLOCKS RD50 V2 0.8 nozzle", - "BLOCKS RF50", "BLOCKS RF50 0.8 nozzle" ], "sparse_infill_line_width": "0.82", diff --git a/resources/profiles/CONSTRUCT3D.json b/resources/profiles/CONSTRUCT3D.json index 371c99775e..ba2652f724 100644 --- a/resources/profiles/CONSTRUCT3D.json +++ b/resources/profiles/CONSTRUCT3D.json @@ -1,6 +1,6 @@ { "name": "CONSTRUCT3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Construct3D configurations", "machine_model_list": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json index 847ed87c1b..355637d63c 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic High Flow PETG.json @@ -3,7 +3,7 @@ "name": "C1 Generic High Flow PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "3IxBZSWFfFGmKAQ7", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json index 543ff5c0bd..7579260e16 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PETG.json @@ -3,7 +3,7 @@ "name": "C1 Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "jZBfhlf6VX5r3KHb", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json index 3ef8c9b749..dd50bdd607 100644 --- a/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json +++ b/resources/profiles/CONSTRUCT3D/filament/C1 Generic PLA.json @@ -3,7 +3,7 @@ "name": "C1 Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Uv3kcMO5qNwkrMPV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json b/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json index 6ec8ba8bfc..a83c207d1d 100644 --- a/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json +++ b/resources/profiles/CONSTRUCT3D/machine/Construct 1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Construct 1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NvupYOd7fBM7ewuh", "instantiation": "true", "printer_settings_id": "CONSTRUCT3D", "printer_model": "Construct 1", diff --git a/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json b/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json index f9b23fb380..ca001ed3ea 100644 --- a/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json +++ b/resources/profiles/CONSTRUCT3D/machine/Construct 1 XL 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Construct 1 XL 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "iR5ZBRGGrwclTFfE", "instantiation": "true", "printer_settings_id": "CONSTRUCT3D", "printer_model": "Construct 1 XL", diff --git a/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json index 7de2ebc7bd..f6253e3522 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.14mm Quality @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.14mm Quality @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kDE169rxMES8i1MA", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json index 3f1abf26fa..26e09c20ce 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.20mm Quality @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0Zi6gVzskJeRMPlW", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json index 5564ad30ea..e02f97e6e7 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.22mm Standard @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.22mm Standard @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BLV1TVGUCciqmjxL", "instantiation": "true", "bridge_speed": "60", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json index 0066c0a8d4..19076d478a 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.25mm Industrial @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.25mm Industrial @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "urJ25woiHjB7sIhL", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json index b842c49850..715bf39ff7 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Draft @Construct 1.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Construct 1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BqNKXSWtwefGcYp0", "instantiation": "true", "bottom_shell_layers": "2", "bridge_speed": "60", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json index 68f7ebbfec..16ff6ef014 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Industrial @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.30mm Industrial @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZX8HUIuCKtl4M2Oi", "instantiation": "true", "bottom_shell_layers": "4", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json index 4362df4d9a..93f396bf9d 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.30mm Standard @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DthEOQDQQwQffJeN", "instantiation": "true", "bridge_speed": "60", "default_acceleration": "4000", diff --git a/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json b/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json index 9cc6eac7f4..170e54a684 100644 --- a/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json +++ b/resources/profiles/CONSTRUCT3D/process/0.38mm Draft @Construct 1 XL.json @@ -3,7 +3,7 @@ "name": "0.38mm Draft @Construct 1 XL", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gWmpdwwLP3tIGgRX", "instantiation": "true", "bottom_shell_layers": "2", "bridge_speed": "60", diff --git a/resources/profiles/Chuanying.json b/resources/profiles/Chuanying.json index 8fe61c9bff..19d5c9b7b5 100644 --- a/resources/profiles/Chuanying.json +++ b/resources/profiles/Chuanying.json @@ -1,7 +1,7 @@ { "name": "Chuanying", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "Chuanying configurations", "machine_model_list": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json index 5ba0a352f9..e8067f4945 100644 --- a/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying ABS @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying ABS @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "VkCgo0e4KR24DX28", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json index e492ebcf96..10415dcb72 100644 --- a/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying ASA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying ASA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "px1EPCDgOG8eE81V", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json b/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json index b411538ec1..201155e883 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic ABS.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XslWGeEo1Okicu28", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json b/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json index 98de113a8d..b95df151c5 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic ASA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wBBQiy8JV2LrnIav", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json b/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json index 4c5a1b465f..1087346c34 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic HIPS.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic HIPS", "inherits": "Chuanying Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bBNozld07rP6mV3d", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json b/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json index e6004305dd..f53cf22703 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic HS PLA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic HS PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YZT1Uv73b8ArVoX3", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json b/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json index f67ddf2c8e..c7b8e6008d 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PETG-CF10.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PETG-CF10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S2vCGI7sqN8FwodT", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json b/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json index b7e164cd79..a3532b9e5b 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PETG.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "judDupafROrSnVv8", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json index 8886da6202..f001e5b391 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-CF10.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA-CF10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EZA59VPwew1cpyUJ", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json index 0a50447565..ca9a1398ed 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA-Silk.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA-Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M9wzNVOPRQlayQH1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json b/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json index 1254ad777e..831c14dafe 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PLA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nnyBm7dlrz3OsVQz", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json b/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json index ce98bfcddf..a68d62d485 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic PVA.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic PVA", "inherits": "Chuanying Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ePZFnkgBiyFuKvji", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json index 4d24d2dff3..5ff81a93e1 100644 --- a/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json +++ b/resources/profiles/Chuanying/filament/Chuanying Generic TPU.json @@ -3,7 +3,7 @@ "name": "Chuanying Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HYciEf4160uMYGnH", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ @@ -19,13 +19,7 @@ "compatible_printers": [ "Chuanying X1 0.4 Nozzle", "Chuanying X1 0.6 Nozzle", - "Chuanying X1 0.8 Nozzle", - "Chuanying Adventurer 5M 0.4 Nozzle", - "Chuanying Adventurer 5M 0.6 Nozzle", - "Chuanying Adventurer 5M 0.8 Nozzle", - "Chuanying Adventurer 5M Pro 0.4 Nozzle", - "Chuanying Adventurer 5M Pro 0.6 Nozzle", - "Chuanying Adventurer 5M Pro 0.8 Nozzle" + "Chuanying X1 0.8 Nozzle" ], "compatible_printers_condition": "", "compatible_prints": [], diff --git a/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json index c31e0a4cf3..e4a7a6eba5 100644 --- a/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying HS PLA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying HS PLA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "CAdli5S8JIFafvRG", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json index 6efc114545..f162434556 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PETG @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PETG @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PETG", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "9xxP8YWj4hnWQoVZ", "filament_id": "GFG99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json index c20a12c470..c8ba7cc5e6 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PLA @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PLA @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PLA", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "3WDFe1uKTOTiRtPE", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.25 Nozzle" diff --git a/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json index 5c65825c47..3008059f68 100644 --- a/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/filament/Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying PLA-SILK @Chuanying X1 0.25 Nozzle", "inherits": "Chuanying Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "kph5feBjhPi0oo0G", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json index 8e71b703d3..7f58a2dc72 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.25 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM006", + "setting_id": "RxJHQLLqwjINiocE", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.12mm Standard @Chuanying X1 0.25 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json index 6046edbc0a..b20cda7772 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.4 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MdkHtxEtjSp0i3cp", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.20mm Standard @Chuanying X1 0.4 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json index a47f77abea..2abced2ba4 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.6 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rcPR6jw2DL6DG6PY", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.30mm Standard @Chuanying X1 0.6 Nozzle", diff --git a/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json b/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json index 418fbdece2..0fb8fa954e 100644 --- a/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json +++ b/resources/profiles/Chuanying/machine/Chuanying X1 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Chuanying X1 0.8 Nozzle", "inherits": "fdm_x1_common", "from": "system", - "setting_id": "GM005", + "setting_id": "vxPv0a5ffOLHbTSS", "instantiation": "true", "printer_model": "Chuanying X1", "default_print_profile": "0.40mm Standard @Chuanying X1 0.8 Nozzle", diff --git a/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json b/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json index bc2ff78314..792c0feb8b 100644 --- a/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.12mm Standard @Chuanying X1 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Chuanying X1 0.25 Nozzle", "inherits": "0.20mm Standard @Chuanying X1 0.4 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "QK0Ww8yUHnqJB21D", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.25 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json b/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json index 16fb71b790..892ae270e9 100644 --- a/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.20mm Standard @Chuanying X1 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Chuanying X1 0.4 Nozzle", "inherits": "fdm_process_chuanying_0.20", "from": "system", - "setting_id": "GP001", + "setting_id": "Cs23wwLYd7a1xJlN", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.4 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json b/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json index cfdd27db54..3cb78499b5 100644 --- a/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.30mm Standard @Chuanying X1 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Chuanying X1 0.6 Nozzle", "inherits": "fdm_process_chuanying_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "pk0f171o2vhWhbzg", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.6 Nozzle" diff --git a/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json b/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json index b57f49c04c..30ce36dbbf 100644 --- a/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json +++ b/resources/profiles/Chuanying/process/0.40mm Standard @Chuanying X1 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Chuanying X1 0.8 Nozzle", "inherits": "0.30mm Standard @Chuanying X1 0.6 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "5jFsal1GjrKej065", "instantiation": "true", "compatible_printers": [ "Chuanying X1 0.8 Nozzle" diff --git a/resources/profiles/Co Print.json b/resources/profiles/Co Print.json index 47b9398af9..8e7d9ec990 100644 --- a/resources/profiles/Co Print.json +++ b/resources/profiles/Co Print.json @@ -1,6 +1,6 @@ { "name": "Co Print", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "CoPrint configurations", "machine_model_list": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic ABS.json b/resources/profiles/Co Print/filament/CoPrint Generic ABS.json index cf4e17501f..930950d68e 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic ABS.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic ABS.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic ABS", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xW2rHuxT9o7MG8qB", "filament_id": "GFL99", "instantiation": "true", "close_fan_the_first_x_layers": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic PETG.json b/resources/profiles/Co Print/filament/CoPrint Generic PETG.json index c0cf5b8cb0..f4540a98b2 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic PETG.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic PETG.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic PETG", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k4m484S1samBGEVb", "filament_id": "GFL99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic PLA.json b/resources/profiles/Co Print/filament/CoPrint Generic PLA.json index 78604aa056..c6db574a42 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic PLA.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic PLA.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hv40GsmNozxOJ38T", "filament_id": "GFL99", "instantiation": "true", "filament_load_time": [ diff --git a/resources/profiles/Co Print/filament/CoPrint Generic TPU.json b/resources/profiles/Co Print/filament/CoPrint Generic TPU.json index 23d3953e4a..b4e28ee73b 100644 --- a/resources/profiles/Co Print/filament/CoPrint Generic TPU.json +++ b/resources/profiles/Co Print/filament/CoPrint Generic TPU.json @@ -3,7 +3,7 @@ "name": "CoPrint Generic TPU", "inherits": "CoPrint Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2mWqeih012I5D2CK", "filament_id": "GFL99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json index 1c3a0488a3..355ba1eca8 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle - Ender-3 V3 Plus", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Fs3iRbeNcLJoUhdJ", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json index 1f575ee1e3..52fa36bc5d 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle - Ender-3 V3.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle - Ender-3 V3", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1SK0VAxn4wsqiNk7", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json index 12c6730be7..57f2e507c4 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle fast.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle fast", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "cltS53TnjdvF8HnA", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Fast @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json index 5607afd361..efa52a34f4 100644 --- a/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json +++ b/resources/profiles/Co Print/machine/Co Print ChromaSet 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Co Print ChromaSet 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YtSG91vPZicYwY78", "instantiation": "true", "printer_model": "Co Print ChromaSet", "default_print_profile": "0.2mm Standard @Co Print ChromaSet 0.4", diff --git a/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json b/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json index 501aaa37a6..47c4a2393d 100644 --- a/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json +++ b/resources/profiles/Co Print/process/0.2mm Fast @Co Print ChromaSet 0.4.json @@ -3,7 +3,7 @@ "name": "0.2mm Fast @Co Print ChromaSet 0.4", "inherits": "fdm_process_coprint_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dRtVJZ0gU9Nniomg", "instantiation": "true", "elefant_foot_compensation": "0.1", "initial_layer_speed": "60", diff --git a/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json b/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json index 7e39cbe657..58ddce9676 100644 --- a/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json +++ b/resources/profiles/Co Print/process/0.2mm Standard @Co Print ChromaSet 0.4.json @@ -3,7 +3,7 @@ "name": "0.2mm Standard @Co Print ChromaSet 0.4", "inherits": "fdm_process_coprint_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EYLyZShaPWJ2G7Ju", "instantiation": "true", "default_acceleration": "5000", "compatible_printers": [ diff --git a/resources/profiles/CoLiDo.json b/resources/profiles/CoLiDo.json index b3b72a09f7..972ffd396b 100644 --- a/resources/profiles/CoLiDo.json +++ b/resources/profiles/CoLiDo.json @@ -1,6 +1,6 @@ { "name": "CoLiDo", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "CoLiDo configurations", "machine_model_list": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json index e38e5376c8..55259a5459 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo ABS @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo ABS @CoLiDo SR1", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99_06", + "setting_id": "ZztaHKdQ4dmOgAXr", "filament_id": "GFB99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json index e72a3256cb..94c529c9fe 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic ABS @CoLiDo DIY 4.0", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99", + "setting_id": "acWqrAFyi2SIkNwa", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json index 6caabd8dfd..5dc279ffe6 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic ABS @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic ABS @CoLiDo X16", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSB99_05", + "setting_id": "l44ioMidpUECbGYF", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json index 8027f3f44e..1c0751457e 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PETG @CoLiDo DIY 4.0", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "IBtIS8bwcIWhiCow", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json index 32190a2ac7..e09df95679 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PETG @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PETG @CoLiDo X16", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99_05", + "setting_id": "AovAvrEzGiZqFRpc", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json index 0f4981069f..1848216904 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PLA @CoLiDo DIY 4.0", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99", + "setting_id": "foEeUk6PK78QXleQ", "filament_id": "GFA99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json index 0406e30c02..8d9877cfa3 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic PLA @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic PLA @CoLiDo X16", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_05", + "setting_id": "HY8RFWOKRptC2YVt", "filament_id": "GFA99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json index 5f881101cd..96912962de 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic TPU @CoLiDo DIY 4.0", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99", + "setting_id": "ZgbaHhRSK8AW38MB", "filament_id": "GFU99", "instantiation": "true", "filament_density": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json index ef62c83fe3..3bbea681d1 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo Generic TPU @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "CoLiDo Generic TPU @CoLiDo X16", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99_05", + "setting_id": "f6yTiUiYYLckJBTQ", "filament_id": "GFU99", "instantiation": "true", "filament_density": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json index b312e3f8af..5b93fc1460 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PETG @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PETG @CoLiDo SR1", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99_06", + "setting_id": "z1ffOb3jPP1GVXnD", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json index 2c342b5b66..40e871c663 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA @CoLiDo SR1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_06", + "setting_id": "Gj0o6Rmn4qWXDLov", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json index 0048388d2f..b9a15b3e1b 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA Silk @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA Silk @CoLiDo SR1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_06", + "setting_id": "mLgBNw0OzvJSS8IG", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json index f739f637b6..de34110826 100644 --- a/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json +++ b/resources/profiles/CoLiDo/filament/CoLiDo PLA+ @CoLiDo DIY 4.0 V2.json @@ -3,7 +3,7 @@ "name": "CoLiDo PLA+ @CoLiDo DIY 4.0 V2", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA99_07", + "setting_id": "IDGh5vNSqKSOVn3z", "filament_id": "GFA99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json index 08f005bcbd..65f2db78eb 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo 160 V2 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo 160 V2 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "RRzVDMk3GxAV3tMW", "instantiation": "true", "printer_model": "CoLiDo 160 V2", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json index 2ec1de75de..d0e1a2abc6 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo DIY 4.0 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "mtJZggmYcrGa2LTJ", "instantiation": "true", "printer_model": "CoLiDo DIY 4.0", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json index ef96aeee84..65c65fa9e9 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo DIY 4.0 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "CoLiDo DIY 4.0 V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "Z3Zb6RB7jbRNhGO0", "instantiation": "true", "printer_model": "CoLiDo DIY 4.0 V2", "default_filament_profile": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json index ff839df004..a0dc0d0681 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo SR1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "CoLiDo SR1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "c1lD3KQ6bvd31P3k", "instantiation": "true", "printer_model": "CoLiDo SR1", "default_filament_profile": [ diff --git a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json index 5a3f7edd97..cfdfd38571 100644 --- a/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json +++ b/resources/profiles/CoLiDo/machine/CoLiDo X16 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "CoLiDo X16 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "ciVF4ZFTo8Kjqvv1", "instantiation": "true", "printer_model": "CoLiDo X16", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json index d50e6ad5de..5b1fdc28fb 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "RbpwCQvB8YGQxcun", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json index 6a45cd491e..bb78ecbeb7 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "syKS4qdutQSXduyt", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json index 826b31ef8b..2e644ad3f5 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "KzCjrLKdwElMcx5U", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json index ad5e87c365..229022bef0 100644 --- a/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.08mm Extra Fine @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "yYx1cLWMbbJjfPTr", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.08", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json index 206a89f62a..ce3291a81b 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SU7QA1rSeoTLAom2", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json index c771f06b16..a3d30362df 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "V2zL0JEafjUoOFbD", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json index bb45326116..a20d6fc819 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "MOq71ZRlZUW9t5t6", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json index 327b2397ee..4ae8efc4a8 100644 --- a/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.12mm Fine @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "X6TycnQJo3ysaSt3", "instantiation": "true", "bottom_shell_layers": "5", "layer_height": "0.12", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json index 52b25e9d19..9c5f08c996 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SBf9Au85wkWLrkOk", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json index 574cdd45d9..ea5dc44fc5 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EGHL1ds0tqG9oty2", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json index 33b68d9a79..11df15071a 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "cMdAhAv4nI6H2IkD", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json index 155db52fdd..afff6b9407 100644 --- a/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.15mm Optimal @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "SxJ6hJE1GZF6dc2D", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.15", diff --git a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json index 3b9a9ace72..f04f4272e9 100644 --- a/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.16mm Optimal @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "KKrcd5hTkaT0UeUZ", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json index 03cd9e110b..480b608708 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "iYd9TTzxeqtI40W4", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json index 4148fcc5b5..f6448a6d9b 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0 V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo DIY 4.0 V2", "inherits": "fdm_process_colidodiy40v2_common", "from": "system", - "setting_id": "GP007", + "setting_id": "S2YAgOIWBaJFCqYm", "instantiation": "true", "layer_height": "0.2", "print_settings_id": "0.20mm Standard @CoLiDo DIY 4.0 V2" diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json index e5477f193c..70ae72c3aa 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JDfKJOdY57PYOvKu", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json index d17339e7f0..3ed95879a0 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "xYCS2o1r2isLD7pB", "instantiation": "true", "layer_height": "0.2", "print_settings_id": "0.20mm Standard @CoLiDo SR1" diff --git a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json index 24e02e572d..ba6eb2f505 100644 --- a/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.20mm Standard @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "CbbnTRVl7DcGphxB", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json index 0c170204ab..2c06a9d049 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "cYG9mdetut2iHRhB", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json index e6a8356da9..ce8fecdd95 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "urM1QpWcCz1rlo4Q", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json index 95e687bb45..8de345fa01 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Wwp4pUZMe1SGIrjC", "instantiation": "true", "layer_height": "0.24", "support_top_z_distance": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json index 1dbfa749f0..ef6c0bcecc 100644 --- a/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.24mm Draft @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "DjfkrQVZ8eV5x8kG", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.24", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json index 30fbffa0e8..0cf62f5198 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo 160 V2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo 160 V2", "inherits": "fdm_process_colido160v2_common", "from": "system", - "setting_id": "GP005", + "setting_id": "bcOt8TaAPuxn2DfY", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json index 0609472179..f400be3ed0 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo DIY 4.0.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo DIY 4.0", "inherits": "fdm_process_colidodiy40_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gH5xeX9wnHdAKEks", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json index 130f857e51..7cf3c2143f 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Q8B5egRf1q1m0eNd", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json index 8d168c742a..2b9dafd6a6 100644 --- a/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json +++ b/resources/profiles/CoLiDo/process/0.28mm Extra Draft @CoLiDo X16.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @CoLiDo X16", "inherits": "fdm_process_colidox16_common", "from": "system", - "setting_id": "GP005", + "setting_id": "eFlNg1qeOmipn4SP", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.28", diff --git a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json index 5a99e5422e..b0116b80c5 100644 --- a/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json +++ b/resources/profiles/CoLiDo/process/0.32mm Standard @CoLiDo SR1.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @CoLiDo SR1", "inherits": "fdm_process_colidosr1_common", "from": "system", - "setting_id": "GP006", + "setting_id": "O0n8xZZEVHtDubqp", "instantiation": "true", "layer_height": "0.32", "support_top_z_distance": "0.24", diff --git a/resources/profiles/Comgrow.json b/resources/profiles/Comgrow.json index 6e7c43f58d..da7d0e29f6 100644 --- a/resources/profiles/Comgrow.json +++ b/resources/profiles/Comgrow.json @@ -1,6 +1,6 @@ { "name": "Comgrow", - "version": "02.04.00.01", + "version": "02.04.00.03", "force_update": "0", "description": "Comgrow configurations", "machine_model_list": [ @@ -50,10 +50,6 @@ "name": "0.20mm Standard @Comgrow T500 0.6", "sub_path": "process/0.20mm Standard @Comgrow T500 0.6.json" }, - { - "name": "0.20mm Standard @Comgrow T500 1.0", - "sub_path": "process/0.20mm Standard @Comgrow T500 1.0.json" - }, { "name": "0.24mm Draft @Comgrow T500 0.4", "sub_path": "process/0.24mm Draft @Comgrow T500 0.4.json" diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json b/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json index 5f22bd26ed..0dbfbdf5af 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic ABS.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7xmGiJHgiD5KKTXt", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json b/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json index 3ee0eba915..18f1ea232a 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic PETG.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FJjkU2RhAZD10Cw8", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json b/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json index d1f886828f..d3aed1e46d 100644 --- a/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json +++ b/resources/profiles/Comgrow/filament/Comgrow Generic PLA.json @@ -3,7 +3,7 @@ "name": "Comgrow Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sGAn6RP69saYSqcY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json b/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json index 34eb90e29c..e0785fd57f 100644 --- a/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json +++ b/resources/profiles/Comgrow/filament/Comgrow T300 PLA.json @@ -3,7 +3,7 @@ "name": "Comgrow T300 PLA", "inherits": "Comgrow Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TnHaf2TSHVfuwbVg", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json index dc9cba5126..2453aefcab 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T300 0.4 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OWKgGxZ3ljM0rYf5", "instantiation": "true", "printer_model": "Comgrow T300", "nozzle_diameter": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json index 9932df5093..85d44fb681 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.4 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ViioMbWdupiIANT2", "instantiation": "true", "printer_model": "Comgrow T500", "nozzle_diameter": [ diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json index f3dbaf0cdb..803769b978 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.6 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ZGnrVaKEE9cv5jxS", "instantiation": "true", "printer_model": "Comgrow T500", "printer_variant": "0.6", diff --git a/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json b/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json index fda99adc7c..5a017ad6df 100644 --- a/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json +++ b/resources/profiles/Comgrow/machine/Comgrow T500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Comgrow T500 0.8 nozzle", "inherits": "fdm_comgrow_common", "from": "system", - "setting_id": "GM003", + "setting_id": "WJqKI3469d8zjsl9", "instantiation": "true", "printer_model": "Comgrow T500", "printer_variant": "0.8", diff --git a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json index 67f63c2d3c..f9fe24a86e 100644 --- a/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.16mm Opitmal @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Opitmal @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VXNVLkCAnWrWUyuq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json index 3961c87eca..75b32fd2bc 100644 --- a/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.16mm Optimal @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fHx55sqqkzl0l6vD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json index e41c2d6f7f..9ea2e4419a 100644 --- a/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.18mm Optimal @Comgrow T500.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Comgrow T500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "s2ySRT9zoN0MzFMG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json b/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json index 7c6637c130..a19f2568d7 100644 --- a/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json +++ b/resources/profiles/Comgrow/process/0.20mm Optimal @Comgrow T300 0.4 - official.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal @Comgrow T300 0.4 - official", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VFKy39bkuifq4aEz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json index 27013008b1..4d428aca40 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zwEXxLeBYeJlVsrU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json index 99da6da6a7..a50b6ac485 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MwfGKEFTGptYVgVg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json deleted file mode 100644 index c234cab5da..0000000000 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500 1.0.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "type": "process", - "name": "0.20mm Standard @Comgrow T500 1.0", - "inherits": "fdm_process_comgrow_common", - "from": "system", - "setting_id": "GP004", - "instantiation": "true", - "adaptive_layer_height": "1", - "reduce_crossing_wall": "0", - "layer_height": "0.24", - "max_travel_detour_distance": "0", - "bottom_surface_pattern": "monotonic", - "bottom_shell_layers": "2", - "bottom_shell_thickness": "0", - "bridge_flow": "0.85", - "bridge_speed": "25", - "brim_width": "0", - "brim_object_gap": "0", - "compatible_printers_condition": "", - "print_sequence": "by layer", - "bridge_no_support": "0", - "draft_shield": "disabled", - "elefant_foot_compensation": "0.1", - "enable_arc_fitting": "0", - "outer_wall_line_width": "1.0", - "wall_infill_order": "inner wall/outer wall/infill", - "line_width": "1.0", - "infill_direction": "45", - "sparse_infill_density": "15%", - "sparse_infill_pattern": "crosshatch", - "initial_layer_line_width": "1.0", - "initial_layer_print_height": "0.28", - "infill_combination": "0", - "sparse_infill_line_width": "1.0", - "infill_wall_overlap": "23%", - "interface_shells": "0", - "ironing_flow": "15%", - "ironing_spacing": "0.25", - "ironing_speed": "15", - "ironing_type": "no ironing", - "reduce_infill_retraction": "1", - "detect_overhang_wall": "1", - "overhang_1_4_speed": "0", - "overhang_2_4_speed": "20", - "overhang_3_4_speed": "15", - "overhang_4_4_speed": "10", - "inner_wall_line_width": "1.0", - "wall_loops": "2", - "print_settings_id": "", - "raft_layers": "0", - "seam_position": "aligned", - "skirt_distance": "3", - "skirt_height": "2", - "skirt_loops": "2", - "minimum_sparse_infill_area": "10", - "internal_solid_infill_line_width": "0", - "spiral_mode": "0", - "standby_temperature_delta": "-5", - "enable_support": "0", - "resolution": "0.012", - "support_type": "normal(auto)", - "support_style": "grid", - "support_on_build_plate_only": "0", - "support_top_z_distance": "0.15", - "support_filament": "0", - "support_line_width": "1.0", - "support_interface_loop_pattern": "0", - "support_interface_filament": "0", - "support_interface_top_layers": "3", - "support_interface_bottom_layers": "-1", - "support_interface_spacing": "0.2", - "support_interface_speed": "100%", - "support_base_pattern": "rectilinear", - "support_base_pattern_spacing": "0.2", - "support_speed": "60", - "support_threshold_angle": "30", - "support_object_xy_distance": "60%", - "tree_support_branch_angle": "40", - "tree_support_wall_count": "0", - "detect_thin_wall": "1", - "top_surface_pattern": "monotonicline", - "top_surface_line_width": "1.0", - "top_shell_layers": "2", - "top_shell_thickness": "0.8", - "initial_layer_speed": "25", - "initial_layer_infill_speed": "80", - "outer_wall_speed": "50", - "inner_wall_speed": "60", - "internal_solid_infill_speed": "60", - "top_surface_speed": "40", - "gap_infill_speed": "60", - "sparse_infill_speed": "50", - "travel_speed": "80", - "enable_prime_tower": "1", - "wipe_tower_no_sparse_layers": "0", - "prime_tower_width": "60", - "xy_hole_compensation": "0", - "xy_contour_compensation": "0", - "seam_gap": "5%", - "compatible_printers": [ - "Comgrow T500 1.0 nozzle" - ] -} diff --git a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json index 39aac1a859..1ef23da2af 100644 --- a/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json +++ b/resources/profiles/Comgrow/process/0.20mm Standard @Comgrow T500.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Comgrow T500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D15fxV5mACh2XWMT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json index e76f5fd989..d79d7afe4c 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "INYjczFN5gWflgRJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json index 4635b32497..326c4c7d26 100644 --- a/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.24mm Draft @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CDKsOIpM74w1NhsA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json index 6c2a5f1ffd..7118e614d2 100644 --- a/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.24mm Optimal @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gHH8QHbtpAr7iSj3", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json index 960e7345f6..82140f2a11 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Comgrow T500 0.4", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QU9R8iFuvSrnijkO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json index 97e6b79ad6..2088fd5d01 100644 --- a/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json +++ b/resources/profiles/Comgrow/process/0.28mm SuperDraft @Comgrow T500 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Comgrow T500 0.6", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oQkDbf0FdMb4nV0i", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json index ac0833c208..1f9ad6050d 100644 --- a/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.32mm Standard @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1IxP6FaNbkCM6bz8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json index 98c90fdba9..515bcfdde8 100644 --- a/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.40mm Draft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Draft @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "67PM6ka97wMVLSJV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json index ce3977dc55..bdae66b5e8 100644 --- a/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.48mm Draft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7fJumwUT4xqMSvYo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json index 391620d95b..fae10074b2 100644 --- a/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json +++ b/resources/profiles/Comgrow/process/0.56mm SuperDraft @Comgrow T500 0.8.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperChunky @Comgrow T500 0.8", "inherits": "fdm_process_comgrow_common", "from": "system", - "setting_id": "GP004", + "setting_id": "407WH0SRTXRCg7Gz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality.json b/resources/profiles/Creality.json index 3a4f448b14..f90648d256 100644 --- a/resources/profiles/Creality.json +++ b/resources/profiles/Creality.json @@ -1,6 +1,6 @@ { "name": "Creality", - "version": "02.03.02.73", + "version": "02.03.02.75", "force_update": "0", "description": "Creality configurations", "machine_model_list": [ @@ -4034,6 +4034,14 @@ "name": "Creality Ender-5 Max 0.4 nozzle", "sub_path": "machine/Creality Ender-5 Max 0.4 nozzle.json" }, + { + "name": "Creality Ender-5 Max 0.6 nozzle", + "sub_path": "machine/Creality Ender-5 Max 0.6 nozzle.json" + }, + { + "name": "Creality Ender-5 Max 0.8 nozzle", + "sub_path": "machine/Creality Ender-5 Max 0.8 nozzle.json" + }, { "name": "Creality Ender-5 Plus 0.4 nozzle", "sub_path": "machine/Creality Ender-5 Plus 0.4 nozzle.json" 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 index f86cabcd7a..33b6514886 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3MchJTc47Au6MkZ0", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a3afc7f1a1..53d18bfeda 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iCeI2obXsgQdrmmd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @Hi-all.json b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json index 8f9bee0878..e4620945d8 100644 --- a/resources/profiles/Creality/filament/CR-ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OkztCpBxncDuPVQP", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6f582521c1..070110cef4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IuBXEntaBaPVFQXh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json index cbd2277aa7..1d7cd3dade 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yhGkKM6yZnFFn8IW", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a53906a2a2..f6ea93b388 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ERk97K6VotgHJfWy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K1C-all.json b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json index 29691a866e..d592d9d18f 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HaRbfdv0e9gKF3Qp", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 5688a80353..a0451ea1ba 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jhNERXYu8aq28Ppb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index dc80c92809..6f3bbe777e 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3irrf86tjxODkbIf", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json index 0841d1b9f1..55a2fe9a80 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5CD3YjRfabJ1lA6a", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json index 3551543ae8..cea39dba0e 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QuBAuyBqoGyFHMpP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json index 7ff05b770c..8edabb85be 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8hrvutX54fd4gUGn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-ABS @K2-all.json b/resources/profiles/Creality/filament/CR-ABS @K2-all.json index 41546fec3f..ec6591b352 100644 --- a/resources/profiles/Creality/filament/CR-ABS @K2-all.json +++ b/resources/profiles/Creality/filament/CR-ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rvItkEWAJNGXJrVF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 203cc0f1a2..e4e5cad0e8 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @Ender-5 Max-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HHnHotIUIBzTdckU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0c1f547c5b..cc25eecbca 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vRp7fYNhHQuLUArq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json index 67ae4202b0..9782134aaf 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IAXnmE8e2ADhcMZG", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b1e79273ab..8c1c7a27c6 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vIpGcKrZM6vbICRT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index cd5298156e..7be6522dd1 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eb1T3avlK6EzZ5NT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json index ea5ad21606..7466949b1a 100644 --- a/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Nylon @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Nylon @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LLuS5zOOxSWnZoyb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0b02050f86..ded5f2b093 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZucTDurgG1yttTTE", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 13310a16c3..0514484af8 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jMfevCqhjSPahBHJ", "instantiation": "true", "activate_air_filtration": [ "0" @@ -153,6 +153,7 @@ "material_flow_dependent_temperature": "0", "material_flow_temp_graph": "[[3.0,220],[5.0,240],[10.0,250]]", "pressure_advance": "0.05", + "filament_id": "06101", "support_material_interface_fan_speed": "-1", "compatible_printers": [ "Creality Ender-5 Max 0.4 nozzle", diff --git a/resources/profiles/Creality/filament/CR-PETG @Hi-all.json b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json index f95c67dbbd..6e8dde0750 100644 --- a/resources/profiles/Creality/filament/CR-PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DGnnBUZoF5EJdo8y", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8e10dfc5bc..65165f30ea 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7zmI8UK4VCbkrHth", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json index 84a67b0948..fa3c9922d0 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oR9hRU1vmcDXuEdN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 07341168eb..a388228d10 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O5oj2seoJOMoRQeH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K1C-all.json b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json index 2184840110..57482693fa 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TCoincnHkpTkdbgr", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 7f3205e445..222a850feb 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tEizEoyTjR2jsMjb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c822121a3f..38be118853 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GyuPdDlFigxqfNdh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json index 22793c1f6a..0c9fcef567 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L9YgZiTMEbGueIUB", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json index 648ddfe0bb..ec8cb70475 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cpZpusYQklJHwF7C", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json index c6d5abb141..e03a34d210 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wszfgAr4wGMhfak4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @K2-all.json b/resources/profiles/Creality/filament/CR-PETG @K2-all.json index 01a2177157..3c328bf7ef 100644 --- a/resources/profiles/Creality/filament/CR-PETG @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "twFraQUSFLNuYrQd", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json index 238fc9d9ef..6bbbc65e9f 100644 --- a/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RFW04K7trMKi3cYq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1916397a42..175f304ef7 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hy5Zpwpkx46UQlFy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0d09d9214a..68fa08da55 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sU0HCPjQoOLHPmPc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @Hi-all.json b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json index 9e3be1ef07..dd543fda9a 100644 --- a/resources/profiles/Creality/filament/CR-PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2g9MEZ7yniK64tVA", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f8d7151b60..6fd4e736e7 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rkd11EbVutxkB4Yy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json index b3c159dbcb..0b31dd3075 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dFig6q8KlgjU4stK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 580bebf3fc..3abde8df57 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2sTv8VK78NAkgv22", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json index 4cd480d74f..d98582cf9c 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3chsaV1fugQudOqC", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bf32753b0e..e8a7ab0ad6 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xu46QkbGLqe9nSxT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index be5bdaaa76..722c4978c2 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dDLVUGD8AqxJuSb2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json index 1a73e1634b..172d39a11b 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FsNcay7aLjZKGih8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json index fdfbbef1c5..fff8741bec 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yXWDlqzGqqIg2tbx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json index c58a5f3a8c..cbb2931fbd 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j8Iaz6y4iiOw2I5n", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @K2-all.json b/resources/profiles/Creality/filament/CR-PLA @K2-all.json index 5c15a48b32..75c085137d 100644 --- a/resources/profiles/Creality/filament/CR-PLA @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7f0r4XOgIhVG2OPH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json index ff98272efd..4727ca270a 100644 --- a/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G1KqKgylj61LrtiS", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3bcf4b771e..18f928308c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VzHBAqKC0WWSEga0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json index 19f7b646ef..071cdb3945 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ve6KpyKswcbHPJi", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c2d4ad14b8..85bdd7bb41 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MbgilTqqbN9QZvtq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2fab455cf8..5118f3b015 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e5ACy8cJonV9q1pe", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bb25b5d474..f3efa4d2ac 100644 --- a/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Carbon @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Carbon @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ua3BCvZtfYAgH7nN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f412a907c5..b84b651e68 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "njQE4bpSlZHrCqrg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json index 6097fab341..12834e2b63 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eCuLoIdPsTEiLxZB", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a672a0c8e3..4944e61627 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vTZFUcLv6DL06Nr", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6a4d7eeef7..3c288db1e6 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HDRiQNtbO8jZR6tW", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ba3ad11eca..cb2e84fa5b 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gKRZWt2XVBGFoQ6t", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 118bb40ec7..c320654960 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yGc6fpse4MyUXWXa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json index 927f479b67..f0d35f90da 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BJwFbpJ8baT3vyEU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e268cb99b7..b2cf047a8a 100644 --- a/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Fluo @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Fluo @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0xviyTPYLAxrpVGK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 20b07cfbb3..f341ed0ee4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0edq8qWqKaGPZc1t", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8617f0bd2d..5f94d3a21b 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZFXelUe4vcYytBIg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json index 5091b27949..68c02594da 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mQDyxAEILwLuFWAw", "instantiation": "true", "activate_air_filtration": [ "0" 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 index da9bf93f17..c19a940780 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "38NjxetvurFFPPEy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9416e6a7a7..20477243e6 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KFNeCYp4ck8diZRG", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bfd69a63f7..e62afb4ad3 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WXOXHiNp1tvh4Y5T", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4b497c0ecf..62ab04db20 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LNN1w66GDTFxTCMq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json index 8a5b4921ca..0b5efb1f62 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nk9dxS7bcChQ26pZ", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ffe5aa441e..23fd3380c4 100644 --- a/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-PLA Matte @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-PLA Matte @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NNx1aU5NjcyeKPec", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ba00c7dcf3..0b6c2422b3 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "96xBgfns6PJljRBO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 887ee3d0dd..41047d385c 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vFgKdtdiuqqrL9rk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @Hi-all.json b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json index ac8192b054..838ffa205c 100644 --- a/resources/profiles/Creality/filament/CR-Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tCMjuQOR2yj66jPW", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8253537996..ef4503c7f0 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ljLSobQ4S3BAkBNk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json index 81877f44e0..6261b0607b 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jHEDkgKkZAy21Ali", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 54a129d682..a5e4bf6b40 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-Silk @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GbHXYf8i8km1Ox5r", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K1C-all.json b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json index 60fea44107..ce4e3be3ee 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I4LxzBtRIwagIQUJ", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2442840791..c44216537a 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JMpBkMELewelYBDU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6adf6b81e9..164cadd6cd 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dVxmGRP36D3lampi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json index 978a7438b1..83927ba13b 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8mKZzYS3ykGEMqjH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json index 5de03e0825..401753cdbd 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KBVdrZA7bYRpGztN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json index eff35d2314..2151efcec7 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0bvCEevcKO0uubLD", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @K2-all.json b/resources/profiles/Creality/filament/CR-Silk @K2-all.json index 84f914b020..dc5301be79 100644 --- a/resources/profiles/Creality/filament/CR-Silk @K2-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MXAd3uHJUNHLFA4i", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json index 20867e5c9a..3e62f7680c 100644 --- a/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-Silk @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-Silk @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A30ICaD1Lz0cWkEH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 824549ed9a..d27ed62681 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KkOkqdyd9DekhhNx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K1C-all.json b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json index c5fe5163d3..490e293ab9 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7IDbEU7GXQfJbFQz", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 57f4f42a74..8186e5a558 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m33d4hGzs5ZC1faF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e0d674d79a..34343ecff5 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kt3VziPx3umU4Q5R", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json index ce93eb2cb8..bcc65299d1 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KioNr9VhBOnLMtnm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json index b120cd3308..abd8207f32 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8akFfk1Evt6aKtRL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @K2-all.json b/resources/profiles/Creality/filament/CR-TPU @K2-all.json index c6b36db5ce..9f0e96c015 100644 --- a/resources/profiles/Creality/filament/CR-TPU @K2-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZXIOQXEGhsUn2x8j", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json index dfa0eb41db..7181fce5e0 100644 --- a/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/CR-TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "CR-TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mCfhjDYJc8oh3k2X", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 015d77cd17..54c9f99ea0 100644 --- 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 @@ -3,7 +3,7 @@ "name": "CR-Wood @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vIzshYLqN5j6pkDn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K1C-all.json b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json index 4682997375..7def3b58f7 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zSfzwta4F6MAXAn7", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4544ea376a..59364bfce5 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5n4iNCttBHmnXKaT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 684baa63ab..ce6631705f 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kBGvS0Npk3V5eY8j", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json index 791e93252a..9d5910633b 100644 --- a/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/CR-Wood @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "CR-Wood @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NFRGg9wmbojJ0Ye9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json index e5ef752e52..ef6884e069 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Ender-3V3-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "Jvnq628y3IlGGHK6", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json index cbb5e904b9..2e7d34794d 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "mriWPwWZUKmr7ws0", "filament_id": "07001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json index bfcf7b3472..10fe49d23e 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @Hi-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "mKgdNahVCaxQLMJE", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json index 483687776e..369b92c304 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @K1-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "lbMWwEM2Rb9ylrkA", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json b/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json index a725ff6360..15229ac4eb 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS @K2-all", "inherits": "Creality Generic ABS", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "jl0usGdbqac1xcGN", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic ABS.json b/resources/profiles/Creality/filament/Creality Generic ABS.json index bf807b6764..5fc04c19ac 100644 --- a/resources/profiles/Creality/filament/Creality Generic ABS.json +++ b/resources/profiles/Creality/filament/Creality Generic ABS.json @@ -3,7 +3,7 @@ "name": "Creality Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fv5g33ofjgyjVexC", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json index c6e72d3818..3da4bd0531 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Ender-3V3-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "3KXcINpeRKqx9Hhw", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json index 015e4fb99b..d93db9edb5 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "4muzPKAzy8FJKM5D", "filament_id": "19001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json index 30c223ef78..aff57be93d 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @Hi-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "DaPUW1rMtWyZLo3H", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json index bd01703e0b..2248ac6818 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @K1-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "nq4sPDBNWLOnU5pD", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json b/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json index d4d5edc1b0..5e1f0c9a18 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA @K2-all", "inherits": "Creality Generic ASA", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "OAYGhucg52H8nPIF", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json index d17a90acb5..4c11ce042b 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA-CF @Hi-all", "inherits": "Creality Generic ASA @Hi-all", "from": "system", - "setting_id": "GFSA04_00", + "setting_id": "C7IB6HSJxW598zFA", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic ASA.json b/resources/profiles/Creality/filament/Creality Generic ASA.json index a58da1dbf8..ddf812b5ce 100644 --- a/resources/profiles/Creality/filament/Creality Generic ASA.json +++ b/resources/profiles/Creality/filament/Creality Generic ASA.json @@ -3,7 +3,7 @@ "name": "Creality Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jHgcISP1UXOPsGH0", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json index 49f1c1c318..f72b006d9b 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "8caHexyoeQW9p1NF", "filament_id": "11001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json index 9d62c520ef..f7990f9e99 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @Ender-3V3-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "PxYQg8A9aHBV0wKU", "instantiation": "true", "compatible_printers": [ "Creality Ender-3 V3 0.4 nozzle", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json index c481f60a8b..80ff499716 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @K1-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "3j6MMw59d8UigcH7", "instantiation": "true", "compatible_printers": [ "Creality K1 (0.4 nozzle)", diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json index accd941c63..04ace3d4f4 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF @K2-all", "inherits": "Creality Generic PA-CF", "from": "system", - "setting_id": "GFSN99_01", + "setting_id": "08QXVyyDDpDPhOoJ", "instantiation": "true", "nozzle_temperature_initial_layer": [ "280" diff --git a/resources/profiles/Creality/filament/Creality Generic PA-CF.json b/resources/profiles/Creality/filament/Creality Generic PA-CF.json index 8f84eefde6..92a2c25893 100644 --- a/resources/profiles/Creality/filament/Creality Generic PA-CF.json +++ b/resources/profiles/Creality/filament/Creality Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Creality Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "hBNsuwMzm7ZZn15D", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json index b6b5b2bcad..9098360594 100644 --- a/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PC @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PC @K1-all", "inherits": "Creality Generic PC", "from": "system", - "setting_id": "GFSC99_06", + "setting_id": "NZ93pDkjFnCyAVZW", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json index 98e9acc71d..b1e47e12c9 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Ender-3V3-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "VsfDu1bl3N1EaXrw", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json index c0f325abd5..63700d9207 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "vRVsTatkrE46rzRB", "filament_id": "06001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json index 4566c8d3d4..6889cf3cf3 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @Hi-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "ZGI0yhD4lB10uUOd", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json index 204d4df543..67a901d8db 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @K1-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "zk1Typ98hZMZLn68", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json index afe54cc1e6..55ab9051b4 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG @K2-all", "inherits": "Creality Generic PETG", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "FhtlimihjuAe2pbs", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json index 40a105035d..28f6f07150 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG-CF @Hi-all", "inherits": "Creality Generic PETG @Hi-all", "from": "system", - "setting_id": "GFSG99_00", + "setting_id": "G4ZIJDNOpQvutOfs", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Creality/filament/Creality Generic PETG.json b/resources/profiles/Creality/filament/Creality Generic PETG.json index 1c6fc463d9..28c70a1f6a 100644 --- a/resources/profiles/Creality/filament/Creality Generic PETG.json +++ b/resources/profiles/Creality/filament/Creality Generic PETG.json @@ -3,7 +3,7 @@ "name": "Creality Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ixhOwyMvBCpI8nQs", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json index c5ce0b1bd2..5e28b48844 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Ender-3V3-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "d9awwT21ZLo1iXoh", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json index d613074e67..23b15169e9 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "zQiwnlxGlX4pFOHR", "filament_id": "04001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json index cde20a7d97..3247f38500 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @Hi-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "3gf0CImK4nJwfXrB", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json index a58982e8f8..d5ea668c68 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @K1-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "c5ArCv3qjuKjBwEQ", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json index ebb66ff401..2c6000111f 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA @K2-all", "inherits": "Creality Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "bnqvzgmJYbLraBWC", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json index 7c4c82327b..7538ad118c 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "4F3dZWvsniH9QHtr", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json index d45ec238b9..f1748f5d81 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "KzaopZGQPw5OJFFD", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json index e6159def6f..c810abe5e9 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "ptxV78rC6wevH916", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json index 43d6cb1de7..559cb6c0d8 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA High Speed @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA High Speed @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL95_00", + "setting_id": "ozHstwkc3N5LGWLV", "instantiation": "true", "filament_max_volumetric_speed": [ "23" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json index 2d6a7357be..8386488fcd 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "xF1B593frol5PWVw", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json index 4f1bdbb127..fe7c08e6c5 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "R7Jo7NhjsR1iU2Fd", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json index 4aad961b0d..9869ee37fa 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "3hreTG3DjcgmwZC2", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json index 1ceaf2f399..1659fed28f 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Matte @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Matte @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL05_00", + "setting_id": "fxZf5E6IHWWq3dsu", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json index 4e17dceeb1..d4e1b1f7aa 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @Ender-3V3-all", "inherits": "Creality Generic PLA @Ender-3V3-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "uPFnSMh7WoXmMAoy", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json index c88ef12879..17b55e5202 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "RPDVqZcn8EZizd1U", "instantiation": "true", "filament_flow_ratio": [ "0.97" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json index f4d7a43374..13cd1e7c93 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @K1-all", "inherits": "Creality Generic PLA @K1-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "pxvc0ICvqc0M3wYV", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json index 8626a32645..3b9a3d242c 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Silk @K2-all", "inherits": "Creality Generic PLA @K2-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "qS0Mlt24iz1k4P7n", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json index 8ecc23f587..53637dd460 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA Wood @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA Wood @Hi-all", "inherits": "Creality Generic PLA @Hi-all", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "OEc7Bc7WG99tuO5D", "instantiation": "true", "filament_flow_ratio": [ "0.88" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json index 4e267ed514..42eaf2c36c 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @Hi-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "9nAovlPz0SEUcovr", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json index 30e4bc094a..7eca9d5dc0 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @K1-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "zCnOLIfwhfZIDYLC", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json index 959e4a5d02..7b2b7212e8 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA-CF @K2-all", "inherits": "Creality Generic PLA-CF", "from": "system", - "setting_id": "GFSL96_00", + "setting_id": "wfZgLrH8dafxsNyZ", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Creality/filament/Creality Generic PLA-CF.json b/resources/profiles/Creality/filament/Creality Generic PLA-CF.json index d1f757a2bb..83fa21d7d6 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA-CF.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA-CF.json @@ -3,6 +3,7 @@ "name": "Creality Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "DCCWPQGMsvDOucwx", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic PLA.json b/resources/profiles/Creality/filament/Creality Generic PLA.json index b0d5c2a89d..6791ec64c4 100644 --- a/resources/profiles/Creality/filament/Creality Generic PLA.json +++ b/resources/profiles/Creality/filament/Creality Generic PLA.json @@ -3,7 +3,7 @@ "name": "Creality Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rUYYpB3GkiNCVyfY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json index 5510f3b6c1..11b24086b2 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-3V3-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Ender-3V3-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "0fDkYNB91MiqbAS0", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json index f19b29106f..20b4033ed4 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "aaiFHjbveXabDAMr", "filament_id": "10001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json index 78c8a27bc7..c3b5905d96 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @Hi-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @Hi-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "aF2isnhJKc3hoq8r", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json index 6f53818654..c8d4b63a69 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @K1-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @K1-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "isJCGG1B672xyX4l", "instantiation": "true", "hot_plate_temp": [ "30" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json b/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json index 6b32693f3a..db2138db73 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU @K2-all", "inherits": "Creality Generic TPU", "from": "system", - "setting_id": "GFU99_CREALITY_00", + "setting_id": "60PiyJbkRFDzr7b5", "instantiation": "true", "hot_plate_temp": [ "40" diff --git a/resources/profiles/Creality/filament/Creality Generic TPU.json b/resources/profiles/Creality/filament/Creality Generic TPU.json index 12310fb913..904768bb5e 100644 --- a/resources/profiles/Creality/filament/Creality Generic TPU.json +++ b/resources/profiles/Creality/filament/Creality Generic TPU.json @@ -3,7 +3,7 @@ "name": "Creality Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mKCynAMC7cjY03c0", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Creality/filament/Creality HF Generic PLA.json b/resources/profiles/Creality/filament/Creality HF Generic PLA.json index a60cf558b3..0b0c7d7d70 100644 --- a/resources/profiles/Creality/filament/Creality HF Generic PLA.json +++ b/resources/profiles/Creality/filament/Creality HF Generic PLA.json @@ -3,7 +3,7 @@ "name": "Creality HF Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p07b7w0HDxavGLdd", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json b/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json index d82f8848f4..dabcf7cdba 100644 --- a/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json +++ b/resources/profiles/Creality/filament/Creality HF Generic Speed PLA.json @@ -3,7 +3,7 @@ "name": "Creality HF Generic Speed PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jp93uqYennsWVAKe", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json index fc8aed1671..8dc6b98afb 100644 --- a/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper ABS @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper ABS @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "9Ek7KtQF2kgJbeXg", "filament_id": "03001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json index 957afc3887..7880478750 100644 --- a/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "YUtnpJsC9o1D3NUR", "filament_id": "01001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json index ec53f05dae..9c5a06621b 100644 --- a/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Hyper PLA-CF @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Hyper PLA-CF @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "fZvWZ9kfPN8MU6cX", "filament_id": "02001", "instantiation": "true", "activate_air_filtration": "0", diff --git a/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json b/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json index 14bd453a27..8211036350 100644 --- a/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json +++ b/resources/profiles/Creality/filament/Creality Silk PLA @Ender-5Max-all.json @@ -3,7 +3,7 @@ "name": "Creality Silk PLA @Ender-5Max-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04_CREALITY_00", + "setting_id": "S4nzxbjE4DmkoS7p", "filament_id": "05001", "instantiation": "true", "activate_air_filtration": "0", 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 index f9ef845e22..bd67446620 100644 --- 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 @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "158lgUy4NWVKp625", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json index d61eb86038..20e1c80d6c 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GGgjz1BfWVm9G9oO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 7409ecd709..36b97a2268 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gZVVoUCJ7QRhAHjO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a0d70444d9..eab3e35431 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Av0kmRfBxzfEtFMI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json index 5d784a30e1..10971264e8 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8jntA1DA7UKpFB5D", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json index c7e21f60dd..1b6b372fd5 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xIghXweOHDN6eUJA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json index 3fda247230..e70da1c59e 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @K2-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "knIpfA9wHBoyClD9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json index 436f4742c5..415263d110 100644 --- a/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/EN-PLA+ @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "EN-PLA+ @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "noCevEGFMtClqvDZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json index e2918f2137..8b2802939b 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZK9la4OwCbY6P1Ka", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 87fce80c82..0d353b5b00 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aX5GTeSuTe2xMM6U", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1c2aee35a3..ce9f2f0186 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rPu8RtmT8ketxiKn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json index 3b6140450d..b3178db08d 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KXmnvtnGjZiXVYVs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f18e7965ec..33d7a84e98 100644 --- a/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/ENDER FAST PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "ENDER FAST PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EOJUiD8x2hx3y4HO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 843a01d580..0c911f30cb 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4ZsPBPTcW7Nbud94", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json index f5595db898..a7ff4e7247 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3cpofydFoBjnKdNH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8d91cb361e..7a70d00077 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CHtytKAUVFpAy8Qm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json index f3d0a961ca..a9bd4373e6 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xnFY6LUmvd7zH1kQ", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 7df3be0f55..258c51c0d0 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3cb72JAry8Nj9Jc", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ed8d932b3b..98e13e5899 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tITLcxwReOtBn4un", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json index 9622ce948d..625795d82b 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CZfEiMPan3Lz1qK6", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json index 82af096bd6..096baea484 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QqeD0acLtTx3o8hq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @K2-all.json b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json index 57849c693c..e7f978e6cb 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "r81gYSIP0AGeFowj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json index 929095e9b9..a4f9b7c7ce 100644 --- a/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Ender-PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Ender-PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I8mV3hBRdyGTSqgt", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9dcacb2902..6690a03676 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4uYoekJTerUnoYl8", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c96bed99b3..ca7518e9b3 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3BjyaE4hGrz7tqnk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @Hi-all.json b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json index f23ddb234e..e64f47d466 100644 --- a/resources/profiles/Creality/filament/Generic ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9z0uoXnHksedYsyq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3bc3c7c3a7..4c78f3881a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VF8DUfOECtADXXXT", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json index 219b392f56..0841cb593a 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6tqh2NX6hGdsR8Gy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ec798a8dd7..8c297b397d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "D95cc9TGmWbPC8em", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K1C-all.json b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json index b90c6bad01..2f21834dc7 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CGDrkpaby0ZdpoSH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3cae95dc90..4135ea39ac 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eMQXlXLK9wyeqYEx", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 04d587cb5f..eb71fa7e64 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3YcpDd1XsJKf2T02", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json index 458a9a2483..d6f73b5e64 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ju8Vp3ee2mBYGzKr", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json index 5defa04c03..e3c1674f0b 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CKz3942iA5I2gfaA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json index 7f571b1f7a..e895bc8ab8 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PdjEPWVOSloevfUZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ABS @K2-all.json b/resources/profiles/Creality/filament/Generic ABS @K2-all.json index 400e12eed4..f9949a0dc5 100644 --- a/resources/profiles/Creality/filament/Generic ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Generic ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v8K9u7osBIzsrQCh", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3d2282461f..85251468b0 100644 --- a/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @Ender-5 Max-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1cOFjktr0dBTbYS4", "instantiation": "true", "activate_air_filtration": [ "0" 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 index cb8a8172c1..1b8af0ce94 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 Max_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JS8oDrWmlTmmZ9VJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json index 0748a5d2e1..9ffdccc2f3 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XK0E9L6nEGz9410w", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 980ddcb95d..7e83bc3c50 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic ASA @K1 SE_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U4HDFaHTS7EtgCJj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K1C-all.json b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json index f714b8e4f5..eaf1f69185 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yya6SGcDEMvAKLYs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index dd749741f0..338fc4981a 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1C_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1nVS1yN0psDyFajd", "instantiation": "true", "activate_air_filtration": [ "0" 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 index cfa349f1d6..e2db7afa6e 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K1_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "62EZvOkMH6gWc6CU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json index 7577891b92..f9aa956e15 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bPiPJ2MrgMOq01jX", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json index f57faabbb5..2723557aa6 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 Pro-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RScrAM7qssIS1RQC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json index 86ae9dca6f..79cd23a4f4 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B3KqWjy2YfMDxjbS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic ASA @K2-all.json b/resources/profiles/Creality/filament/Generic ASA @K2-all.json index 2419947adf..cb18ef79a4 100644 --- a/resources/profiles/Creality/filament/Generic ASA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA @K2-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nmVYYCCRebt7sRKj", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 71ee9185fd..6736c660a2 100644 --- a/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic ASA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic ASA-CF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DnKtg4yCiafeDBIu", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json index 0e1aa3fb5a..decbb3e4a1 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @Hi-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5HO5PysrHUKqReVb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bb0f70816d..81dc3b2ac4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1 Max_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rzpKPYQdPjzN3oVS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json index 47387ac3be..ac52221e0e 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sBNRrUUShVPgFlD2", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1c3b1ddaf1..35d6581e85 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1C_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F35hv7Jv8sdPpHuG", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f9e153ea8d..db50bb2d68 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K1_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "quzQIkhGomoTlGMy", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json index 1a77b66aee..2dde38b996 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s7taqaFnDhBFXnJQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json index f2785bd214..c9e4552fed 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WN4gUC7lL433UeUa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic BVOH @K2-all.json b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json index 5e1ae13b4c..6bb308253a 100644 --- a/resources/profiles/Creality/filament/Generic BVOH @K2-all.json +++ b/resources/profiles/Creality/filament/Generic BVOH @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "appeb6xRpTFbyGsM", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4dcad26bd1..b4b0fc15c4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1 Max_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "un4bn2cxbFdGO3DR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json index 8515096fec..78fde3f1ab 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1wQQnbsFK0eOT76", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6ab853d654..f63576c7cf 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1C_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ZZon4W5GRf2ilKk", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ffe08c8625..23a86958eb 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K1_CFS-C-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "81vAelQ8KbUPkNAL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json index 5fb87af569..d004f30737 100644 --- a/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic HIPS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @K2 Plus-all", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eaR3AeSZnfqfAKaX", "instantiation": "true", "activate_air_filtration": [ "0" 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 index db666376de..9fd3eb7324 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kJAlbLyNyUBh772X", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K1C-all.json b/resources/profiles/Creality/filament/Generic PA @K1C-all.json index f07abd2ebb..ef8e035867 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y68qR47SYWUENSKm", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index 74dbec0e75..91bdcf21c7 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VtABl7yMx0yDOnz0", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index f96feee9e2..7f077d59a8 100644 --- a/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ivl9C3evnuPMgB0F", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json index ef5efd2838..59e941c60f 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E5tvF6Xpv7jZzLgm", "instantiation": "true", "additional_cooling_fan_speed": [ "70" diff --git a/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json index 710e2355cd..c9df3bc667 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0139pzgdlOAScB7g", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA @K2-all.json b/resources/profiles/Creality/filament/Generic PA @K2-all.json index 9bbb1cb7ec..8579386858 100644 --- a/resources/profiles/Creality/filament/Generic PA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PA @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gxCrQfCHpKO4p5IT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2795f4997e..b457a527a5 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jEl76gFz2QQyvW6A", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json index c0ae293003..2d4f9cb2bf 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eGoj7kJxL2NfqY5o", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index 0746c394bd..8263c9d426 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zbiMNXMvHACEqLfK", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index b0c356786d..49173fecd4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DB1549abK4ZDVWG2", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index 2b2d62ac12..56c2aeed8a 100644 --- a/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aBR3ODfDoxJOLx8k", "instantiation": "true", "additional_cooling_fan_speed": [ "0" 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 index 955acd3b3c..3fc6fa4644 100644 --- a/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA12-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA12-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rZP36BUTvc68sHWI", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d77b7ffcb6..c9aa3f2918 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QSCyT35VNEEMhvud", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json index 2010f82937..c3108d354a 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fhFfYR7jZE4EbV0j", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6e33d60b0e..d745af0009 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Go0O3gXzk3QyyBGk", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e579e40909..6eb1569816 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dOmhoYus5mupLjle", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 94f06e7db2..162ec5e7d1 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3UftFI9726wU6cBK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f3102313d4..6049b3b882 100644 --- a/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p6hDaLrNJvnvejQv", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c9bcff9034..d113edd116 100644 --- a/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA6-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA6-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Snwr9UFekvFcj8lx", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 73b2e2084d..25956f1c1c 100644 --- a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PA612-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Od0K6cY5fZtDAOOF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 757f121585..5a29d469ef 100644 --- a/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PA612-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PA612-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YZr7lxLJZjL71WzO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a3ab90075e..3fee83483f 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q6f7jvJqw2gyNBFZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json index 24f3c64007..100798cac6 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rt7TNUSJlBGzxbcN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 603d21e928..71dff576e2 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CbUS1kiIgsHTZa28", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b17098080b..956496c6a1 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "71tO55hudcpbpReV", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 87de64d972..2b21d3680c 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p3nXM3BSnsmS2XHO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3853bf54db..cd4b5491a9 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gwXDISorxlzhqE2L", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json index 809d617bfa..0c507bc83d 100644 --- a/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PAHT-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PAHT-CF @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OK8a49qQ1ooSpYKe", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d196ff38ed..b2e4a4cc1a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PC @K1 Max_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Dh2hSCE4xEmmv601", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K1C-all.json b/resources/profiles/Creality/filament/Generic PC @K1C-all.json index 0e2d6c96e1..c23127714d 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KWaWn7qw5WFhxP6u", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1bf63972b2..5a775566d2 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1C_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YXZbtzq7xTHm1L1k", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8e4bc89aa6..11d4aa54b0 100644 --- a/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K1_CFS-C-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZzPtJF9WrqfZa29N", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json index 24d1091757..a4fd7b8e17 100644 --- a/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K2 Plus-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3knMGS1s49r6Z9eL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json index 939280a0eb..17b8f5ba3c 100644 --- a/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PC @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PC @K2 Pro-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CSAIxm75n407CqTG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json index eb652b1188..5e82819e32 100644 --- a/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PCTG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PCTG @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zmSP0G2uQvugDqZs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2997083adf..f2bd3dde2b 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PET @K1 Max_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rbuxBWsJ43mXgEIi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K1C-all.json b/resources/profiles/Creality/filament/Generic PET @K1C-all.json index 7fd91d6fb3..b855b18446 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yblsYcRQlWMPyE2X", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 029888f2df..fef797ee4b 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1C_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yhi1n5iQJpQPQQAp", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f713c802f9..6de2eb826d 100644 --- a/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K1_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HrEHGzilsq8F3ne7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json index 1638d071f6..d23ec6c681 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OFMSlAPXoITrhmPG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json index daf375c971..ff35401f39 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2 Pro-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fIxga8QpAboN7reJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET @K2-all.json b/resources/profiles/Creality/filament/Generic PET @K2-all.json index 2336b9404e..52aaa6e18c 100644 --- a/resources/profiles/Creality/filament/Generic PET @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PET @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PET @K2-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K7DNfNNpWlGriQip", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1e07976b9d..c42769fe11 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iAykK8PMYs9LdxrP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json index 5777ca035f..a293723722 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WhGF57kMBW9hM9zv", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 53758a5f54..5e49cbdb77 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IiR1UEHx5RrOeAWM", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 844e1b65e8..72bec3d1ba 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K1_CFS-C-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2a9xvwlw1X0qsA26", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 234d8cdd17..627620e2e0 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "srmb3jsHHpFDnfsp", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 501add5ed4..ab8839dd7e 100644 --- a/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PET-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @K2 Pro-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5tjKAfZmtCNClyrd", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 5eb55e15fb..74e49dfb40 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "P9ZP95oPCCBeXhGC", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 40cf82de3e..229ac91f2b 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yNgF407ERXuU7LHE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @Hi-all.json b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json index 79d8a6eb54..f855fb8217 100644 --- a/resources/profiles/Creality/filament/Generic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1N9muT0ILCJ7pdQq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c303cd2346..2cba8d0911 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2R2SrPu6U5fde21", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json index 5f730209bb..2626c596da 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ktn07NL2acbf4FzZ", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9b49b2a0a7..af8cb7d371 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8isRtWlMhY6f6OTg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json index 9d63399bdd..1122d81c46 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "983sxUds4Bih3OCl", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0751a94525..48b6087734 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rMTi8mSKdtnzsMbr", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ef5b2cfa1f..5d518fde42 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9Ay01Nq2Dv2SfQVR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json index f98f479485..1bb9217b84 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z4vClzn8RViHNLgk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json index 8b1ea84cf0..e50a03cb28 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "huEA8Ry63opxcD4n", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json index 9d486c6b4a..1b56e51679 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "awADayXExBihbXgS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @K2-all.json b/resources/profiles/Creality/filament/Generic PETG @K2-all.json index b8cac262bb..9df2e83d3d 100644 --- a/resources/profiles/Creality/filament/Generic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7iDx59I7g14YDF8w", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json index 340277968f..2fee02a703 100644 --- a/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5jgqjcjpqHPzxm6H", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9da2c4cdaa..e4ab498063 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4aNmHiMKdF9f0qdK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json index 4edd9d272c..8bbacdd073 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J9U6OONEnIpwmjf1", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2bdfd562bb..d5a0981341 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WaKz2m5F97gq2Lm2", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 96b88acade..1414ef10c2 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "37j0QrLekeU2z2q6", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bdba57f0b9..7114550576 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OEzFehmwiMscMC7x", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d791b74105..d4f5068e4d 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XNo4wgLuyPeOqInw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json index 6fbf4f1c4d..d9c52ea4d4 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LrzCY2ZsMGzQ9hZW", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 237f456aa5..349f5d2418 100644 --- a/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0UI0C81wu0FTlutg", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f49582c056..09c26dc704 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bn3MV8VSTFbpxsJK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 97818fbe9a..dda8a48f06 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q5qYSWKf0YGbomey", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json index 7cd65d60f9..2505b3ccc8 100644 --- a/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PETG-GF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PETG-GF @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mirtPgYBmAcUOLCg", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4fe5f0c538..6bb5cef8b2 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "prD5vMrpYGccWzdn", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d19a64ded0..54783f5efc 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ubfcxetXGj6agAoi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json index ade6b04155..831a63dc03 100644 --- a/resources/profiles/Creality/filament/Generic PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eza77EPrdoTvZdw7", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2a5931bc67..a2757b6400 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ARsPmEmVZlsfqy4L", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json index 7d6061c32f..fe66c9659f 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZzKNiMtyn93fR8Hq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d995a87a67..c4b6a70d4e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "grHcTUEdjD6jxza1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json index f2a793a802..87b5d0554c 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qSoHwF6RKEDk9oy0", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 18f2869f7a..a8e2ea3433 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5oIZY7x0t6ORAd5y", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ea835e8a08..9ad9f4d172 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LVSGrfS4cac3vRgQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json index fb7258977e..9b4f832744 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zgZhX3yZ3m9HZ8AF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json index 9a976c6a63..97bfa85e57 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "umMGfkURWkPH7wY2", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json index 325bb27760..8c2f352b62 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "03mMqzkFvH7rS8wz", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @K2-all.json b/resources/profiles/Creality/filament/Generic PLA @K2-all.json index 8582cebf5e..5773b09d4a 100644 --- a/resources/profiles/Creality/filament/Generic PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WD6bTDOOwBE72RaU", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json index 19827ac462..c0d5e84f04 100644 --- a/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "09RAKy1b3XyRqJlV", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e34f9872a8..c651861af8 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9EtBYoxLtP3BuplP", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 828a76daa0..ed024bf161 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AHrCSGRui6sRCmQx", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e90daf4a21..8721ebfd57 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gMlu34zMrx0IX0GY", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4dcb9c4ac0..9b686f0f9a 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kCiZBqAiO5Jc8RgA", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 75da2ed43f..a606564c5d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dCS3zA3Z3QmsUMav", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json index 9d7e142b1e..f0bd1b2659 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6p7VGPRhpUjCVmrs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 26c5f3e671..9e1ed31ae4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eL5STunwFpRYoNwx", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b77c0fdffb..aa6a91936f 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RGCRo5t8SRI85Oyz", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c95758b4cf..be755fcebb 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nZoZ1KL4YYwCdBYo", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0b4a9b0dd3..2e54d39334 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eXbFz3H9NBjDv3fy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d6bd3ea4d4..64c621680e 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4PnBWB1vn3jXYDcV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json index 85a09d6540..c754999f33 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vp7iPE7R08sUpbNM", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ff196a9ebc..60fa4e2bee 100644 --- a/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KnXh5yN3mZ1zFs7t", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4237b09809..1cf6f9ecd9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4oKiaxCpzOVuq7JT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 94f452aeb2..250c387982 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zIrKl9P6Aer6sbiS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json index 55161e548f..d2dab74d67 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yiXBAJwZHe0yW8MN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 521c167636..53f97c21f1 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a8WrKJxnm4xNe1HK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index fe441fdd77..92dc9c7f22 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "inmumMkeEas0Maw3", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d56525f82f..683eb16c4d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WaWMHS0yaaoiG98Q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json index 84a1e0b247..7210792495 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GpGBUE0LBkVKGtO1", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d79751dc45..70e41a8078 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cZIEiMZQbIcvP57r", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 36bdadab2f..71b992c1fc 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jJ8kRNXq2iz98qTh", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 88cdbd7f20..ba03b66ddd 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8DTZKlZEArr9Exd7", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4b7986d701..9e03746797 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hzbRwh2RichDUBMU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 01fb3b2ca6..074fde8bfe 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GdPDY6XouAmn2Sw4", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json index c39bffe31c..953edaba8b 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VhDF33Mt4h0SUIZH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index da182e69da..30e6a20ebd 100644 --- a/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic PLA-Silk @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic PLA-Silk @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "veZcyFoa3uiS0oel", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 00bccafe2d..59f53cbb9d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PP @K1 Max_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SpL486LVpIbISfQj", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K1C-all.json b/resources/profiles/Creality/filament/Generic PP @K1C-all.json index d5b50bb581..4c8ac4d0d0 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iY30mqnBJOeybNin", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f0cab01d8f..1668dd04fa 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1C_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "27bAcMgt0jDcUvLF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b8c6ccba8d..f82a464fe5 100644 --- a/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K1_CFS-C-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8c9klBh6C7O76Lgc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json index 83ffec6d27..9a5f2f3e53 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2 Plus-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sevgawCx7xvOFLXm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json index 71313bed4d..38ba4abe64 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2 Pro-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bAxYHHsv8COKiIFG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PP @K2-all.json b/resources/profiles/Creality/filament/Generic PP @K2-all.json index bdc713b298..8f97f08d6b 100644 --- a/resources/profiles/Creality/filament/Generic PP @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PP @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PP @K2-all", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dMhTxpF3ipepME4p", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d176077873..3f35f96343 100644 --- a/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PP-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PP-CF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lHJWTFXiSKzWrX1A", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 17b2f3d25c..37176e53e1 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PPS @K1 Max_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OCjDOWQ5tgZgZB0R", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json index 869e317bb1..d15aeef469 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9HAL1MdIgM7fyklo", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6232426840..d2af02918e 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1C_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DVtMTnkEsr8o5Vzh", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d89fe2bbb5..69f7f95046 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K1_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2HTODPgc4aIZ3XG8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json index 488dee4301..964d010a97 100644 --- a/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PPS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS @K2 Plus-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nGEhRfiizC0emg2M", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e9c6e714c0..47c8c9dc0e 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Lo64lIBBBOVC7X0f", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json index 68aedffc0c..c8e56eb45b 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IGMvRXBFMXKpLJmO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 882ab1eb20..5a937397ac 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TaXzrJiCydy8MS3f", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f692cf4659..ae80e3823a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K1_CFS-C-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KqN1ZnjnbBaLjVK5", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 78dfc79d8a..a538bfb7a1 100644 --- a/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PPS-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PPS-CF @K2 Plus-all", "inherits": "fdm_filament_pps", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tIoEmhVZ47jiEg2Q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @Hi-all.json b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json index e3e0e35779..a327524d0b 100644 --- a/resources/profiles/Creality/filament/Generic PVA @Hi-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @Hi-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M3oK19GPHF4pXnE1", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 94eabaeb72..468d910190 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic PVA @K1 Max_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GVvpekUbUn6UPw2h", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K1C-all.json b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json index e29b5be7c2..208b12d48e 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DnCH1X6KBNi1m0LO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c3a49fceca..5f2d2d535a 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1C_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "16V0liTfFopXs9hz", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4fb477e6a4..e527dfaddf 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K1_CFS-C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tomLVSBIaoZzTLo0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json index 02c0a87eab..4e76a603d2 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rCyivt0j7lJ11Obc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json index 29cbfda211..3902a813d5 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3FPysmnAH6EI5QJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic PVA @K2-all.json b/resources/profiles/Creality/filament/Generic PVA @K2-all.json index be69564800..9d6376abe7 100644 --- a/resources/profiles/Creality/filament/Generic PVA @K2-all.json +++ b/resources/profiles/Creality/filament/Generic PVA @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic PVA @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8ZOmE6qGjxxL8H0b", "instantiation": "true", "activate_air_filtration": [ "0" 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 index cf4b26380f..65431307ec 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic Support for PA @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jqyOG2srSFDU3HCN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3c09b615e4..130d40baff 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic Support for PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W6AEYBcheMyorkN1", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3024bc3be1..2d59a7a434 100644 --- a/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic TPU 64D @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU 64D @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0qV6lVuaNDT3U2HK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 0497d7fd30..5b50b540bf 100644 --- a/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic TPU 64D @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU 64D @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MCElfOpYpjeuwZju", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e8489cb041..d5582bb484 100644 --- a/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Ender-3 V4-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iJozGH7KvOHz8smj", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c0bf47eed7..940f0bdb03 100644 --- a/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Ender-5 Max-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KPUcdZyegXYeyHOL", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c353526ee7..cb08115e87 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h9xCBpYO0jR5I5PG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json index ee092fbcaa..46e2de4629 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "euSJIgcrA95IBrYT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index fafd514d7a..45926b0b66 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Generic TPU @K1 SE_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nHZN4EVW9T6dcG2v", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K1C-all.json b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json index 0eef4febc2..bcfcbd4836 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "170MDhVcDn1dM9eK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6d448d6143..7d929554a8 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XyaRiGJD4khUkwUe", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b8bbbc3a95..56491b9100 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5e2FELlHtgaCc0K3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json index 38c08a0dc0..46aee6149c 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kcwtAbqZkxRwtCE3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json index 94cb080eec..62451e782a 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AZzxNf1i5qruVcBL", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json index e920d51b40..04348049b8 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pjhl2ytSAdJgb8tc", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @K2-all.json b/resources/profiles/Creality/filament/Generic TPU @K2-all.json index a3c35ca023..4967c237e0 100644 --- a/resources/profiles/Creality/filament/Generic TPU @K2-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sjSoPLBLcYw8AJKV", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json index 196ab19657..cd8b519c2e 100644 --- a/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Generic TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Generic TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v6uEvu5qbKX9kE7T", "instantiation": "true", "activate_air_filtration": [ "0" 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 index fb78d1dac9..c7ae970179 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mNVwdo8Tu3M8MAMQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json index 3c3bb3de55..e02b477267 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7mN3GsHHQb2sziH9", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 40f27d553a..c6bb9bd547 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xYIC2SFJ9IeGcVuC", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 115b3b4318..1eb74d0999 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HfPCXm8gwCtZnkjJ", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 06b454e58e..399c357b29 100644 --- a/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP Ultra PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP Ultra PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yHu1ZjX5BoH8dw5z", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b4ba326deb..b2d283fae0 100644 --- a/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @Ender-5 Max-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JzsojF2Um23vm2qT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9961723962..3118bd2d96 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP-ASA @K1 Max_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RInV2wT54da08tvW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K1C-all.json b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json index f8508360a6..95e31de6b3 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Iw7dIqafCnOnBgDE", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 422c22c92c..6ea06b5eb7 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1C_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A5zG0GNhQnOlhTOU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8d9eaabd99..30411e4028 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K1_CFS-C-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "umNqcyYhx49DC2Ki", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json index fda02f2fa2..3babd544ef 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cH8oKyQX9jde7Bf8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json index cf4f93b0f8..a508566f74 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 Pro-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HxNkP2GYbTD7yrUZ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json index c7c0792e19..68cbfb27d7 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2 SE-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TbIud8JJSMQ0nYz0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-ASA @K2-all.json b/resources/profiles/Creality/filament/HP-ASA @K2-all.json index 6a4b0f77b7..b7d3829cda 100644 --- a/resources/profiles/Creality/filament/HP-ASA @K2-all.json +++ b/resources/profiles/Creality/filament/HP-ASA @K2-all.json @@ -3,7 +3,7 @@ "name": "HP-ASA @K2-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j9EXhFUKSE3c2awm", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c378d0e217..e627f5c5e8 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Ender-3 V4-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x7fQ7w2dCpvVfOLw", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 07b7074c70..c25294789b 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Ender-5 Max-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Y7KjqVEXrce3jKO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @Hi-all.json b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json index 4484d9a3c5..244f173f41 100644 --- a/resources/profiles/Creality/filament/HP-TPU @Hi-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @Hi-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @Hi-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x5v3sNNZYWbPIsPN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 65e4ee7c9e..8ed2212fa9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 Max_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eY1DCIW7WyTnmRYP", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json index d6cad98be9..5c83cda993 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3YN3jfV75qyfUZWm", "instantiation": "true", "activate_air_filtration": [ "0" 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 index dc105409b8..f251c2e7db 100644 --- 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 @@ -3,7 +3,7 @@ "name": "HP-TPU @K1 SE_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WnGZuBiSGSoGru8C", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K1C-all.json b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json index 0881b96efc..6559456723 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "USI47rUnoJXanAFI", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a6ccad9c7b..825d30d323 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1C_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rCn7lAeHr77FziYn", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b40c64ae47..9a950cce1d 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K1_CFS-C-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N3NDaZzc5XyUm3b1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json index b8487fbf9e..19195696be 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 Plus-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CNm35YCN42NAgbU1", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json index d77486de52..07423945cb 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 Pro-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tfrclH3VqZ4nPzi7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json index c3b7e45f76..df44f03a65 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2 SE-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IgniOuVC4DtRnxS0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @K2-all.json b/resources/profiles/Creality/filament/HP-TPU @K2-all.json index ac4c6bca93..4d1285f815 100644 --- a/resources/profiles/Creality/filament/HP-TPU @K2-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @K2-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @K2-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l9E5f6JLwfKo4aG9", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json index 1095d8b540..796ce1e78f 100644 --- a/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/HP-TPU @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "HP-TPU @SPARKX i7-all", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oINMsmmxspqPOW8b", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b45ad1b482..3f038190b1 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Ender-3 V4-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "utCV4AwQPV4Ums35", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ca7a7d66a7..097434bdc4 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Ender-5 Max-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jPfMyNBquP31h2Eb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json index 765b2c82a8..5e3b9d7de7 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @Hi-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LO4MgYNCtAlMyD11", "instantiation": "true", "activate_air_filtration": [ "0" 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 index bf0184ecc6..f2a095c235 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 Max_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PjT9gDai5g9iVBf3", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json index d3a94446e9..35871f8ac5 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dWKTm246jz7e4QRy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 743f5adecc..f160827598 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1 SE_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GCj4hOsf9S9DqFdh", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json index 5faac6bafa..0d57ad0380 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DlsL5Ex7MQ54Yje6", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 843f49d5b9..78b1d7d719 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1C_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "psgahhKiXE7koRWY", "instantiation": "true", "activate_air_filtration": [ "0" 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 index baef2eb4ce..e6ef2cfb6c 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K1_CFS-C-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YbYUo1FfZlLJg4zm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json index 80dddef35a..bbef4b2148 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lGXmZiCrrwfTeERC", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json index e73e9545cd..edd4f7a352 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 Pro-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "01z4QYF33KN1OsBM", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json index 9b128b2330..4710c1f7b1 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2 SE-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X3WH0zaUg8WyahsO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper ABS @K2-all.json b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json index 20be7b85dc..6aa0b2f736 100644 --- a/resources/profiles/Creality/filament/Hyper ABS @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper ABS @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper ABS @K2-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B0mfi4oxoUIDW2Lv", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 92f146279e..efafa60017 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "snqNKAAquQRA20Ik", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 82e0fe76b3..4b8ed94936 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nhmKUDLK6wxVO1vH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 68f823f0cb..c07d9981db 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MEaOGHy3pWSd1Gj3", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2ee911c6f1..3d69f8e7ae 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xCioj1jNunIX2GBK", "instantiation": "true", "activate_air_filtration": [ "0" 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 index da2fea04b7..7193bf835b 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xye2OhGeKqg44ya7", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 88332fb5d5..0757ec1fc8 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EXxV0Fo4rexuxidn", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 526607d93d..387a549dbc 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lfP5u92yfXRedGuy", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 2d242459f8..2f3c64a6e1 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U1kZq5P21qnFe5NC", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 62ec983476..902e373f86 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4O7avB3eSA1pKDxz", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c582a85ce0..a0f31de0c4 100644 --- a/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper L-W PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper L-W PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gkzTfze1OQmP8zgE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json index 42c1c0ad5c..a6873b4dc2 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8PNVp96HmPvjOBVq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json index d8ce75f23c..df72136acc 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MHaJR8CAtuSwUOIx", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json index 764f3bb1e9..13670be4d9 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zY0hIYvTg3v2wyOJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json index 5988cac327..eb7d7f3f03 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "14znq0LtaUx1RUP5", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json index 01104f4cef..86a72078c6 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zD3EOJFcZOuhQHmk", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json index d6b582ba15..b4991bc3ff 100644 --- a/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Luminous @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Luminous @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DKQgoZvvkOBsEJCA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json index 4d5d8c8a89..7576185076 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K6SS7X2jvyXsEgaR", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e4de323f9b..3475d6f5aa 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8dYJk1STVIRB2JWw", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json index b525070bba..fb9bc8c08c 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SWzt8p5UBfgMauNE", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 64a25f3f0d..63ab61c68e 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gZLo5W0F3NLFCkvg", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e7873abdb6..0e3f217669 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JDAiAZKjxEoWKDwW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json index d317b1b7b3..bce1cbb5f0 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2fgUYasv7lNEoqK", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json index ad582e46ea..4c77e3e4ab 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CITMYaFiwchQ3xoo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json index 0bb2fffb6b..706230c0b9 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PyazquNRWsPUM2bt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @K2-all.json b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json index 232efedb3d..527ec67332 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YxvU7wRdgrtckCa7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json index b443ca672b..0746b42880 100644 --- a/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Marble @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Marble @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "teddd8l8D8ASmYQs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index aa6511a476..01aeb86cdf 100644 --- a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA6-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ns7xy8v6L92XsDy2", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 20ee2712c7..40139cf279 100644 --- a/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PA6-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA6-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FNuPosBKWyq79bjR", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 32d1fd35f7..2f8bcbbacb 100644 --- a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA612-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2xgxuOoGNlO9lEs4", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3a88950203..3f4be12bf3 100644 --- a/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PA612-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PA612-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sDTzKRsBAaiOxA5I", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6d0eeeea89..3311a96082 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "98Dhy7By3Sp6lISa", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json index 10d257a464..b06066ce46 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SpXh27tlQXEbxDUk", "instantiation": "true", "activate_air_filtration": [ "0" 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 index cea414ec93..1e89fbaa08 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ShD1PW5HWkjnHXrd", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9039a93e53..bf05bb6310 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K1_CFS-C-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wzYQ0bizO8RDWjSX", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f11afb8240..df43ebb973 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NneN5bFLYVXNPzlM", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4b16d06b17..60e6f6e84e 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wl8JhmCp9Be3cYMJ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json index 23c52975f4..39fc5e217b 100644 --- a/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PAHT-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PAHT-CF @K2-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jtElnQJxHKLDQSHo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json index 1043d0bde8..43f1d53cdc 100644 --- a/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PC @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PC @K2 Plus-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zhN9dkzeJWtsAKj8", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json index 3c9f464325..3668981c2b 100644 --- a/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PC @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PC @K2 Pro-all", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6NMso8XW9632vz5s", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e9160346e6..aa4a1da8b8 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Ender-3 V4-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EDl8nfZRP1T8CBOs", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9a7e2161e0..fe1f0fbded 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Ender-5 Max-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nr57CpZ5PwPmcOCR", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json index 9a1786f481..fdc782abad 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZKLZLxxyjfbdAYZ4", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8424d57876..89090724f4 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bcgdo3fx6xntQ68t", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json index 1702856fdc..85d9b0fc2d 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "huvZfn5aMetsY1qr", "instantiation": "true", "activate_air_filtration": [ "0" 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 index f289a0c7c7..afd34c32d2 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1 SE_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cyl9yuFghMkUh21u", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json index 49b1f1b352..b4f548e7d8 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HYCr4pafWTw3btkg", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b9dbfc6b59..a132ab6ba7 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6vOJLefZfaXZTSae", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 62a6f3a077..1d4207f047 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FeLhYkEwkavAVWlq", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json index 6894a17051..2b65adafad 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LLehESBAwc7JG1sb", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json index 16f298023c..25acc10afb 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FEZohKnhkTIWLIGo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json index 3a142caed7..f00003218e 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2 SE-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YKt97IZEOlPbNE45", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json index 09fb4c4857..f0f86795ec 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tA9uY8ONg89tnmBS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json index 7ae6336579..26b6def656 100644 --- a/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KCinMkKfbIlmgNY5", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4385043cc0..459f8fcd55 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xas7n19K71hs4LDE", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json index 6825d72dd9..05fe909fb4 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Qb08ZrBwuO8zt4AH", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 35879943bc..9fa1a032be 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1C_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DoTcUw5GMoTHQg7e", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6d15c42b65..3f99330c5b 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K1_CFS-C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CcmwXMNgZWg8VguD", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ff06b80c42..544ae5fb6f 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DyG4SbAXKKPcZtrz", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 379d524566..ec260e76f3 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kit5JfJiicLJF4zF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json index 4a77e32984..e178e47042 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sqyA1OhRFwfJdaQC", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d8d5b34711..f88b59d4d7 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-CF @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ysPPxXtL5M7eQwOp", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json index 42b12a0f57..0c1d8e5c2a 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K1C-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nEDeotPVKPCQe8Nb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e0f7076f52..4b719767d0 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2 Plus-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "usQ7v9aSP9GkBJlW", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 1d047665de..346247a4aa 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2 Pro-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9cVMYbupJs6RNOy7", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json index 0f426b753e..9f28d154fb 100644 --- a/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PETG-GF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PETG-GF @K2-all", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LFtfaG6s8REfWmjg", "instantiation": "true", "activate_air_filtration": [ "0" 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 index acda60e5df..aa981c3a30 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-3 V4-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jO61I2nsJ2yY0WG4", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 8a7bc108f6..6c5bac864d 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Ender-5 Max-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nb1H9jKg8CPQXLVI", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json index 9c47561aea..9b1ec357b7 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AG1UL48Bof1wFYDF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 24e840bcc5..c3e7bed7f8 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lRYhcdi64EmFem40", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json index cc8090f21f..717c0835dc 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "w22rt5ipwYogeRyf", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 77818e4dc9..3679080841 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qV4HvI6OV80255YA", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json index 206e54c964..fa5a7a6ac2 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TnpXw6J6vdHtcI0m", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e7cb477666..7626dae835 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NkW5cDCzmoseCFmO", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e3670fb591..f95f80a5a4 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q74GgG8YgUE29949", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json index 1049cbbdc1..2d4608e32f 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CCn1pBWY533DPO2I", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json index 4d80eae23c..973044ff35 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1KX2t8HgeGnCF4Mt", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json index 96c06351c9..6480fb0dad 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zTFbjztyji63caxW", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json index c2d9ec352b..910f9888fe 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "klq59FDTiu0dk3WO", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json index 91c32b8c6d..8e9b21749f 100644 --- a/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pvnoJu0FPBxRAX6w", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 91b7974d61..f55de5ef56 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "30n5mJl8L6az4Ugt", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 7a006b788e..7592840259 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Ender-5 Max-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pW3AHx1VemLWSa7q", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json index 37c8b8668a..ac7a413888 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l4gTfu7FrFCXseZR", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d69c944bb1..f15929e486 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jNMBQgVxJOyIVLcq", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ea157a79df..af9c28e809 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qmyerfbWbH0wbbk7", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 7e8ac82297..b44b0ceb3d 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1 SE_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l8sx6lH2mvQLZObS", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json index b54a530ee1..f4f4b2e536 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "23SZfDiYXhm9hn5G", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c4a91a426d..952822e040 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ITQgXSnjWFeY68wT", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 3395485aa3..f65f1b5ec5 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9rf6iQ0xQuReogCt", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 697a6f41eb..ebb185aabc 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GjpBicP4kPE8flGx", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e29da4de9d..b32297ee79 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y4er7SRg27NLBiG1", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 233bd63922..758086354d 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBqaRVKwrOk8znjG", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json index ae9fa8b00d..b280582803 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L7pciawKG1j3Q543", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 9b4782b63b..ccb1e5a690 100644 --- a/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper PLA-CF @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper PLA-CF @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "18bK3EZVaHGwGmsL", "instantiation": "true", "activate_air_filtration": [ "0" 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 index e9198f0ad6..e13b1c8420 100644 --- a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper PPA-CF @K2 Plus-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ltnrZwbu4XXaDTkF", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c80dba4a31..314b8641aa 100644 --- a/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper PPA-CF @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper PPA-CF @K2 Pro-all", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wrCqzQPdSReyJSfo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json index 8e0c54075a..fd0c47db8e 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @Hi-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jg5EAOLRZBLTvozN", "instantiation": "true", "activate_air_filtration": [ "0" 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 index dfaca6da59..e822a0fa7a 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hwto2aYfebw6i6sm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json index 9872d0861d..8e9d53c893 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GC5jc2gUOL34TtA2", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6c281f5be2..416ee437c0 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1C_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zqZR6xEtm9Gokib0", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c192bf7033..d8dcb3862b 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K1_CFS-C-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fWmKrIlCzeemGvXQ", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json index 76cbbd61d6..b74711cd62 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q0hz1XpiWQeZhcjF", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json index 36e571bf29..a0fdc30bab 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SjkfsdLhjA5CFsCl", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json index 980129d8c3..84a8a22de5 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O2BLGgWwKLgovOmm", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json index 9668857109..95f30eb149 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @K2-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4OC4zOZaAUUsyu27", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json index 9ea280b81e..bc3de91594 100644 --- a/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Hyper Stardust @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Hyper Stardust @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "flyQf6Emi8ND7BDe", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 07e3d901dd..05b64e3648 100644 --- a/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Panchroma PLA Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ArTNQCA0xnqZKZk9", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 4fa1dc24fb..c290ac0748 100644 --- a/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Panchroma PLA Satin @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Satin @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dK0jvrB1WOFjPf7g", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json index 11dfdde054..bee02a0f14 100644 --- a/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/PolySonic PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "PolySonic PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K3kUZYddQO8SUKKa", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d7fe6c0d9f..47e17257bd 100644 --- a/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/PolySonic PLA Pro @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "PolySonic PLA Pro @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DEU6e8l8Gbz616Fi", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json index bc4a675758..66fb01a064 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @Hi-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @Hi-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sUalM5HH0sDpMOmD", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json index bca5772cf0..208583adff 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K1C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K1C-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RHcExN6yUArn3nky", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" 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 index b52821d427..f9d68e033a 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "w8SHt6Slm8uIqTbh", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" 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 index 17a8ea6c3f..d88e732e2f 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2 Pro-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vI7ThHCwOBfts0NQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json index 48f2fb0d03..5c62188c93 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @K2-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @K2-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nqr9TMlkS8nLVGhG", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" 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 index 549997c5b0..5b73363f5d 100644 --- a/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Soleyin Basic PETG @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Basic PETG @SPARKX i7-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yWR45TQhsN5eYgCu", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "0" 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 index e0e11ef6b1..0abc37c050 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @Ender-3 V4-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lMmOE3j5nMNIukQN", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json index 93a4acfea3..8340313872 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @Hi-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @Hi-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DzjjhzaPhKF7olJU", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 316b2b87f8..b32740a47c 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1 Max_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9dhggId2Cg5oR8Qo", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json index 72785cfb4c..2b0d1058cc 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K1C-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XP2BDRK5jZOC4TYv", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ecf91b8d73..9cfa3eb9e9 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1C_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "98NLzuVoD8d35zrm", "instantiation": "true", "activate_air_filtration": [ "0" 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 index d14d1cb9fb..4cb9bfa4ff 100644 --- 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 @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K1_CFS-C-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zovui7ZsQ26KEgYY", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 6ff60d9483..b4e93a4aea 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QJjtgwE6G4TS3V6y", "instantiation": "true", "activate_air_filtration": [ "0" 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 index a53c164a79..63b6a48fa2 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 Pro-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 Pro-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cprQoD8o6UmetOxS", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 40d0094134..590e345f39 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2 SE-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2 SE-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vAzjJYRL4Swmyq0z", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json index d229f278fc..3e8753160b 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @K2-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @K2-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UhE9df2kH6LealCb", "instantiation": "true", "activate_air_filtration": [ "0" 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 index ad56b4e28f..3c15bcb7d0 100644 --- a/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json +++ b/resources/profiles/Creality/filament/Soleyin Ultra PLA @SPARKX i7-all.json @@ -3,7 +3,7 @@ "name": "Soleyin Ultra PLA @SPARKX i7-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SlwK2b9m8ZQJY4nH", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json index 658269b4b7..449aed7663 100644 --- a/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN ABS+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN ABS+ @K2 Plus-all", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7plEfQUFL6qclQ8B", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json index f9fe3e5e8a..d9e439ef2b 100644 --- a/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN ASA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN ASA+ @K2 Plus-all", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WjM4WIPAamvbee7G", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 63e0385d94..0befedf49f 100644 --- a/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PET-Basic @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PET-Basic @K2 Plus-all", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fJJfZCZc5MrXX1Lg", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json index 0e585921b9..abbc6f48cc 100644 --- a/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BHCutIIr9w5Lg1DM", "instantiation": "true", "cool_plate_temp": [ "70" 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 index aef215351c..2ac796d298 100644 --- a/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG+HS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG+HS @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2hnUQwzB9vx9ZUOG", "instantiation": "true", "cool_plate_temp": [ "70" 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 index 026abb8026..5803a71cef 100644 --- a/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PETG-Basic @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PETG-Basic @K2 Plus-all", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YxOoppTAD5GAFwyM", "instantiation": "true", "cool_plate_temp": [ "70" diff --git a/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json index 0c96e7adc8..a5bdfb25cd 100644 --- a/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA+ @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA+ @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AW7HLQJ78DAEUjge", "instantiation": "true", "activate_air_filtration": [ "0" 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 index c6eebf3172..3712719e47 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-CF @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-CF @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DYF2ppm40yQWEtnp", "instantiation": "true", "additional_cooling_fan_speed": [ "80" 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 index 77828ed8da..a5a1e52d46 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-HS @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-HS @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lJaXWbmrBmg87yhI", "instantiation": "true", "additional_cooling_fan_speed": [ "80" 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 index 945dbe5ad6..99550707a2 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-LW @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-LW @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9lAD1qJIwwtcSvk0", "instantiation": "true", "activate_air_filtration": [ "0" 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 index fef7aaf481..07fdbcd5b2 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Lite @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Lite @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "om2444MoWYK7ZCqS", "instantiation": "true", "activate_air_filtration": [ "0" 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 index 5f57f0494c..5a1f80d5de 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Matte @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Matte @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BYYGdJpoZG5BXr1r", "instantiation": "true", "activate_air_filtration": [ "0" 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 index b51e3d37da..d09abc2625 100644 --- a/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json +++ b/resources/profiles/Creality/filament/eSUN PLA-Silk @K2 Plus-all.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Silk @K2 Plus-all", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IfZwVzcyYM0D5XR0", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json index 588af2e3d6..73687d8be7 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "C2fvuwjz7clQPiPJ", "instantiation": "true", "printer_model": "Creality CR-10 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json index 409d4ca108..34ae5f05e3 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gS1yvOH4tc67Tyhl", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json index edbc7e901b..99ddf4e2e2 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ofEM221M7bEnAANA", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json index 3710eabc32..32bec9dd85 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "R1pF6RmuvEREvW3F", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json index 1083e88c54..25d0d2a2df 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5RITcoqGZYcSWB1n", "instantiation": "true", "printer_model": "Creality CR-10 SE", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json index b42b0b6591..af449cd705 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 V2 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Hw2DcjVmYAlMkQaw", "instantiation": "true", "printer_model": "Creality CR-10 V2", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json index c23caed531..10837d9271 100644 --- a/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-10 V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-10 V3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZOxwNAzICHVJnfKk", "instantiation": "true", "printer_model": "Creality CR-10 V3", "printer_structure": "i3", 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 bdf429b11d..6b518c35a5 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 @@ -3,7 +3,7 @@ "name": "Creality CR-10 V3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YQJ89O3acgff47iY", "instantiation": "true", "printer_model": "Creality CR-10 V3", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json index dd85475fb3..35d77612c2 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gC9FH5eCZ2DnL5LX", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json index e676da451e..0c8ce148a6 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mkQW2JyBpZdpkrqX", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json index bc62f03676..aeea306f78 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "as4xvDHlVuLy5Yfl", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json index eeac867e89..417eba9589 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 Max 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h1fDN0WnZm5RQ9RZ", "instantiation": "true", "printer_model": "Creality CR-6 Max", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json index e749ce3a4a..c04b78dfa1 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZvJ0fJYI5s9xW90V", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json index 0b7b83495e..8c862ad0c1 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "D1mqDqt9PZVLRp4C", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json index 62d8146984..d5f40f373f 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5mSWnvqrjarTUJpz", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json index 42d435387f..a38fa30329 100644 --- a/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-6 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-6 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "CQi7GTzeyyVQyoTw", "instantiation": "true", "printer_model": "Creality CR-6 SE", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json index 72180afc39..165a332297 100644 --- a/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality CR-M4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality CR-M4 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8j6T4rBpObLegPyx", "instantiation": "true", "printer_model": "Creality CR-M4", "gcode_flavor": "marlin", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json index 8fec187c6d..29762960b6 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5oUf77sfk02YYkPg", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json index b3eb9d0df2..59497d500b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "i9f1B2Ys6LJN4uhi", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json index 9151be945b..a33329652b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "JPUH8enVvMBNoQMI", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json index b252b27467..d77ba1063f 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NSqhrkWEfEWkcmNe", "instantiation": "true", "printer_model": "Creality Ender-3", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json index 467a1178f0..d6715bb636 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "J3vE732ssoOVnlfr", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json index b8c4fcd32d..ac1a04a609 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Su88iexS0u8mergm", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json index 2736000995..f0377efa29 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jRFxaEisLIVgMe3E", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json index 1194f94db8..b8371d1770 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 Pro 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "THwsFY73tap4Sz1j", "instantiation": "true", "printer_model": "Creality Ender-3 Pro", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json index a9662ff542..c8ee1f7a0f 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "v5zq6LZrvEqFgvuK", "instantiation": "true", "printer_model": "Creality Ender-3 S1", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json index fafa7b1180..66d9161841 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "llVriwRyCGHvk0ve", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.2", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json index 8b04a36ef3..a871bc6d03 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ZvCvEfhAHvPiyEn5", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.4", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json index 1dc456e921..53d5923358 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WWy1HTsQv1k8ObA6", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.6", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json index 3abf2847f5..29735d253d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Plus 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "HuGg4jA6mXt5VPXN", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Plus", "printer_variant": "0.8", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json index 360b418b07..fa9f815d66 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 S1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 S1 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QW6vWxP2VA6kipYu", "instantiation": "true", "printer_model": "Creality Ender-3 S1 Pro", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json index cafe1ec31d..2e7787e04e 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V2 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8Y7SQdYcZgqYmzZT", "instantiation": "true", "printer_model": "Creality Ender-3 V2", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json index fcf6049182..e07ac17f02 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V2 Neo 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V2 Neo 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IQBZD7CKE6CJZyqX", "instantiation": "true", "printer_model": "Creality Ender-3 V2 Neo", "printer_structure": "i3", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json index 066eb1a6be..4bc5a8a963 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "FUmSsB1Xk6FJC0tl", "instantiation": "true", "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json index cf0d4b6f05..317b7b3499 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "elu1uN1i8DV45IZc", "instantiation": "true", "printer_model": "Creality Ender-3 V3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json index 44754ead86..9b1fa97ba2 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9UssfDU6iVd2SVhf", "instantiation": "true", "printer_variant": "0.2", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json index 8d1269dc4a..a0a2f1fe1b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dVAxSK9P8leZim5Q", "instantiation": "true", "printer_variant": "0.4", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json index 36e61d6229..7141b3088f 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "o3Sr7Hq4OzWMK4ek", "instantiation": "true", "printer_variant": "0.6", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json index 863d20c3fb..da6689b46d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 KE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 KE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "gUxGziFTA6pWEmxI", "instantiation": "true", "printer_variant": "0.8", "printer_settings_id": "Creality", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json index d4e84a0f60..ac9f51f5cb 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "HGz252Lczho2ktAf", "instantiation": "true", "printer_model": "Creality Ender-3 V3 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json index 3045591ba9..52db2b831d 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KqXFEwJFo0QFOCHm", "instantiation": "true", "printer_model": "Creality Ender-3 V3 Plus", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json index 096bbc1c0e..e75a79ce23 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9Z5cOcRzSGSWoSh4", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json index 09f92eba63..59c207b62a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mUxlFWtW07nXn7xG", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json index 4f5e8d3132..713e8e7332 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "TgxxwdQ6XybuoQ2c", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", diff --git a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json index 0ed91cc83c..b904c4b7f3 100644 --- a/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-3 V3 SE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-3 V3 SE 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "hUb175zgxfcy5FUJ", "instantiation": "true", "printer_settings_id": "Creality", "printer_model": "Creality Ender-3 V3 SE", 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 index 7dfad31b73..3c1fcae969 100644 --- 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 @@ -107,5 +107,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-3 V4 0.4 nozzle", - "setting_id": "80639" + "setting_id": "R96v98fNsXyf9HXq" } diff --git a/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json index 2d383f2449..c04de58097 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "X0rYP2JyEqdNbTDt", "instantiation": "true", "printer_model": "Creality Ender-5", "default_print_profile": "0.20mm Standard @Creality Ender5", diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json index 2ca1802e74..fb15db7ab3 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Max 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "arQeECQGICLCHhYQ", "instantiation": "true", "printer_model": "Creality Ender-5 Max", "gcode_flavor": "klipper", 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 index 98e51b84d2..f895c93b42 100644 --- 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 @@ -115,5 +115,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-5 Max 0.6 nozzle", - "setting_id": "71211" + "setting_id": "1idSrUiK9hZwCJNy" } \ 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 index cdf56ee898..2fad99bcea 100644 --- 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 @@ -115,5 +115,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality Ender-5 Max 0.8 nozzle", - "setting_id": "99719" + "setting_id": "mPvxCeNkSTMYta2L" } \ No newline at end of file diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json index 5356ab7f46..bcca726c1b 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qAbfSQYMb1zHtNMj", "instantiation": "true", "printer_model": "Creality Ender-5 Plus", "default_print_profile": "0.20mm Standard @Creality Ender5Plus", diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json index 78fbf3b5d4..285297c0df 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zuWysC3doyDowLlU", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json index 75dbc9bf67..375ad54f20 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.25 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "eGUm178CPAaKbo2l", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json index 273169b2d5..fc273af47e 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.3 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MrO5xuRjdOfpglux", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json index 9b7fe4bd2f..860e1dcc05 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "i6iBwupKUbmb9mM6", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json index 4eb9c8b9ac..47ad87824a 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.5 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Dqrt25OUEk2kXNbI", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json index 9f8667d100..11a71495b2 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1e0GYplHi67SFFTR", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json index 6ff9c62b8d..45332a9788 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "sJZGoZ8hDTfITwIL", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json index adaef6d596..5d5230f5af 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 Pro (2019) 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 Pro (2019) 1.0 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "fhXgkpkxmW7FunGA", "instantiation": "true", "printer_model": "Creality Ender-5 Pro (2019)", "default_filament_profile": [ diff --git a/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json index 0f27ab9132..6ef5e99e94 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5 S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5 S1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1wZtkdPmvwYS53L6", "instantiation": "true", "printer_model": "Creality Ender-5 S1", "default_print_profile": "0.20mm Standard @Creality Ender5S1", diff --git a/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json index ef0256ab37..5b9fbe6a66 100644 --- a/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-5S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-5S 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PELsbN4W37DHhHXD", "instantiation": "true", "printer_model": "Creality Ender-5S", "default_print_profile": "0.20mm Standard @Creality Ender5S", diff --git a/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json index 010f32e6d7..3e8b6f1216 100644 --- a/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Ender-6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Ender-6 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bpLN0RYSFgUZIEDV", "instantiation": "true", "printer_model": "Creality Ender-6", "default_print_profile": "0.20mm Standard @Creality Ender6", diff --git a/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json index 7fa2e4ae3a..b7a1676baa 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.2 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality Hi 0.2 nozzle", - "setting_id": "73035" + "setting_id": "Qr6oR8AJNy1QmytY" } \ 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 3de164add1..74cd4559d5 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Hi 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "eUOvgX9fGP2CSq0d", "instantiation": "true", "printer_model": "Creality Hi", "gcode_flavor": "klipper", 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 a14bb76e0b..402771c410 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Hi 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kcNwxPo5XPc0xEuO", "instantiation": "true", "printer_model": "Creality Hi", "gcode_flavor": "klipper", diff --git a/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json index 9905ee8794..5f43c0992c 100644 --- a/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Hi 0.8 nozzle.json @@ -112,5 +112,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality Hi 0.8 nozzle", - "setting_id": "37865" + "setting_id": "Q7M2ihdHisSVLDGF" } \ No newline at end of file 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 52be85c7bb..4b1fad646b 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.4 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "YTVSp79gHX8xNpu2", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", 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 38890795a8..1a849f15d9 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.6 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Y0zJhWCnQkS1jEIa", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", 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 f4f8ba213c..efc77b1623 100644 --- a/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/machine/Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Creality K1 (0.8 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GHGfwva619UwPc9n", "instantiation": "true", "printer_model": "Creality K1", "gcode_flavor": "klipper", 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 96e4a96352..d41f4b8ec9 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 @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.4 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rqhrDn8Hx3uRxEnc", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", 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 25519f9220..8c0f630a43 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 @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.6 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "MWaZ3DC8NiQn7vbW", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", 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 cfe7baed49..2593be039b 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 @@ -3,7 +3,7 @@ "name": "Creality K1 Max (0.8 nozzle)", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jeSiHKAisMVAWrTq", "instantiation": "true", "printer_model": "Creality K1 Max", "gcode_flavor": "klipper", 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 index 6da2fc8125..0ffbbb8fc2 100644 --- 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 @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1 Max_CFS-C 0.4 nozzle", - "setting_id": "81993" + "setting_id": "zx1WGvi1Ff3X3RpP" } 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 af015ece59..fc50432dd0 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 @@ -3,7 +3,7 @@ "name": "Creality K1 SE 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "E8r7L89MF77uzSpN", "instantiation": "true", "printer_model": "Creality K1 SE", "gcode_flavor": "klipper", 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 index 35e1b30b95..93a4641702 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE 0.6 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE 0.6 nozzle", - "setting_id": "22599" + "setting_id": "x2DzbcUOES62gJTj" } \ 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 index c909a98fdc..aa98cb2b00 100644 --- a/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1 SE 0.8 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE 0.8 nozzle", - "setting_id": "56461" + "setting_id": "sJR1oCXnOEQ2HZ5O" } \ No newline at end of file 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 index f5f56418bb..14077b6693 100644 --- 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 @@ -108,5 +108,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K1 SE_CFS-C 0.4 nozzle", - "setting_id": "98732" + "setting_id": "jAWMfHFcVBnqEqb1" } 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 a736756f5b..87ccb311bf 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Xxy4q0xtx8Re7WPo", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", 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 c9e1ec313e..b00db3d173 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7OloFrnUOgr6NqYN", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", 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 ab67b5acf3..069b665e5f 100644 --- a/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality K1C 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "F9LWshBdIbw0Ygf8", "instantiation": "true", "printer_model": "Creality K1C", "gcode_flavor": "klipper", 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 index 7060043e3f..225b760c9c 100644 --- 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 @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1C_CFS-C 0.4 nozzle", - "setting_id": "73280" + "setting_id": "ZhdzT48wvUDLGpPp" } 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 index 0ba20f265d..d4a7d9e913 100644 --- 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 @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Auto Lift", "name": "Creality K1_CFS-C 0.4 nozzle", - "setting_id": "62995" + "setting_id": "AnvSIapWvZ2Jpc3T" } 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 a6d31198ab..a0a342d406 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.2 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "settings_id": "GM001", + "setting_id": "8aX66GbijkwrT7DY", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", 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 13f1ae6b89..c3d6488839 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.4 nozzle.json @@ -1,7 +1,6 @@ { "type": "machine", "from": "system", - "settings_id": "GM001", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", @@ -203,5 +202,5 @@ "retract_lift_enforce": "All Surfaces", "retraction_distances_when_cut": "30", "z_hop_types": "Auto Lift", - "setting_id": "91520" + "setting_id": "XiWyoJJ90uesQMGs" } 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 ec1254ff37..b17c6f479a 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.6 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "setting_id": "GM001", + "setting_id": "xjllrWDeH0ABMI8K", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", 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 d6f955ae17..9d13607569 100644 --- a/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "machine", "from": "system", - "setting_id": "GM001", + "setting_id": "O1ardlnBQ2nqCs07", "instantiation": "true", "inherits": "fdm_creality_common", "printer_model": "Creality K2", 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 7f70f8a16b..52e7d360e9 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "62PSCmTOEBCBeaQm", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", 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 db0233fe59..93472b4dea 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "05zfI0qf5flvMmnC", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", 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 e527bb5065..3b9009eb0c 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "k01XrEd92hFQoMN9", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", 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 4c854a7052..285613858f 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Plus 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KyuzcfgsBhym76XG", "instantiation": "true", "printer_model": "Creality K2 Plus", "gcode_flavor": "klipper", 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 6b3455edb8..08249a6136 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.2 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "O7s4tZqfiukNZUuz", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", 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 199ee93b37..c9d74994d7 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nEmGdfGXnsRqJa4a", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", 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 8b587e79a3..b364acf29f 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.6 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yiuckOph1AsX2Gtz", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", 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 2aeb72dca5..207c059d24 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 @@ -3,7 +3,7 @@ "name": "Creality K2 Pro 0.8 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Dp40KfzTlDSNWQOE", "instantiation": "true", "printer_model": "Creality K2 Pro", "gcode_flavor": "klipper", 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 index 6aab3b5e3a..ebe24f655f 100644 --- a/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality K2 SE 0.4 nozzle.json @@ -109,5 +109,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality K2 SE 0.4 nozzle", - "setting_id": "21783" + "setting_id": "Blm3dYf9xWwUoaYJ" } 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 index e4f58991e8..c2ea633914 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.2 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.2 nozzle", - "setting_id": "24422" + "setting_id": "I4qasXKWnIbPgYbu" } 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 index 0651421606..8ee1efeebd 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.4 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.4 nozzle", - "setting_id": "88315" + "setting_id": "4usBaKppjmBSZy8N" } 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 index 769a753561..70c72ec78f 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.6 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.6 nozzle", - "setting_id": "24559" + "setting_id": "6R7l1V4liyafB0lf" } 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 index 0a63417d6d..d8358eb9dc 100644 --- a/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json +++ b/resources/profiles/Creality/machine/Creality SPARKX i7 0.8 nozzle.json @@ -120,5 +120,5 @@ "z_hop": "0.4", "z_hop_types": "Slope Lift", "name": "Creality SPARKX i7 0.8 nozzle", - "setting_id": "81812" + "setting_id": "kwyQHmNESgzBBCr0" } diff --git a/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json b/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json index 7bf110633f..a3a6bfbfb1 100644 --- a/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json +++ b/resources/profiles/Creality/machine/Creality Sermoon V1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Creality Sermoon V1 0.4 nozzle", "inherits": "fdm_creality_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OnKwNzhsh33llBNP", "instantiation": "true", "printer_model": "Creality Sermoon V1", "default_filament_profile": [ 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 index 5e9d26007b..0ff5143efe 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5FeO8mZypv8CHDpj", "name": "0.06mm SuperDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", 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 index 10d0b854c9..e993c77b6c 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "peqHRWTyVxZ2w5WU", "name": "0.08mm HueForge @Creality Hi 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 3d9b3234d7..3f0ff3b207 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rWpJRnZscjXyKngw", "name": "0.08mm HueForge @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 05bb1d1bb2..6ddf78e2d2 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nOd96z5QquzKG3iu", "name": "0.08mm HueForge @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", 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 index fadb388927..ab5c252c2b 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "uUPLPuPdvODZdBSU", "name": "0.08mm HueForge @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", 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 index f35ef8de4b..f584a86449 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KQXt6EPU3DFJ4xLr", "name": "0.08mm HueForge @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json index 430f707c85..d33349495f 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2DE0Yll1uWWACmoJ", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json index 90b94b505b..230b17d517 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "VeEiN85x7tr0zsDH", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json index a6c925d45b..aa1fb27356 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "8WKBbuUI1uqaxBQ9", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json index 63430a3304..d1e542b304 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "9rohQW8ZwBpbFIMN", "instantiation": "true", "bottom_shell_layers": "9", "top_shell_layers": "11", 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 0353685a8a..05da7204cf 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Gzis5yvHXQD9PnSf", "name": "0.08mm SuperDetail @Creality Hi", "from": "system", "instantiation": "true", 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 index e52e4277a5..8bf73caf41 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "jgP5JZdbxUbg8lfB", "name": "0.08mm SuperDetail @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index 79235fbc87..5ff07e264b 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "715XKCccsul5FKvC", "name": "0.08mm SuperDetail @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 2c8e3bd46e..fbc953f420 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OhhZPXABlfjJun3o", "name": "0.08mm SuperDetail @Creality K1C 0.4 nozzle", "from": "system", "instantiation": "true", 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 index e9c3195a91..bacd88b9f3 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "DMPF0xf2yvEWmu4L", "name": "0.08mm SuperDetail @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 4b10530fb0..1083550af8 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CaqcNDTSGWeJ81xw", "name": "0.08mm SuperDetail @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index a53ae48e13..3e98181430 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZqIhsxrzqVs6cFvM", "name": "0.08mm SuperDetail @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json index 18bbea0e04..7690eb0206 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "EnApHkeVPFdim9oX", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 973c9c1115..229c5be38a 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VK8qeRg8ZEHRo2Rk", "name": "0.08mm SuperDetail @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 95296975c8..26e877b4bf 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "d22VPSF1SXi5gPOI", "name": "0.08mm SuperDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", 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 f690de029b..f9b00d5283 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "T181USiYx4xlKGI9", "name": "0.08mm SuperDetail @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json index 0ff6a159cd..11833d41bc 100644 --- a/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "DxjpqUlUH3sSInBK", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 c2fde64f12..2edfea780c 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qq07eSaIWdVHr9mr", "name": "0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 5c8501305b..94b622d674 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1PSmepdqo0eFyI23", "name": "0.08mm SuperDetail @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json index f0ff986bbc..792e4bf7a3 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality 0.4 CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gCDf5r3S40HdDGIg", "instantiation": "true", "initial_layer_line_width": "0.3", "inner_wall_line_width": "0.3", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json index 982a2c7db9..53d9a6d5b9 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vtCpsHiGx0zYKKBI", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json index 4c8ee3f28b..dfb5e9c47d 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "6ajvAR6ksUWY9RAV", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json index 83d9884586..05874dce2a 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "ErW5xUm5tUnvvoI7", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json index 8c70c53025..bd46eedd26 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "gUk5D8WLQjvVYaGV", "instantiation": "true", "bottom_shell_layers": "7", "top_shell_layers": "9", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json index a09d6a3f2f..fbf0043f01 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "VbMcEfWRcPS8ZziD", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 83f5306492..6bf1baf2d2 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "V2oWbmagKmmoxbv3", "name": "0.10mm HighDetail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json index cbf293adb8..d104a68e6a 100644 --- a/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm HighDetail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Yoy4llkdi8vyoU5I", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index 620bf612b9..16bc203a9c 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "GqPrfjfOMnakeSmK", "name": "0.10mm HighDetail @Creality SPARKX i7 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json index 617951eef0..148e6ca5d9 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QyCbRvjV5jfaacYs", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json index b8afae91e5..89456915ee 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality 0.4 CR-6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SSSndKiWBQ06hxMX", "instantiation": "true", "initial_layer_line_width": "0.4", "inner_wall_line_width": "0.4", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json index 25d0143839..ad1efe2985 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "iddMq4aUFe59QAMO", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json index 8c6fcc8682..691b29d56a 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "dUke7RQrRu8vFqPb", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json index 99540e9f9a..e1eea95fd2 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "t7CMboSULL3CvaVR", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json index ddc19d593a..5334f80bed 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "uBnTsWOjSMd1yfNz", "instantiation": "true", "bottom_shell_layers": "6", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json index 3a3acca396..d8e1f7255d 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "CgyrqwevLHW5VJCz", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 719b13a996..2003ecc36d 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RxVB6dYHB7XghTJM", "name": "0.12mm Detail @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 e9964cf9cd..d2c0488bd9 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4QIsAhoHoAXDecGF", "name": "0.12mm Detail @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", 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 e6bdad81af..6abaf12607 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fY34NxARSSe2qjvw", "name": "0.12mm Detail @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json index f80ea55249..3936bfee46 100644 --- a/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rI2YSHJ85PYODVOr", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 bcb4b21821..0c06c325fa 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "g1QZLRXoH1joFYs3", "name": "0.12mm Detail @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json index 7f666c146b..b753d5d697 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eeiPSOyL4ergqQ07", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json index 9d457e2c0d..420946637a 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "wrSsDTXZmqGP7jI6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", @@ -113,6 +113,6 @@ "initial_layer_jerk": "7", "travel_jerk": "7", "compatible_printers": [ - "Creality CR-10SE 0.2 nozzle" + "Creality CR-10 SE 0.2 nozzle" ] } diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json index 42e69ba86b..080d492adb 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cDZYl2hgnh7Cc99L", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json index 61412b78d5..fdac5e080f 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "tSCiJ9olpnfuFwwH", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json index 7d8787db6e..e6d532895c 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "QheGOjs9kbqt0RIz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json index d18498342b..9d3526378a 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TduEizRFdShIDRcm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json index 751361e952..e54dac4c6f 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Vkv3aPxQr9VEJvaF", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json index c87df66904..dc47420779 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Oc6OFEFHUMPYMB63", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json index 63f8ee9ca3..25c255507a 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UntNzp8KmgY2dJp5", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json index 398bd79f20..bdbcde0c09 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "29EqYizz07WCqLH6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json index e4f2e13de6..e094dec366 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ud8sbqOYEtSQQT6z", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json index a88440984f..f04f45f8fb 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NZt7TVAsYcO4KVUO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json index 72ca4f4a3c..4a98444b8b 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hYyzb4pWqSMccfku", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json index 77112e3ae5..0c89db070e 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BYotUlZcqUXYiUJD", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json index dd8b7b785b..f5f2c12992 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cRgPV5JRbPRakGVF", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json index c8c3dfb43c..311aa9f18b 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Rs3jP38ZEjdPihGT", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json index 27c81d7cc3..a9beb01fcf 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "EJAHGtrssuw5Z6ul", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json index 0909f98756..82c3f7e5f9 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qPcJyOUL611jQfcb", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json index d1888f1c89..812595bf28 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JM7OGS3Cjxqg6wFn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json index 2ba7212d14..c01491ecfa 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.4.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.12mm Fine @Creality Ender3V3SE 0.4", + "renamed_from": "0.12mm Fine @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "W68mSPdmat2rCXuD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json index 124f0b0915..797cbcafc9 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WS8Z9BGDgjWP3pQJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json index 117e747b9e..202ac828bc 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kkfspmZozKFg5BA4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json index b63e8f9d9d..d452d0e75e 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pMT5vO5IBWX9wZLG", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 82a540259a..d332eeaf3b 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BqQTYLbb22LCHEJN", "name": "0.12mm Fine @Creality Hi", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json index ccb5d3fff5..56e76e7a03 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1 (0.4 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "g6zPlZ8mKj4YHC9l", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 f9e58fdc38..0d9c5f4f5b 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 @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1 SE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cAcjLnedHgi2zJ05", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 c9dc1cb5f2..00e10594e3 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 @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "G93LbyixXNXBiA0c", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json b/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json index 886e797a93..0afe3367a5 100644 --- a/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json +++ b/resources/profiles/Creality/process/0.12mm Fine @Creality K1Max (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Creality K1Max (0.4 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "hfAhnivnymhUKkuS", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 index e4cda3e407..db05c36733 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "gHnRFCfQOiqEOQhq", "name": "0.12mm Fine @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json index 2d4567efc0..23ee07ff02 100644 --- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Optimal @Creality K2 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "NE7Agdi1j6hrK7rw", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 e32511259e..acdb2c2403 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "AgwKETM82R6PNW8u", "name": "0.14mm Optimal @Creality K2 Plus 0.2 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json index 4a15c4b30b..dc2ded50f4 100644 --- a/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json +++ b/resources/profiles/Creality/process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Optimal @Creality K2 Pro 0.2 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "uzBTcj0MWesbEiKJ", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json b/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json index 52fa73047f..5d1e310880 100644 --- a/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.15mm Detail @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.15mm Detail @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jQbIfGEQz1oMASyr", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json index c824c21c93..e04a25a2e7 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AhVlBBKSgNv8gtzF", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json index ccf9622fe2..91fa465acc 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZlLapzGj5AcZJW7n", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json index aefd817b48..cae991ff76 100644 --- a/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.15mm Optimal @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ysg14LXoki3gnanY", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 index 7ccf8e901d..aeb29cee0a 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "cFlbPrdjMi4CLWZF", "name": "0.16mm Fine @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json index feeca696f0..84157fbc26 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NmD2dx7kslAV3A5L", "instantiation": "true", "bottom_shell_layers": "6", "initial_layer_line_width": "0.2", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json index 9d7d19aeda..44e22d33e9 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hB2b43wb6zlKNwM7", "instantiation": "true", "adaptive_layer_height": "1", "brim_object_gap": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json index 6454d9285c..003f549456 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hG0UwjqVbDIDvVSi", "instantiation": "true", "bottom_shell_layers": "5", "initial_layer_line_width": "0.6", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json index 02fceae201..77f4e754f6 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "KJS40SDSHBwiqODl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json index 8a583fddb3..336e78ac1c 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "0MJLzTqNgW25Uheg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json index 53c4dfd48b..1f1a708b4b 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "N8cFrOUSa1yfMrv0", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json index f79b35382d..b98f76289e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "cjrvnlS7gkkm0pNy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json index 9b388ee677..067aa42760 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality CR10V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality CR10V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QussxQZJlCnscRO8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json index 2b06519bb7..a41f412f45 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cply3AO1zRZSsHgR", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json index 94abdc3199..9a42f54448 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "11bH6lpigIvL8u8f", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json index 4c3ff47b54..0c74372dee 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Fke1V31Lx19EoKIA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json index e13cd36e6d..0ecee26eb0 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9fSweJ4F7gua7Uc7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json index 29071ad975..e2ab351bc7 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DwpNJnb8eEz7L9Bb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json index 17eea5e09b..c21dcdd143 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "43mtG5xlkphvMKKd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json index 2c39218d61..c8f9692039 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Jhb6GdIOKHntN1Ya", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json index 1f031ca694..a90a14ce26 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fxgj9J397IulykPl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json index 9d5e2a7635..1adc7edee9 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O0dOiNS7TEZtCZ8R", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json index 860155f4da..6ec52bb438 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eWDWBHYshBLl925f", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json index eeacbd6d1c..dc0b13a54d 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjQX9RTDFKq7QGtA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json index cc35166f09..4dca077fd8 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sFUH487ulcosG1Aj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json index 8a99efc9d8..0b360bbdf5 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dDjBGlXptHbFRkZe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json index ae6a5e4f12..dc75dd8a6b 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3S1Pro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3S1Pro", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XL3fQRXNDiWlirhY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json index ae3fc1628c..ee244e17c8 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aoBTpFYHhbpg1kuj", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json index ef0ae9d1b7..c3487fcff2 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "2Nrbq8PxssUPBLza", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json index eccf494520..3ae447f19b 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ujKrpcMbGeL1pnX6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json index 2322451957..9139a9ab80 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "eni3OChSXVGLB0NB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json index d3171e0949..b7113edd45 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CSSjT637cJ1BSrDa", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json index 84816544b1..052142f6ec 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.4.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.16mm Optimal @Creality Ender3V3SE 0.4", + "renamed_from": "0.16mm Optimal @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jvnrh3jh6Btbs1Ja", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json index a9d7b87741..1bc4ed673f 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFqTILkrvntT8uHM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json index 957ef47118..676751fa1e 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kLTt1KBtPskehSHv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json index 15581c8e35..8912d61ace 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dIPbjfE0UjFaq6YU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json index 60ebbe3279..704cd3756a 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Plus.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Plus", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "A7RB0AQ0t1UkCN5G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json index c6c4544e70..344366907a 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.2", "inherits": "fdm_process_creality_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "PkYaHtGT4lQshqVI", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json index 81785ac181..cbb8231466 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "A4ILOH76mEPaqZTn", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json index b5c7e8a33a..f8542b1e99 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "6yq15YC2v6Dl4eyl", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json index 86cadadd37..bcca7d93c0 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "vDwtu5SYxnCjXgrd", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json index b54ce67cd3..076f5babc0 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "9fr4NwTGAeHhTru5", "instantiation": "true", "bottom_shell_layers": "5", "top_shell_layers": "7", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json index c9f4460be7..fb485bbf21 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5S", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qVu6mv4sVrVzWxvy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json index bfb8373bb6..45d61838d5 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender5S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender5S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "03w4e0cMfUFjZcv6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json index 8cc064376e..4669bff842 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Ender6.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Creality Ender6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cjGhLiKivneRnlNJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 f29f1c3fdf..77b1295186 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "NtD3nnUvAO8aSUDJ", "name": "0.16mm Optimal @Creality Hi", "from": "system", "instantiation": "true", 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 5db4fc486e..dba47d76a5 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A0a8psWEQGdmYiPj", "name": "0.16mm Optimal @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index d43806e95a..ef22dc37ab 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BQiQnQJpN2Yy4c7u", "name": "0.16mm Optimal @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 ab0303c3e4..2ac16fb484 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "xHoh6Y8AfDzNA5Mf", "name": "0.16mm Optimal @Creality K1 SE", "from": "system", "instantiation": "true", 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 index 294d3dae01..b247bece36 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZhEEAnJ5eh6QES40", "name": "0.16mm Optimal @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 c21c1f8143..b1d6201ba7 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "i25lsWBmZF21XcdV", "name": "0.16mm Optimal @Creality K1C", "from": "system", "instantiation": "true", 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 index 7e3512aa46..44dc07e070 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CpdVjCmJkN3pWssv", "name": "0.16mm Optimal @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 f0d420ac97..0b4ae9c777 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "IN9EjcbeLmwzyIrt", "name": "0.16mm Optimal @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index 27a62492d6..6b201d6f4d 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "a76Q90iyWf1az7Fv", "name": "0.16mm Optimal @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 a97b78472c..d8e00651f2 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "xcJYMZt1N40vmszc", "name": "0.16mm Optimal @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 ccf524251e..1f9b68b300 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qh4PUdesKrjSUXFm", "name": "0.16mm Optimal @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", 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 19a32f523e..80277008a0 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FCUUtHpYIxeokc0a", "name": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 4da57df06a..c23d00fba0 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "8z63KIGeDgitLqPe", "name": "0.16mm Optimal @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json index 54bd4631d4..1500b58edd 100644 --- a/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.16mm Optimal @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "hbBZ8omsECktSuQl", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", 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 index 4026d2c642..4511db51d8 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KopqA4S2dMBSCBSD", "name": "0.16mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json index b495589c40..c6aff2c46c 100644 --- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Detail @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "CnbapJIbVp2G1P3f", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 736152328b..9111e8a395 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3wVXi8pXkGNmKm53", "name": "0.18mm Detail @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json index 8d89aa7d4f..d2299f536e 100644 --- a/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Detail @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qkIa0kvnO1kKCXaH", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index b1a3389552..40475733fd 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tkSkduU7S0ysAtM7", "name": "0.1mm Standard @Creality Hi 0.2 nozzle", "from": "system", "instantiation": "true", 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 index e6e7bfbde0..422e928cc0 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "UR1b2Z2o4t2uXsDO", "name": "0.20mm High Quality @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json index e75c00d3f7..506555356e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1r7s9PLXP6o4Eu92", "instantiation": "true", "top_shell_layers": "4", "compatible_printers": [ diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json index a5b9e950c7..afbdf4f130 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "a7KaUj13TU2VGVeI", "instantiation": "true", "initial_layer_line_width": "0.63", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json index 65b0a4a413..e9d475488e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR-M4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR-M4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1ErOybjeyBbMseD4", "instantiation": "true", "bottom_surface_pattern": "monotonic", "bottom_shell_layers": "3", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json index ec0e3fc224..702fcf8ea8 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZShSFfwlxaYTLPyk", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json index 8a87111b29..d540f01b05 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "SUpsCvktcGgKFOwG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json index ae6e163166..2ed8c6707f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Mi0CWgKQO5QtCUgX", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json index 097f08af97..36616153a4 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ogY513sf2Ht92CNe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json index bebc21cba9..fe5cba1347 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "athOsWrvUS4bdchK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json index 6eee215edc..4a37e7aed6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pRsZ1fGFRb5LxTi6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json index a57800e5e6..8d5f34c010 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oThS7cBtZl2ycbIR", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json index 62a4f830df..d468da293f 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality CR10V3 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality CR10V3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BDjZsZ3Eron3yC6o", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "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 index 64fb27df82..b6d6703693 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "V6277KGs62IwLGt2", "name": "0.20mm Standard @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", 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 21bb216a1d..c8decdadad 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-5 Max 0.4mm nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "AIGw5RfsGTHUTvDV", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "25%", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json index dd2ead1986..8d7d9c44a6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NUOwkxvz6bzH12be", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json index e7d9ed49db..9e7ec845b1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aPYE2hHFn4jp6hHd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json index b7b63e7d25..b24bac30e1 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iuwxYTfWfZ4RyZEg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json index 22f57566f3..e85725b2db 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fhwVxG08WJloBcrL", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json index 106e071c4f..9e5461dbee 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "V3Ik8iTHlZh5QNKm", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json index 3afccac49c..3e1b899446 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g5sSMikMlHAPS2go", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json index 4a94011b63..9ddf750136 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vuh1vEUnXIvFGssp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json index 63c3a5f55d..537fff135e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "l6niLUptIm4MfRTB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json index d71cabb4f7..9abea8d074 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XzSinPHka1JNcgdc", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json index dcde250651..c8e6b39c19 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6n6QHp6IAmmgmTy7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json index 50d49dbc5e..5ac0c2cc46 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BmsBXICyG0DusAHS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json index 25038b0d4b..219119b0b9 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FFWB7dkbWTGsR5a1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json index 70dace11c4..71fadd1ded 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Fo07KIkbZydVaBgi", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json index 732e93b0b1..4ce194a79e 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FiSvC283VqqMpr41", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json index e2f0f8ba96..022e911acc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3S1Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3S1Pro", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dPims9blQsZMrtnN", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json index cccf55522f..0e16e788ef 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pmPzGC04PU62qjcz", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json index 8782161984..89c4f56fa8 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bVXaGFQ7f2jkilWk", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json index e693a8f8d3..0f5aae0bd6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "wG01ybBcp59pX5lB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json index 4c748ec0ab..4041987d50 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "H198VcahxwpEdma0", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json index f7b0f4d5e3..97892cc203 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rG5BalEQ9WpjxWXr", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json index e2751fe2aa..a1672739e3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JrWxHTh4DZ7zRaog", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json index 5140aa122e..a5ea94dfcc 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.4.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.20mm Standard @Creality Ender3V3SE 0.4", + "renamed_from": "0.20mm Standard @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YLkw9eyyK7cm97ek", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json index e5d0fb3b7a..694492b626 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8xefmMVdxxfX5MTl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json index dc0f043b41..ec49bea8c6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DLABbffpOkmSzZrG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json index 042f608a87..7d4eef8be2 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8Ok1ykiLVdEftiJO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json index 6ff447349c..4de5bed1c6 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Plus", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "y5dNuwrcPQ1xUKOM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json index 328f6aa855..be515b9d65 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.25.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.25", "inherits": "fdm_process_creality_common_0_25", "from": "system", - "setting_id": "GP004", + "setting_id": "xK6kR6RFQVFRo6tE", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json index 20a6a4fad8..8920fa0caa 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "dgypN1BMVnOqW926", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json index f9c980de33..6dc555ab8d 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "1XGT3ichHXJ9UyaZ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json index 654b527422..bf5f94e023 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "lqciHPLwFurH4fi6", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json index dfc27e1dff..80356a6239 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "1304wj45TgRamQar", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json index 0a95b5d548..3abc3478f3 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jy8Ih6XxbX6mY2Z2", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json index e3077d4850..9dfdc2bc12 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5S", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5x3ZLLMD1JScujiM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json index 49bfbca6b3..5546e8b916 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender5S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender5S1", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lRpMOtyu8tTd4q5C", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json index 0d018bd377..98e7815784 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Ender6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Ender6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HWmFUQgTTKxAkHnA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 dd7a51c3d3..5a5b6096a0 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality Hi", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bcq9UBvpf9Ye1RX3", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 1b1be37c49..42e894eecd 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1 (0.4 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jxlXC0tjb1iInd1x", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 index 09eca93c54..f765f850c8 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "aBAXeSGAYu5QgS8m", "name": "0.20mm Standard @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 b91e674d2b..003a8287ae 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,9 +1,10 @@ { "type": "process", "name": "0.20mm Standard @Creality K1 SE", + "renamed_from": "0.20mm Fast @Creality K1 SE 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eR9pRC1qPENNx8U9", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", @@ -264,4 +265,4 @@ "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 index d52f146a9c..85de09803b 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RBEfIJsnl68JBPDc", "name": "0.20mm Standard @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 0b069abf9b..c33dc038f5 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Pby5sWLEKpBaKwmM", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 index 8bb9385441..7957e09303 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KXIWcAo9MAwFwT70", "name": "0.20mm Standard @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 29d8f1e966..cea8966d46 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K1Max (0.4 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9nvA5UDQGFATLeFj", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 index bc89ccbd43..a617d8e2b4 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "x8wjQRt9jfXwd6cJ", "name": "0.20mm Standard @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 6bcc74a3e7..ab4c3c4581 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4xypdknoIfLrsbrs", "name": "0.20mm Standard @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 1350c85b16..9faaa2515e 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K2 Plus 0.4 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mizZLMHcJyRoiOns", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 2c1f8c101d..d46a33f97e 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Creality K2 Pro 0.4 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "SBpBguQF77R7zhIn", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index 1e307f7ada..39876b77dd 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "eXLuYlHmWAomEpIp", "name": "0.20mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 8e01c7beb3..11e1f6ed45 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VxY2jazB2Kn4930i", "name": "0.20mm Standard @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json index f788c8bd05..d06447035a 100644 --- a/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.20mm Standard @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "J3IzdE5HVwBrHM7u", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", 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 index 9698496c5e..e98933167c 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wApX9tYxw2iElGhq", "name": "0.20mm Strength @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", 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 d9bf928fd3..d84217d2ff 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 @@ -3,7 +3,7 @@ "name": "0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "IQ46eLxYaNLrl7Ll", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "25%", diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json index 694729f607..010b4aecbf 100644 --- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Detail @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qeRmEOFZkFm80rgB", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 11d1599967..0d11e5ac33 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fIlqMCEz5fbmGHKW", "name": "0.24mm Detail @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json index ded1805cf7..4e6400fb7c 100644 --- a/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Detail @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "1GYsJKbRc2h4iBtx", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json index 5dc2d42da2..613aba63aa 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cbNntwjFVQBR2zAp", "instantiation": "true", "initial_layer_line_width": "0.4", "inner_wall_line_width": "0.4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json index cfb09407b8..9280c29399 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "G7ctnH4ZOpQUZ31B", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json index 1a68b61f3d..0b24f4d0b7 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10Max.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10Max", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5RGkaM3sTHAC90DK", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json index 2daa3e4780..5b1ef5fde1 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.2", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "mEhTPVNyKIXwHM6R", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json index beed9d22e0..19d6768727 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.4", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qZkT2BU9Kg4n9tnF", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json index 70125a1e71..68257a4de4 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.6", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "g0NQSWW3BZbgAMRl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json index f14846bb91..0c9c307c6b 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality CR10SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality CR10SE 0.8", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "ZdimPQfRwZ0VDiZM", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", 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 index 739e513d98..494a97b4e4 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "JxRqFqk1obhdGIKZ", "name": "0.24mm Draft @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json index d8341c6e2c..6f950b8905 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5bb8SQOestc8UdQe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json index 350ab85b0d..5458a1290e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sP41jQScaMnkdanj", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json index 0d5408f2d3..c2cffefbc8 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5z5F9heoZFK48zCY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json index d5810c30eb..5b0b8ef11a 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "61RvRyfbHgGvr6eQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json index 5f516fa85a..6dfcdc172a 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nDVndS7HUxU2wT2D", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json index fdb1fffbbd..f0e543f232 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jGm1nCGpwxxtCtvT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json index 86622ea116..80ee65edbd 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2eTryig3fd51wgQ3", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json index 2fd28e7bdc..ad27324794 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3Q7LIYMDI349jST9", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json index d58525f88c..653d012433 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZLzHZO4Db6sjb1f1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json index f7c166659b..231e7a82ff 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mxnyxP2RYe284OB7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json index d73eb62f03..a55b4541b3 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5sa2VFy1tjN907oW", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json index 2d8ec5d24e..e20cc6741e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3S1Plus 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3S1Plus 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MadcYvntjYi46IDu", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json index 8981dc22d1..5b8482f537 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "u9TtIf0XBhnWrwND", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json index 38035d47cc..73c5f253ce 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V2Neo.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V2Neo", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "De7wK4KBVZ2BzRx5", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json index 02d33b8053..c4669560cf 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "O0jM8sqvBLR5aNfE", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json index 2ef4de4766..f4374f84d0 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3KE.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3KE", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "7ZtffBsXW6wPWj7k", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json index 569915e682..0c781beb53 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "lH3j14miQE62zlSj", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json index 02579576b9..93a2507428 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "0SJNhii84pYiz380", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json index 43dabd0352..beefae6aa5 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.4.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Draft @Creality Ender3V3SE 0.4", + "renamed_from": "0.24mm Draft @Creality Ender3V3SE", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Hg10EUNCLMEYYBN1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json index ec608a8ee8..17015f12de 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6F8olUrpFz6cSOfX", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json index a8ce7517b9..f0c9c02f7e 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender3V3SE 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender3V3SE 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L6Qdsyt0yW2TCRyk", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json index 98777f55ed..0e0eb4dc85 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.3", "inherits": "fdm_process_creality_common_0_3", "from": "system", - "setting_id": "GP004", + "setting_id": "qY5OF3zSgw1CgQE3", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json index be30a577fd..63dc2bc305 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "JcUNh8xuFZU7JtzC", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json index db83d06a56..6049703a62 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "jTNglevzxKhVH218", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json index 348f865f5b..942736f2cd 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "qIGeTJF0GsWz3eHi", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json index 7dddd3ffbc..0d210f5c9f 100644 --- a/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json +++ b/resources/profiles/Creality/process/0.24mm Draft @Creality Ender5Pro (2019).json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Creality Ender5Pro (2019)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "k1Qi7hPIAi1qp7cA", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", 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 d39b286231..1fce19f64e 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "csR8yY0OEnt7SU6T", "name": "0.24mm Draft @Creality Hi", "from": "system", "instantiation": "true", 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 c23e8deda3..051a14e1d4 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "NGQAnSKnUVHcq0sR", "name": "0.24mm Draft @Creality K1 (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index 9d56a6c18a..8170eb02d6 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Lxyn5qXHZh4GIGS1", "name": "0.24mm Draft @Creality K1 Max_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 fc980090a1..349601c857 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KJc1HuWgcYJkoy32", "name": "0.24mm Draft @Creality K1 SE", "from": "system", "instantiation": "true", 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 index 62dd4205e7..40ecd965b1 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "dPPC73WnlF20wbsm", "name": "0.24mm Draft @Creality K1 SE_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 ae9a1ac46a..ef58869e10 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "POMxfD8I0LnZO9CB", "name": "0.24mm Draft @Creality K1C", "from": "system", "instantiation": "true", 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 index b0e564cf7f..af9f2c5b86 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wGXybdgPzFWozZLw", "name": "0.24mm Draft @Creality K1C_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 bddcae6475..cea238f1f3 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rIeugRR6BYXplcpT", "name": "0.24mm Draft @Creality K1Max (0.4 nozzle)", "from": "system", "instantiation": "true", 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 index 123c8d0cf8..5f91995b41 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vGw6lrXZLHRNpR6r", "name": "0.24mm Draft @Creality K1_CFS-C 0.4 nozzle", "from": "system", "instantiation": "true", 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 7c62e7f31a..cb761dd7cd 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "G1PKSuPoCcbIA7Yh", "name": "0.24mm Draft @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 97e7ad3dfb..4676faab10 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sPONNeyRg4CxHD1r", "name": "0.24mm Draft @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", 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 e278f34862..7c1f71451e 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7V16er03IuXDpO4U", "name": "0.24mm Draft @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 1585d76d7f..f8c9f5dea6 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1E0byJ2cjuoubstC", "name": "0.24mm Draft @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json index 6e431b1c9f..2591c462cf 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5AsxUtH9OwzU3bCJ", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json index 99f6243ba4..5d8dd67e1f 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "s3qAAYV2gY2x4rrB", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json index 43243f293f..1d9da9088e 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "w5MuLpLSpMMuLXwf", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json index 092a147f69..edb3f7e2db 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality Hi", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "7uxCpPqUS9Lz1TK8", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json index 0478023aeb..3af9088dcd 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "GDs3Z2oIlW5O1tCx", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json index 0262d0399d..9e582fad28 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "eF3su8pOiDbEHiOy", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json index 09d00f1c80..cf81e4557b 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K1Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "IZxO4Gmrh0sqyiC8", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json index 4c11a63d12..d57ff66332 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "t6bRCLDbbyLL2Iti", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 cef771146d..7cefcf50f9 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rFcFwPDRfrVVWCmp", "name": "0.24mm Optimal @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json index 11672e16e1..8a246c2245 100644 --- a/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "3Pbmrd0qM9D2TjD7", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index 0da8577620..ab6b0843f4 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7DN0tghSeRVYQcde", "name": "0.24mm Standard @Creality K2 SE 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json b/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json index 5b50f4224c..b67ba120ee 100644 --- a/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json +++ b/resources/profiles/Creality/process/0.28mm Standard @Creality Sermoon V1.json @@ -3,6 +3,7 @@ "name": "0.28mm Standard @Creality Sermoon V1", "inherits": "fdm_process_creality_common", "from": "User", + "setting_id": "ATC7ZredxtE2vMZX", "instantiation": "true", "accel_to_decel_enable": "1", "accel_to_decel_factor": "65%", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json index a1a465742c..bbc6626580 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality CR-6 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2SlYsN3t44qXyLD0", "instantiation": "true", "initial_layer_line_width": "0.4", "initial_layer_print_height": "0.28", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json index 51d6bcd106..711cbe34f1 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AibWSVsNuCytOtQs", "instantiation": "true", "initial_layer_line_width": "0.6", "inner_wall_line_width": "0.6", 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 index 479f6e643d..fcd0453ca2 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nuR9SZ4PCShEC1Cw", "name": "0.28mm SuperDraft @Creality Ender-3 V4 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json index 8152378951..4ca758ed55 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.2.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aQmsfZyAfVbBZ9Lh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json index c45c474d94..79a99fa000 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFne48238nyyTRRV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json index 60b182f7f4..9b6cbd3e33 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1ByZYdK7bEtBcJGG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json index 129d78c47c..59bd2ac292 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "3uR1DRElzIYQ9TDK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json index 71774c9e40..700148dc36 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.2.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.2", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OWrIrHWU7qzlQyqs", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json index 07cef800d2..5a871b4730 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.4.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.4", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yMRcZG70S3Vgb3Qh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json index e075b2758f..2693520fa5 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "N90MCWu17jFkXr2H", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json index 05245178fb..992fc85d7e 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender3 Pro 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm Draft @Creality Ender3 Pro 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jFWnCrXEW5bNSLzq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json index 5067e5586d..b4e0c86367 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "rDgRcrDrPwvYwXcG", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json index dad9ba7627..d0c557248c 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "X8qxYqqSFZnxd19W", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json index 3c0d4495d4..c55b785ef3 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "TG4mn27pdWiYkLcE", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json index 573a583e57..2caba2b00c 100644 --- a/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json +++ b/resources/profiles/Creality/process/0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0.json @@ -3,7 +3,7 @@ "name": "0.28mm SuperDraft @Creality Ender5Pro (2019) 1.0", "inherits": "fdm_process_creality_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "MQ2804jOSZWXAebc", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", 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 index a47ef553a5..a416d5e082 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "XLp864DPRIWcjHvv", "name": "0.28mm SuperDraft @Creality Hi 0.4 nozzle", "from": "system", "instantiation": "true", 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 9201f90e5d..5686279f27 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ELCUvdTCSg4N4HVC", "name": "0.28mm SuperDraft @Creality K2 0.4 nozzle", "from": "system", "instantiation": "true", 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 b1a8aa4ed0..3b2f7e5cc1 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lFZeFNWUsNRW3bvN", "name": "0.28mm SuperDraft @Creality K2 Plus 0.4 nozzle", "from": "system", "instantiation": "true", 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 bcd5f52e3e..39760a5c12 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KO1MgETYTo42CfhQ", "name": "0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 840f9c37d1..e0538e6868 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ruhDJCxvTN1nB60Z", "name": "0.28mm SuperDraft @Creality SPARKX i7 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 89d578685f..b3499fa406 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "bG25lTbxHzhcGGQg", "name": "0.2mm Standard @Creality Ender-5 Max 0.4 nozzle", "from": "system", "instantiation": "true", 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 index a488452fd3..248cfee870 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7i9DCEZHvxgrYciY", "name": "0.2mm Ultrafast @Creality Ender-5 Max 0.4 nozzle", "from": "system", "instantiation": "true", 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 index 2abac933aa..14950f486e 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "eoPcs8fDihwCYFUB", "name": "0.30mm Standard @Creality Ender-5 Max 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json index e905f5722e..92a4a8fc48 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "KZjGEI0aqppw5c55", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json index 9e965bb7fd..f1f3d5ce1a 100644 --- a/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.30mm Standard @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "MX5VSmoPcOiBESP3", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "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 5a0b1e32e6..a0bce0af8a 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality Hi", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lr1fzkgfsPpuA0Zf", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 719cf90ac9..1259ac5186 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VtGpA1x62eB3getK", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 index 5647b5c1b2..81e54598e3 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qd4AsuXVsp5pvPg4", "name": "0.30mm Standard @Creality K1 SE 0.6 nozzle", "from": "system", "instantiation": "true", 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 be3ee03041..71ecb52e77 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ed8ZesknG151hgZX", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 d117228607..db9e4b1539 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uVKIDPK3qutnmyAh", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 f4a7b68a7b..71facd89ff 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nRmO47B1VhqIi2KU", "name": "0.30mm Standard @Creality K2 0.6 nozzle", "from": "system", "instantiation": "true", 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 b0e5b3edbb..216d964e6e 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K2 Plus 0.6 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TsIizwNZCBnNgi40", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 9687b3d3d4..2bf82bc989 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 @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BUhyANei4GEhKLTW", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index 1b409fd733..4da92d3732 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "obWYPAVrLuKr93Xe", "name": "0.30mm Standard @Creality SPARKX i7 0.6 nozzle", "from": "system", "instantiation": "true", 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 index df426cfb27..c9a7069a2a 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "h9vwxtNQGvgHVldi", "name": "0.30mm Strength @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json index 071dd4971a..b7eccb8181 100644 --- a/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.32mm Chunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Chunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "i2NGg5j1cOMUg3dV", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json index c776855ea8..24fedd0965 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Rc7DUtP8slk0zORl", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json index e29ddb6224..2823947840 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "8Yz1tYKgOhlRhEFw", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json index 8d71d28d23..40f87281de 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K1Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "yDUagPaIFkVkQ7aL", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json index c83260e5fb..e376b9dfe3 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "rILba4gO1UHpLOvR", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 b96c9fb773..ca58516410 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wUXKe2HJBnrZhwCJ", "name": "0.32mm Optimal @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json index b014c7caba..0308bb49f6 100644 --- a/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "PuP3yqQ2A2lyV3Yj", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json index 9a168fbae2..acc5ad1799 100644 --- a/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.32mm Standard @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CIUMFumfUJFKdvX5", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json index f4d2d8c775..469ed08efe 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.5.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.5", "inherits": "fdm_process_creality_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "9AtwZLm4o2axDjSS", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json index c3caeaa86c..c8428476c1 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.6.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.6", "inherits": "fdm_process_creality_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "6peLlnuQw6zXrrxU", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json index 06db3a9f69..db5b10390a 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 0.8.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 0.8", "inherits": "fdm_process_creality_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "CoomSxI6M1Rova9H", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json index 2c57376dec..f007be85a1 100644 --- a/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json +++ b/resources/profiles/Creality/process/0.36mm Chunky @Creality Ender5Pro (2019) 1.0.json @@ -3,7 +3,7 @@ "name": "0.36mm Chunky @Creality Ender5Pro (2019) 1.0", "inherits": "fdm_process_creality_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "qtcNXGin91FacpuI", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json index ac233e0ed9..f12fb8b016 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Ender-3 V3", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "5L1oQB22HBdoaocC", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json index 31da21a8e8..7a1a3c401d 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Ender3V3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Ender-3 V3 Plus", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "r3dweAtprgzF0jON", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json index 9c298e294c..0ada896430 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality Hi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality Hi", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "lD86ZxmhqaFLOXs7", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json index 19e33f70b6..d3de4eb889 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1 (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "XCDNFQBF7Kx54Z2Y", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json index b50880bc35..86e132abb4 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1C", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "3yO02rZelrUrGct2", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json b/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json index 2f15d8beb3..69d90fbef6 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K1Max (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K1Max (0.6 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "OzKdcW8QjYz9Ekfg", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json index daefc0b4cf..da7ca48be3 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "Zom4bHm3tVvrBUNT", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 2048cb6157..8edd6e869f 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "psLMoG691hQ5PSrK", "name": "0.36mm Draft @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json index f82d03a910..955f1332ed 100644 --- a/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "AspPZdlIrck9YRnK", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json index 499ea87e28..d9308a459c 100644 --- a/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.36mm SuperChunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.36mm SuperChunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjaKqX7JvptQVfBK", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json index b2e2e42c18..e46d858e3e 100644 --- a/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.40mm Draft @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Draft @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sVOrg0HAqRIDG2w2", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", 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 index 3d128646b0..15943f5c2c 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7HQvsdltfdC8N5Hw", "name": "0.40mm Standard @Creality Ender-5 Max 0.8 nozzle", "from": "system", "instantiation": "true", 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 index 343567c396..aa0efb8f49 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1xCIS6DBlkVcCLSf", "name": "0.40mm Standard @Creality Hi 0.8 nozzle", "from": "system", "instantiation": "true", 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 0f7db77d2d..5f61b218bc 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "x9a89wcgTxjzVjZz", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 6b419734c2..d5d5d62cda 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1C", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "caYmVSsFmtESzLNF", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 95a72213be..793c6aa43e 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RGMrzd8TBanSP6xu", "instantiation": "true", "reduce_crossing_wall": "0", "max_travel_detour_distance": "0", 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 57415361fa..b084f1cf47 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "mvjFUBLuSrZ1fm1e", "name": "0.40mm Standard @Creality K2 0.8 nozzle", "from": "system", "instantiation": "true", 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 1600399ef2..3baf52acf5 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K2 Plus 0.8 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BYecvyH9OxIQptiV", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 b32c6e2205..df23b1f46c 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 @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "KGJHKj8Ay4MvxoQo", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 index 6f874eaa6e..13c3d5986f 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "auHhZ5g7PonLi942", "name": "0.40mm Standard @Creality SPARKX i7 0.8 nozzle", "from": "system", "instantiation": "true", 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 index 7f8f655787..c164cd88d4 100644 --- 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 @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "DPs3K2D8t8dGscqK", "name": "0.40mm Strength @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json index 50457c1e24..d732c7015c 100644 --- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm SuperDraft @Creality K2 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "YKODZ4gYFKzhqOvi", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 dd00eadd96..d3076515c9 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "kaJFaxUX6gSqC3Y7", "name": "0.42mm SuperDraft @Creality K2 Plus 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json index d9f0959b3c..78bd43a0d9 100644 --- a/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json +++ b/resources/profiles/Creality/process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "u3WhUBaMsyl3SoDf", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json b/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json index 72a7e5f7d6..1dbda2a495 100644 --- a/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json +++ b/resources/profiles/Creality/process/0.44mm SuperExtraChunky @Creality CR-6 0.6.json @@ -3,7 +3,7 @@ "name": "0.44mm SuperExtraChunky @Creality CR-6 0.6", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jiQuYkeeEAwzjGG3", "instantiation": "true", "initial_layer_line_width": "0.6", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json index 6818f20a6e..b2efb112b8 100644 --- a/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.48mm Chunky @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Chunky @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "NmfLWGvRJPpKu5u7", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json index d5472ace50..a19aca4ffa 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "8jeYHcPaST4fPfdS", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json index 10f4493437..3fa885318e 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K1 (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "VMUL5DemqZSKkMEJ", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json index e5a5b03fbd..600550ddc5 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1C 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.48mm Draft @Creality K1C", + "renamed_from": "0.48mm Draft @Creality K1C (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "qaiff3f8gSQ1GVj1", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json b/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json index 4f01dc0284..6041d4c030 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K1Max (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K1Max (0.8 nozzle)", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "dIWKOSX80OJ6ixTT", "instantiation": "true", "adaptive_layer_height": "0", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json index e756cf5662..b3508aab5c 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "FNzDj9zM5RpSsl5G", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 51edc7fdc8..97da7fe92e 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "s3FIq2ua0ODDqxtm", "name": "0.48mm Draft @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json index fabf726886..0cd49b9a89 100644 --- a/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "a0WvgiAOiZNdDH5v", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json b/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json index 556e56374b..665d997917 100644 --- a/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json +++ b/resources/profiles/Creality/process/0.56mm SuperChunky @Creality CR-6 0.8.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperChunky @Creality CR-6 0.8", "inherits": "fdm_process_creality_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UVGdubKQHMSFdmZC", "instantiation": "true", "initial_layer_line_width": "0.8", "initial_layer_print_height": "0.4", diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json index 639614fe30..5f97213187 100644 --- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperDraft @Creality K2 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "5gHJtDqiuLKojo0s", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", 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 02500bd723..8113cadf74 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,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "OUVOMZEwJDilvXiO", "name": "0.56mm SuperDraft @Creality K2 Plus 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json index 26e7adae74..3b12ac6944 100644 --- a/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json +++ b/resources/profiles/Creality/process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle", "inherits": "fdm_process_common_klipper", "from": "system", - "setting_id": "GP004", + "setting_id": "4jnNAHfqD3BPN5bO", "instantiation": "true", "max_travel_detour_distance": "0", "bottom_surface_pattern": "monotonic", diff --git a/resources/profiles/Cubicon.json b/resources/profiles/Cubicon.json index 906d06fea4..9f2100a187 100644 --- a/resources/profiles/Cubicon.json +++ b/resources/profiles/Cubicon.json @@ -1,6 +1,6 @@ { "name": "Cubicon", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Cubicon configurations", "machine_model_list": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json index d1bf840e78..ca0143d65c 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABS @base", + "setting_id": "VJEyK87ZYvHmamB9", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json index fc7c587a79..72b2c51e50 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABS @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABS @base", "from": "system", + "setting_id": "Kz41mb2M9xLbEJ97", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json index 83cba08533..38a00a4624 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABS @base", + "setting_id": "A5FQdwh0Xo7aTRpq", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS @base.json b/resources/profiles/Cubicon/filament/Cubicon ABS @base.json index 94959c5e2c..55fbd40ee4 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS @base", "inherits": "fdm_filament_abs", + "setting_id": "aZRVIlDze62Bbw81", "filament_id": "P510cfb0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json index 0260033674..897f3cceff 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", + "setting_id": "OfiOryklf7FDVCz8", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json index 251c62da89..f0d3715d32 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABS-A100 @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", "from": "system", + "setting_id": "pIyU9uXQ5V3hsg5F", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json index ceb602a4f1..c6965435a0 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABS-A100 @base", + "setting_id": "xhYh9x1vescinfbF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json index 9a4d63093f..dddc147ff2 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABS-A100 @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABS-A100 @base", "inherits": "Cubicon ABS @base", + "setting_id": "vGIT4KZvqojIh2up", "filament_id": "P510cfb1", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json index 0867c3f818..7596fa618a 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon ABSk @base", + "setting_id": "TXcodZkab4fofnEn", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json index c29ccfcd94..63c827c034 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon ABSk @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon ABSk @base", "from": "system", + "setting_id": "CsthNnKn8WlBbkP4", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json index 1518474928..586982ea51 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon ABSk @base", + "setting_id": "UVitMFMxvdf34qZw", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json b/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json index 5d86d9a1a4..e1546d3bae 100644 --- a/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon ABSk @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon ABSk @base", "inherits": "Cubicon ABS @base", + "setting_id": "UbOUO0K3Y2iRPBtf", "filament_id": "P510cfb2", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json index 9eba287e99..c8af313f4f 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PA-CF @base", + "setting_id": "nupuIJggdc1EKDqG", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json index be8baf2290..40aa29b577 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PA-CF @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PA-CF @base", "from": "system", + "setting_id": "NPjuy4deP6Ly7u9s", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json index c7a5e501fa..6e307bed78 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PA-CF @base", + "setting_id": "ygB1Uf9Vbw9LJZc8", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json b/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json index 19893bff84..51c89949f6 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PA-CF @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PA-CF @base", "inherits": "fdm_filament_pa", + "setting_id": "55cJDyCoEudfOePY", "filament_id": "P510cfd0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json index 633a95b27a..b83d690fff 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PC @base", + "setting_id": "c0sUPS0SRYUNjEpB", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json index 010426e159..868ec82e34 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PC @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PC @base", "from": "system", + "setting_id": "XGXjHwuHUjtAJGl1", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json index 5688fd00fe..07a2308add 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PC @base", + "setting_id": "jbYKOK1A0Oxm9t0f", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PC @base.json b/resources/profiles/Cubicon/filament/Cubicon PC @base.json index f6208845db..de42989e84 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PC @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PC @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PC @base", "inherits": "fdm_filament_pc", + "setting_id": "Mzg6jfwb2nqfGkdV", "filament_id": "P510cfd0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json index b69f044a4b..62a4f58c53 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PETG @base", + "setting_id": "dsX01tCkd2Usk104", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json index f235fdae31..9c1108a73f 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PETG @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PETG @base", "from": "system", + "setting_id": "2hYoCR5qUXCWIAxZ", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json index 653f28d956..14a23cc728 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PETG @base", + "setting_id": "5pfiRdyNz9dvT4Q6", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PETG @base.json b/resources/profiles/Cubicon/filament/Cubicon PETG @base.json index d542c07ac7..2242ba36ca 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PETG @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PETG @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PETG @base", "inherits": "fdm_filament_pet", + "setting_id": "bGfz4phwIdqSz0Hx", "filament_id": "P510cfc0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json index 46cdf9c3b2..bca40b2814 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "xXJgHAeNf1JdCitr", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json index a20941edc4..54ffbd694c 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "o2BQL6OKtxDmBkWV", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json index 701d943638..04cac6ab7d 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLA @base", "from": "system", + "setting_id": "WkZrzDlGvb25OtrF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA @base.json b/resources/profiles/Cubicon/filament/Cubicon PLA @base.json index e0171ba849..665ba58d59 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA @base.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA @base", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "ypwdJAu0NlEsWpf4", "filament_id": "P510cfa0", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json index aa8aa25907..7442cf2490 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "fNR2Bw3e4TGcWhq0", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json index ed368f5214..76a31d14c1 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "wukhnaCJaOLUUdiU", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json index 87a63d163b..2f37996fe3 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLA+ @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLA+ @base", "from": "system", + "setting_id": "JVShu8DKQ3euGHec", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json b/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json index 6249d26ae4..cb916a9410 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLA+ @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PLA+ @base", "inherits": "Cubicon PLA @base", + "setting_id": "ETnuhiOZRh1jxrVk", "filament_id": "P510cfa1", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json index 2542bab343..10d2a2e6ae 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-I 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "vcLVF3cglagBfVAF", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-I 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json index 10ddfff715..73404c4729 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "3TbOucKB5TGk8sXG", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Mini 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json index 0520061f6c..0769e1fa3d 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon PLAi21 @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "Cubicon PLAi21 @base", "from": "system", + "setting_id": "Vm1oDASHoFUfDrzQ", "instantiation": "true", "compatible_printers": [ "Cubicon xCeler-Plus 0.4 nozzle" diff --git a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json index 12248aab69..831450deef 100644 --- a/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json +++ b/resources/profiles/Cubicon/filament/Cubicon PLAi21 @base.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Cubicon PLAi21 @base", "inherits": "Cubicon PLA @base", + "setting_id": "mnwC7ijXXV72lBOt", "filament_id": "P510cfa2", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json index 8475363345..140b31986c 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-I 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-I 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "Num5CMrrTDvWXQVQ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json index 1bb60aa4bb..451e4716d2 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-Mini 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-Mini 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "rr7eQd0tw3utAK9f", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json index f2daeafb40..483c82be07 100644 --- a/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/machine/Cubicon xCeler-Plus 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Cubicon xCeler-Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "7HzIqD1n0ns79wV1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json index b7a4a58b16..6ec66414f4 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-I 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-I 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "atkrxehaOoWETk2P", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-I 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json index fc67c0ddd8..45357dae55 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Mini 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-Mini 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "M1SrvVfJvyiFUKDZ", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-Mini 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json index 8753060f49..3f87a73bd2 100644 --- a/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json +++ b/resources/profiles/Cubicon/process/cubicon default @Cubicon xCeler-Plus 0.4 nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "cubicon default @Cubicon xCeler-Plus 0.4 nozzle", "inherits": "cubicon common @base", + "setting_id": "SZJtXlK6E6XAKk1Z", "instantiation": "true", "print_settings_id": "cubicon default @Cubicon xCeler-Plus 0.4 nozzle", "compatible_printers": [ diff --git a/resources/profiles/Custom.json b/resources/profiles/Custom.json index 2f9eeefd34..a416f17db0 100644 --- a/resources/profiles/Custom.json +++ b/resources/profiles/Custom.json @@ -1,6 +1,6 @@ { "name": "Custom Printer", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "My configurations", "machine_model_list": [ diff --git a/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json b/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json index 20a7e25159..1683513dbd 100644 --- a/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic ABS @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ABS @MyToolChanger", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFB99_MTC_0", + "setting_id": "h83PqSYsAi8yZyg0", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json index 0831a730a3..5cc46deb7e 100644 --- a/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic ASA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ASA @MyToolChanger", "inherits": "Generic ASA @System", "from": "system", - "setting_id": "GFB98_MTC_0", + "setting_id": "WllFTKxFejz4prhD", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json index 2c39844b1c..0c8918427d 100644 --- a/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA @MyToolChanger", "inherits": "Generic PA @System", "from": "system", - "setting_id": "GFN99_MTC_0", + "setting_id": "Lw6e7YMy0J5Flnjj", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json index 12ba0260bd..a7d86885ef 100644 --- a/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PA-CF @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA-CF @MyToolChanger", "inherits": "Generic PA-CF @System", "from": "system", - "setting_id": "GFN98_MTC_0", + "setting_id": "0NPQJ9aRrfjAqLeX", "instantiation": "true", "filament_cooling_final_speed": [ "3.5" diff --git a/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json index c6111c31dc..d80b197394 100644 --- a/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PC @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PC @MyToolChanger", "inherits": "Generic PC @System", "from": "system", - "setting_id": "GFC99_MTC_0", + "setting_id": "HMOa2jbj19Xjipt5", "filament_id": "GFC99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json index fcb7b39932..693551c428 100644 --- a/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PETG @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PETG @MyToolChanger", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFG99_MTC_0", + "setting_id": "4qShNrl9EWAVBfeG", "filament_id": "GFG99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json index 36b6c953e6..cf1db6e225 100644 --- a/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PLA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA @MyToolChanger", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFL99_MTC_0", + "setting_id": "WbAYFZdqFwEZnNAX", "filament_id": "GFL99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json index 77b7d53eb2..6ae729d622 100644 --- a/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PLA-CF @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA-CF @MyToolChanger", "inherits": "Generic PLA-CF @System", "from": "system", - "setting_id": "GFL98_MTC_0", + "setting_id": "53UFt3Q63NB0ztlP", "filament_id": "GFL98", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json b/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json index e020420311..ccb6d16c73 100644 --- a/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic PVA @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PVA @MyToolChanger", "inherits": "Generic PVA @System", "from": "system", - "setting_id": "GFS99_MTC_0", + "setting_id": "dyOUyXNOKP1VmSal", "filament_id": "GFS99", "instantiation": "true", "filament_cooling_final_speed": [ diff --git a/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json b/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json index 60766cfe91..c88ee2da7d 100644 --- a/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json +++ b/resources/profiles/Custom/filament/Generic TPU @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic TPU @MyToolChanger", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFU99_MTC_0", + "setting_id": "H45dfn4BGdLAx9nN", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json index 7482023bfc..c7686998c0 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FONwo6mjzIUC1Jfw", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json index 69e9278b7b..6c5bd3fc83 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h7lWobw9IAl6rIFf", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json index a1ead42f83..35a5ca033f 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "ealoRWEBVYdKQwY4", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json b/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json index 8535e01ad2..1dd4e563cf 100644 --- a/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json +++ b/resources/profiles/Custom/machine/MyKlipper 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "MyKlipper 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "ameNjll5Z5Ptmvko", "instantiation": "true", "printer_model": "Generic Klipper Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json b/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json index c6e85bfbe4..a8cff74ece 100644 --- a/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyMarlin 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyMarlin 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "80333z8YjBojDweT", "instantiation": "true", "printer_model": "Generic Marlin Printer", "gcode_flavor": "marlin", diff --git a/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json b/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json index 41e31fa6d4..492f696697 100644 --- a/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyRRF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyRRF 0.4 nozzle", "inherits": "fdm_rrf_common", "from": "system", - "setting_id": "GM003", + "setting_id": "eweNs9Rgfgftu6Nw", "instantiation": "true", "printer_model": "Generic RRF Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json b/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json index c75ed0fd71..0c06ed2dbe 100644 --- a/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyRepetier 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyRepetier 0.4 nozzle", "inherits": "fdm_repetier_common", "from": "system", - "setting_id": "GM001", + "setting_id": "DQo4iCTagLKPE8Kv", "instantiation": "true", "printer_model": "Generic Repetier Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json index 0be59d3597..0e7d56e99a 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.2 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_001", + "setting_id": "BFnMQPzSH6GHG60z", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json index a36546519b..64a50ed44e 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.4 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_002", + "setting_id": "tJ98aJdTqDwMfyZd", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json index ccbf8df842..fc615ac3d9 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.6 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_003", + "setting_id": "rhZgOdaU0sJu9aYF", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json b/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json index e9619bc815..c019a13181 100644 --- a/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json +++ b/resources/profiles/Custom/machine/MyToolChanger 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "MyToolChanger 0.8 nozzle", "inherits": "fdm_toolchanger_common", "from": "system", - "setting_id": "GM_CUSTOM_004", + "setting_id": "2rsBSbB6oAgBhyy0", "instantiation": "true", "printer_model": "Generic ToolChanger Printer", "nozzle_diameter": [ diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json index c588c2fa17..4cebf36eaa 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qC4SXEgZNVB9eWNQ", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json index 52d9ecda12..70c78226a5 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "F0QIJviBIYDJjJe2", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json index bebebc0183..1c5392cae6 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zhi1tw9y210xSTmh", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json b/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json index 50ad3e7adb..17f9df6cac 100644 --- a/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.08mm Extra Fine @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Xt1tNqoffQCMWaDF", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json b/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json index 3694e58e4e..e275ffeb1a 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "guUxwo1j4TPACM0Z", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json b/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json index 9a3f89861f..64916a585a 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "p7cD7BCjLQtah9z8", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json b/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json index 6a3e18048d..2d30168abf 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Zj9uGAyf8yYuHwRQ", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json b/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json index 65a654ae27..5e3e23f000 100644 --- a/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.12mm Fine @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RjRwftLktZM6uz3u", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json b/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json index 08cdbad871..9036023f45 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CiHtbxYtXnT5bdRM", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json b/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json index b58b9a06aa..13236b3640 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gkXHi7QQxtxIy9V9", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json b/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json index 4435b0d115..dd2d25490e 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TcZOJuBSFK5kB1H8", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json b/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json index 2041229da6..67c34009a8 100644 --- a/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.15mm Optimal @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kZG2HcARq8ZFzUk9", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json b/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json index ed3b011d2b..1a1d9a60b1 100644 --- a/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json +++ b/resources/profiles/Custom/process/0.16mm Optimal @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qMjBH8WRooCfhtTP", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json b/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json index c03f37e74d..fd035549f6 100644 --- a/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.16mm Optimal @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "99y1EZwxDuKQwzv3", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json b/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json index 653745ce1f..bb7c196823 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UkxcnbdZ2LeRvO4x", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json b/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json index 3b2e02cb21..9ea731097b 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zZztMlYzzLA0KiTz", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json b/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json index 96ae4ad435..4c17f18134 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UFkBAddrcwXsuoVt", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json b/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json index bdffd3b647..63023f1cb5 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyRepetier.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyRepetier", "inherits": "fdm_process_repetier_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ny9kvyQ0UjkVAUiY", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json b/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json index 4f718764f7..53dc9dc6c7 100644 --- a/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.20mm Standard @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MHpNmkShui6fTwVu", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json b/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json index 3c4585af42..f54829e461 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "E5SAhAOy240BOYOB", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json b/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json index 9b78cc7520..2f75b3af69 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HjdvHJl5dBqwwOiq", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json b/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json index 86e157061e..4da6be51ee 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lh4F2302iVSyXP0D", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json index e50d54c67d..b16f1bcf0c 100644 --- a/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.24mm Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2V93QpRMBE9OU5Ak", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json index 92dd60529d..0a9a9c3316 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Wxgntm1oFqaS5sSD", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json index 41b509a7f3..dc59a3bc35 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyMarlin.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyMarlin", "inherits": "fdm_process_marlin_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FPRthCpiEQtZgF7W", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json index 88ca77622f..09c9dba77c 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyRRF.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyRRF", "inherits": "fdm_process_rrf_common", "from": "system", - "setting_id": "GP004", + "setting_id": "KWkOr3YqJ2Jf3UAF", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json index f1e573e637..d069bcc819 100644 --- a/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.28mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "q6Bc7ar365O7vKe3", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json index 7925b61548..4db0c96be0 100644 --- a/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.32mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "b3MuRrAWKYtKZM79", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json index 8b30e15a4d..0dcd2fb762 100644 --- a/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.32mm Extra Draft @MyToolChanger.json @@ -4,7 +4,7 @@ "renamed_from": "0.32mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7cM9iT4GyGhmfwHu", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json index e47f1253c3..74bce75980 100644 --- a/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.40mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bc0WLUlEcdg9LWE5", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json index 23f8c49030..4922fdb747 100644 --- a/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.40mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BnN85WtRYfMwpdV0", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json b/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json index af4e91133a..f470958a24 100644 --- a/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json +++ b/resources/profiles/Custom/process/0.56mm Extra Draft @MyKlipper.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MyKlipper", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ivoHEUPxZxSxGmrh", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json b/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json index d4430b5949..226610bfc2 100644 --- a/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json +++ b/resources/profiles/Custom/process/0.56mm Extra Draft @MyToolChanger.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MyToolChanger", "inherits": "fdm_process_mytoolchanger_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Pky5GvEuSlaG1Lvm", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/DeltaMaker.json b/resources/profiles/DeltaMaker.json index 7942285ce0..c583fa9a16 100755 --- a/resources/profiles/DeltaMaker.json +++ b/resources/profiles/DeltaMaker.json @@ -1,7 +1,7 @@ { "name": "DeltaMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "DeltaMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json index 72f7456da5..2d905807fb 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Brand PLA.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Brand PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "bvZOHe5ejWqBALPQ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json index 43fe54ab89..32980cb53e 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PETG.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qlQo6a93esZv2l9a", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json index f168a30feb..d4b8ab071c 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic PLA.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gfxr3MiE4uI2Xxy7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json index b13c7f283b..e971b6884c 100755 --- a/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json +++ b/resources/profiles/DeltaMaker/filament/DeltaMaker Generic TPU.json @@ -3,7 +3,7 @@ "name": "DeltaMaker Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2L1U33wC0LofrMWs", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json index 8d5750237e..f28c54eedc 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2 0.35 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2 0.35 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NTiJoA5DUUwU1CZj", "instantiation": "true", "printer_model": "DeltaMaker 2", "default_print_profile": "0.18mm Standard @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json index 95852485bf..4f83ddb32e 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2T 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2T 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "CeQZogChydf6LWWJ", "instantiation": "true", "printer_model": "DeltaMaker 2T", "default_print_profile": "0.18mm Standard @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json b/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json index ef9adeb1c1..5ce9d45438 100755 --- a/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json +++ b/resources/profiles/DeltaMaker/machine/DeltaMaker 2XT 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "DeltaMaker 2XT 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OdZvaBNZMQ92kyMg", "instantiation": "true", "printer_model": "DeltaMaker 2XT", "default_print_profile": "0.25mm Draft @DeltaMaker", diff --git a/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json index 3fed9adda9..0a91d39e61 100755 --- a/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.12mm Fine @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1PB7NQusFgxcaby7", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json index 81af018751..f103523bea 100755 --- a/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.18mm Standard @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "li5wp7qybRMu46nM", "instantiation": "true", "layer_height": "0.18", "sparse_infill_density": "15%", diff --git a/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json b/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json index 4664fe2d2b..a5a64bfede 100755 --- a/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json +++ b/resources/profiles/DeltaMaker/process/0.25mm Draft @DeltaMaker.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @DeltaMaker", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CPkjzrLXDcdnT5u1", "instantiation": "true", "adaptive_layer_height": "1", "layer_height": "0.25", diff --git a/resources/profiles/Dremel.json b/resources/profiles/Dremel.json index 8988c73e45..c8462f0414 100644 --- a/resources/profiles/Dremel.json +++ b/resources/profiles/Dremel.json @@ -1,6 +1,6 @@ { "name": "Dremel", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Dremel configurations", "machine_model_list": [ diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json index d797149e66..7e76e2404b 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D20 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D20 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "weKWPiNIe3TmOXRn", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json index ec044649b4..8074c6f0a3 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D40 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D40 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "kZAEjhLS29WQeyf1", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json index 66dda5685d..fb9c31fe0e 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA @3D45 all.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA @3D45 all", "inherits": "Dremel Generic PLA", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "pIlkZjNrXnHJDszp", "instantiation": "true", "slow_down_min_speed": "10", "close_fan_the_first_x_layers": "3", diff --git a/resources/profiles/Dremel/filament/Dremel Generic PLA.json b/resources/profiles/Dremel/filament/Dremel Generic PLA.json index 0c42475d3d..b5263d20f3 100644 --- a/resources/profiles/Dremel/filament/Dremel Generic PLA.json +++ b/resources/profiles/Dremel/filament/Dremel Generic PLA.json @@ -3,7 +3,7 @@ "name": "Dremel Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "blJERdJqaaRmRdD4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json index 991f1202a5..ea9490971a 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D20 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D20 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7irNPRvRXZYx348l", "instantiation": "true", "printer_model": "Dremel 3D20", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json index 96907351d3..d37a785099 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D40 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D40 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "w1AWyuB0zfTVidRz", "instantiation": "true", "printer_model": "Dremel 3D40", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json b/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json index fa0554e1c2..8d6b26f34b 100644 --- a/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json +++ b/resources/profiles/Dremel/machine/Dremel 3D45 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Dremel 3D45 0.4 nozzle", "inherits": "fdm_dremel_common", "from": "system", - "setting_id": "GM001", + "setting_id": "75f7dk1mwCHV6473", "instantiation": "true", "printer_model": "Dremel 3D45", "printer_variant": "0.4", diff --git a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json index 70d7ac7c68..6b97a85444 100644 --- a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".05mm Super Detail @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "9KpA5yblUW2rVLZY", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json index c258ed66a0..734b6e5c69 100644 --- a/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.05mm Super Detail @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".05mm Super Detail @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "wSAun08YCT9u9pOY", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json index 0fb604e7eb..716b2ca2dc 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "n2k8VXfPE45lzxmq", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json index 8dc370929f..6089ca8f5b 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "1dgGvgPtncRPdWVX", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json index bc6320aa9a..ad07216741 100644 --- a/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.10mm Detail @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".10mm Detail @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "DXivoqKpf6E0edQV", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json index 806f2dc410..358fef4448 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "1EacU2rT7gdsnkP4", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "0.95", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json index 5e0ca380fd..4c083240de 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "iraCyWuqWZ9D0Zw1", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json index 5b944d03e0..a974c3097b 100644 --- a/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.20mm Standard @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".20mm Standard @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "DU8Yd6C1GF2uIuNF", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json index 54db7ee97c..5d16155453 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D20 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D20 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "iX1Z2gHIGCWuZAJC", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json index aadef62ab2..27175afdf2 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "N3x1hdUv74ecskhv", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json index 82ca5e96ec..ca224bf687 100644 --- a/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.30mm Draft @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".30mm Draft @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "O6ulsZPXdb1dpOTB", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json index 34a2093bb7..8db1965a59 100644 --- a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json +++ b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D40 0.4.json @@ -3,6 +3,7 @@ "name": ".34mm SuperDraft @Dremel 3D40 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "WMm4Yxia1QjZCK3h", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json index c791a08b9b..d7a6db964e 100644 --- a/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json +++ b/resources/profiles/Dremel/process/.34mm SuperDraft @Dremel 3D45 0.4.json @@ -3,6 +3,7 @@ "name": ".34mm SuperDraft @Dremel 3D45 0.4", "inherits": "fdm_process_dremel_common", "from": "system", + "setting_id": "verN5otUrqpeDtY4", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Elegoo.json b/resources/profiles/Elegoo.json index dd18bac848..077c264b84 100644 --- a/resources/profiles/Elegoo.json +++ b/resources/profiles/Elegoo.json @@ -1,2234 +1,2454 @@ { - "name": "Elegoo", - "version": "02.04.00.04", - "force_update": "0", - "description": "Elegoo configurations", - "machine_model_list": [ - { - "name": "Elegoo Centauri", - "sub_path": "machine/EC/Elegoo Centauri.json" - }, - { - "name": "Elegoo Centauri Carbon", - "sub_path": "machine/ECC/Elegoo Centauri Carbon.json" - }, - { - "name": "Elegoo Centauri Carbon 2", - "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2.json" - }, - { - "name": "Elegoo Neptune", - "sub_path": "machine/EN2SERIES/Elegoo Neptune.json" - }, - { - "name": "Elegoo Neptune 2", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2.json" - }, - { - "name": "Elegoo Neptune 2D", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D.json" - }, - { - "name": "Elegoo Neptune 2S", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S.json" - }, - { - "name": "Elegoo Neptune 3", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 3.json" - }, - { - "name": "Elegoo Neptune 3 Max", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max.json" - }, - { - "name": "Elegoo Neptune 3 Plus", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus.json" - }, - { - "name": "Elegoo Neptune 3 Pro", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro.json" - }, - { - "name": "Elegoo Neptune 4", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4.json" - }, - { - "name": "Elegoo Neptune 4 Max", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max.json" - }, - { - "name": "Elegoo Neptune 4 Plus", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus.json" - }, - { - "name": "Elegoo Neptune 4 Pro", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro.json" - }, - { - "name": "Elegoo Neptune X", - "sub_path": "machine/EN2SERIES/Elegoo Neptune X.json" - }, - { - "name": "Elegoo OrangeStorm Giga", - "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga.json" - } - ], - "process_list": [ - { - "name": "fdm_process_common", - "sub_path": "process/fdm_process_common.json" - }, - { - "name": "fdm_process_elegoo_common", - "sub_path": "process/fdm_process_elegoo_common.json" - }, - { - "name": "fdm_process_elegoo_02010", - "sub_path": "process/fdm_process_elegoo_02010.json" - }, - { - "name": "fdm_process_elegoo_04020", - "sub_path": "process/fdm_process_elegoo_04020.json" - }, - { - "name": "fdm_process_elegoo_06030", - "sub_path": "process/fdm_process_elegoo_06030.json" - }, - { - "name": "fdm_process_elegoo_08040", - "sub_path": "process/fdm_process_elegoo_08040.json" - }, - { - "name": "fdm_process_elegoo_10050", - "sub_path": "process/fdm_process_elegoo_10050.json" - }, - { - "name": "0.10mm Standard @Elegoo C 0.2 nozzle", - "sub_path": "process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo CC 0.2 nozzle", - "sub_path": "process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo CC2 0.2 nozzle", - "sub_path": "process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N4 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json" - }, - { - "name": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo C 0.4 nozzle", - "sub_path": "process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo CC 0.4 nozzle", - "sub_path": "process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo CC2 0.4 nozzle", - "sub_path": "process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo Giga 0.4 nozzle", - "sub_path": "process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", - "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", - "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", - "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N4 0.4 nozzle", - "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", - "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", - "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", - "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json" - }, - { - "name": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", - "sub_path": "process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo C 0.6 nozzle", - "sub_path": "process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo CC 0.6 nozzle", - "sub_path": "process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo CC2 0.6 nozzle", - "sub_path": "process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo Giga 0.6 nozzle", - "sub_path": "process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N4 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json" - }, - { - "name": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", - "sub_path": "process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo C 0.8 nozzle", - "sub_path": "process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo CC 0.8 nozzle", - "sub_path": "process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo CC2 0.8 nozzle", - "sub_path": "process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo Giga 0.8 nozzle", - "sub_path": "process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N4 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json" - }, - { - "name": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json" - }, - { - "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" - }, - { - "name": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json" - }, - { - "name": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json" - }, - { - "name": "0.50mm Standard @Elegoo N4 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json" - }, - { - "name": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json" - }, - { - "name": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json" - }, - { - "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" - }, - { - "name": "0.12mm Draft @Elegoo N3Max 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N3Plus 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json" - }, - { - "name": "0.12mm Draft @Elegoo N3Plus 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N3Pro 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json" - }, - { - "name": "0.12mm Draft @Elegoo N3Pro 0.2 nozzle", - "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N4 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json" - }, - { - "name": "0.12mm Draft @Elegoo N4 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N4Max 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json" - }, - { - "name": "0.12mm Draft @Elegoo N4Max 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N4Plus 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json" - }, - { - "name": "0.12mm Draft @Elegoo N4Plus 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json" - }, - { - "name": "0.08mm Optimal @Elegoo N4Pro 0.2 nozzle", - "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json" - }, - { - "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" - }, - { - "name": "0.36mm Draft @Elegoo N3Max 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N3Plus 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N3Plus 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N3Pro 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N3Pro 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle", - "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N4 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N4 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N4 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N4Max 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N4Max 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N4Plus 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N4Plus 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json" - }, - { - "name": "0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json" - }, - { - "name": "0.24mm Optimal @Elegoo N4Pro 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json" - }, - { - "name": "0.36mm Draft @Elegoo N4Pro 0.6 nozzle", - "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json" - }, - { - "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" - }, - { - "name": "0.32mm Optimal @Elegoo N3Max 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N3Max 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N3Plus 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N3Plus 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N3Plus 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N3Pro 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N3Pro 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N3Pro 0.8 nozzle", - "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N4 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N4 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N4 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N4Max 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N4Max 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N4Max 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N4Plus 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N4Plus 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json" - }, - { - "name": "0.48mm Draft @Elegoo N4Plus 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json" - }, - { - "name": "0.24mm Fine @Elegoo N4Pro 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json" - }, - { - "name": "0.32mm Optimal @Elegoo N4Pro 0.8 nozzle", - "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json" - }, - { - "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" - }, - { - "name": "0.40mm Optimal @Elegoo N3Max 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N3Max 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N3Plus 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N3Plus 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N3Plus 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N3Pro 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N3Pro 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N3Pro 1.0 nozzle", - "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N4 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N4 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N4 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N4Max 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N4Max 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N4Max 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N4Plus 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N4Plus 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N4Plus 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json" - }, - { - "name": "0.30mm Fine @Elegoo N4Pro 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json" - }, - { - "name": "0.40mm Optimal @Elegoo N4Pro 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json" - }, - { - "name": "0.60mm Draft @Elegoo N4Pro 1.0 nozzle", - "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 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_hips", - "sub_path": "filament/fdm_filament_hips.json" - }, - { - "name": "fdm_filament_pa", - "sub_path": "filament/fdm_filament_pa.json" - }, - { - "name": "fdm_filament_paht", - "sub_path": "filament/fdm_filament_paht.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_ppa", - "sub_path": "filament/fdm_filament_ppa.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_tpu", - "sub_path": "filament/fdm_filament_tpu.json" - }, - { - "name": "Elegoo ABS @base", - "sub_path": "filament/BASE/Elegoo ABS @base.json" - }, - { - "name": "Generic ABS @base", - "sub_path": "filament/BASE/Generic ABS @base.json" - }, - { - "name": "Elegoo ASA @base", - "sub_path": "filament/BASE/Elegoo ASA @base.json" - }, - { - "name": "Generic ASA @base", - "sub_path": "filament/BASE/Generic ASA @base.json" - }, - { - "name": "Elegoo PAHT @base", - "sub_path": "filament/BASE/Elegoo PAHT @base.json" - }, - { - "name": "Generic PA @base", - "sub_path": "filament/BASE/Generic PA @base.json" - }, - { - "name": "Elegoo PC @base", - "sub_path": "filament/BASE/Elegoo PC @base.json" - }, - { - "name": "Generic PC @base", - "sub_path": "filament/BASE/Generic PC @base.json" - }, - { - "name": "Elegoo PETG @base", - "sub_path": "filament/BASE/Elegoo PETG @base.json" - }, - { - "name": "Generic PET @base", - "sub_path": "filament/BASE/Generic PET @base.json" - }, - { - "name": "Generic PETG @base", - "sub_path": "filament/BASE/Generic PETG @base.json" - }, - { - "name": "Elegoo PLA @base", - "sub_path": "filament/BASE/Elegoo PLA @base.json" - }, - { - "name": "Generic PLA @base", - "sub_path": "filament/BASE/Generic PLA @base.json" - }, - { - "name": "Elegoo TPU @base", - "sub_path": "filament/BASE/Elegoo TPU @base.json" - }, - { - "name": "Elegoo ABS @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json" - }, - { - "name": "Elegoo ABS @EC", - "sub_path": "filament/EC/Elegoo ABS @EC.json" - }, - { - "name": "Elegoo ABS @ECC", - "sub_path": "filament/ECC/Elegoo ABS @ECC.json" - }, - { - "name": "Elegoo ABS @ECC2", - "sub_path": "filament/ECC2/Elegoo ABS @ECC2.json" - }, - { - "name": "Generic ABS @Elegoo", - "sub_path": "filament/Generic/Generic ABS @Elegoo.json" - }, - { - "name": "Generic ABS @Elegoo Centauri", - "sub_path": "filament/Generic/Generic ABS @Elegoo Centauri.json" - }, - { - "name": "Generic ABS-CF @Elegoo Centauri", - "sub_path": "filament/Generic/Generic ABS-CF @Elegoo Centauri.json" - }, - { - "name": "Elegoo ASA @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json" - }, - { - "name": "Elegoo ASA @EC", - "sub_path": "filament/EC/Elegoo ASA @EC.json" - }, - { - "name": "Elegoo ASA @ECC", - "sub_path": "filament/ECC/Elegoo ASA @ECC.json" - }, - { - "name": "Elegoo ASA @ECC2", - "sub_path": "filament/ECC2/Elegoo ASA @ECC2.json" - }, - { - "name": "Elegoo ASA @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo ASA @EN2 Series.json" - }, - { - "name": "Elegoo ASA @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo ASA @EN3 Series.json" - }, - { - "name": "Elegoo ASA @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo ASA @EN4 Series.json" - }, - { - "name": "Elegoo ASA @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json" - }, - { - "name": "Elegoo ASA-CF @ECC2", - "sub_path": "filament/ECC2/Elegoo ASA-CF @ECC2.json" - }, - { - "name": "Generic ASA @Elegoo", - "sub_path": "filament/Generic/Generic ASA @Elegoo.json" - }, - { - "name": "Generic ASA-CF @Elegoo Centauri", - "sub_path": "filament/Generic/Generic ASA-CF @Elegoo Centauri.json" - }, - { - "name": "Elegoo PAHT-CF @EC", - "sub_path": "filament/EC/Elegoo PAHT-CF @EC.json" - }, - { - "name": "Elegoo PAHT-CF @ECC", - "sub_path": "filament/ECC/Elegoo PAHT-CF @ECC.json" - }, - { - "name": "Elegoo PAHT-CF @ECC2", - "sub_path": "filament/ECC2/Elegoo PAHT-CF @ECC2.json" - }, - { - "name": "Generic PA @Elegoo", - "sub_path": "filament/Generic/Generic PA @Elegoo.json" - }, - { - "name": "Generic PA6-CF @Elegoo", - "sub_path": "filament/Generic/Generic PA6-CF @Elegoo.json" - }, - { - "name": "Elegoo PC @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json" - }, - { - "name": "Elegoo PC @EC", - "sub_path": "filament/EC/Elegoo PC @EC.json" - }, - { - "name": "Elegoo PC @ECC", - "sub_path": "filament/ECC/Elegoo PC @ECC.json" - }, - { - "name": "Elegoo PC @ECC2", - "sub_path": "filament/ECC2/Elegoo PC @ECC2.json" - }, - { - "name": "Elegoo PC-FR @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json" - }, - { - "name": "Elegoo PC-FR @EC", - "sub_path": "filament/EC/Elegoo PC-FR @EC.json" - }, - { - "name": "Elegoo PC-FR @ECC", - "sub_path": "filament/ECC/Elegoo PC-FR @ECC.json" - }, - { - "name": "Elegoo PC-FR @ECC2", - "sub_path": "filament/ECC2/Elegoo PC-FR @ECC2.json" - }, - { - "name": "Generic PC @Elegoo", - "sub_path": "filament/Generic/Generic PC @Elegoo.json" - }, - { - "name": "Generic PC-CF @Elegoo", - "sub_path": "filament/Generic/Generic PC-CF @Elegoo.json" - }, - { - "name": "Elegoo PET-CF @ECC2", - "sub_path": "filament/ECC2/Elegoo PET-CF @ECC2.json" - }, - { - "name": "Elegoo PETG @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json" - }, - { - "name": "Elegoo PETG @EC", - "sub_path": "filament/EC/Elegoo PETG @EC.json" - }, - { - "name": "Elegoo PETG @ECC", - "sub_path": "filament/ECC/Elegoo PETG @ECC.json" - }, - { - "name": "Elegoo PETG @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG @ECC2.json" - }, - { - "name": "Elegoo PETG @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PETG @EN2 Series.json" - }, - { - "name": "Elegoo PETG @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PETG @EN3 Series.json" - }, - { - "name": "Elegoo PETG @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PETG @EN4 Series.json" - }, - { - "name": "Elegoo PETG @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json" - }, - { - "name": "Elegoo PETG HF @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG HF @ECC2.json" - }, - { - "name": "Elegoo PETG PRO @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json" - }, - { - "name": "Elegoo PETG PRO @EC", - "sub_path": "filament/EC/Elegoo PETG PRO @EC.json" - }, - { - "name": "Elegoo PETG PRO @ECC", - "sub_path": "filament/ECC/Elegoo PETG PRO @ECC.json" - }, - { - "name": "Elegoo PETG PRO @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG PRO @ECC2.json" - }, - { - "name": "Elegoo PETG PRO @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json" - }, - { - "name": "Elegoo PETG PRO @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json" - }, - { - "name": "Elegoo PETG PRO @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json" - }, - { - "name": "Elegoo PETG PRO @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json" - }, - { - "name": "Elegoo PETG Translucent @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json" - }, - { - "name": "Elegoo PETG Translucent @EC", - "sub_path": "filament/EC/Elegoo PETG Translucent @EC.json" - }, - { - "name": "Elegoo PETG Translucent @ECC", - "sub_path": "filament/ECC/Elegoo PETG Translucent @ECC.json" - }, - { - "name": "Elegoo PETG Translucent @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG Translucent @ECC2.json" - }, - { - "name": "Elegoo PETG Translucent @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json" - }, - { - "name": "Elegoo PETG Translucent @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json" - }, - { - "name": "Elegoo PETG Translucent @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json" - }, - { - "name": "Elegoo PETG Translucent @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json" - }, - { - "name": "Elegoo PETG-CF @EC", - "sub_path": "filament/EC/Elegoo PETG-CF @EC.json" - }, - { - "name": "Elegoo PETG-CF @ECC", - "sub_path": "filament/ECC/Elegoo PETG-CF @ECC.json" - }, - { - "name": "Elegoo PETG-CF @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG-CF @ECC2.json" - }, - { - "name": "Elegoo PETG-CF @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json" - }, - { - "name": "Elegoo PETG-CF @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json" - }, - { - "name": "Elegoo PETG-CF @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json" - }, - { - "name": "Elegoo PETG-CF @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json" - }, - { - "name": "Elegoo PETG-GF @EC", - "sub_path": "filament/EC/Elegoo PETG-GF @EC.json" - }, - { - "name": "Elegoo PETG-GF @ECC", - "sub_path": "filament/ECC/Elegoo PETG-GF @ECC.json" - }, - { - "name": "Elegoo PETG-GF @ECC2", - "sub_path": "filament/ECC2/Elegoo PETG-GF @ECC2.json" - }, - { - "name": "Elegoo PETG-GF @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json" - }, - { - "name": "Elegoo PETG-GF @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json" - }, - { - "name": "Elegoo PETG-GF @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json" - }, - { - "name": "Elegoo PETG-GF @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json" - }, - { - "name": "Elegoo Rapid PETG @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json" - }, - { - "name": "Elegoo Rapid PETG @EC", - "sub_path": "filament/EC/Elegoo Rapid PETG @EC.json" - }, - { - "name": "Elegoo Rapid PETG @ECC", - "sub_path": "filament/ECC/Elegoo Rapid PETG @ECC.json" - }, - { - "name": "Elegoo Rapid PETG @ECC2", - "sub_path": "filament/ECC2/Elegoo Rapid PETG @ECC2.json" - }, - { - "name": "Elegoo Rapid PETG @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json" - }, - { - "name": "Elegoo Rapid PETG @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json" - }, - { - "name": "Elegoo Rapid PETG @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json" - }, - { - "name": "Elegoo Rapid PETG @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json" - }, - { - "name": "Generic PET @Elegoo Centauri", - "sub_path": "filament/Generic/Generic PET @Elegoo Centauri.json" - }, - { - "name": "Generic PET-CF @Elegoo Centauri", - "sub_path": "filament/Generic/Generic PET-CF @Elegoo Centauri.json" - }, - { - "name": "Generic PETG @Elegoo", - "sub_path": "filament/Generic/Generic PETG @Elegoo.json" - }, - { - "name": "Generic PETG PRO @Elegoo", - "sub_path": "filament/Generic/Generic PETG PRO @Elegoo.json" - }, - { - "name": "Generic PETG-CF @Elegoo Centauri", - "sub_path": "filament/Generic/Generic PETG-CF @Elegoo Centauri.json" - }, - { - "name": "Elegoo PLA @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA @EC", - "sub_path": "filament/EC/Elegoo PLA @EC.json" - }, - { - "name": "Elegoo PLA @ECC", - "sub_path": "filament/ECC/Elegoo PLA @ECC.json" - }, - { - "name": "Elegoo PLA @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA @ECC2.json" - }, - { - "name": "Elegoo PLA @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA @EN2 Series.json" - }, - { - "name": "Elegoo PLA @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA @EN3 Series.json" - }, - { - "name": "Elegoo PLA @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA @EN4 Series.json" - }, - { - "name": "Elegoo PLA @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA Basic @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA Basic @EC", - "sub_path": "filament/EC/Elegoo PLA Basic @EC.json" - }, - { - "name": "Elegoo PLA Basic @ECC", - "sub_path": "filament/ECC/Elegoo PLA Basic @ECC.json" - }, - { - "name": "Elegoo PLA Basic @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Basic @ECC2.json" - }, - { - "name": "Elegoo PLA Basic @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json" - }, - { - "name": "Elegoo PLA Basic @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json" - }, - { - "name": "Elegoo PLA Basic @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json" - }, - { - "name": "Elegoo PLA Basic @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA Galaxy @EC", - "sub_path": "filament/EC/Elegoo PLA Galaxy @EC.json" - }, - { - "name": "Elegoo PLA Galaxy @ECC", - "sub_path": "filament/ECC/Elegoo PLA Galaxy @ECC.json" - }, - { - "name": "Elegoo PLA Galaxy @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Galaxy @ECC2.json" - }, - { - "name": "Elegoo PLA Galaxy @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json" - }, - { - "name": "Elegoo PLA Galaxy @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json" - }, - { - "name": "Elegoo PLA Galaxy @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json" - }, - { - "name": "Elegoo PLA Galaxy @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA Glow @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Glow @ECC2.json" - }, - { - "name": "Elegoo PLA Marble @EC", - "sub_path": "filament/EC/Elegoo PLA Marble @EC.json" - }, - { - "name": "Elegoo PLA Marble @ECC", - "sub_path": "filament/ECC/Elegoo PLA Marble @ECC.json" - }, - { - "name": "Elegoo PLA Marble @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Marble @ECC2.json" - }, - { - "name": "Elegoo PLA Marble @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json" - }, - { - "name": "Elegoo PLA Marble @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json" - }, - { - "name": "Elegoo PLA Marble @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json" - }, - { - "name": "Elegoo PLA Marble @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA Matte @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA Matte @EC", - "sub_path": "filament/EC/Elegoo PLA Matte @EC.json" - }, - { - "name": "Elegoo PLA Matte @ECC", - "sub_path": "filament/ECC/Elegoo PLA Matte @ECC.json" - }, - { - "name": "Elegoo PLA Matte @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Matte @ECC2.json" - }, - { - "name": "Elegoo PLA Matte @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json" - }, - { - "name": "Elegoo PLA Matte @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json" - }, - { - "name": "Elegoo PLA Matte @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json" - }, - { - "name": "Elegoo PLA Matte @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA PRO @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA PRO @EC", - "sub_path": "filament/EC/Elegoo PLA PRO @EC.json" - }, - { - "name": "Elegoo PLA PRO @ECC", - "sub_path": "filament/ECC/Elegoo PLA PRO @ECC.json" - }, - { - "name": "Elegoo PLA PRO @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA PRO @ECC2.json" - }, - { - "name": "Elegoo PLA PRO @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json" - }, - { - "name": "Elegoo PLA PRO @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json" - }, - { - "name": "Elegoo PLA PRO @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json" - }, - { - "name": "Elegoo PLA Silk @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA Silk @EC", - "sub_path": "filament/EC/Elegoo PLA Silk @EC.json" - }, - { - "name": "Elegoo PLA Silk @ECC", - "sub_path": "filament/ECC/Elegoo PLA Silk @ECC.json" - }, - { - "name": "Elegoo PLA Silk @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Silk @ECC2.json" - }, - { - "name": "Elegoo PLA Silk @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json" - }, - { - "name": "Elegoo PLA Silk @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json" - }, - { - "name": "Elegoo PLA Silk @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json" - }, - { - "name": "Elegoo PLA Sparkle @EC", - "sub_path": "filament/EC/Elegoo PLA Sparkle @EC.json" - }, - { - "name": "Elegoo PLA Sparkle @ECC", - "sub_path": "filament/ECC/Elegoo PLA Sparkle @ECC.json" - }, - { - "name": "Elegoo PLA Sparkle @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Sparkle @ECC2.json" - }, - { - "name": "Elegoo PLA Sparkle @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json" - }, - { - "name": "Elegoo PLA Sparkle @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json" - }, - { - "name": "Elegoo PLA Sparkle @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json" - }, - { - "name": "Elegoo PLA Sparkle @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA Translucent2 @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Translucent2 @ECC2.json" - }, - { - "name": "Elegoo PLA Wood @EC", - "sub_path": "filament/EC/Elegoo PLA Wood @EC.json" - }, - { - "name": "Elegoo PLA Wood @ECC", - "sub_path": "filament/ECC/Elegoo PLA Wood @ECC.json" - }, - { - "name": "Elegoo PLA Wood @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA Wood @ECC2.json" - }, - { - "name": "Elegoo PLA Wood @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json" - }, - { - "name": "Elegoo PLA Wood @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json" - }, - { - "name": "Elegoo PLA Wood @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json" - }, - { - "name": "Elegoo PLA Wood @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json" - }, - { - "name": "Elegoo PLA+ @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json" - }, - { - "name": "Elegoo PLA+ @EC", - "sub_path": "filament/EC/Elegoo PLA+ @EC.json" - }, - { - "name": "Elegoo PLA+ @ECC", - "sub_path": "filament/ECC/Elegoo PLA+ @ECC.json" - }, - { - "name": "Elegoo PLA+ @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA+ @ECC2.json" - }, - { - "name": "Elegoo PLA+ @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json" - }, - { - "name": "Elegoo PLA+ @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json" - }, - { - "name": "Elegoo PLA+ @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json" - }, - { - "name": "Elegoo PLA-CF @ECC", - "sub_path": "filament/ECC/Elegoo PLA-CF @ECC.json" - }, - { - "name": "Elegoo PLA-CF @ECC2", - "sub_path": "filament/ECC2/Elegoo PLA-CF @ECC2.json" - }, - { - "name": "Elegoo PLA-CF @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json" - }, - { - "name": "Elegoo PLA-CF @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json" - }, - { - "name": "Elegoo PLA-CF @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json" - }, - { - "name": "Elegoo Rapid PLA+ @0.2 nozzle", - "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json" - }, - { - "name": "Elegoo Rapid PLA+ @EC", - "sub_path": "filament/EC/Elegoo Rapid PLA+ @EC.json" - }, - { - "name": "Elegoo Rapid PLA+ @ECC", - "sub_path": "filament/ECC/Elegoo Rapid PLA+ @ECC.json" - }, - { - "name": "Elegoo Rapid PLA+ @ECC2", - "sub_path": "filament/ECC2/Elegoo Rapid PLA+ @ECC2.json" - }, - { - "name": "Elegoo Rapid PLA+ @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json" - }, - { - "name": "Elegoo Rapid PLA+ @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json" - }, - { - "name": "Elegoo Rapid PLA+ @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json" - }, - { - "name": "Elegoo Rapid PLA+ @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json" - }, - { - "name": "Generic PLA @Elegoo", - "sub_path": "filament/Generic/Generic PLA @Elegoo.json" - }, - { - "name": "Generic PLA @Elegoo Centauri", - "sub_path": "filament/Generic/Generic PLA @Elegoo Centauri.json" - }, - { - "name": "Generic PLA Matte @Elegoo", - "sub_path": "filament/Generic/Generic PLA Matte @Elegoo.json" - }, - { - "name": "Elegoo Rapid TPU 95A @EC", - "sub_path": "filament/EC/Elegoo Rapid TPU 95A @EC.json" - }, - { - "name": "Elegoo Rapid TPU 95A @ECC", - "sub_path": "filament/ECC/Elegoo Rapid TPU 95A @ECC.json" - }, - { - "name": "Elegoo Rapid TPU 95A @ECC2", - "sub_path": "filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json" - }, - { - "name": "Elegoo Rapid TPU 95A @EN2 Series", - "sub_path": "filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json" - }, - { - "name": "Elegoo Rapid TPU 95A @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json" - }, - { - "name": "Elegoo Rapid TPU 95A @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json" - }, - { - "name": "Elegoo Rapid TPU 95A @Elegoo Giga", - "sub_path": "filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json" - }, - { - "name": "Elegoo TPU 95A @EC", - "sub_path": "filament/EC/Elegoo TPU 95A @EC.json" - }, - { - "name": "Elegoo TPU 95A @ECC", - "sub_path": "filament/ECC/Elegoo TPU 95A @ECC.json" - }, - { - "name": "Elegoo TPU 95A @ECC2", - "sub_path": "filament/ECC2/Elegoo TPU 95A @ECC2.json" - }, - { - "name": "Elegoo TPU 95A @EN3 Series", - "sub_path": "filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json" - }, - { - "name": "Elegoo TPU 95A @EN4 Series", - "sub_path": "filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json" - } - ], - "machine_list": [ - { - "name": "fdm_machine_common", - "sub_path": "machine/fdm_machine_common.json" - }, - { - "name": "fdm_elegoo_3dp_001_common", - "sub_path": "machine/fdm_elegoo_3dp_001_common.json" - }, - { - "name": "fdm_elegoo_common", - "sub_path": "machine/fdm_elegoo_common.json" - }, - { - "name": "Elegoo Centauri 0.4 nozzle", - "sub_path": "machine/EC/Elegoo Centauri 0.4 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 0.4 nozzle", - "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 2 0.4 nozzle", - "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 0.4 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json" - }, - { - "name": "Elegoo OrangeStorm Giga 0.4 nozzle", - "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 2 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 2S 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Pro 0.4 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune X 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json" - }, - { - "name": "Elegoo Centauri 0.2 nozzle", - "sub_path": "machine/EC/Elegoo Centauri 0.2 nozzle.json" - }, - { - "name": "Elegoo Centauri 0.6 nozzle", - "sub_path": "machine/EC/Elegoo Centauri 0.6 nozzle.json" - }, - { - "name": "Elegoo Centauri 0.8 nozzle", - "sub_path": "machine/EC/Elegoo Centauri 0.8 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 0.2 nozzle", - "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 0.6 nozzle", - "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 0.8 nozzle", - "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 2 0.2 nozzle", - "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 2 0.6 nozzle", - "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json" - }, - { - "name": "Elegoo Centauri Carbon 2 0.8 nozzle", - "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 0.2 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 0.6 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 0.8 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 1.0 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Max 0.4 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Plus 0.4 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Pro 0.4 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json" - }, - { - "name": "Elegoo OrangeStorm Giga 0.6 nozzle", - "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json" - }, - { - "name": "Elegoo OrangeStorm Giga 0.8 nozzle", - "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json" - }, - { - "name": "Elegoo OrangeStorm Giga 1.0 nozzle", - "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 2 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 2 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 2D 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 0.4 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 2S 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 2S 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Max 0.4 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Plus 0.4 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Pro 0.2 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Pro 0.6 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Pro 0.8 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Pro 1.0 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune X 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune X 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Max 0.2 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Max 0.6 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Max 0.8 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Max 1.0 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Plus 0.2 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Plus 0.6 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Plus 0.8 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Plus 1.0 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Pro 0.2 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Pro 0.6 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Pro 0.8 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 4 Pro 1.0 nozzle", - "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 2D 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 2D 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 0.6 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 0.8 nozzle", - "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Max 0.2 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Max 0.6 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Max 0.8 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Max 1.0 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Plus 0.2 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Plus 0.6 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Plus 0.8 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json" - }, - { - "name": "Elegoo Neptune 3 Plus 1.0 nozzle", - "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json" - } - ] -} + "name": "Elegoo", + "version": "02.04.00.06", + "force_update": "0", + "description": "Elegoo configurations", + "machine_model_list": [ + { + "name": "Elegoo Centauri Carbon 2", + "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2.json" + }, + { + "name": "Elegoo Centauri 2", + "sub_path": "machine/EC2/Elegoo Centauri 2.json" + }, + { + "name": "Elegoo Centauri Carbon", + "sub_path": "machine/ECC/Elegoo Centauri Carbon.json" + }, + { + "name": "Elegoo Centauri", + "sub_path": "machine/EC/Elegoo Centauri.json" + }, + { + "name": "Elegoo OrangeStorm Giga", + "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga.json" + }, + { + "name": "Elegoo Neptune 4 Max", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max.json" + }, + { + "name": "Elegoo Neptune 4 Plus", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus.json" + }, + { + "name": "Elegoo Neptune 4 Pro", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro.json" + }, + { + "name": "Elegoo Neptune 4", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4.json" + }, + { + "name": "Elegoo Neptune 3 Max", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max.json" + }, + { + "name": "Elegoo Neptune 3 Plus", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus.json" + }, + { + "name": "Elegoo Neptune 3 Pro", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro.json" + }, + { + "name": "Elegoo Neptune 3", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 3.json" + }, + { + "name": "Elegoo Neptune X", + "sub_path": "machine/EN2SERIES/Elegoo Neptune X.json" + }, + { + "name": "Elegoo Neptune 2S", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S.json" + }, + { + "name": "Elegoo Neptune 2D", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D.json" + }, + { + "name": "Elegoo Neptune 2", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2.json" + }, + { + "name": "Elegoo Neptune", + "sub_path": "machine/EN2SERIES/Elegoo Neptune.json" + } + ], + "process_list": [ + { + "name": "fdm_process_common", + "sub_path": "process/fdm_process_common.json" + }, + { + "name": "fdm_process_elegoo_common", + "sub_path": "process/fdm_process_elegoo_common.json" + }, + { + "name": "fdm_process_elegoo_02010", + "sub_path": "process/fdm_process_elegoo_02010.json" + }, + { + "name": "fdm_process_elegoo_04020", + "sub_path": "process/fdm_process_elegoo_04020.json" + }, + { + "name": "fdm_process_elegoo_06030", + "sub_path": "process/fdm_process_elegoo_06030.json" + }, + { + "name": "fdm_process_elegoo_08040", + "sub_path": "process/fdm_process_elegoo_08040.json" + }, + { + "name": "fdm_process_elegoo_10050", + "sub_path": "process/fdm_process_elegoo_10050.json" + }, + { + "name": "0.20mm Standard @Elegoo CC2 0.4 nozzle", + "sub_path": "process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json" + }, + { + "name": "0.10mm Standard @Elegoo CC2 0.2 nozzle", + "sub_path": "process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json" + }, + { + "name": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "sub_path": "process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo CC2 0.6 nozzle", + "sub_path": "process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo CC2 0.8 nozzle", + "sub_path": "process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "sub_path": "process/EC2/0.40mm Standard @Elegoo C2 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.48mm Draft @Elegoo C2 0.8 nozzle", + "sub_path": "process/EC2/0.48mm Draft @Elegoo C2 0.8 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.42mm Extra Draft @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.42mm Extra Draft @Elegoo C2 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.36mm Draft @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.36mm Draft @Elegoo C2 0.6 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.32mm Optimal @Elegoo C2 0.8 nozzle", + "sub_path": "process/EC2/0.32mm Optimal @Elegoo C2 0.8 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.30mm Strength @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.30mm Strength @Elegoo C2 0.6 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.28mm Extra Draft @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 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.24mm Optimal @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.24mm Optimal @Elegoo C2 0.6 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.24mm Fine @Elegoo C2 0.8 nozzle", + "sub_path": "process/EC2/0.24mm Fine @Elegoo C2 0.8 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.24mm Draft @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.24mm Draft @Elegoo C2 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.20mm Strength @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.20mm Strength @Elegoo C2 0.4 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.18mm Fine @Elegoo C2 0.6 nozzle", + "sub_path": "process/EC2/0.18mm Fine @Elegoo C2 0.6 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.16mm Optimal @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.16mm Optimal @Elegoo C2 0.4 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.16mm Extra Fine @Elegoo C2 0.8 nozzle", + "sub_path": "process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 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.14mm Extra Draft @Elegoo C2 0.2 nozzle", + "sub_path": "process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 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.12mm Fine @Elegoo C2 0.4 nozzle", + "sub_path": "process/EC2/0.12mm Fine @Elegoo C2 0.4 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.12mm Draft @Elegoo C2 0.2 nozzle", + "sub_path": "process/EC2/0.12mm Draft @Elegoo C2 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.08mm Optimal @Elegoo C2 0.2 nozzle", + "sub_path": "process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo CC 0.4 nozzle", + "sub_path": "process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json" + }, + { + "name": "0.10mm Standard @Elegoo CC 0.2 nozzle", + "sub_path": "process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo CC 0.6 nozzle", + "sub_path": "process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo CC 0.8 nozzle", + "sub_path": "process/ECC/0.40mm Standard @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.42mm Extra Draft @Elegoo CC 0.6 nozzle", + "sub_path": "process/ECC/0.42mm Extra Draft @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.32mm Optimal @Elegoo CC 0.8 nozzle", + "sub_path": "process/ECC/0.32mm Optimal @Elegoo CC 0.8 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.28mm Extra Draft @Elegoo CC 0.4 nozzle", + "sub_path": "process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 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.24mm Fine @Elegoo CC 0.8 nozzle", + "sub_path": "process/ECC/0.24mm Fine @Elegoo CC 0.8 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.20mm Strength @Elegoo CC 0.4 nozzle", + "sub_path": "process/ECC/0.20mm Strength @Elegoo CC 0.4 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.16mm Optimal @Elegoo CC 0.4 nozzle", + "sub_path": "process/ECC/0.16mm Optimal @Elegoo CC 0.4 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.14mm Extra Draft @Elegoo CC 0.2 nozzle", + "sub_path": "process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 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.12mm Draft @Elegoo CC 0.2 nozzle", + "sub_path": "process/ECC/0.12mm Draft @Elegoo CC 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.20mm Standard @Elegoo C 0.4 nozzle", + "sub_path": "process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json" + }, + { + "name": "0.10mm Standard @Elegoo C 0.2 nozzle", + "sub_path": "process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo C 0.6 nozzle", + "sub_path": "process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo C 0.8 nozzle", + "sub_path": "process/EC/0.40mm Standard @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.42mm Extra Draft @Elegoo C 0.6 nozzle", + "sub_path": "process/EC/0.42mm Extra Draft @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.32mm Optimal @Elegoo C 0.8 nozzle", + "sub_path": "process/EC/0.32mm Optimal @Elegoo C 0.8 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.28mm Extra Draft @Elegoo C 0.4 nozzle", + "sub_path": "process/EC/0.28mm Extra Draft @Elegoo C 0.4 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.24mm Fine @Elegoo C 0.8 nozzle", + "sub_path": "process/EC/0.24mm Fine @Elegoo C 0.8 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.20mm Strength @Elegoo C 0.4 nozzle", + "sub_path": "process/EC/0.20mm Strength @Elegoo C 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.16mm Optimal @Elegoo C 0.4 nozzle", + "sub_path": "process/EC/0.16mm Optimal @Elegoo C 0.4 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.14mm Extra Draft @Elegoo C 0.2 nozzle", + "sub_path": "process/EC/0.14mm Extra Draft @Elegoo C 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.12mm Draft @Elegoo C 0.2 nozzle", + "sub_path": "process/EC/0.12mm Draft @Elegoo C 0.2 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.20mm Standard @Elegoo N4 0.4 nozzle", + "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4 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.10mm Standard @Elegoo N4 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N4 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N4 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N4 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N4 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N4 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N4 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N4 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N4 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N4 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N4 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N4 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", + "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 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.10mm Standard @Elegoo N4Pro 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N4Pro 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N4Pro 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N4Pro 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N4Pro 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json" + }, + { + "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.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N4Pro 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N4Pro 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N4Pro 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N4Pro 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N4Pro 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N4Pro 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", + "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 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.10mm Standard @Elegoo N4Plus 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N4Plus 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N4Plus 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N4Plus 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N4Plus 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N4Plus 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N4Plus 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N4Plus 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N4Plus 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N4Plus 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N4Plus 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", + "sub_path": "process/EN4SERIES/0.20mm Standard @Elegoo N4Max 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.10mm Standard @Elegoo N4Max 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N4Max 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N4Max 0.2 nozzle", + "sub_path": "process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N4Max 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N4Max 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle", + "sub_path": "process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N4Max 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N4Max 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N4Max 0.8 nozzle", + "sub_path": "process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N4Max 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N4Max 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N4Max 1.0 nozzle", + "sub_path": "process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", + "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 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.10mm Standard @Elegoo N3Pro 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N3Pro 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N3Pro 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N3Pro 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N3Pro 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N3Pro 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N3Pro 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N3Pro 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N3Pro 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N3Pro 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N3Pro 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", + "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 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.10mm Standard @Elegoo N3Plus 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json" + }, + { + "name": "0.08mm Optimal @Elegoo N3Plus 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json" + }, + { + "name": "0.12mm Draft @Elegoo N3Plus 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json" + }, + { + "name": "0.24mm Optimal @Elegoo N3Plus 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json" + }, + { + "name": "0.36mm Draft @Elegoo N3Plus 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json" + }, + { + "name": "0.24mm Fine @Elegoo N3Plus 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json" + }, + { + "name": "0.32mm Optimal @Elegoo N3Plus 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N3Plus 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json" + }, + { + "name": "0.30mm Fine @Elegoo N3Plus 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json" + }, + { + "name": "0.40mm Optimal @Elegoo N3Plus 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N3Plus 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", + "sub_path": "process/EN3SERIES/0.20mm Standard @Elegoo N3Max 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.10mm Standard @Elegoo N3Max 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.10mm Standard @Elegoo N3Max 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" + }, + { + "name": "0.12mm Draft @Elegoo N3Max 0.2 nozzle", + "sub_path": "process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.30mm Standard @Elegoo N3Max 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" + }, + { + "name": "0.36mm Draft @Elegoo N3Max 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json" + }, + { + "name": "0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle", + "sub_path": "process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Standard @Elegoo N3Max 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" + }, + { + "name": "0.32mm Optimal @Elegoo N3Max 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json" + }, + { + "name": "0.48mm Draft @Elegoo N3Max 0.8 nozzle", + "sub_path": "process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json" + }, + { + "name": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.50mm Standard @Elegoo N3Max 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" + }, + { + "name": "0.40mm Optimal @Elegoo N3Max 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json" + }, + { + "name": "0.60mm Draft @Elegoo N3Max 1.0 nozzle", + "sub_path": "process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json" + }, + { + "name": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", + "sub_path": "process/EN2SERIES/0.20mm Standard @Elegoo Neptune 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.30mm Standard @Elegoo Neptune 0.6 nozzle", + "sub_path": "process/EN2SERIES/0.30mm Standard @Elegoo Neptune 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.40mm Standard @Elegoo Neptune 0.8 nozzle", + "sub_path": "process/EN2SERIES/0.40mm Standard @Elegoo Neptune 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.20mm Standard @Elegoo Giga 0.4 nozzle", + "sub_path": "process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json" + }, + { + "name": "0.30mm Standard @Elegoo Giga 0.6 nozzle", + "sub_path": "process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json" + }, + { + "name": "0.40mm Standard @Elegoo Giga 0.8 nozzle", + "sub_path": "process/EOSGIGA/0.40mm Standard @Elegoo Giga 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.20mm Strength @Elegoo Giga 0.4 nozzle", + "sub_path": "process/EOSGIGA/0.20mm Strength @Elegoo Giga 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.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.30mm Strength @Elegoo Giga 0.6 nozzle", + "sub_path": "process/EOSGIGA/0.30mm Strength @Elegoo Giga 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.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 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.60mm Draft @Elegoo Giga 1.0 nozzle", + "sub_path": "process/EOSGIGA/0.60mm Draft @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.30mm Fine @Elegoo Giga 1.0 nozzle", + "sub_path": "process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json" + } + ], + "filament_list": [ + { + "name": "fdm_filament_common", + "sub_path": "filament/fdm_filament_common.json" + }, + { + "name": "fdm_filament_pla", + "sub_path": "filament/fdm_filament_pla.json" + }, + { + "name": "fdm_filament_tpu", + "sub_path": "filament/fdm_filament_tpu.json" + }, + { + "name": "fdm_filament_pet", + "sub_path": "filament/fdm_filament_pet.json" + }, + { + "name": "fdm_filament_abs", + "sub_path": "filament/fdm_filament_abs.json" + }, + { + "name": "fdm_filament_pc", + "sub_path": "filament/fdm_filament_pc.json" + }, + { + "name": "fdm_filament_asa", + "sub_path": "filament/fdm_filament_asa.json" + }, + { + "name": "fdm_filament_pva", + "sub_path": "filament/fdm_filament_pva.json" + }, + { + "name": "fdm_filament_pa", + "sub_path": "filament/fdm_filament_pa.json" + }, + { + "name": "fdm_filament_hips", + "sub_path": "filament/fdm_filament_hips.json" + }, + { + "name": "fdm_filament_pps", + "sub_path": "filament/fdm_filament_pps.json" + }, + { + "name": "fdm_filament_ppa", + "sub_path": "filament/fdm_filament_ppa.json" + }, + { + "name": "Generic ABS @base", + "sub_path": "filament/BASE/Generic ABS @base.json" + }, + { + "name": "Generic PA @base", + "sub_path": "filament/BASE/Generic PA @base.json" + }, + { + "name": "Generic PETG @base", + "sub_path": "filament/BASE/Generic PETG @base.json" + }, + { + "name": "Generic PET @base", + "sub_path": "filament/BASE/Generic PET @base.json" + }, + { + "name": "Generic PLA @base", + "sub_path": "filament/BASE/Generic PLA @base.json" + }, + { + "name": "Generic PC @base", + "sub_path": "filament/BASE/Generic PC @base.json" + }, + { + "name": "Generic ASA @base", + "sub_path": "filament/BASE/Generic ASA @base.json" + }, + { + "name": "Elegoo TPU @base", + "sub_path": "filament/BASE/Elegoo TPU @base.json" + }, + { + "name": "Elegoo PETG @base", + "sub_path": "filament/BASE/Elegoo PETG @base.json" + }, + { + "name": "Elegoo PLA @base", + "sub_path": "filament/BASE/Elegoo PLA @base.json" + }, + { + "name": "Elegoo ASA @base", + "sub_path": "filament/BASE/Elegoo ASA @base.json" + }, + { + "name": "Elegoo ABS @base", + "sub_path": "filament/BASE/Elegoo ABS @base.json" + }, + { + "name": "Elegoo PAHT @base", + "sub_path": "filament/BASE/Elegoo PAHT @base.json" + }, + { + "name": "Elegoo PC @base", + "sub_path": "filament/BASE/Elegoo PC @base.json" + }, + { + "name": "Elegoo ASA @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json" + }, + { + "name": "Elegoo PETG @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json" + }, + { + "name": "Elegoo PETG PRO @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA Matte @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA PRO @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA Silk @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA+ @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json" + }, + { + "name": "Elegoo Rapid PLA+ @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json" + }, + { + "name": "Elegoo Rapid PETG @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json" + }, + { + "name": "Elegoo ABS @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json" + }, + { + "name": "Elegoo PC @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json" + }, + { + "name": "Elegoo PC-FR @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA Basic @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json" + }, + { + "name": "Elegoo PETG Translucent @0.2 nozzle", + "sub_path": "filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json" + }, + { + "name": "Elegoo PLA @ECC", + "sub_path": "filament/ECC/Elegoo PLA @ECC.json" + }, + { + "name": "Elegoo PLA PRO @ECC", + "sub_path": "filament/ECC/Elegoo PLA PRO @ECC.json" + }, + { + "name": "Elegoo PLA+ @ECC", + "sub_path": "filament/ECC/Elegoo PLA+ @ECC.json" + }, + { + "name": "Elegoo Rapid PLA+ @ECC", + "sub_path": "filament/ECC/Elegoo Rapid PLA+ @ECC.json" + }, + { + "name": "Elegoo PLA Silk @ECC", + "sub_path": "filament/ECC/Elegoo PLA Silk @ECC.json" + }, + { + "name": "Elegoo PLA Matte @ECC", + "sub_path": "filament/ECC/Elegoo PLA Matte @ECC.json" + }, + { + "name": "Elegoo PLA-CF @ECC", + "sub_path": "filament/ECC/Elegoo PLA-CF @ECC.json" + }, + { + "name": "Elegoo PETG @ECC", + "sub_path": "filament/ECC/Elegoo PETG @ECC.json" + }, + { + "name": "Elegoo PETG PRO @ECC", + "sub_path": "filament/ECC/Elegoo PETG PRO @ECC.json" + }, + { + "name": "Elegoo Rapid PETG @ECC", + "sub_path": "filament/ECC/Elegoo Rapid PETG @ECC.json" + }, + { + "name": "Elegoo TPU 95A @ECC", + "sub_path": "filament/ECC/Elegoo TPU 95A @ECC.json" + }, + { + "name": "Elegoo ASA @ECC", + "sub_path": "filament/ECC/Elegoo ASA @ECC.json" + }, + { + "name": "Elegoo ABS @ECC", + "sub_path": "filament/ECC/Elegoo ABS @ECC.json" + }, + { + "name": "Elegoo PLA Galaxy @ECC", + "sub_path": "filament/ECC/Elegoo PLA Galaxy @ECC.json" + }, + { + "name": "Elegoo PLA Basic @ECC", + "sub_path": "filament/ECC/Elegoo PLA Basic @ECC.json" + }, + { + "name": "Elegoo PLA Marble @ECC", + "sub_path": "filament/ECC/Elegoo PLA Marble @ECC.json" + }, + { + "name": "Elegoo PLA Sparkle @ECC", + "sub_path": "filament/ECC/Elegoo PLA Sparkle @ECC.json" + }, + { + "name": "Elegoo PLA Wood @ECC", + "sub_path": "filament/ECC/Elegoo PLA Wood @ECC.json" + }, + { + "name": "Elegoo PAHT-CF @ECC", + "sub_path": "filament/ECC/Elegoo PAHT-CF @ECC.json" + }, + { + "name": "Elegoo PC @ECC", + "sub_path": "filament/ECC/Elegoo PC @ECC.json" + }, + { + "name": "Elegoo PC-FR @ECC", + "sub_path": "filament/ECC/Elegoo PC-FR @ECC.json" + }, + { + "name": "Elegoo PETG-CF @ECC", + "sub_path": "filament/ECC/Elegoo PETG-CF @ECC.json" + }, + { + "name": "Elegoo PETG-GF @ECC", + "sub_path": "filament/ECC/Elegoo PETG-GF @ECC.json" + }, + { + "name": "Elegoo PETG Translucent @ECC", + "sub_path": "filament/ECC/Elegoo PETG Translucent @ECC.json" + }, + { + "name": "Elegoo Rapid TPU 95A @ECC", + "sub_path": "filament/ECC/Elegoo Rapid TPU 95A @ECC.json" + }, + { + "name": "Elegoo PLA @EC", + "sub_path": "filament/EC/Elegoo PLA @EC.json" + }, + { + "name": "Elegoo PLA PRO @EC", + "sub_path": "filament/EC/Elegoo PLA PRO @EC.json" + }, + { + "name": "Elegoo PLA+ @EC", + "sub_path": "filament/EC/Elegoo PLA+ @EC.json" + }, + { + "name": "Elegoo Rapid PLA+ @EC", + "sub_path": "filament/EC/Elegoo Rapid PLA+ @EC.json" + }, + { + "name": "Elegoo PLA Silk @EC", + "sub_path": "filament/EC/Elegoo PLA Silk @EC.json" + }, + { + "name": "Elegoo PLA Matte @EC", + "sub_path": "filament/EC/Elegoo PLA Matte @EC.json" + }, + { + "name": "Elegoo PETG @EC", + "sub_path": "filament/EC/Elegoo PETG @EC.json" + }, + { + "name": "Elegoo PETG PRO @EC", + "sub_path": "filament/EC/Elegoo PETG PRO @EC.json" + }, + { + "name": "Elegoo Rapid PETG @EC", + "sub_path": "filament/EC/Elegoo Rapid PETG @EC.json" + }, + { + "name": "Elegoo TPU 95A @EC", + "sub_path": "filament/EC/Elegoo TPU 95A @EC.json" + }, + { + "name": "Elegoo ASA @EC", + "sub_path": "filament/EC/Elegoo ASA @EC.json" + }, + { + "name": "Elegoo ABS @EC", + "sub_path": "filament/EC/Elegoo ABS @EC.json" + }, + { + "name": "Elegoo PLA Galaxy @EC", + "sub_path": "filament/EC/Elegoo PLA Galaxy @EC.json" + }, + { + "name": "Elegoo PLA Basic @EC", + "sub_path": "filament/EC/Elegoo PLA Basic @EC.json" + }, + { + "name": "Elegoo PLA Marble @EC", + "sub_path": "filament/EC/Elegoo PLA Marble @EC.json" + }, + { + "name": "Elegoo PLA Sparkle @EC", + "sub_path": "filament/EC/Elegoo PLA Sparkle @EC.json" + }, + { + "name": "Elegoo PLA Wood @EC", + "sub_path": "filament/EC/Elegoo PLA Wood @EC.json" + }, + { + "name": "Elegoo PAHT-CF @EC", + "sub_path": "filament/EC/Elegoo PAHT-CF @EC.json" + }, + { + "name": "Elegoo PC @EC", + "sub_path": "filament/EC/Elegoo PC @EC.json" + }, + { + "name": "Elegoo PC-FR @EC", + "sub_path": "filament/EC/Elegoo PC-FR @EC.json" + }, + { + "name": "Elegoo PETG-CF @EC", + "sub_path": "filament/EC/Elegoo PETG-CF @EC.json" + }, + { + "name": "Elegoo PETG-GF @EC", + "sub_path": "filament/EC/Elegoo PETG-GF @EC.json" + }, + { + "name": "Elegoo PETG Translucent @EC", + "sub_path": "filament/EC/Elegoo PETG Translucent @EC.json" + }, + { + "name": "Elegoo Rapid TPU 95A @EC", + "sub_path": "filament/EC/Elegoo Rapid TPU 95A @EC.json" + }, + { + "name": "Elegoo PLA @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA @ECC2.json" + }, + { + "name": "Elegoo PLA @EC2", + "sub_path": "filament/EC2/Elegoo PLA @EC2.json" + }, + { + "name": "Elegoo PLA PRO @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA PRO @ECC2.json" + }, + { + "name": "Elegoo PLA PRO @EC2", + "sub_path": "filament/EC2/Elegoo PLA PRO @EC2.json" + }, + { + "name": "Elegoo PLA+ @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA+ @ECC2.json" + }, + { + "name": "Elegoo PLA+ @EC2", + "sub_path": "filament/EC2/Elegoo PLA+ @EC2.json" + }, + { + "name": "Elegoo Rapid PLA+ @ECC2", + "sub_path": "filament/ECC2/Elegoo Rapid PLA+ @ECC2.json" + }, + { + "name": "Elegoo Rapid PLA+ @EC2", + "sub_path": "filament/EC2/Elegoo Rapid PLA+ @EC2.json" + }, + { + "name": "Elegoo PLA Silk @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Silk @ECC2.json" + }, + { + "name": "Elegoo PLA Silk @EC2", + "sub_path": "filament/EC2/Elegoo PLA Silk @EC2.json" + }, + { + "name": "Elegoo PLA Matte @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Matte @ECC2.json" + }, + { + "name": "Elegoo PLA Matte @EC2", + "sub_path": "filament/EC2/Elegoo PLA Matte @EC2.json" + }, + { + "name": "Elegoo PLA-CF @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA-CF @ECC2.json" + }, + { + "name": "Elegoo PLA-CF @EC2", + "sub_path": "filament/EC2/Elegoo PLA-CF @EC2.json" + }, + { + "name": "Elegoo PETG @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG @ECC2.json" + }, + { + "name": "Elegoo PETG @EC2", + "sub_path": "filament/EC2/Elegoo PETG @EC2.json" + }, + { + "name": "Elegoo PETG PRO @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG PRO @ECC2.json" + }, + { + "name": "Elegoo PETG PRO @EC2", + "sub_path": "filament/EC2/Elegoo PETG PRO @EC2.json" + }, + { + "name": "Elegoo Rapid PETG @ECC2", + "sub_path": "filament/ECC2/Elegoo Rapid PETG @ECC2.json" + }, + { + "name": "Elegoo Rapid PETG @EC2", + "sub_path": "filament/EC2/Elegoo Rapid PETG @EC2.json" + }, + { + "name": "Elegoo TPU 95A @ECC2", + "sub_path": "filament/ECC2/Elegoo TPU 95A @ECC2.json" + }, + { + "name": "Elegoo TPU 95A @EC2", + "sub_path": "filament/EC2/Elegoo TPU 95A @EC2.json" + }, + { + "name": "Elegoo ASA @ECC2", + "sub_path": "filament/ECC2/Elegoo ASA @ECC2.json" + }, + { + "name": "Elegoo ASA @EC2", + "sub_path": "filament/EC2/Elegoo ASA @EC2.json" + }, + { + "name": "Elegoo ABS @ECC2", + "sub_path": "filament/ECC2/Elegoo ABS @ECC2.json" + }, + { + "name": "Elegoo ABS @EC2", + "sub_path": "filament/EC2/Elegoo ABS @EC2.json" + }, + { + "name": "Elegoo PLA Galaxy @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Galaxy @ECC2.json" + }, + { + "name": "Elegoo PLA Galaxy @EC2", + "sub_path": "filament/EC2/Elegoo PLA Galaxy @EC2.json" + }, + { + "name": "Elegoo PLA Basic @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Basic @ECC2.json" + }, + { + "name": "Elegoo PLA Basic @EC2", + "sub_path": "filament/EC2/Elegoo PLA Basic @EC2.json" + }, + { + "name": "Elegoo PLA Marble @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Marble @ECC2.json" + }, + { + "name": "Elegoo PLA Marble @EC2", + "sub_path": "filament/EC2/Elegoo PLA Marble @EC2.json" + }, + { + "name": "Elegoo PLA Sparkle @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Sparkle @ECC2.json" + }, + { + "name": "Elegoo PLA Sparkle @EC2", + "sub_path": "filament/EC2/Elegoo PLA Sparkle @EC2.json" + }, + { + "name": "Elegoo PLA Wood @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Wood @ECC2.json" + }, + { + "name": "Elegoo PLA Wood @EC2", + "sub_path": "filament/EC2/Elegoo PLA Wood @EC2.json" + }, + { + "name": "Elegoo PAHT-CF @ECC2", + "sub_path": "filament/ECC2/Elegoo PAHT-CF @ECC2.json" + }, + { + "name": "Elegoo PAHT-CF @EC2", + "sub_path": "filament/EC2/Elegoo PAHT-CF @EC2.json" + }, + { + "name": "Elegoo PC @ECC2", + "sub_path": "filament/ECC2/Elegoo PC @ECC2.json" + }, + { + "name": "Elegoo PC @EC2", + "sub_path": "filament/EC2/Elegoo PC @EC2.json" + }, + { + "name": "Elegoo PC-FR @ECC2", + "sub_path": "filament/ECC2/Elegoo PC-FR @ECC2.json" + }, + { + "name": "Elegoo PC-FR @EC2", + "sub_path": "filament/EC2/Elegoo PC-FR @EC2.json" + }, + { + "name": "Elegoo PETG-CF @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG-CF @ECC2.json" + }, + { + "name": "Elegoo PETG-CF @EC2", + "sub_path": "filament/EC2/Elegoo PETG-CF @EC2.json" + }, + { + "name": "Elegoo PETG-GF @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG-GF @ECC2.json" + }, + { + "name": "Elegoo PETG-GF @EC2", + "sub_path": "filament/EC2/Elegoo PETG-GF @EC2.json" + }, + { + "name": "Elegoo PETG Translucent @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG Translucent @ECC2.json" + }, + { + "name": "Elegoo PETG Translucent @EC2", + "sub_path": "filament/EC2/Elegoo PETG Translucent @EC2.json" + }, + { + "name": "Elegoo ASA-CF @ECC2", + "sub_path": "filament/ECC2/Elegoo ASA-CF @ECC2.json" + }, + { + "name": "Elegoo ASA-CF @EC2", + "sub_path": "filament/EC2/Elegoo ASA-CF @EC2.json" + }, + { + "name": "Elegoo PET-CF @ECC2", + "sub_path": "filament/ECC2/Elegoo PET-CF @ECC2.json" + }, + { + "name": "Elegoo PET-CF @EC2", + "sub_path": "filament/EC2/Elegoo PET-CF @EC2.json" + }, + { + "name": "Elegoo PETG HF @ECC2", + "sub_path": "filament/ECC2/Elegoo PETG HF @ECC2.json" + }, + { + "name": "Elegoo PETG HF @EC2", + "sub_path": "filament/EC2/Elegoo PETG HF @EC2.json" + }, + { + "name": "Elegoo PLA Glow @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Glow @ECC2.json" + }, + { + "name": "Elegoo PLA Glow @EC2", + "sub_path": "filament/EC2/Elegoo PLA Glow @EC2.json" + }, + { + "name": "Elegoo PLA Translucent2 @ECC2", + "sub_path": "filament/ECC2/Elegoo PLA Translucent2 @ECC2.json" + }, + { + "name": "Elegoo PLA Translucent2 @EC2", + "sub_path": "filament/EC2/Elegoo PLA Translucent2 @EC2.json" + }, + { + "name": "Elegoo Rapid TPU 95A @ECC2", + "sub_path": "filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json" + }, + { + "name": "Elegoo Rapid TPU 95A @EC2", + "sub_path": "filament/EC2/Elegoo Rapid TPU 95A @EC2.json" + }, + { + "name": "Elegoo PLA @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA @EN4 Series.json" + }, + { + "name": "Elegoo PLA PRO @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json" + }, + { + "name": "Elegoo PLA+ @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json" + }, + { + "name": "Elegoo Rapid PLA+ @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json" + }, + { + "name": "Elegoo PLA Silk @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json" + }, + { + "name": "Elegoo PLA Matte @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json" + }, + { + "name": "Elegoo PLA-CF @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json" + }, + { + "name": "Elegoo PETG @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PETG @EN4 Series.json" + }, + { + "name": "Elegoo PETG PRO @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json" + }, + { + "name": "Elegoo Rapid PETG @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json" + }, + { + "name": "Elegoo TPU 95A @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json" + }, + { + "name": "Elegoo ASA @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo ASA @EN4 Series.json" + }, + { + "name": "Elegoo PLA Galaxy @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json" + }, + { + "name": "Elegoo PLA Basic @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json" + }, + { + "name": "Elegoo PLA Marble @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json" + }, + { + "name": "Elegoo PLA Sparkle @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json" + }, + { + "name": "Elegoo PLA Wood @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json" + }, + { + "name": "Elegoo PETG-CF @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json" + }, + { + "name": "Elegoo PETG-GF @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json" + }, + { + "name": "Elegoo PETG Translucent @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json" + }, + { + "name": "Elegoo Rapid TPU 95A @EN4 Series", + "sub_path": "filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json" + }, + { + "name": "Elegoo PLA @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA @EN3 Series.json" + }, + { + "name": "Elegoo PLA PRO @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json" + }, + { + "name": "Elegoo PLA+ @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json" + }, + { + "name": "Elegoo Rapid PLA+ @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json" + }, + { + "name": "Elegoo PLA Silk @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json" + }, + { + "name": "Elegoo PLA Matte @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json" + }, + { + "name": "Elegoo PLA-CF @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json" + }, + { + "name": "Elegoo PETG @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PETG @EN3 Series.json" + }, + { + "name": "Elegoo PETG PRO @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json" + }, + { + "name": "Elegoo Rapid PETG @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json" + }, + { + "name": "Elegoo TPU 95A @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json" + }, + { + "name": "Elegoo ASA @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo ASA @EN3 Series.json" + }, + { + "name": "Elegoo PLA Galaxy @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json" + }, + { + "name": "Elegoo PLA Basic @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json" + }, + { + "name": "Elegoo PLA Marble @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json" + }, + { + "name": "Elegoo PLA Sparkle @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json" + }, + { + "name": "Elegoo PLA Wood @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json" + }, + { + "name": "Elegoo PETG-CF @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json" + }, + { + "name": "Elegoo PETG-GF @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json" + }, + { + "name": "Elegoo PETG Translucent @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json" + }, + { + "name": "Elegoo Rapid TPU 95A @EN3 Series", + "sub_path": "filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json" + }, + { + "name": "Elegoo PLA @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA @EN2 Series.json" + }, + { + "name": "Elegoo PLA PRO @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json" + }, + { + "name": "Elegoo PLA+ @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json" + }, + { + "name": "Elegoo Rapid PLA+ @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json" + }, + { + "name": "Elegoo PLA Silk @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json" + }, + { + "name": "Elegoo PLA Matte @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json" + }, + { + "name": "Elegoo PLA-CF @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json" + }, + { + "name": "Elegoo PETG @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PETG @EN2 Series.json" + }, + { + "name": "Elegoo PETG PRO @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json" + }, + { + "name": "Elegoo Rapid PETG @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json" + }, + { + "name": "Elegoo ASA @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo ASA @EN2 Series.json" + }, + { + "name": "Elegoo PLA Galaxy @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json" + }, + { + "name": "Elegoo PLA Basic @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json" + }, + { + "name": "Elegoo PLA Marble @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json" + }, + { + "name": "Elegoo PLA Sparkle @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json" + }, + { + "name": "Elegoo PLA Wood @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json" + }, + { + "name": "Elegoo PETG-CF @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json" + }, + { + "name": "Elegoo PETG-GF @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json" + }, + { + "name": "Elegoo PETG Translucent @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json" + }, + { + "name": "Elegoo Rapid TPU 95A @EN2 Series", + "sub_path": "filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json" + }, + { + "name": "Elegoo ASA @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json" + }, + { + "name": "Elegoo PETG @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json" + }, + { + "name": "Elegoo PETG PRO @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Matte @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json" + }, + { + "name": "Elegoo Rapid PETG @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json" + }, + { + "name": "Elegoo Rapid PLA+ @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Galaxy @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Basic @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Marble @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Sparkle @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json" + }, + { + "name": "Elegoo PLA Wood @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json" + }, + { + "name": "Elegoo PETG-CF @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json" + }, + { + "name": "Elegoo PETG-GF @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json" + }, + { + "name": "Elegoo PETG Translucent @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json" + }, + { + "name": "Elegoo Rapid TPU 95A @Elegoo Giga", + "sub_path": "filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json" + }, + { + "name": "Generic ABS @Elegoo Centauri", + "sub_path": "filament/Generic/Generic ABS @Elegoo Centauri.json" + }, + { + "name": "Generic ABS @Elegoo", + "sub_path": "filament/Generic/Generic ABS @Elegoo.json" + }, + { + "name": "Generic ABS-CF @Elegoo Centauri", + "sub_path": "filament/Generic/Generic ABS-CF @Elegoo Centauri.json" + }, + { + "name": "Generic ASA @Elegoo", + "sub_path": "filament/Generic/Generic ASA @Elegoo.json" + }, + { + "name": "Generic ASA-CF @Elegoo Centauri", + "sub_path": "filament/Generic/Generic ASA-CF @Elegoo Centauri.json" + }, + { + "name": "Generic PA @Elegoo", + "sub_path": "filament/Generic/Generic PA @Elegoo.json" + }, + { + "name": "Generic PA6-CF @Elegoo", + "sub_path": "filament/Generic/Generic PA6-CF @Elegoo.json" + }, + { + "name": "Generic PC @Elegoo", + "sub_path": "filament/Generic/Generic PC @Elegoo.json" + }, + { + "name": "Generic PC-CF @Elegoo", + "sub_path": "filament/Generic/Generic PC-CF @Elegoo.json" + }, + { + "name": "Generic PET @Elegoo Centauri", + "sub_path": "filament/Generic/Generic PET @Elegoo Centauri.json" + }, + { + "name": "Generic PET-CF @Elegoo Centauri", + "sub_path": "filament/Generic/Generic PET-CF @Elegoo Centauri.json" + }, + { + "name": "Generic PETG @Elegoo", + "sub_path": "filament/Generic/Generic PETG @Elegoo.json" + }, + { + "name": "Generic PETG PRO @Elegoo", + "sub_path": "filament/Generic/Generic PETG PRO @Elegoo.json" + }, + { + "name": "Generic PETG-CF @Elegoo Centauri", + "sub_path": "filament/Generic/Generic PETG-CF @Elegoo Centauri.json" + }, + { + "name": "Generic PLA @Elegoo Centauri", + "sub_path": "filament/Generic/Generic PLA @Elegoo Centauri.json" + }, + { + "name": "Generic PLA @Elegoo", + "sub_path": "filament/Generic/Generic PLA @Elegoo.json" + }, + { + "name": "Generic PLA Matte @Elegoo", + "sub_path": "filament/Generic/Generic PLA Matte @Elegoo.json" + } + ], + "machine_list": [ + { + "name": "fdm_machine_common", + "sub_path": "machine/fdm_machine_common.json" + }, + { + "name": "fdm_elegoo_common", + "sub_path": "machine/fdm_elegoo_common.json" + }, + { + "name": "fdm_elegoo_3dp_001_common", + "sub_path": "machine/fdm_elegoo_3dp_001_common.json" + }, + { + "name": "Elegoo Centauri Carbon 0.4 nozzle", + "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 0.2 nozzle", + "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 0.6 nozzle", + "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 0.8 nozzle", + "sub_path": "machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json" + }, + { + "name": "Elegoo Centauri 0.4 nozzle", + "sub_path": "machine/EC/Elegoo Centauri 0.4 nozzle.json" + }, + { + "name": "Elegoo Centauri 0.2 nozzle", + "sub_path": "machine/EC/Elegoo Centauri 0.2 nozzle.json" + }, + { + "name": "Elegoo Centauri 0.6 nozzle", + "sub_path": "machine/EC/Elegoo Centauri 0.6 nozzle.json" + }, + { + "name": "Elegoo Centauri 0.8 nozzle", + "sub_path": "machine/EC/Elegoo Centauri 0.8 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 2 0.4 nozzle", + "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json" + }, + { + "name": "Elegoo Centauri 2 0.4 nozzle", + "sub_path": "machine/EC2/Elegoo Centauri 2 0.4 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 2 0.2 nozzle", + "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json" + }, + { + "name": "Elegoo Centauri 2 0.2 nozzle", + "sub_path": "machine/EC2/Elegoo Centauri 2 0.2 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 2 0.6 nozzle", + "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json" + }, + { + "name": "Elegoo Centauri 2 0.6 nozzle", + "sub_path": "machine/EC2/Elegoo Centauri 2 0.6 nozzle.json" + }, + { + "name": "Elegoo Centauri Carbon 2 0.8 nozzle", + "sub_path": "machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json" + }, + { + "name": "Elegoo Centauri 2 0.8 nozzle", + "sub_path": "machine/EC2/Elegoo Centauri 2 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 0.4 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 0.2 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 0.6 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 0.8 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 1.0 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Pro 0.4 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Pro 0.2 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Pro 0.6 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Pro 0.8 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Pro 1.0 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Plus 0.4 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Plus 0.2 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Plus 0.6 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Plus 0.8 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Plus 1.0 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Max 0.4 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Max 0.2 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Max 0.6 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Max 0.8 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 4 Max 1.0 nozzle", + "sub_path": "machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json" + }, + { + "name": "Elegoo OrangeStorm Giga 0.4 nozzle", + "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json" + }, + { + "name": "Elegoo OrangeStorm Giga 0.6 nozzle", + "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json" + }, + { + "name": "Elegoo OrangeStorm Giga 0.8 nozzle", + "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json" + }, + { + "name": "Elegoo OrangeStorm Giga 1.0 nozzle", + "sub_path": "machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Pro 0.4 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Pro 0.2 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Pro 0.6 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Pro 0.8 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Pro 1.0 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Plus 0.4 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Plus 0.2 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Plus 0.6 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Plus 0.8 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Plus 1.0 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Max 0.4 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Max 0.2 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Max 0.6 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Max 0.8 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 Max 1.0 nozzle", + "sub_path": "machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json" + }, + { + "name": "Elegoo Neptune 2 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 2 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 2 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 3 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune X 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune X 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune X 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 2S 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 2S 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 2S 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 2D 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 2D 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 2D 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json" + }, + { + "name": "Elegoo Neptune 0.4 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json" + }, + { + "name": "Elegoo Neptune 0.6 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json" + }, + { + "name": "Elegoo Neptune 0.8 nozzle", + "sub_path": "machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json" + } + ] +} \ No newline at end of file diff --git a/resources/profiles/Elegoo/Elegoo Centauri 2_cover.png b/resources/profiles/Elegoo/Elegoo Centauri 2_cover.png new file mode 100644 index 0000000000..d836650597 Binary files /dev/null and b/resources/profiles/Elegoo/Elegoo Centauri 2_cover.png differ diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json index f9dc2c1fbf..ce55301fba 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo ABS @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @EC", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSEC", + "setting_id": "ZC1InjpTSFKP5rfE", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json index 0ce8f444fc..8b787ceb30 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo ASA @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EC", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEC", + "setting_id": "GTfsmYNl6Sl5FjL7", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json index 9f0760d492..d1e05a1372 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PAHT-CF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @EC", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFEC", + "setting_id": "ZRd4WPQrh8nC8n7G", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json index 82ec99e6a0..61aacd5e03 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PC @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @EC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCEC", + "setting_id": "gZcHlCdoU1Ktlt9T", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json index 2bf1299fea..8fae500404 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PC-FR @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @EC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFREC", + "setting_id": "DOX4jdBlUuiFx27J", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json index 4c9c7ffadc..38744af40c 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEC", + "setting_id": "IA51CeVDjDQijUMY", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json index a9bc6b32ea..e86269bb09 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG PRO @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEC", + "setting_id": "ADLcWU2wDYdXUM0F", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json index 8c4f9aa94d..28f8027a7a 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG Translucent @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEC", + "setting_id": "bkdR8uTPqu0nMTMW", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json index be07c0a6ac..1875a4b76d 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-CF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEC", + "setting_id": "bNOqwg4q2TE94jEj", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json index 1237af2f27..fcfd9e3ed8 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PETG-GF @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEC", + "setting_id": "jDvyk3UkeiNb2U9m", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json index 7bb71e473a..d711d30b3a 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEC", + "setting_id": "UTupxlgJSq0rolXS", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json index 90d947c038..a69e1b0daa 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Basic @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEC", + "setting_id": "hO0eeJKhhc9aWSqV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json index 0aa51d0caf..cb692d090b 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Galaxy @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEC", + "setting_id": "F55l4bPdEauXI3Zf", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json index 47174d4fa3..521d677ac9 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Marble @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEC", + "setting_id": "lZOlnGqn1G7V5NBY", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json index 3ae4399052..ba0cdcff72 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Matte @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEC", + "setting_id": "GC7p8OUHQheNbsms", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json index 0cc360b994..59b3d04f4b 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA PRO @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEC", + "setting_id": "23RCuAK92MPaxyqe", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json index ad549484e3..1641f49732 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Silk @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEC", + "setting_id": "vSomzlfdeel8Fkkc", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json index e261cfbd62..cea1875a1e 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Sparkle @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEC", + "setting_id": "XbPbopAAmos9Fhe5", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json index bab8194d05..329eca7704 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA Wood @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEC", + "setting_id": "4cqc0qMp58PbLivG", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json index af2922966d..4b02ef0ff2 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo PLA+ @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEC", + "setting_id": "TtRiwCEgVej4q1bD", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json index f900f7b64b..5651aabd4e 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PETG @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEC", + "setting_id": "BIkMBzPkBJNZtn9I", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json index 72de307485..441e1c1844 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid PLA+ @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEC", + "setting_id": "SdBul5AmPj8ZwaKm", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json index 18b7416471..b698d51e37 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo Rapid TPU 95A @EC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEC", + "setting_id": "XWoU9g1mRLapDWmY", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json b/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json index 815b8dbca1..6e9944b30c 100644 --- a/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json +++ b/resources/profiles/Elegoo/filament/EC/Elegoo TPU 95A @EC.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEC", + "setting_id": "hqmWADQDYWBuniTB", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json new file mode 100644 index 0000000000..3dc25c5b53 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ABS @EC2.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "Elegoo ABS @EC2", + "inherits": "Elegoo ABS @base", + "from": "system", + "setting_id": "5SZiksUEUcxCOIN1", + "instantiation": "true", + "fan_max_speed": [ + "40" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json new file mode 100644 index 0000000000..4d029f9355 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA @EC2.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "Elegoo ASA @EC2", + "inherits": "Elegoo ASA @base", + "from": "system", + "setting_id": "OYEKFuyeKgCsHlYz", + "instantiation": "true", + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json new file mode 100644 index 0000000000..d448a14146 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo ASA-CF @EC2.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "Elegoo ASA-CF @EC2", + "inherits": "Elegoo ASA @base", + "from": "system", + "setting_id": "12kyjckYS59VKuJr", + "instantiation": "true", + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "fan_max_speed": [ + "30" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json new file mode 100644 index 0000000000..10d7202698 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PAHT-CF @EC2.json @@ -0,0 +1,74 @@ +{ + "type": "filament", + "name": "Elegoo PAHT-CF @EC2", + "inherits": "Elegoo PAHT @base", + "from": "system", + "setting_id": "miv95d8rXD4CAgjC", + "instantiation": "true", + "close_fan_the_first_x_layers": [ + "3" + ], + "fan_cooling_layer_time": [ + "5" + ], + "fan_max_speed": [ + "30" + ], + "fan_min_speed": [ + "10" + ], + "filament_flow_ratio": [ + "0.96" + ], + "filament_max_volumetric_speed": [ + "6" + ], + "nozzle_temperature": [ + "290" + ], + "nozzle_temperature_initial_layer": [ + "290" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "10" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json new file mode 100644 index 0000000000..46fa5ddf38 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PC @EC2.json @@ -0,0 +1,59 @@ +{ + "type": "filament", + "name": "Elegoo PC @EC2", + "inherits": "Elegoo PC @base", + "from": "system", + "setting_id": "Ybq7T5IKqXKfhhuc", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "270" + ], + "nozzle_temperature_range_low": [ + "250" + ], + "overhang_fan_threshold": [ + "25%" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "fan_cooling_layer_time": [ + "30" + ], + "fan_max_speed": [ + "35" + ], + "fan_min_speed": [ + "10" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json new file mode 100644 index 0000000000..e27e485702 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PC-FR @EC2.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Elegoo PC-FR @EC2", + "inherits": "Elegoo PC @base", + "from": "system", + "setting_id": "4y2nFqOY9OLYQT4I", + "instantiation": "true", + "pressure_advance": [ + "0.05" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "280" + ], + "nozzle_temperature_initial_layer": [ + "280" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "slow_down_layer_time": [ + "10" + ], + "fan_max_speed": [ + "40" + ], + "filament_density": [ + "1.1" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json new file mode 100644 index 0000000000..0e73748900 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PET-CF @EC2.json @@ -0,0 +1,62 @@ +{ + "type": "filament", + "name": "Elegoo PET-CF @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "YuxImosRqvxeXky9", + "instantiation": "true", + "pressure_advance": [ + "0.05" + ], + "enable_pressure_advance": [ + "1" + ], + "fan_cooling_layer_time": [ + "5" + ], + "filament_max_volumetric_speed": [ + "8" + ], + "nozzle_temperature": [ + "270" + ], + "nozzle_temperature_initial_layer": [ + "270" + ], + "nozzle_temperature_range_high": [ + "290" + ], + "nozzle_temperature_range_low": [ + "260" + ], + "overhang_fan_speed": [ + "40" + ], + "overhang_fan_threshold": [ + "0%" + ], + "reduce_fan_stop_start_freq": [ + "0" + ], + "slow_down_layer_time": [ + "2" + ], + "slow_down_min_speed": [ + "20" + ], + "textured_plate_temp": [ + "100" + ], + "textured_plate_temp_initial_layer": [ + "100" + ], + "filament_type": [ + "PET-CF" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json new file mode 100644 index 0000000000..249ea57ace --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG @EC2.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "Elegoo PETG @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "FOM7t4PtHtdqRgjm", + "instantiation": "true", + "pressure_advance": [ + "0.05" + ], + "enable_pressure_advance": [ + "1" + ], + "overhang_fan_threshold": [ + "50%" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "filament_max_volumetric_speed": [ + "11" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json new file mode 100644 index 0000000000..db3eac6a9b --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG HF @EC2.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "name": "Elegoo PETG HF @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "JXAbqQk05wQC2ZsV", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.26" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "fan_max_speed": [ + "50" + ], + "nozzle_temperature": [ + "240" + ], + "nozzle_temperature_initial_layer": [ + "240" + ], + "nozzle_temperature_range_high": [ + "250" + ], + "overhang_fan_speed": [ + "100" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json new file mode 100644 index 0000000000..f443590f79 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG PRO @EC2.json @@ -0,0 +1,26 @@ +{ + "type": "filament", + "name": "Elegoo PETG PRO @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "7eE7wOnwAMmDk3N8", + "instantiation": "true", + "pressure_advance": [ + "0.1" + ], + "overhang_fan_threshold": [ + "50%" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_max_volumetric_speed": [ + "5" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json new file mode 100644 index 0000000000..e5d38ae804 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG Translucent @EC2.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "Elegoo PETG Translucent @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "c62Io0F7o3YY9UfY", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "fan_max_speed": [ + "35" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "nozzle_temperature": [ + "255" + ], + "nozzle_temperature_initial_layer": [ + "255" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json new file mode 100644 index 0000000000..521e3f54d6 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-CF @EC2.json @@ -0,0 +1,50 @@ +{ + "type": "filament", + "name": "Elegoo PETG-CF @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "H5b1oB4xwcsOGVYG", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "filament_density": [ + "1.26" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json new file mode 100644 index 0000000000..0376628dd7 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PETG-GF @EC2.json @@ -0,0 +1,47 @@ +{ + "type": "filament", + "name": "Elegoo PETG-GF @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "UXEBZHN5QuEKg2dX", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_density": [ + "1.26" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "fan_max_speed": [ + "40" + ], + "fan_min_speed": [ + "5" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "nozzle_temperature_range_low": [ + "240" + ], + "overhang_fan_speed": [ + "100" + ], + "slow_down_layer_time": [ + "6" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json new file mode 100644 index 0000000000..a4e9d09ba5 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA @EC2.json @@ -0,0 +1,35 @@ +{ + "type": "filament", + "name": "Elegoo PLA @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "BvxOuzsi4u4eeHkc", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "21" + ], + "nozzle_temperature_initial_layer": [ + "210" + ], + "nozzle_temperature": [ + "210" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json new file mode 100644 index 0000000000..bf2e6de3d6 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Basic @EC2.json @@ -0,0 +1,38 @@ +{ + "type": "filament", + "name": "Elegoo PLA Basic @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "YBylnOIc1QhV45N0", + "instantiation": "true", + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json new file mode 100644 index 0000000000..485a267cc4 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Galaxy @EC2.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "Elegoo PLA Galaxy @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "BZ67cDxyhlFdrNPf", + "instantiation": "true", + "fan_min_speed": [ + "80" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json new file mode 100644 index 0000000000..d9cd47f31e --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Glow @EC2.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "Elegoo PLA Glow @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "X18eV3oo6N3xDJXN", + "instantiation": "true", + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "fan_min_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json new file mode 100644 index 0000000000..819bcc8fb7 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Marble @EC2.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "Elegoo PLA Marble @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "D4UWZLfsmnwQSQP0", + "instantiation": "true", + "fan_min_speed": [ + "80" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json new file mode 100644 index 0000000000..5713ef1094 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Matte @EC2.json @@ -0,0 +1,53 @@ +{ + "type": "filament", + "name": "Elegoo PLA Matte @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "EMVja9n1ZwI2Lq3R", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_density": [ + "1.25" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json new file mode 100644 index 0000000000..128866138d --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA PRO @EC2.json @@ -0,0 +1,32 @@ +{ + "type": "filament", + "name": "Elegoo PLA PRO @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "TXUB904pAsT5napV", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "20" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "pressure_advance": [ + "0.032" + ], + "slow_down_layer_time": [ + "6" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json new file mode 100644 index 0000000000..def1a54169 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Silk @EC2.json @@ -0,0 +1,56 @@ +{ + "type": "filament", + "name": "Elegoo PLA Silk @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "9M8QYAJcLTyKLgNL", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "8" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "enable_pressure_advance": [ + "1" + ], + "pressure_advance": [ + "0.04" + ], + "filament_density": [ + "1.32" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json new file mode 100644 index 0000000000..17abe488dc --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Sparkle @EC2.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Elegoo PLA Sparkle @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "l7NSciXWqkFqbTgB", + "instantiation": "true", + "fan_min_speed": [ + "80" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_high": [ + "220" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json new file mode 100644 index 0000000000..8bd5e92dea --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Translucent2 @EC2.json @@ -0,0 +1,44 @@ +{ + "type": "filament", + "name": "Elegoo PLA Translucent2 @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "RKBHiiO580ou2vr1", + "instantiation": "true", + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "fan_min_speed": [ + "100" + ], + "filament_max_volumetric_speed": [ + "15" + ], + "filament_retract_when_changing_layer": [ + "1" + ], + "filament_retraction_length": [ + "0.4" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "slow_down_layer_time": [ + "8" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json new file mode 100644 index 0000000000..1071c52353 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA Wood @EC2.json @@ -0,0 +1,41 @@ +{ + "type": "filament", + "name": "Elegoo PLA Wood @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "ym42CllFezpl1XEg", + "instantiation": "true", + "fan_min_speed": [ + "80" + ], + "filament_max_volumetric_speed": [ + "10" + ], + "nozzle_temperature": [ + "220" + ], + "nozzle_temperature_initial_layer": [ + "220" + ], + "nozzle_temperature_range_low": [ + "200" + ], + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "4" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json new file mode 100644 index 0000000000..cbf217cae1 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA+ @EC2.json @@ -0,0 +1,29 @@ +{ + "type": "filament", + "name": "Elegoo PLA+ @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "vf5ap9MNwVgptsvO", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "20" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "slow_down_layer_time": [ + "6" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json new file mode 100644 index 0000000000..e148759647 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo PLA-CF @EC2.json @@ -0,0 +1,65 @@ +{ + "type": "filament", + "name": "Elegoo PLA-CF @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "UpGOamlqBkqj71bx", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "60" + ], + "filament_max_volumetric_speed": [ + "16" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "6" + ], + "textured_plate_temp": [ + "65" + ], + "textured_plate_temp_initial_layer": [ + "65" + ], + "pressure_advance": [ + "0.032" + ], + "enable_pressure_advance": [ + "1" + ], + "additional_cooling_fan_speed": [ + "0" + ], + "cool_plate_temp": [ + "45" + ], + "cool_plate_temp_initial_layer": [ + "45" + ], + "filament_density": [ + "1.21" + ], + "required_nozzle_HRC": [ + "40" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json new file mode 100644 index 0000000000..7242ba793e --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PETG @EC2.json @@ -0,0 +1,42 @@ +{ + "type": "filament", + "name": "Elegoo Rapid PETG @EC2", + "renamed_from": "Elegoo RAPID PETG @EC2", + "inherits": "Elegoo PETG @base", + "from": "system", + "setting_id": "1qDXoSeuwBcAbZmk", + "instantiation": "true", + "pressure_advance": [ + "0.052" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_flow_ratio": [ + "0.99" + ], + "fan_max_speed": [ + "80" + ], + "fan_min_speed": [ + "30" + ], + "filament_density": [ + "1.26" + ], + "filament_max_volumetric_speed": [ + "18" + ], + "nozzle_temperature": [ + "250" + ], + "nozzle_temperature_initial_layer": [ + "250" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json new file mode 100644 index 0000000000..e3d33b2243 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid PLA+ @EC2.json @@ -0,0 +1,54 @@ +{ + "type": "filament", + "name": "Elegoo Rapid PLA+ @EC2", + "renamed_from": "Elegoo RAPID PLA+ @EC2", + "inherits": "Elegoo PLA @base", + "from": "system", + "setting_id": "lfHbQa7hrJ7wg4oC", + "instantiation": "true", + "fan_cooling_layer_time": [ + "80" + ], + "fan_max_speed": [ + "100" + ], + "fan_min_speed": [ + "60" + ], + "hot_plate_temp": [ + "60" + ], + "hot_plate_temp_initial_layer": [ + "60" + ], + "slow_down_layer_time": [ + "4" + ], + "textured_plate_temp": [ + "60" + ], + "textured_plate_temp_initial_layer": [ + "60" + ], + "pressure_advance": [ + "0.04" + ], + "enable_pressure_advance": [ + "1" + ], + "filament_max_volumetric_speed": [ + "21" + ], + "filament_density": [ + "1.25" + ], + "filament_start_gcode": [ + "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json new file mode 100644 index 0000000000..7195e17e93 --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo Rapid TPU 95A @EC2.json @@ -0,0 +1,33 @@ +{ + "type": "filament", + "name": "Elegoo Rapid TPU 95A @EC2", + "renamed_from": "Elegoo RAPID TPU 95A @EC2", + "inherits": "Elegoo TPU @base", + "from": "system", + "setting_id": "siG31sp4DyxsrhAc", + "instantiation": "true", + "pressure_advance": [ + "0.1" + ], + "enable_pressure_advance": [ + "1" + ], + "nozzle_temperature": [ + "230" + ], + "nozzle_temperature_initial_layer": [ + "230" + ], + "nozzle_temperature_range_high": [ + "230" + ], + "filament_max_volumetric_speed": [ + "12" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json b/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json new file mode 100644 index 0000000000..1389221bce --- /dev/null +++ b/resources/profiles/Elegoo/filament/EC2/Elegoo TPU 95A @EC2.json @@ -0,0 +1,23 @@ +{ + "type": "filament", + "name": "Elegoo TPU 95A @EC2", + "inherits": "Elegoo TPU @base", + "from": "system", + "setting_id": "6LUQGjzmx0y5A6Qn", + "instantiation": "true", + "filament_max_volumetric_speed": [ + "3.2" + ], + "pressure_advance": [ + "0.1" + ], + "enable_pressure_advance": [ + "1" + ], + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle", + "Elegoo Centauri 2 0.4 nozzle", + "Elegoo Centauri 2 0.6 nozzle", + "Elegoo Centauri 2 0.8 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json index 919a4fb9dc..0d3725cb07 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo ABS @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @ECC", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSECC", + "setting_id": "mf4NcnjjiIjNuMA3", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json index a8d8d6c602..6bc80b3c06 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo ASA @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @ECC", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAECC", + "setting_id": "77YB8eSdq9C9iBp5", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json index 369b51592c..bf0363b0d7 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PAHT-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @ECC", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFECC", + "setting_id": "iDRlRpUzPNVYv0lY", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json index feb0cbab66..0eeb37b0f0 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PC @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @ECC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCECC", + "setting_id": "z0xZCiFziKFsPc3P", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json index fff4c52299..4fc22048cb 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PC-FR @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @ECC", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFRSECC", + "setting_id": "nCZkQRo7hh7vwwbL", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json index 200d4ffac0..6732de8de5 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGECC", + "setting_id": "9qDLxo5BPythq9iX", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json index 64700f002f..49692dd335 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG PRO @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROECC", + "setting_id": "VfYr5aZoseuXcbN6", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json index c9d7b2301a..de9d234ce4 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG Translucent @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSECC", + "setting_id": "X5cTMTTWd0GWWj6d", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json index 1d046fdcc1..a2f6620a79 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFECC", + "setting_id": "WNaFMeStUh8INJGx", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json index 4d9798fa0e..68df019a74 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PETG-GF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFECC", + "setting_id": "s5zG5lNveft4RPEX", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json index d8c24383e5..5c088e4da7 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAECC", + "setting_id": "gY5iXMneCLGuZpIB", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json index 24f95617d1..2470cead83 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Basic @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICECC", + "setting_id": "zCxfCnJcHoGLipVy", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json index 985b30cc8a..5e0e0819c1 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Galaxy @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYECC", + "setting_id": "M5uv0mruFXpkbauD", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json index 57987e1848..d9104d271f 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Marble @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEECC", + "setting_id": "BFEnBt0IBILLmhri", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json index e6c86c3acc..79e4a2b076 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Matte @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMECC", + "setting_id": "niMCkAjPd2bJdjZs", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json index 7748b9ba68..bbd35a7c58 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA PRO @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROECC", + "setting_id": "JfYUDBI0wNnLpEsL", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json index 632e7beceb..7d135cd9fd 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Silk @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASECC", + "setting_id": "n4hPXKakxN4xmQsj", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json index 10ce75ed7f..6143048aa1 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Sparkle @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEECC", + "setting_id": "kn34IfbyhDKllxwq", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json index 5b425257c1..92842d8fbf 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA Wood @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODECC", + "setting_id": "kI7ZFyzYkMcrKrM1", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json index 742e5e9b8e..06c833d7b2 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA+ @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSECC", + "setting_id": "UbOYgGsK00v3gLL8", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json index fcde303333..4743d13a9f 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo PLA-CF @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFECC", + "setting_id": "rvrpVcpcUAtwXgsn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json index 28a5b9054d..6ea852850d 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PETG @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @ECC", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGECC", + "setting_id": "r4F3n71ajBUlmLgN", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json index 9d052c69af..859b66e8ad 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid PLA+ @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @ECC", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSECC", + "setting_id": "OvdHgrXbSulHkLWz", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json index 721646104a..6faef1d73a 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo Rapid TPU 95A @ECC.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @ECC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AECC", + "setting_id": "uVpRY8TCq9S6kr8M", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json b/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json index 1591f349de..870f4dc8ac 100644 --- a/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json +++ b/resources/profiles/Elegoo/filament/ECC/Elegoo TPU 95A @ECC.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @ECC", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AECC", + "setting_id": "cOI05FCm8wrkqtDD", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json index f1b2d92f84..0b30492cad 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ABS @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @ECC2", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABSECC2", + "setting_id": "Yrf1rCjVfmeDdegq", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json index 16bf2c9783..5e42ef4aff 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @ECC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAECC2", + "setting_id": "GlyfzHNVKZtaIj3S", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json index 70e62631ad..0974b25503 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo ASA-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA-CF @ECC2", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASACFECC2", + "setting_id": "X7ugJOOrWixpeke8", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json index 01f9a78a39..5c41f76588 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PAHT-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @ECC2", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "EPAHTCFECC2", + "setting_id": "hmTwVvyCAIZI7rSY", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json index 121ef6cc23..30441191ed 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @ECC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCECC2", + "setting_id": "9DjHFRqI041QXR50", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json index b33fa92dd8..5875d26411 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PC-FR @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @ECC2", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFRECC2", + "setting_id": "M86WAPT5jr5ge7Ni", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json index a93f92a80c..9519266c2d 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PET-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PET-CF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETCFECC2", + "setting_id": "sIwAf2oRC7VqYjIR", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json index 86b59e05f2..70576080a5 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGECC2", + "setting_id": "3HGwQZvPPZuLpmi8", "instantiation": "true", "pressure_advance": [ "0.05" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json index 8b9a2424c7..27ad64e1b5 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG HF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG HF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGHFECC2", + "setting_id": "EAt1AJX3ZupILYWV", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json index 870da6bc17..bb535d3213 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG PRO @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROECC2", + "setting_id": "YjUFi1BuigQdJGfe", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json index f6e2415659..de86ebaae6 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG Translucent @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSECC2", + "setting_id": "Nk21n7x4I5xjwNqV", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json index f20bd21e4a..1e40c2a305 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFECC2", + "setting_id": "TsJJG9mgzBt5GWPZ", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json index 2793ff9477..13060e74ba 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PETG-GF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFECC2", + "setting_id": "Po38QP4RqkGBZTHq", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json index 736498b463..8574ef68bc 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAECC2", + "setting_id": "49fzd1JgB0epXI3n", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json index 1e76fce7e2..e301741c27 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Basic @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICECC2", + "setting_id": "CG6nOQRYTWN0jJNV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json index cb355299a7..638fef599c 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Galaxy @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYECC2", + "setting_id": "jieMxZQRwSJ8lOQK", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json index 682525af9c..7944c67d88 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Glow @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Glow @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGLOWECC2", + "setting_id": "S6c2IXcIWDpViP2T", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json index 52ad79f270..297ac4fcd0 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Marble @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEECC2", + "setting_id": "vBkiE3Uh1LdCiOig", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json index 525deb582e..025d40e19d 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Matte @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMECC2", + "setting_id": "C3IdNUQ5dSe1wQua", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json index bff9ce802f..f1b8a7a1d2 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA PRO @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROECC2", + "setting_id": "nIBhL1ZCxYZSMZTO", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json index b56b658023..62efb49b53 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Silk @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASECC2", + "setting_id": "R20HD2TcTFmVt8ei", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json index 30aa2989df..da6927987e 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Sparkle @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEECC2", + "setting_id": "RoM3TYRuszinvW6b", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json index e36ab37b49..8a81ff7ccf 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Translucent2 @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Translucent2 @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLATRA2ECC2", + "setting_id": "K1pIYbrCCJUBwAOt", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json index 7fc7061177..0b794f78a6 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA Wood @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODECC2", + "setting_id": "7D7QoTRo7U4HGaZB", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json index 2c5a5e545e..7b6e068061 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA+ @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSECC2", + "setting_id": "GCMagCIZUPjPBpuH", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json index 1a2e475550..a95b21ddba 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo PLA-CF @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFECC2", + "setting_id": "0pllUBj7uWuhIr0v", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json index d6db5dca46..fe19d98291 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PETG @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @ECC2", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGECC2", + "setting_id": "oVp14HbITUsNcgvp", "instantiation": "true", "pressure_advance": [ "0.052" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json index 8305cd4342..c173221004 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid PLA+ @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @ECC2", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSECC2", + "setting_id": "qXybozVO1oL7MEud", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json index b94440f1b0..ebbdefb767 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo Rapid TPU 95A @ECC2.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @ECC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AECC2", + "setting_id": "5osmvljNWBUEc9Kc", "instantiation": "true", "pressure_advance": [ "0.1" diff --git a/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json b/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json index 4325247c92..86eccaff03 100644 --- a/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json +++ b/resources/profiles/Elegoo/filament/ECC2/Elegoo TPU 95A @ECC2.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @ECC2", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AECC2", + "setting_id": "v0Qj3xMBkUGnxZPi", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json index 30e9e2e6a8..2492ca8ec5 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @0.2 nozzle", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "EABS00020", + "setting_id": "stkzx3iRb8i4yDWL", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json index 44e4e04e3c..7f739de3a2 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @0.2 nozzle", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASA00020", + "setting_id": "CU2k82NwHp3JdSiH", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json index 61352cbe95..472ccd949e 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @0.2 nozzle", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPC00020", + "setting_id": "1XvweoHPvLXiTYMe", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json index fa46890a50..88c968cf23 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PC-FR @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @0.2 nozzle", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "EPCFR00020", + "setting_id": "Q6LfquCFYpzmrILa", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json index 156463b35e..7ae01bcf1b 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETG00020", + "setting_id": "Vua3KPuCmm7fbcYB", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json index d3494d3080..9978fb863b 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG PRO @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPRO00020", + "setting_id": "TBkoABUqBy51TLtW", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json index 6890ddb9a9..7b11b3b54e 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PETG Translucent @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRAN00020", + "setting_id": "3zgNnsZ5SmrldddZ", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json index bed4e50ce7..9bfeb0529c 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA @0.2 nozzle.json @@ -2,7 +2,7 @@ "type": "filament", "name": "Elegoo PLA @0.2 nozzle", "from": "system", - "setting_id": "EPLA00020", + "setting_id": "g5M60iK3oBpmDv68", "instantiation": "true", "inherits": "Elegoo PLA @base", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json index cfa1d70b64..c606063a33 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASIC00020", + "setting_id": "cBFHhPKahRBGfAg6", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json index 04fb166a67..f5bb2921b3 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAM00020", + "setting_id": "TyHg4K4ZNiYKgaso", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json index 7cda893c0a..80f9b0cab9 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA PRO @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPRO00020", + "setting_id": "ed7EP0Fx9X6WoP8q", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json index bf907a05c7..e6a61535b3 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAS00020", + "setting_id": "9cy4zu57LxlFIrLB", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json index 11989fcb15..7bab03c3c0 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo PLA+ @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUS00020", + "setting_id": "IODCNDnNbt1xXMQR", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json index ed9d38cd90..4f9d3ddacd 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PETG @0.2 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @0.2 nozzle", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETG00020", + "setting_id": "Vn71U93sqvxWaq5J", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json index b031e6a3bb..f7d3bf2b8b 100644 --- a/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json +++ b/resources/profiles/Elegoo/filament/ELEGOO_02_NOZZLE/Elegoo Rapid PLA+ @0.2 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @0.2 nozzle", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUS00020", + "setting_id": "52q6GSMo16aOU2a0", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json index fbc0cd346e..bb1b0fc449 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo ASA @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN2 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN2", + "setting_id": "EsVhkMWxx6k3L7f9", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json index de9093ed44..580e6ec8ca 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN2", + "setting_id": "nLsZ6NET1mvnoGGC", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json index 3d9f986811..2d540432f1 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG PRO @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN2", + "setting_id": "47TFK2SdXkanFany", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json index 2dd0079603..ec6735ee45 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG Translucent @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN2", + "setting_id": "PG4cLzHQ2okqwTVi", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json index eb61024e9d..f4cb06df03 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-CF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN2", + "setting_id": "xVvTmdiPx4DqsoSt", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json index 471d0bb72f..1d4376f603 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PETG-GF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN2", + "setting_id": "Wuj48uGxkjtu1k0E", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json index 1043b0ecca..991d64b4a8 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN2", + "setting_id": "qqTgiLtLxaGimLU9", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json index ab1a33a57c..1625d88ade 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Basic @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN2", + "setting_id": "rKMXIa1T57ARSSew", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json index 1f42e7c028..969338f3fb 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Galaxy @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN2", + "setting_id": "dK5fXHKyvXbajhfU", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json index a2f3e55a16..49de0c172a 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Marble @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN2", + "setting_id": "vcJBgxGVh5Rl3dRy", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json index 799e8181e4..b526d88f8a 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Matte @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN2", + "setting_id": "pFzHY2WtgjYBAq1c", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json index 9e9e95e770..bbca38423a 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA PRO @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN2", + "setting_id": "AP6zWYwNv7aXdT4e", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json index f7319a958d..b75a9105f7 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Silk @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN2", + "setting_id": "AquzfXzcf6CxPLmL", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json index 7fa37edb94..a63d22f72b 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Sparkle @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN2", + "setting_id": "sYpjo9kbuDSM5YXe", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json index 4c9153155a..1f52f7a951 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA Wood @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN2", + "setting_id": "FCCgNMxR3m3CtWBL", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json index e3f5a23d48..aa2afe2789 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA+ @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN2", + "setting_id": "qn1N6b1JCgut6S69", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json index 902ef1c5d6..51be7c9afc 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo PLA-CF @EN2 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN2", + "setting_id": "vmxHMRDkf1EpLGx1", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json index 41d095cf50..66e35e0448 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PETG @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN2 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN2", + "setting_id": "7Nqa8yKgcpoRnMhS", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json index 382ce0d8d5..16f84c1480 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid PLA+ @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN2 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN2", + "setting_id": "GRiM2kKnyW0xiFoS", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json index fd4d6e9652..f7fd820319 100644 --- a/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json +++ b/resources/profiles/Elegoo/filament/EN2SERIES/Elegoo Rapid TPU 95A @EN2 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN2 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN2", + "setting_id": "NcE57l7rlZXMQqqO", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json index 5de869a658..2a34a9dff9 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo ASA @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN3 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN3", + "setting_id": "SDHq0vtdwuAPJtjN", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json index 781b808133..0dff0ccce0 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN3", + "setting_id": "ij2hYApjrIsKHJyr", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json index c498f1e598..d7b7d77e88 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG PRO @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN3", + "setting_id": "hcpl3lUmYmocda9K", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json index 971d53656e..a5df1863a2 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG Translucent @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN3", + "setting_id": "vvE6QSdUAwZyExFq", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json index f98b403cdb..85b4e262ce 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-CF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN3", + "setting_id": "w31T0qj9YkyNYfXR", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json index ac76ce3147..a0c6dffa1e 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PETG-GF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN3", + "setting_id": "Ss1cK4Mg4Qsmq60H", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json index 18c3eaf3ec..d2b79862c1 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN3", + "setting_id": "taDnu9cpJUbXdHoQ", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json index 143f339938..d322e76d4a 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Basic @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN3", + "setting_id": "HuzVgg6RrpAtYYEv", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json index fbc88fdbf4..70a9903ae6 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Galaxy @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN3", + "setting_id": "BpZZWJcuFxWOCCnw", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json index 62a101c268..b6e4d20992 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Marble @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN3", + "setting_id": "BxsWsE3wgE9wgBmm", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json index b67e97045d..8360ac8d5c 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Matte @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN3", + "setting_id": "L3da64GFIKUFdDJA", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json index 499675593e..114e264047 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA PRO @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN3", + "setting_id": "V7HUl0gBvGKwKD1A", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json index eee7f8f096..d7fa7b836b 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Silk @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN3", + "setting_id": "ik0YrrrI6oUpXz79", "instantiation": "true", "filament_max_volumetric_speed": [ "9" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json index 1e1cdb862d..b40ed87cf6 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Sparkle @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN3", + "setting_id": "5NjKDHvQ2r1kxHGU", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json index 9726bfddaf..3d3ac38460 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA Wood @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN3", + "setting_id": "aieihLgO1a0ZdWfJ", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json index d0b49cf32c..00844dd1e8 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA+ @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN3", + "setting_id": "LqnrFp0vDbiCMJ8I", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json index d363ea7038..ab7ccd7730 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo PLA-CF @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN3", + "setting_id": "1NWIyM71opgpoto1", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json index 485e909930..30ca32476f 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PETG @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN3 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN3", + "setting_id": "WrjA1jFlRkBjm8sV", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json index 0f85ec1c3e..a8755142d5 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid PLA+ @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN3 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN3", + "setting_id": "HLIz2ghBgZEcM67x", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json index 8d6a32d069..0a9d3251b0 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo Rapid TPU 95A @EN3 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN3 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN3", + "setting_id": "q51os4xSncl4kA7h", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json index 6167f88389..864845cb2f 100644 --- a/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json +++ b/resources/profiles/Elegoo/filament/EN3SERIES/Elegoo TPU 95A @EN3 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EN3 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEN3", + "setting_id": "4W6ZheJxNPUPxe1s", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json index 957e1ba787..abea99e5f1 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo ASA @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @EN4 Series", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEN4", + "setting_id": "a1NS4HIOx4RdcEcd", "instantiation": "true", "nozzle_temperature": [ "270" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json index e604194970..c972638218 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEN4", + "setting_id": "F2QHmHHESauqsO4I", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json index 397889ae25..3f514f290c 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG PRO @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEN4", + "setting_id": "9vWaWFD7kELXCz9k", "instantiation": "true", "compatible_printers": [ "Elegoo Neptune 4 0.4 nozzle", diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json index 02eb8b4489..9d4befe58d 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG Translucent @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEN4", + "setting_id": "MGNtc9J7whLEQzfo", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json index fb99debce7..6b6d93b07e 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-CF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEN4", + "setting_id": "OqmWX74QvP3luz8T", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json index aa58c3fa8f..9c60c02542 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PETG-GF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEN4", + "setting_id": "l9VHRBqMe9jvI5x6", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json index 7534fbb94c..e33665afb8 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEN4", + "setting_id": "qZaGbJyYQ8uh1oFU", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json index 4567b161ad..a35c8b06f3 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Basic @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEN4", + "setting_id": "djQpscbgnpi9yeDU", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json index 69484ece9c..3b8b23e8d2 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Galaxy @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEN4", + "setting_id": "rDOS8SneslZCJyiY", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json index d344d74cde..6aaaa87311 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Marble @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEN4", + "setting_id": "EXITbaYE2JGd9m6w", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json index cf5145f8ba..b05ed89beb 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Matte @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEN4", + "setting_id": "PKKBmF1QUn3byAbe", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json index bdf43eced6..d993878b35 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA PRO @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPROEN4", + "setting_id": "912jZphbXGIftHOj", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json index 45d08957df..0f01fc1e0e 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Silk @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASEN4", + "setting_id": "3Gwsgkj54YfChaTX", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json index 4e53eb8608..50750bf2cb 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Sparkle @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEN4", + "setting_id": "fpSoENagRf6Xkgtr", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json index 9c604c79e5..3e84f6da3f 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA Wood @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEN4", + "setting_id": "9HTUZ0mmSCp2asTR", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json index 2c66690792..569f2e4a73 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA+ @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAPLUSEN4", + "setting_id": "aFHpETdqnjrmKoh2", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json index f352877bd3..174db0000f 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo PLA-CF @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLACFEN4", + "setting_id": "tRWzBsYXsnpNVsQ4", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json index 3c58bc9f21..5355c6c52f 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PETG @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PETG @EN4 Series", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEN4", + "setting_id": "fvbwrYR63t9NnL8m", "instantiation": "true", "fan_max_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json index b12b80cd45..024aa42f17 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid PLA+ @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID PLA+ @EN4 Series", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAPLUSEN4", + "setting_id": "Eu5Ao6aTdlnV5o7e", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json index 663b8fd090..bcf333c319 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo Rapid TPU 95A @EN4 Series.json @@ -4,7 +4,7 @@ "renamed_from": "Elegoo RAPID TPU 95A @EN4 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEN4", + "setting_id": "0FWDHJF7V9rGXugP", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json index c141a0a826..392812ff9a 100644 --- a/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json +++ b/resources/profiles/Elegoo/filament/EN4SERIES/Elegoo TPU 95A @EN4 Series.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @EN4 Series", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ETPU95AEN4", + "setting_id": "6pp381J3ahRYYtFE", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json index 3573c79170..fca1b001a8 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo ASA @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @Elegoo Giga", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "EASAEOSG00", + "setting_id": "YEKtGrB8gsvKz8XQ", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json index 51b98600e9..fa02324356 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGEOSG00", + "setting_id": "7XyTDotf1zFmCPTV", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json index cf29643e77..e5a75475c3 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG PRO @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGPROEOSG00", + "setting_id": "cO87yMETWbUTIweN", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json index 6270895584..61c21f7d5f 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG Translucent @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGTRANSEOSG00", + "setting_id": "fkE2LCMu63t1NQtI", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json index a7abae476e..8f90166c6b 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-CF @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGCFEOSG00", + "setting_id": "uGF6puqnX1jW2pmn", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json index acea7ef222..0d280b37cb 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PETG-GF @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @Elegoo Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "EPETGFEOSG00", + "setting_id": "S4ZpKZDyr5g5HMPi", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json index a834953146..32d6f6a1eb 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAEOSG00", + "setting_id": "DzHDGa5SJa8wdZkD", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json index dd33bb73cb..d49474bcfe 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Basic @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLABASICEOSG00", + "setting_id": "vdtyGUjloveBjsGV", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json index 0355d60abf..c9ba6949ab 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Galaxy @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAGALAXYEOSG00", + "setting_id": "Nq1YaFeJ6Osr7OZ9", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json index 3e65b89ee2..435e05d0ab 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Marble @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMARBLEEOSG00", + "setting_id": "6mfjc7t9ntuG1ZKW", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json index aa47d8b1f8..9ab372abee 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Matte @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAMEOSG00", + "setting_id": "mHbvYB78eds96SH8", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json index a05cdbfc97..9b11bc2cae 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Sparkle @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLASPARKLEEOSG00", + "setting_id": "pgsOuYMxtcm3Fkar", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json index ebb837679c..9dd74672fc 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo PLA Wood @Elegoo Giga.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @Elegoo Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "EPLAWOODEOSG00", + "setting_id": "BI2euv7xwM9F2hKC", "instantiation": "true", "fan_min_speed": [ "80" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json index 245d6b0cdf..b91444664e 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PETG @Elegoo Giga.json @@ -1,10 +1,10 @@ { "type": "filament", "name": "Elegoo Rapid PETG @Elegoo Giga", - "renamed_from": "Elegoo RAPID PETG @Elegoo Giga;Elegoo Rapid PETG @EOS Giga", + "renamed_from": "Elegoo RAPID PETG @Elegoo Giga;Elegoo Rapid PETG @EOS Giga;Elegoo RAPID PETG @EOS Giga", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "ERPETGEOSG00", + "setting_id": "4ut2mjKopnW6tfxj", "instantiation": "true", "enable_pressure_advance": [ "1" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json index b2c5318bdd..da6b0baf35 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid PLA+ @Elegoo Giga.json @@ -1,10 +1,10 @@ { "type": "filament", "name": "Elegoo Rapid PLA+ @Elegoo Giga", - "renamed_from": "Elegoo RAPID PLA+ @Elegoo Giga;Elegoo Rapid PLA+ @EOS Giga", + "renamed_from": "Elegoo RAPID PLA+ @Elegoo Giga;Elegoo Rapid PLA+ @EOS Giga;Elegoo RAPID PLA+ @EOS Giga", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "ERPLAEOSG00", + "setting_id": "9I2DPoLgiCzn1S3i", "instantiation": "true", "filament_max_volumetric_speed": [ "30" diff --git a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json index 42657eb4ae..f634875fd5 100644 --- a/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json +++ b/resources/profiles/Elegoo/filament/EOSGIGA/Elegoo Rapid TPU 95A @Elegoo Giga.json @@ -1,10 +1,10 @@ { "type": "filament", "name": "Elegoo Rapid TPU 95A @Elegoo Giga", - "renamed_from": "Elegoo RAPID TPU 95A @Elegoo Giga;Elegoo Rapid TPU 95A @EOS Giga", + "renamed_from": "Elegoo RAPID TPU 95A @Elegoo Giga;Elegoo Rapid TPU 95A @EOS Giga;Elegoo RAPID TPU 95A @EOS Giga", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "ERTPU95AEOSG00", + "setting_id": "i0PeAUTlls9DGtRK", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json index 1539420333..b76858c450 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Elegoo Centauri", "inherits": "Generic ABS @base", "from": "system", - "setting_id": "GABS00", + "setting_id": "xrKluVQuISBlBUu1", "instantiation": "true", "compatible_printers": [ "Elegoo Centauri 0.4 nozzle", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json index 5ca4dbc7d5..ff56f113f1 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "RWcQPhlCtjoh9xec", "name": "Generic ABS @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json index 00baf4dd4a..2ebff4843e 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ABS-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ABS-CF @Elegoo Centauri", "inherits": "Generic ABS @base", "from": "system", - "setting_id": "GABSCF00", + "setting_id": "fRiriEvlcxDDO5tc", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json index 6aea31620f..eed4e746d9 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ASA @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSA04", + "setting_id": "U5sKORLsVPcldRY9", "name": "Generic ASA @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json index 9dd8d483d3..1fe2791869 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic ASA-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic ASA-CF @Elegoo Centauri", "inherits": "Generic ASA @base", "from": "system", - "setting_id": "GASACF00", + "setting_id": "S5kHIMcORjlPRnVs", "instantiation": "true", "filament_type": [ "ASA-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json index 285c7f4f3c..06b8649f98 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PA @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PA @Elegoo", "inherits": "Generic PA @base", "from": "system", - "setting_id": "GPA00", + "setting_id": "Fgy6uWnAWGPzt8Kn", "instantiation": "true", "activate_air_filtration": [ "0" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json index d85cfeb65b..46b8157cf4 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PA6-CF @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PA6-CF @Elegoo", "inherits": "Generic PA @base", "from": "system", - "setting_id": "GPA6CF00", + "setting_id": "TPgpyakWZ7NjVnj5", "instantiation": "true", "fan_min_speed": [ "10" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json index 0ec151c97f..359d9bf5b4 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PC @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PC @Elegoo", "inherits": "Generic PC @base", "from": "system", - "setting_id": "GPC00", + "setting_id": "fByRyAZlMcqYvbOD", "instantiation": "true", "fan_cooling_layer_time": [ "35" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json index 5778e9a573..da160366dd 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PC-CF @Elegoo.json @@ -3,7 +3,7 @@ "name": "Generic PC-CF @Elegoo", "inherits": "Generic PC @base", "from": "system", - "setting_id": "GPCCF00", + "setting_id": "KMhdBJbiUeXxKgPS", "instantiation": "true", "filament_type": [ "PC-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json index b119f96e13..3686abe5db 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PET @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PET @Elegoo Centauri", "inherits": "Generic PET @base", "from": "system", - "setting_id": "GPET00", + "setting_id": "Nn0ISgWlD53VIDtl", "instantiation": "true", "fan_cooling_layer_time": [ "8" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json index 4f8870e259..4e9aa92be9 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PET-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PET-CF @Elegoo Centauri", "inherits": "Generic PET @base", "from": "system", - "setting_id": "GPETCF00", + "setting_id": "Q6wiKjigmzkcMxFz", "instantiation": "true", "filament_type": [ "PET-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json index 5fdd3b1e66..005d5b305c 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "MJMg6nee4l28n2mK", "name": "Generic PETG @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json index 0943c9a4cb..c2ba7dfa97 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG PRO @Elegoo.json @@ -1,7 +1,8 @@ { "type": "filament", - "setting_id": "GFSG99", + "setting_id": "pKzSR8XeyyUDbrNW", "name": "Generic PETG PRO @Elegoo", + "renamed_from": "Elegoo Generic PETG PRO", "from": "system", "instantiation": "true", "inherits": "Generic PETG @base", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json index 6bd37edb40..5e5e84e3dd 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PETG-CF @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @Elegoo Centauri", "inherits": "Generic PETG @base", "from": "system", - "setting_id": "GPETGCF00", + "setting_id": "bWUrg1tIttzhMYlr", "instantiation": "true", "filament_type": [ "PETG-CF" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json index 6fd7df7a4c..91941a0990 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo Centauri.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Elegoo Centauri", "inherits": "Generic PLA @base", "from": "system", - "setting_id": "GPLA00", + "setting_id": "WDTVrLnXWUixyMcl", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json index ca3e23847a..d70a73e10e 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "PaFKjG9jocZSHl76", "name": "Generic PLA @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json b/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json index 6292e28bc5..db84f78382 100644 --- a/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json +++ b/resources/profiles/Elegoo/filament/Generic/Generic PLA Matte @Elegoo.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "GFSL99", + "setting_id": "dH2Yf92iqsOj5XYo", "name": "Generic PLA Matte @Elegoo", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json index 14005f4ab1..395a1370cc 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.2 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC02", + "setting_id": "XoxhdPS9GunkuReP", "instantiation": "true", "nozzle_diameter": [ "0.2" @@ -11,7 +11,7 @@ "printer_model": "Elegoo Centauri", "printer_variant": "0.2", "default_filament_profile": [ - "Elegoo PLA @0.2 nozzle" + "Elegoo PLA @EC" ], "default_print_profile": "0.10mm Standard @Elegoo C 0.2 nozzle", "retraction_minimum_travel": [ diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json index 5dd0f6691c..04ff476ec7 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "EC04", + "setting_id": "Tzf5yPxAneRY9c7W", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json index 4ecb953e0c..494c91346b 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.6 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC06", + "setting_id": "jTSxLQlbwCsrFlqv", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json index f5273015c8..d107e2e1ef 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri 0.8 nozzle", "inherits": "Elegoo Centauri 0.4 nozzle", "from": "system", - "setting_id": "EC08", + "setting_id": "CAp2D99kAoNTTHAg", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json index 4cf9db3163..65625749eb 100644 --- a/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json +++ b/resources/profiles/Elegoo/machine/EC/Elegoo Centauri.json @@ -8,5 +8,5 @@ "bed_model": "elegoo_centuri_buildplate_model.stl", "bed_texture": "elegoo_centuri_buildplate_texture.svg", "hotend_model": "", - "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @EC;Elegoo PETG @0.2 nozzle;Elegoo PETG @EC;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @EC;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @EC;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @EC;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @EC;Elegoo PLA @EC;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @EC;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @EC;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @EC;Elegoo TPU 95A @EC;Elegoo PLA Basic @0.2 nozzle;Elegoo PLA Basic @EC;Elegoo PLA Galaxy @EC;Elegoo PLA Marble @EC;Elegoo PLA Sparkle @EC;Elegoo PLA Wood @EC;Elegoo Rapid TPU 95A @EC;Elegoo ABS @0.2 nozzle;Elegoo ABS @EC;Elegoo PAHT-CF @EC;Elegoo PC @0.2 nozzle;Elegoo PC @EC;Elegoo PC-FR @0.2 nozzle;Elegoo PC-FR @EC;Elegoo PETG-CF @EC;Elegoo PETG-GF @EC;Elegoo PETG Translucent @0.2 nozzle;Elegoo PETG Translucent @EC" + "default_materials": "Elegoo ASA @EC;Elegoo PETG @EC;Elegoo PETG PRO @EC;Elegoo PLA Matte @EC;Elegoo PLA PRO @EC;Elegoo PLA Silk @EC;Elegoo PLA @EC;Elegoo PLA+ @EC;Elegoo Rapid PETG @EC;Elegoo Rapid PLA+ @EC;Elegoo TPU 95A @EC;Elegoo PLA Basic @EC;Elegoo PLA Galaxy @EC;Elegoo PLA Marble @EC;Elegoo PLA Sparkle @EC;Elegoo PLA Wood @EC;Elegoo Rapid TPU 95A @EC;Elegoo ABS @EC;Elegoo PAHT-CF @EC;Elegoo PC @EC;Elegoo PC-FR @EC;Elegoo PETG-CF @EC;Elegoo PETG-GF @EC;Elegoo PETG Translucent @EC" } diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json new file mode 100644 index 0000000000..8d3f8c8713 --- /dev/null +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.2 nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "machine", + "name": "Elegoo Centauri 2 0.2 nozzle", + "inherits": "Elegoo Centauri 2 0.4 nozzle", + "from": "system", + "setting_id": "m8Qdj0hA47eDYqRW", + "instantiation": "true", + "nozzle_diameter": [ + "0.2" + ], + "printer_model": "Elegoo Centauri 2", + "printer_variant": "0.2", + "default_filament_profile": [ + "Elegoo PLA @EC2" + ], + "default_print_profile": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "retraction_minimum_travel": [ + "0.4" + ], + "wipe_distance": [ + "0.8" + ], + "retraction_length": [ + "0.5" + ], + "max_layer_height": [ + "0.14" + ], + "min_layer_height": [ + "0.06" + ] +} diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json new file mode 100644 index 0000000000..daace6439f --- /dev/null +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.4 nozzle.json @@ -0,0 +1,95 @@ +{ + "type": "machine", + "name": "Elegoo Centauri 2 0.4 nozzle", + "inherits": "fdm_elegoo_3dp_001_common", + "from": "system", + "setting_id": "oMZnP0H4FRc9GCSJ", + "instantiation": "true", + "nozzle_diameter": [ + "0.4" + ], + "host_type": "elegoolink", + "printer_model": "Elegoo Centauri 2", + "printer_variant": "0.4", + "auxiliary_fan": "1", + "printable_area": [ + "0x0", + "256x0", + "256x256", + "0x256" + ], + "printable_height": "256", + "retract_lift_below": [ + "255" + ], + "bed_exclude_area": [ + "246x0", + "256x0", + "256x20", + "246x20" + ], + "bed_texture_area": [ + "0x-10", + "256x-10", + "256x256", + "0x256" + ], + "thumbnails": [ + "144x144" + ], + "machine_max_acceleration_travel": [ + "20000", + "20000" + ], + "default_filament_profile": [ + "Elegoo PLA @EC2" + ], + "default_print_profile": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "extruder_offset": [ + "0x1.5" + ], + "fan_speedup_time": "0.5", + "machine_load_filament_time": "29", + "machine_unload_filament_time": "28", + "nozzle_type": "hardened_steel", + "scan_first_layer": "1", + "upward_compatible_machine": [], + "manual_filament_change": "0", + "auto_toolchange_command": "0", + "purge_in_prime_tower": "0", + "gcode_flavor": "klipper", + "machine_pause_gcode": "M600", + "support_multi_filament": "1", + "support_wan_network": "1", + "bed_mesh_max": "243,245", + "bed_mesh_min": "10,10", + "bed_mesh_probe_distance": "22,22", + "disable_m73": "0", + "machine_max_acceleration_extruding": [ + "20000", + "20000" + ], + "machine_max_acceleration_z": [ + "500", + "500" + ], + "machine_max_jerk_e": [ + "1", + "1" + ], + "machine_max_jerk_x": [ + "9", + "9" + ], + "machine_max_jerk_y": [ + "9", + "9" + ], + "change_filament_gcode": "\n;==========C2_CHANGE_FILAMENT_GCODE==========\n;===== date: 2026-01-16-001 =====================\nM106 S0\nM106 P2 S0\nG1 Z{min(max_layer_z+3, printable_height+0.5)} F1200\nM6211 T[next_extruder] L[flush_length] M{old_filament_e_feedrate} N{new_filament_e_feedrate} Q[old_filament_temp] R[nozzle_temperature_range_high] S[new_filament_temp]\nT[next_extruder]\n", + "layer_change_gcode": "M73 L{layer_num+1}\n;LAYER:{layer_num+1}\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER={layer_num+1}", + "machine_end_gcode": ";===== C2_END_GCODE ================\n;===== date: 2026-01-16-001 =====================\n\n\nM140 S0 ;Turn-off bed\nM83\nG92 E0 ; zero the extruder\nG1 E-1.5 F1800\nG2 I0 J1 Z{max_layer_z+0.5} F3000 ; lower z a little\nM106 S0\nM106 P2 S0\nG90\n{if max_layer_z > 75}G1 Z{min(max_layer_z+5, printable_height+0.5)} F20000{else}G1 Z80 F20000 {endif}; Move print head up \nG180 S9\nM104 S0\nM84\n", + "machine_start_gcode": ";===== C2_START_GCODE ================\n;===== date: 2026-01-16-001 =====================\n\nG90\nM104 S140\nM140 S[bed_temperature_initial_layer_single]\nM190 S[bed_temperature_initial_layer_single] A\nM106 S0\nBED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=0 ADAPTIVE_MARGIN=0 FROM_SLICER=1\nM204 S{min(20000,max(1000,outer_wall_acceleration))} ;Call exterior wall print acceleration\nG28\nM109 S[nozzle_temperature_initial_layer]\nM6211 A1 L200 T[initial_no_support_extruder] Q[nozzle_temperature_initial_layer] R[nozzle_temperature_initial_layer] S[nozzle_temperature_initial_layer]\nT[initial_no_support_extruder]\n\n{if first_layer_print_min[1] > 0.5}\nG180 S7\nG1 X{print_bed_max[0]*0.5-1} Y-1.2 F20000\nG1 Z0.5 F900\nM109 S[nozzle_temperature_initial_layer]\nM83\nG92 E0 ;Reset Extruder\nG1 E6 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nM106 S200\nG1 X{print_bed_max[0]*0.5-41} E20 F{min(12000, max(1200, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))} \nG1 F6000\nG1 X{print_bed_max[0]*0.5-46} E0.8\n{else}\nG1 E30 F{min(1200, max(120, filament_max_volumetric_speed[initial_no_support_extruder]*60/2/2.5043))}\n{endif}\nM106 S0\nG180 S8\nG1 F20000\nG92 E0 ;Reset Extruder\nSET_PRINT_STATS_INFO TOTAL_LAYER=[total_layer_count] CURRENT_LAYER=0\n;LAYER_COUNT:[total_layer_count]\n;LAYER:0", + "retract_restart_extra_toolchange": [ + "0.5" + ] +} diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json new file mode 100644 index 0000000000..d40967eda4 --- /dev/null +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.6 nozzle.json @@ -0,0 +1,32 @@ +{ + "type": "machine", + "name": "Elegoo Centauri 2 0.6 nozzle", + "inherits": "Elegoo Centauri 2 0.4 nozzle", + "from": "system", + "setting_id": "JjSXSI3aQLdsqvFO", + "instantiation": "true", + "nozzle_diameter": [ + "0.6" + ], + "printer_model": "Elegoo Centauri 2", + "printer_variant": "0.6", + "default_filament_profile": [ + "Elegoo PLA @EC2" + ], + "default_print_profile": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "retraction_minimum_travel": [ + "1.2" + ], + "wipe_distance": [ + "1.8" + ], + "retraction_length": [ + "0.8" + ], + "max_layer_height": [ + "0.42" + ], + "min_layer_height": [ + "0.12" + ] +} diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json new file mode 100644 index 0000000000..e0a4c20268 --- /dev/null +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2 0.8 nozzle.json @@ -0,0 +1,35 @@ +{ + "type": "machine", + "name": "Elegoo Centauri 2 0.8 nozzle", + "inherits": "Elegoo Centauri 2 0.4 nozzle", + "from": "system", + "setting_id": "KLhNXQpky6IUfmWz", + "instantiation": "true", + "nozzle_diameter": [ + "0.8" + ], + "printer_model": "Elegoo Centauri 2", + "printer_variant": "0.8", + "default_filament_profile": [ + "Elegoo PLA @EC2" + ], + "default_print_profile": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "retraction_minimum_travel": [ + "1.6" + ], + "wipe_distance": [ + "2.0" + ], + "retraction_length": [ + "1.2" + ], + "max_layer_height": [ + "0.56" + ], + "min_layer_height": [ + "0.16" + ], + "retract_length_toolchange": [ + "3" + ] +} diff --git a/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2.json b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2.json new file mode 100644 index 0000000000..b7481c860b --- /dev/null +++ b/resources/profiles/Elegoo/machine/EC2/Elegoo Centauri 2.json @@ -0,0 +1,12 @@ +{ + "type": "machine_model", + "name": "Elegoo Centauri 2", + "model_id": "Elegoo-C2", + "nozzle_diameter": "0.4;0.2;0.6;0.8", + "machine_tech": "FFF", + "family": "Elegoo", + "bed_model": "elegoo_centuri_carbon_buildplate_model.stl", + "bed_texture": "elegoo_centuri_carbon_buildplate_texture.png", + "hotend_model": "", + "default_materials": "Elegoo ASA @EC2;Elegoo PETG @EC2;Elegoo PETG PRO @EC2;Elegoo PLA Matte @EC2;Elegoo PLA PRO @EC2;Elegoo PLA Silk @EC2;Elegoo PLA-CF @EC2;Elegoo PLA @EC2;Elegoo PLA+ @EC2;Elegoo Rapid PETG @EC2;Elegoo Rapid PLA+ @EC2;Elegoo TPU 95A @EC2;Elegoo PLA Basic @EC2;Elegoo PLA Galaxy @EC2;Elegoo PLA Marble @EC2;Elegoo PLA Sparkle @EC2;Elegoo PLA Wood @EC2;Elegoo Rapid TPU 95A @EC2;Elegoo ABS @EC2;Elegoo PAHT-CF @EC2;Elegoo PC @EC2;Elegoo PC-FR @EC2;Elegoo PETG-CF @EC2;Elegoo PETG-GF @EC2;Elegoo PETG Translucent @EC2;Elegoo ASA-CF @EC2;Elegoo PET-CF @EC2;Elegoo PETG HF @EC2;Elegoo PLA Glow @EC2;Elegoo PLA Translucent2 @EC2" +} diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json index 981ba1849f..81b4f8df3e 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.2 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC02", + "setting_id": "snOU0RMJW8uNmbap", "instantiation": "true", "nozzle_diameter": [ "0.2" @@ -11,7 +11,7 @@ "printer_model": "Elegoo Centauri Carbon", "printer_variant": "0.2", "default_filament_profile": [ - "Elegoo PLA @0.2 nozzle" + "Elegoo PLA @ECC" ], "default_print_profile": "0.10mm Standard @Elegoo CC 0.2 nozzle", "retraction_minimum_travel": [ diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json index 5e3de2b1e6..91d674ca8a 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "ECC04", + "setting_id": "LyL8izVzYFaXHlPb", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json index 3346bcba4d..0e611ffd9d 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.6 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC06", + "setting_id": "PuL9y6ue61mrGpzi", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json index 2530afcc14..8f352bc08b 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 0.8 nozzle", "inherits": "Elegoo Centauri Carbon 0.4 nozzle", "from": "system", - "setting_id": "ECC08", + "setting_id": "lCZzm0T7xxIG25jo", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json index 1b626bfa07..4dbefcb29f 100644 --- a/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json +++ b/resources/profiles/Elegoo/machine/ECC/Elegoo Centauri Carbon.json @@ -8,5 +8,5 @@ "bed_model": "elegoo_centuri_carbon_buildplate_model.stl", "bed_texture": "elegoo_centuri_carbon_buildplate_texture.svg", "hotend_model": "", - "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @ECC;Elegoo PETG @0.2 nozzle;Elegoo PETG @ECC;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @ECC;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @ECC;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @ECC;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @ECC;Elegoo PLA-CF @ECC;Elegoo PLA @ECC;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @ECC;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @ECC;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @ECC;Elegoo TPU 95A @ECC;Elegoo PLA Basic @0.2 nozzle;Elegoo PLA Basic @ECC;Elegoo PLA Galaxy @ECC;Elegoo PLA Marble @ECC;Elegoo PLA Sparkle @ECC;Elegoo PLA Wood @ECC;Elegoo Rapid TPU 95A @ECC;Elegoo ABS @0.2 nozzle;Elegoo ABS @ECC;Elegoo PAHT-CF @ECC;Elegoo PC @0.2 nozzle;Elegoo PC @ECC;Elegoo PC-FR @0.2 nozzle;Elegoo PC-FR @ECC;Elegoo PETG-CF @ECC;Elegoo PETG-GF @ECC;Elegoo PETG Translucent @0.2 nozzle;Elegoo PETG Translucent @ECC" + "default_materials": "Elegoo ASA @ECC;Elegoo PETG @ECC;Elegoo PETG PRO @ECC;Elegoo PLA Matte @ECC;Elegoo PLA PRO @ECC;Elegoo PLA Silk @ECC;Elegoo PLA-CF @ECC;Elegoo PLA @ECC;Elegoo PLA+ @ECC;Elegoo Rapid PETG @ECC;Elegoo Rapid PLA+ @ECC;Elegoo TPU 95A @ECC;Elegoo PLA Basic @ECC;Elegoo PLA Galaxy @ECC;Elegoo PLA Marble @ECC;Elegoo PLA Sparkle @ECC;Elegoo PLA Wood @ECC;Elegoo Rapid TPU 95A @ECC;Elegoo ABS @ECC;Elegoo PAHT-CF @ECC;Elegoo PC @ECC;Elegoo PC-FR @ECC;Elegoo PETG-CF @ECC;Elegoo PETG-GF @ECC;Elegoo PETG Translucent @ECC" } diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json index 13e77b09dd..1ad25e4fc2 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.2 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC202", + "setting_id": "V2r3qWSf5W6ql5A9", "instantiation": "true", "nozzle_diameter": [ "0.2" @@ -11,7 +11,7 @@ "printer_model": "Elegoo Centauri Carbon 2", "printer_variant": "0.2", "default_filament_profile": [ - "Elegoo PLA @0.2 nozzle" + "Elegoo PLA @ECC2" ], "default_print_profile": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "retraction_minimum_travel": [ diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json index 7b7c1619ea..943dccb7dc 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "ECC204", + "setting_id": "hjSig28o75Oxgd7J", "instantiation": "true", "nozzle_diameter": [ "0.4" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json index 728579a153..04ed973c5e 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.6 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC206", + "setting_id": "JshHPoQUPY5rrW4i", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json index ae5db15153..5694b1e59b 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Centauri Carbon 2 0.8 nozzle", "inherits": "Elegoo Centauri Carbon 2 0.4 nozzle", "from": "system", - "setting_id": "ECC208", + "setting_id": "PFAN6GUXHbdiurYP", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json index c31863032f..f7da27acf1 100644 --- a/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json +++ b/resources/profiles/Elegoo/machine/ECC2/Elegoo Centauri Carbon 2.json @@ -8,5 +8,5 @@ "bed_model": "elegoo_centuri_carbon_buildplate_model.stl", "bed_texture": "elegoo_centuri_carbon_buildplate_texture.svg", "hotend_model": "", - "default_materials": "Elegoo ASA @0.2 nozzle;Elegoo ASA @ECC2;Elegoo PETG @0.2 nozzle;Elegoo PETG @ECC2;Elegoo PETG PRO @0.2 nozzle;Elegoo PETG PRO @ECC2;Elegoo PLA @0.2 nozzle;Elegoo PLA Matte @0.2 nozzle;Elegoo PLA Matte @ECC2;Elegoo PLA PRO @0.2 nozzle;Elegoo PLA PRO @ECC2;Elegoo PLA Silk @0.2 nozzle;Elegoo PLA Silk @ECC2;Elegoo PLA-CF @ECC2;Elegoo PLA @ECC2;Elegoo PLA+ @0.2 nozzle;Elegoo PLA+ @ECC2;Elegoo Rapid PETG @0.2 nozzle;Elegoo Rapid PETG @ECC2;Elegoo Rapid PLA+ @0.2 nozzle;Elegoo Rapid PLA+ @ECC2;Elegoo TPU 95A @ECC2;Elegoo PLA Basic @0.2 nozzle;Elegoo PLA Basic @ECC2;Elegoo PLA Galaxy @ECC2;Elegoo PLA Marble @ECC2;Elegoo PLA Sparkle @ECC2;Elegoo PLA Wood @ECC2;Elegoo Rapid TPU 95A @ECC2;Elegoo ABS @0.2 nozzle;Elegoo ABS @ECC2;Elegoo PAHT-CF @ECC2;Elegoo PC @0.2 nozzle;Elegoo PC @ECC2;Elegoo PC-FR @0.2 nozzle;Elegoo PC-FR @ECC2;Elegoo PETG-CF @ECC2;Elegoo PETG-GF @ECC2;Elegoo PETG Translucent @0.2 nozzle;Elegoo PETG Translucent @ECC2;Elegoo ASA-CF @ECC2;Elegoo PET-CF @ECC2;Elegoo PETG HF @ECC2;Elegoo PLA Glow @ECC2;Elegoo PLA Translucent2 @ECC2" + "default_materials": "Elegoo ASA @ECC2;Elegoo PETG @ECC2;Elegoo PETG PRO @ECC2;Elegoo PLA Matte @ECC2;Elegoo PLA PRO @ECC2;Elegoo PLA Silk @ECC2;Elegoo PLA-CF @ECC2;Elegoo PLA @ECC2;Elegoo PLA+ @ECC2;Elegoo Rapid PETG @ECC2;Elegoo Rapid PLA+ @ECC2;Elegoo TPU 95A @ECC2;Elegoo PLA Basic @ECC2;Elegoo PLA Galaxy @ECC2;Elegoo PLA Marble @ECC2;Elegoo PLA Sparkle @ECC2;Elegoo PLA Wood @ECC2;Elegoo Rapid TPU 95A @ECC2;Elegoo ABS @ECC2;Elegoo PAHT-CF @ECC2;Elegoo PC @ECC2;Elegoo PC-FR @ECC2;Elegoo PETG-CF @ECC2;Elegoo PETG-GF @ECC2;Elegoo PETG Translucent @ECC2;Elegoo ASA-CF @ECC2;Elegoo PET-CF @ECC2;Elegoo PETG HF @ECC2;Elegoo PLA Glow @ECC2;Elegoo PLA Translucent2 @ECC2" } diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json index 0cc544c1b3..09536322dd 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN104", + "setting_id": "zECkpVCtequEr3jC", "name": "Elegoo Neptune 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json index 871822ac52..739d226853 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 0.6 nozzle", "inherits": "Elegoo Neptune 0.4 nozzle", "from": "system", - "setting_id": "EN106", + "setting_id": "dJSZaxrjMdr8NZmM", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json index 05e4e9480a..379ffa1e96 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 0.8 nozzle", "inherits": "Elegoo Neptune 0.4 nozzle", "from": "system", - "setting_id": "EN108", + "setting_id": "ItXtnm9IlN7x2L4v", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json index 21f1e4eacd..9f2c728356 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN204", + "setting_id": "WButFYamVx0MBjUr", "name": "Elegoo Neptune 2 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json index 289702899a..d426517ea7 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2 0.6 nozzle", "inherits": "Elegoo Neptune 2 0.4 nozzle", "from": "system", - "setting_id": "EN206", + "setting_id": "cqs9rtbVF84El6mQ", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json index 115eee6233..812f5fa384 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2 0.8 nozzle", "inherits": "Elegoo Neptune 2 0.4 nozzle", "from": "system", - "setting_id": "EN208", + "setting_id": "3UufhNki3YqAAGdK", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json index 52cbbe6ad9..ae78964a9a 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN2D04", + "setting_id": "9KnJva7m7E5M1quB", "name": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json index 80464a8485..ecec5896f8 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2D 0.6 nozzle", "inherits": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", - "setting_id": "EN2D06", + "setting_id": "V8TJL5hhtqh5jxTD", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json index 60649c1baa..77de0297b6 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2D 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2D 0.8 nozzle", "inherits": "Elegoo Neptune 2D 0.4 nozzle", "from": "system", - "setting_id": "EN2D08", + "setting_id": "zBdxUOQ9Z0VSHf27", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json index 78e407fbc6..e6ee656aad 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN2S04", + "setting_id": "a8iTteroepkgXrLV", "name": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json index 41a15f684f..ea066fd812 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2S 0.6 nozzle", "inherits": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", - "setting_id": "EN2S06", + "setting_id": "2jqqltrFF1c691PH", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json index cb408ddafb..42719e4a0b 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 2S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 2S 0.8 nozzle", "inherits": "Elegoo Neptune 2S 0.4 nozzle", "from": "system", - "setting_id": "EN2S08", + "setting_id": "FAOkOzZYSPd5wvb4", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json index 660b05104c..8766784dc6 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN304", + "setting_id": "rdKmVhTTrup3yqgA", "name": "Elegoo Neptune 3 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json index a2ed0f97a6..03fa96eb91 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 0.6 nozzle", "inherits": "Elegoo Neptune 3 0.4 nozzle", "from": "system", - "setting_id": "EN306", + "setting_id": "1DAAZUN7vSF4psKv", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json index 86894a6563..ad8d9157fc 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 0.8 nozzle", "inherits": "Elegoo Neptune 3 0.4 nozzle", "from": "system", - "setting_id": "EN308", + "setting_id": "VXYl3hwOhUqY7Qp2", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json index 7b07b18a3f..6596abf85a 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "ENX04", + "setting_id": "krz8Xh3MatGnm8pm", "name": "Elegoo Neptune X 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json index 2a73103c66..92237f66b9 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune X 0.6 nozzle", "inherits": "Elegoo Neptune X 0.4 nozzle", "from": "system", - "setting_id": "ENX06", + "setting_id": "tOSS0yXNuCbCwg3H", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json index 5f21d5af22..535f8a6ca7 100644 --- a/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN2SERIES/Elegoo Neptune X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune X 0.8 nozzle", "inherits": "Elegoo Neptune X 0.4 nozzle", "from": "system", - "setting_id": "ENX08", + "setting_id": "zRvTUy0LSkhGeN0z", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json index 8c9c238d1a..7b8d3fec8c 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.2 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max02", + "setting_id": "G5NQq9PxbLuKm7Qq", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json index af7fb0a2f7..9aebe16dd2 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3MAX04", + "setting_id": "8CM5vaCDh096ZzUs", "name": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json index f4e2f26013..5c678a5a01 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.6 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max06", + "setting_id": "gyXEi22nfynYutnt", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json index e70dc91e88..be84af288e 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 0.8 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max08", + "setting_id": "iHe18x08x7EvXgTu", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json index 4003e68632..96d06852d7 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Max 1.0 nozzle", "inherits": "Elegoo Neptune 3 Max 0.4 nozzle", "from": "system", - "setting_id": "EN3Max10", + "setting_id": "Ep5u0wG4Lcu1G1Uu", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json index 153ec5735c..68fe5e80aa 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.2 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus02", + "setting_id": "cCqmgZLewIRDq5Wk", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json index bc1a298d62..c53f7a7d7a 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3PLUS04", + "setting_id": "FylvH6NMzPbR9Bz6", "name": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json index ef8d74398e..5a5c4fe9ea 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.6 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus06", + "setting_id": "mIi6IBXu83TvmdFq", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json index 4485f56347..02546cd9b6 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 0.8 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus08", + "setting_id": "kWVh2kfVC5UwtWBp", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json index 34181afdd5..0bb4b3a932 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Plus 1.0 nozzle", "inherits": "Elegoo Neptune 3 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN3Plus10", + "setting_id": "rgRZr00YVbeOIibg", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json index b1609d288d..c23239d57c 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.2 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro02", + "setting_id": "73sWSdtYxp1nWtet", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json index 3b40ba184f..82798b0285 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "EN3PRO04", + "setting_id": "9vUFjjVwWAggcbwk", "name": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json index 271bbfa58a..855da0e62c 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.6 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro06", + "setting_id": "dySDdgA29fbSGyAh", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json index 833bebd513..e803cebd62 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 0.8 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro08", + "setting_id": "GOTa31fZoQO5DBD1", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json index d236bd37f2..48233a9297 100644 --- a/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN3SERIES/Elegoo Neptune 3 Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 3 Pro 1.0 nozzle", "inherits": "Elegoo Neptune 3 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN3Pro10", + "setting_id": "mfgMcZmlBBG3VCGQ", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json index 6fbeb9bc7c..32ec717163 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.2 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN402", + "setting_id": "YGH30n1CBw3of81j", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json index 20bd16ec6f..fb3ca2d389 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN404", + "setting_id": "69QdWuRQwAZk9rFu", "instantiation": "true", "inherits": "fdm_elegoo_3dp_001_common", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json index eea51da2b5..6195ecf232 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.6 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN406", + "setting_id": "hAlEcYQJUiRdXvP3", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json index 6e95538dac..52483240b3 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 0.8 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN408", + "setting_id": "2lAqJ4y4QPkkG3Eq", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json index 945fa4de2c..1a8eb2d65d 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 1.0 nozzle", "inherits": "Elegoo Neptune 4 0.4 nozzle", "from": "system", - "setting_id": "EN410", + "setting_id": "4HgOQhJrRHmdoUQC", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json index 4cbff15b30..5b863d5773 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.2 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX02", + "setting_id": "cnSthrwdZaeijtbD", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json index 1c90f02a93..08c9690cda 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX04", + "setting_id": "Ie1QF4p1mjA7QqZf", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json index 3c7584cefc..0b117150b1 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.6 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX06", + "setting_id": "DXxpsdZ4r73cfNT7", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json index bd60a815dd..ca4c4dc092 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 0.8 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX08", + "setting_id": "licXMWyXGDavpuvu", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json index d279ef05d0..a2127bebb9 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Max 1.0 nozzle", "inherits": "Elegoo Neptune 4 Max 0.4 nozzle", "from": "system", - "setting_id": "EN4MAX10", + "setting_id": "Ch4AZDWe7gKdw9hT", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json index 012bbb778c..e0c66e5166 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.2 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS02", + "setting_id": "i5vcoYRF6cqkYBg9", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json index c5380ef2b2..d6686b8bba 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS04", + "setting_id": "Rc54LjtIhvBWRS2Y", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json index a2b5a6d14c..d038519e2e 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.6 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS06", + "setting_id": "nCRrAqumiiZpu5Re", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json index 772b78ad21..e4cbdaf790 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 0.8 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS08", + "setting_id": "CM0ZVy6UJRObNbMV", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json index f6e0797203..d323f1b294 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Plus 1.0 nozzle", "inherits": "Elegoo Neptune 4 Plus 0.4 nozzle", "from": "system", - "setting_id": "EN4PLUS10", + "setting_id": "S8qunSr5mu2KwyHN", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json index ee78238597..ff7bd8fdf9 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.2 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO02", + "setting_id": "tjxZec78rbpYkEM2", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json index ad047c8003..97b3ad8fea 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO04", + "setting_id": "H1wMUu4EMaiQzxeD", "instantiation": "true", "inherits": "Elegoo Neptune 4 0.4 nozzle", "host_type": "elegoolink", diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json index e84b383dac..940da1c6a3 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.6 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO06", + "setting_id": "f9xvw4oHKtdZq7oq", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json index 9ee76903bb..cdeebf75c3 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 0.8 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO08", + "setting_id": "nd5TLZa3xnDu1s4W", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json index 24dc8e0dad..af2b183360 100644 --- a/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EN4SERIES/Elegoo Neptune 4 Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo Neptune 4 Pro 1.0 nozzle", "inherits": "Elegoo Neptune 4 Pro 0.4 nozzle", "from": "system", - "setting_id": "EN4PRO10", + "setting_id": "eK8gxFLjDsdD2xzW", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json index eca11e5cc3..c736700d38 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.4 nozzle", "inherits": "fdm_elegoo_3dp_001_common", "from": "system", - "setting_id": "EOSG04", + "setting_id": "PCZpqnHSGs2twFx9", "instantiation": "true", "host_type": "elegoolink", "printer_model": "Elegoo OrangeStorm Giga", diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json index 9947dc3027..db9ac3f4ed 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.6 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG06", + "setting_id": "RuNyL7RmDS58vurf", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json index 606387e0cb..6aff03dcbc 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 0.8 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG08", + "setting_id": "pdXtGNJKHmtMAO1x", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json index 078533436c..02e35834f5 100644 --- a/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/machine/EOSGIGA/Elegoo OrangeStorm Giga 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Elegoo OrangeStorm Giga 1.0 nozzle", "inherits": "Elegoo OrangeStorm Giga 0.4 nozzle", "from": "system", - "setting_id": "EOSG10", + "setting_id": "YXzwDjQ5qWHTHCWH", "instantiation": "true", "nozzle_diameter": [ "1.0" diff --git a/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json index 645aee11ec..2312d6f0e6 100644 --- a/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.08mm Optimal @Elegoo C 0.2 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "elefant_foot_compensation": "0.05", "inherits": "0.10mm Standard @Elegoo C 0.2 nozzle", "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo C 0.2 nozzle", + "from": "system", + "setting_id": "YPAU0R4VfHdwXGMK", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json index 190f105fa6..ab885cc0a7 100644 --- a/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.10mm Standard @Elegoo C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo C 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEC02010", + "setting_id": "t17reSCtAWQXkJAR", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json index 9eeaa6a6dc..8a775fd9d6 100644 --- a/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.12mm Draft @Elegoo C 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo C 0.2 nozzle", "layer_height": "0.12", "name": "0.12mm Draft @Elegoo C 0.2 nozzle", + "from": "system", + "setting_id": "2syIUL3VOd1cnbjD", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json index cd3f12eb2d..a94c0e7b2e 100644 --- a/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.12mm Fine @Elegoo C 0.4 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo C 0.4 nozzle", "layer_height": "0.12", "name": "0.12mm Fine @Elegoo C 0.4 nozzle", + "from": "system", "wall_loops": "3", + "setting_id": "0S47zshoJbgOUinj", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json index 7c32b7b5cc..d676fb31b1 100644 --- a/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.14mm Extra Draft @Elegoo C 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo C 0.2 nozzle", "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo C 0.2 nozzle", + "from": "system", + "setting_id": "6ibckorXgT6NdqHu", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json index 25edde6abe..4cc9f531bb 100644 --- a/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.16mm Extra Fine @Elegoo C 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo C 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo C 0.8 nozzle", + "from": "system", + "setting_id": "93O7HpujQ35rwBWc", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json index 9f7f769c68..4bce55dde7 100644 --- a/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.16mm Optimal @Elegoo C 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo C 0.4 nozzle", "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo C 0.4 nozzle", + "from": "system", + "setting_id": "KW2VknXy8J5A7ot5", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json index b1afd755ce..212ac989de 100644 --- a/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.18mm Fine @Elegoo C 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo C 0.6 nozzle", "layer_height": "0.18", "name": "0.18mm Fine @Elegoo C 0.6 nozzle", + "from": "system", + "setting_id": "Z2Qn4avdLVCcBmcZ", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json index a96282125a..de80f56dab 100644 --- a/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.20mm Standard @Elegoo C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo C 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PEC04020", + "setting_id": "GbYgIqQbql8QF0lX", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json index abd085ba76..33702fa81d 100644 --- a/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.20mm Strength @Elegoo C 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo C 0.4 nozzle", "name": "0.20mm Strength @Elegoo C 0.4 nozzle", + "from": "system", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "bottom_shell_layers": "5", @@ -9,5 +11,6 @@ "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", + "setting_id": "ICxi69TCESAQTBVb", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json index 5871ab00d2..fa0edcba37 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Draft @Elegoo C 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo C 0.4 nozzle", "layer_height": "0.24", "name": "0.24mm Draft @Elegoo C 0.4 nozzle", + "from": "system", + "setting_id": "eoyZK9tkjdL1ATi9", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json index 15db46e115..16dde5137e 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Fine @Elegoo C 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo C 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.24", "name": "0.24mm Fine @Elegoo C 0.8 nozzle", + "from": "system", + "setting_id": "HyulASCV51SI9Dgo", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json index e7301fe397..3e12c4cc8f 100644 --- a/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.24mm Optimal @Elegoo C 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo C 0.6 nozzle", "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo C 0.6 nozzle", + "from": "system", + "setting_id": "2H4qamD9XBTs46M7", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json index 5bbd3dba82..a996b51d67 100644 --- a/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.28mm Extra Draft @Elegoo C 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo C 0.4 nozzle", "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo C 0.4 nozzle", + "from": "system", + "setting_id": "R2evn20zXKqcB4Ro", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json index 9b593203fa..801f39e8c3 100644 --- a/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.30mm Standard @Elegoo C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo C 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEC06030", + "setting_id": "055o82el12RWVvDx", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json index 29330e3863..d0d20b4fc7 100644 --- a/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.30mm Strength @Elegoo C 0.6 nozzle.json @@ -1,12 +1,15 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo C 0.6 nozzle", "inner_wall_speed": "120", "name": "0.30mm Strength @Elegoo C 0.6 nozzle", + "from": "system", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "outer_wall_speed": "80", "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "GtT1qn9vSWDdqBmm", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json index f886db3500..c98b6810e2 100644 --- a/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.32mm Optimal @Elegoo C 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo C 0.8 nozzle", "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo C 0.8 nozzle", + "from": "system", + "setting_id": "HDjwnNiVaWHvhyTX", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json index 395feb9966..255e8ee255 100644 --- a/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.36mm Draft @Elegoo C 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo C 0.6 nozzle", "layer_height": "0.36", "name": "0.36mm Draft @Elegoo C 0.6 nozzle", + "from": "system", + "setting_id": "AviieBSwRir1KzZr", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json index b8fc2c3663..010b3f50ad 100644 --- a/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.40mm Standard @Elegoo C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo C 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEC08040", + "setting_id": "l2HZgbqMPub2XDa8", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "EC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json index 7e1bd9e925..c146f09d58 100644 --- a/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.42mm Extra Draft @Elegoo C 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo C 0.6 nozzle", "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo C 0.6 nozzle", + "from": "system", + "setting_id": "ex5zv2heDmy6ZcbP", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json index 3bb63c20a1..8aea27b6dd 100644 --- a/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EC/0.48mm Draft @Elegoo C 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo C 0.8 nozzle", "layer_height": "0.48", "name": "0.48mm Draft @Elegoo C 0.8 nozzle", + "from": "system", + "setting_id": "ZFRRBIC9Z4OzSW7b", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json new file mode 100644 index 0000000000..fb31e5b085 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.08mm Optimal @Elegoo C2 0.2 nozzle.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "from": "system", + "elefant_foot_compensation": "0.05", + "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "layer_height": "0.08", + "name": "0.08mm Optimal @Elegoo C2 0.2 nozzle", + "setting_id": "w51mhOmSGgIFKlYV", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json new file mode 100644 index 0000000000..d8227871b0 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.10mm Standard @Elegoo C2 0.2 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "name": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "inherits": "fdm_process_elegoo_02010", + "from": "system", + "setting_id": "KnVvhU4fKcdEbmdU", + "instantiation": "true", + "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", + "min_width_top_surface": "50%", + "elefant_foot_compensation": "0.15", + "enable_prime_tower": "1", + "reduce_infill_retraction": "0", + "initial_layer_acceleration": "500", + "outer_wall_speed": "160", + "sparse_infill_pattern": "rectilinear", + "top_surface_acceleration": "2000", + "compatible_printers": [ + "Elegoo Centauri 2 0.2 nozzle" + ] +} diff --git a/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json new file mode 100644 index 0000000000..2591f133fa --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.12mm Draft @Elegoo C2 0.2 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "layer_height": "0.12", + "name": "0.12mm Draft @Elegoo C2 0.2 nozzle", + "setting_id": "MwbMs6dE4PKJjWEv", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..1e38bdedef --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.12mm Fine @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,13 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "layer_height": "0.12", + "name": "0.12mm Fine @Elegoo C2 0.4 nozzle", + "wall_loops": "3", + "support_bottom_z_distance": "0.2", + "support_top_z_distance": "0.2", + "top_solid_infill_flow_ratio": "1.09", + "setting_id": "NbPHZPuFyAdAwYxw", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json new file mode 100644 index 0000000000..578cc189a1 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.14mm Extra Draft @Elegoo C2 0.2 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.10mm Standard @Elegoo C2 0.2 nozzle", + "layer_height": "0.14", + "name": "0.14mm Extra Draft @Elegoo C2 0.2 nozzle", + "setting_id": "WZYQH8ejJLFr3JKT", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json new file mode 100644 index 0000000000..ee21a677ad --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.16mm Extra Fine @Elegoo C2 0.8 nozzle.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "initial_layer_print_height": "0.3", + "layer_height": "0.16", + "name": "0.16mm Extra Fine @Elegoo C2 0.8 nozzle", + "setting_id": "8PjDabUQtqZkOYxb", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..cbf804ad9c --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.16mm Optimal @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "layer_height": "0.16", + "name": "0.16mm Optimal @Elegoo C2 0.4 nozzle", + "setting_id": "cyxRTNBvYul3eWPq", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..607c77fc1a --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.18mm Fine @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "layer_height": "0.18", + "name": "0.18mm Fine @Elegoo C2 0.6 nozzle", + "setting_id": "CpTAuCMAczdOUFQv", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..d6edd968cc --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.20mm Standard @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,34 @@ +{ + "type": "process", + "name": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "inherits": "fdm_process_elegoo_04020", + "from": "system", + "setting_id": "o5VRrzeZKCg339d5", + "instantiation": "true", + "bottom_shell_layers": "3", + "bottom_shell_thickness": "0.6", + "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", + "min_width_top_surface": "50%", + "enable_prime_tower": "1", + "compatible_printers": [ + "Elegoo Centauri 2 0.4 nozzle" + ], + "enable_arc_fitting": "0", + "exclude_object": "0", + "independent_support_layer_height": "0", + "skirt_height": "4", + "support_base_pattern_spacing": "1", + "support_bottom_z_distance": "0.2", + "support_top_z_distance": "0.2", + "top_solid_infill_flow_ratio": "1.09", + "support_type": "tree(auto)", + "tree_support_branch_distance_organic": "2", + "tree_support_tip_diameter": "0.8", + "wall_sequence": "inner wall/outer wall", + "reduce_infill_retraction": "0", + "initial_layer_acceleration": "500", + "outer_wall_speed": "160", + "sparse_infill_pattern": "rectilinear", + "top_surface_acceleration": "2000", + "support_base_pattern": "rectilinear" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..8a87b379c7 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.20mm Strength @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,17 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "name": "0.20mm Strength @Elegoo C2 0.4 nozzle", + "wall_sequence": "inner wall/outer wall", + "reduce_crossing_wall": "0", + "bottom_shell_layers": "5", + "outer_wall_speed": "200", + "print_flow_ratio": "0.97", + "sparse_infill_density": "20%", + "top_shell_layers": "6", + "wall_loops": "5", + "top_solid_infill_flow_ratio": "1.09", + "setting_id": "qE1gwHDiHsBUar05", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..3477713edc --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Draft @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "layer_height": "0.24", + "name": "0.24mm Draft @Elegoo C2 0.4 nozzle", + "setting_id": "m8IwC70UUDsvEgDx", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json new file mode 100644 index 0000000000..8a3d3f1baa --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Fine @Elegoo C2 0.8 nozzle.json @@ -0,0 +1,10 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "initial_layer_print_height": "0.3", + "layer_height": "0.24", + "name": "0.24mm Fine @Elegoo C2 0.8 nozzle", + "setting_id": "aGRzp98JewtyCnJ5", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..f8a86f303d --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.24mm Optimal @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "layer_height": "0.24", + "name": "0.24mm Optimal @Elegoo C2 0.6 nozzle", + "setting_id": "mg6YKeDhdAmVUnCp", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json new file mode 100644 index 0000000000..d763b38514 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.28mm Extra Draft @Elegoo C2 0.4 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.20mm Standard @Elegoo C2 0.4 nozzle", + "layer_height": "0.28", + "name": "0.28mm Extra Draft @Elegoo C2 0.4 nozzle", + "setting_id": "zLhSKg0WGU0C5hfV", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..a8a955903e --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.30mm Standard @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "name": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "inherits": "fdm_process_elegoo_06030", + "from": "system", + "setting_id": "0TPOSfRKT0N1sYSc", + "instantiation": "true", + "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", + "min_width_top_surface": "50%", + "enable_prime_tower": "1", + "compatible_printers": [ + "Elegoo Centauri 2 0.6 nozzle" + ], + "reduce_infill_retraction": "0", + "initial_layer_acceleration": "500", + "outer_wall_speed": "160", + "sparse_infill_pattern": "rectilinear", + "top_surface_acceleration": "2000", + "support_base_pattern": "rectilinear" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..52ff71723c --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.30mm Strength @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,15 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "inner_wall_speed": "120", + "name": "0.30mm Strength @Elegoo C2 0.6 nozzle", + "wall_sequence": "inner-outer-inner wall", + "reduce_crossing_wall": "1", + "outer_wall_speed": "80", + "sparse_infill_density": "15%", + "top_surface_speed": "120", + "wall_loops": "4", + "setting_id": "6Pdk7vUo7sxZ1H3r", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json new file mode 100644 index 0000000000..46caf9ca4c --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.32mm Optimal @Elegoo C2 0.8 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "layer_height": "0.32", + "name": "0.32mm Optimal @Elegoo C2 0.8 nozzle", + "setting_id": "CctfduTuGLmoXTaG", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..a484461350 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.36mm Draft @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "layer_height": "0.36", + "name": "0.36mm Draft @Elegoo C2 0.6 nozzle", + "setting_id": "MEasFZeORQm7BzsT", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json new file mode 100644 index 0000000000..de4387ebc4 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.40mm Standard @Elegoo C2 0.8 nozzle.json @@ -0,0 +1,20 @@ +{ + "type": "process", + "name": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "inherits": "fdm_process_elegoo_08040", + "from": "system", + "setting_id": "RSWkUTweJKRHUtBF", + "instantiation": "true", + "filename_format": "EC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", + "min_width_top_surface": "50%", + "enable_prime_tower": "1", + "compatible_printers": [ + "Elegoo Centauri 2 0.8 nozzle" + ], + "reduce_infill_retraction": "0", + "initial_layer_acceleration": "500", + "outer_wall_speed": "160", + "sparse_infill_pattern": "rectilinear", + "top_surface_acceleration": "2000", + "support_base_pattern": "rectilinear" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json new file mode 100644 index 0000000000..7ab59fecd2 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.42mm Extra Draft @Elegoo C2 0.6 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.30mm Standard @Elegoo C2 0.6 nozzle", + "layer_height": "0.42", + "name": "0.42mm Extra Draft @Elegoo C2 0.6 nozzle", + "setting_id": "TbMqvWBwE7Hf6VdK", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json b/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json new file mode 100644 index 0000000000..17e2904446 --- /dev/null +++ b/resources/profiles/Elegoo/process/EC2/0.48mm Draft @Elegoo C2 0.8 nozzle.json @@ -0,0 +1,9 @@ +{ + "type": "process", + "from": "system", + "inherits": "0.40mm Standard @Elegoo C2 0.8 nozzle", + "layer_height": "0.48", + "name": "0.48mm Draft @Elegoo C2 0.8 nozzle", + "setting_id": "8BBCLnwOPdqLlIIo", + "instantiation": "true" +} diff --git a/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json index 929f237de9..5673d99376 100644 --- a/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.08mm Optimal @Elegoo CC 0.2 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "elefant_foot_compensation": "0.05", "inherits": "0.10mm Standard @Elegoo CC 0.2 nozzle", "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo CC 0.2 nozzle", + "from": "system", + "setting_id": "99XQJJWd9FHtXPEa", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json index 11ec27a706..427c38f18b 100644 --- a/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.10mm Standard @Elegoo CC 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo CC 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PECC02010", + "setting_id": "0ZFrD2yN2iKDfHMd", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json index 3ca5415c10..4a21f48f65 100644 --- a/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.12mm Draft @Elegoo CC 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo CC 0.2 nozzle", "layer_height": "0.12", "name": "0.12mm Draft @Elegoo CC 0.2 nozzle", + "from": "system", + "setting_id": "LwyvYtJYTwvDlW5Z", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json index 2065f51caf..66ca86dafa 100644 --- a/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.12mm Fine @Elegoo CC 0.4 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC 0.4 nozzle", "layer_height": "0.12", "name": "0.12mm Fine @Elegoo CC 0.4 nozzle", + "from": "system", "wall_loops": "3", + "setting_id": "340MqJEmv7j7xiOz", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json index aa1907bb0c..f30ff023ab 100644 --- a/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.14mm Extra Draft @Elegoo CC 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo CC 0.2 nozzle", "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo CC 0.2 nozzle", + "from": "system", + "setting_id": "Z5WZBJIWjzOpucn2", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json index ab58f4e18e..6ea50dcd4d 100644 --- a/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.16mm Extra Fine @Elegoo CC 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo CC 0.8 nozzle", + "from": "system", + "setting_id": "1pAr6ZTtBBXzHoUw", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json index fe0636d0b7..20391d67eb 100644 --- a/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.16mm Optimal @Elegoo CC 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC 0.4 nozzle", "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo CC 0.4 nozzle", + "from": "system", + "setting_id": "drsSvJoMY02R1hyF", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json index 1d95474e64..547b84689f 100644 --- a/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.18mm Fine @Elegoo CC 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC 0.6 nozzle", "layer_height": "0.18", "name": "0.18mm Fine @Elegoo CC 0.6 nozzle", + "from": "system", + "setting_id": "bmv0UtvbzVHeOF4Q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json index 9824d302fa..cd262975c1 100644 --- a/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.20mm Standard @Elegoo CC 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo CC 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PECC04020", + "setting_id": "1cOVzUJxmCe20N5r", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json index d4dd40e93e..c91e5af39d 100644 --- a/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.20mm Strength @Elegoo CC 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC 0.4 nozzle", "name": "0.20mm Strength @Elegoo CC 0.4 nozzle", + "from": "system", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "bottom_shell_layers": "5", @@ -9,5 +11,6 @@ "sparse_infill_density": "20%", "top_shell_layers": "6", "wall_loops": "6", + "setting_id": "1OQrGLkl8fwRTEDT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json index f3e97e62d6..e59c6de6b4 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Draft @Elegoo CC 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC 0.4 nozzle", "layer_height": "0.24", "name": "0.24mm Draft @Elegoo CC 0.4 nozzle", + "from": "system", + "setting_id": "PMeZoCKetIP9VQZM", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json index 57a006097a..bacdbd0ca9 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Fine @Elegoo CC 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.24", "name": "0.24mm Fine @Elegoo CC 0.8 nozzle", + "from": "system", + "setting_id": "6sqS6WmJX9aYJymC", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json index 73b931e41a..7e25c9177f 100644 --- a/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.24mm Optimal @Elegoo CC 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC 0.6 nozzle", "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo CC 0.6 nozzle", + "from": "system", + "setting_id": "hIJP5FSSmLy6bMcK", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json index ec438b26d5..1b03db5ce9 100644 --- a/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.28mm Extra Draft @Elegoo CC 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC 0.4 nozzle", "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo CC 0.4 nozzle", + "from": "system", + "setting_id": "6A6cE25ThuCqP7wi", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json index 49892afec7..f3ad2f98aa 100644 --- a/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.30mm Standard @Elegoo CC 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo CC 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PECC06030", + "setting_id": "87QQPl1ld2oF2Spt", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json index 448f7064f2..33d040c984 100644 --- a/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.30mm Strength @Elegoo CC 0.6 nozzle.json @@ -1,12 +1,15 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC 0.6 nozzle", "inner_wall_speed": "120", "name": "0.30mm Strength @Elegoo CC 0.6 nozzle", + "from": "system", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "outer_wall_speed": "80", "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "b3rbevf3CUh8I05M", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json index 2a369c8dfa..654a49c1c5 100644 --- a/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.32mm Optimal @Elegoo CC 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC 0.8 nozzle", "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo CC 0.8 nozzle", + "from": "system", + "setting_id": "Kez7FhiJRPdChlgg", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json index a9eadfaad4..eaed462a3e 100644 --- a/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.36mm Draft @Elegoo CC 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC 0.6 nozzle", "layer_height": "0.36", "name": "0.36mm Draft @Elegoo CC 0.6 nozzle", + "from": "system", + "setting_id": "pigdfIs4DLj6QswL", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json index d6197b0696..e78a7c9338 100644 --- a/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.40mm Standard @Elegoo CC 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo CC 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PECC08040", + "setting_id": "sBpv5SSB4LkMosJG", "instantiation": "true", "sparse_infill_pattern": "zig-zag", "filename_format": "ECC_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", diff --git a/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json index 08d85a026a..c1fd90decf 100644 --- a/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.42mm Extra Draft @Elegoo CC 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC 0.6 nozzle", "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo CC 0.6 nozzle", + "from": "system", + "setting_id": "griDT2q7IdUWT7hr", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json index 6938bbf98c..775f515837 100644 --- a/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC/0.48mm Draft @Elegoo CC 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC 0.8 nozzle", "layer_height": "0.48", "name": "0.48mm Draft @Elegoo CC 0.8 nozzle", + "from": "system", + "setting_id": "tpCT2ow532mcwKcd", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json index 1b193e30fc..82dc23f427 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.08mm Optimal @Elegoo CC2 0.2 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "elefant_foot_compensation": "0.05", "inherits": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "layer_height": "0.08", "name": "0.08mm Optimal @Elegoo CC2 0.2 nozzle", + "from": "system", + "setting_id": "uD5gceL1thOzkzGo", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json index ee0bd09959..39569ca650 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.10mm Standard @Elegoo CC2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PECC202010", + "setting_id": "ozpRBEQqSZU7bZ1E", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json index e1172fcfb1..e570db58fc 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.12mm Draft @Elegoo CC2 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "layer_height": "0.12", "name": "0.12mm Draft @Elegoo CC2 0.2 nozzle", + "from": "system", + "setting_id": "cGFwf6ddNwMmqs9h", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json index 8794ef5731..85705f0aa9 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.12mm Fine @Elegoo CC2 0.4 nozzle.json @@ -1,10 +1,13 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "layer_height": "0.12", "name": "0.12mm Fine @Elegoo CC2 0.4 nozzle", + "from": "system", "wall_loops": "3", "support_bottom_z_distance": "0.2", "support_top_z_distance": "0.2", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "lRhdk46FwTwzcCYh", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json index e44ed6f7cb..69934b5680 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.14mm Extra Draft @Elegoo CC2 0.2 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.10mm Standard @Elegoo CC2 0.2 nozzle", "layer_height": "0.14", "name": "0.14mm Extra Draft @Elegoo CC2 0.2 nozzle", + "from": "system", + "setting_id": "falXCyvjKInAQBuU", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json index a6ea15a145..e5de49c2fc 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.16mm Extra Fine @Elegoo CC2 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.16", "name": "0.16mm Extra Fine @Elegoo CC2 0.8 nozzle", + "from": "system", + "setting_id": "fkdUtfBU1HkWIIvT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json index fe6e4bda30..82cebc5760 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.16mm Optimal @Elegoo CC2 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "layer_height": "0.16", "name": "0.16mm Optimal @Elegoo CC2 0.4 nozzle", + "from": "system", + "setting_id": "et3r9GAefxCq9TSq", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json index 6233080932..a8c83adc07 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.18mm Fine @Elegoo CC2 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "layer_height": "0.18", "name": "0.18mm Fine @Elegoo CC2 0.6 nozzle", + "from": "system", + "setting_id": "zpijb8su3jIgrND9", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json index 98bd16d30b..ffa7569167 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.20mm Standard @Elegoo CC2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PECC204020", + "setting_id": "pjHwBoHNTMAhLSbk", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json index af46be64e3..d3374f99e0 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.20mm Strength @Elegoo CC2 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "name": "0.20mm Strength @Elegoo CC2 0.4 nozzle", + "from": "system", "wall_sequence": "inner wall/outer wall", "reduce_crossing_wall": "0", "bottom_shell_layers": "5", @@ -10,5 +12,6 @@ "top_shell_layers": "6", "wall_loops": "5", "top_solid_infill_flow_ratio": "1.09", + "setting_id": "jTiebnbHJERoOZ2Y", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json index 50d31cedc1..cb28d46e8d 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Draft @Elegoo CC2 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "layer_height": "0.24", "name": "0.24mm Draft @Elegoo CC2 0.4 nozzle", + "from": "system", + "setting_id": "dw8ZgRee5mUlNdon", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json index 9d43d1ee8b..1df6cf54a0 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Fine @Elegoo CC2 0.8 nozzle.json @@ -1,7 +1,10 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "initial_layer_print_height": "0.3", "layer_height": "0.24", "name": "0.24mm Fine @Elegoo CC2 0.8 nozzle", + "from": "system", + "setting_id": "TrKMkazV6my94O8Q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json index 1171026be7..e559bf36ca 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.24mm Optimal @Elegoo CC2 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "layer_height": "0.24", "name": "0.24mm Optimal @Elegoo CC2 0.6 nozzle", + "from": "system", + "setting_id": "VfcmVzpWGuafr5C8", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json index 000676ba68..f7259db276 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.28mm Extra Draft @Elegoo CC2 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.20mm Standard @Elegoo CC2 0.4 nozzle", "layer_height": "0.28", "name": "0.28mm Extra Draft @Elegoo CC2 0.4 nozzle", + "from": "system", + "setting_id": "iOd2EdXRnWMT6VZM", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json index e5084f94d0..b61967211c 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.30mm Standard @Elegoo CC2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PECC206030", + "setting_id": "SgrmUzs20VxvAXM5", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json index f14cafb3ef..7b67d63e18 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.30mm Strength @Elegoo CC2 0.6 nozzle.json @@ -1,12 +1,15 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "inner_wall_speed": "120", "name": "0.30mm Strength @Elegoo CC2 0.6 nozzle", + "from": "system", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "outer_wall_speed": "80", "sparse_infill_density": "15%", "top_surface_speed": "120", "wall_loops": "4", + "setting_id": "qvgkuo9AInajHCez", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json index 94a4d405ef..e84edc7edf 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.32mm Optimal @Elegoo CC2 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "layer_height": "0.32", "name": "0.32mm Optimal @Elegoo CC2 0.8 nozzle", + "from": "system", + "setting_id": "3l5lU1sBxbMAzV6x", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json index dbb3d9e8d7..41479b76b1 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.36mm Draft @Elegoo CC2 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "layer_height": "0.36", "name": "0.36mm Draft @Elegoo CC2 0.6 nozzle", + "from": "system", + "setting_id": "S1MtBrEo884gfhm3", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json index 031bad9887..661c14a550 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.40mm Standard @Elegoo CC2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PECC208040", + "setting_id": "iN8bJaXB5zflWLxd", "instantiation": "true", "filename_format": "ECC2_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "min_width_top_surface": "50%", diff --git a/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json index d32be7b6df..debbe6ef13 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.42mm Extra Draft @Elegoo CC2 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.30mm Standard @Elegoo CC2 0.6 nozzle", "layer_height": "0.42", "name": "0.42mm Extra Draft @Elegoo CC2 0.6 nozzle", + "from": "system", + "setting_id": "Du73E9Zw3cOyKZYb", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json b/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json index 58a1ece2c2..08006c453f 100644 --- a/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/ECC2/0.48mm Draft @Elegoo CC2 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", "inherits": "0.40mm Standard @Elegoo CC2 0.8 nozzle", "layer_height": "0.48", "name": "0.48mm Draft @Elegoo CC2 0.8 nozzle", + "from": "system", + "setting_id": "K7hJQ2Kzyu7kgmCx", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json index f3cb796591..cd7a6f60ae 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.12mm Fine @Elegoo Neptune 0.4 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN204020", + "type": "process", + "setting_id": "x7ZbjKUNtGbCsJWr", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.12mm Fine @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json index 963040e3ab..c616506306 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.16mm Optimal @Elegoo Neptune 0.4 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN204020", + "type": "process", + "setting_id": "dmdjW1ZxuWAXgArQ", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.16mm Optimal @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json index ee5b79d5ea..fce4e6ea2a 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Standard @Elegoo Neptune 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN204020", + "setting_id": "ivuelLxit3DxpCQf", "name": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json index 62f79c8e77..e7c2cc6460 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.20mm Strength @Elegoo Neptune 0.4 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN204020S", + "type": "process", + "setting_id": "7o8beRTTV9kahf6c", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.20mm Strength @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json index c54923918d..939d9d3e0d 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Draft @Elegoo Neptune 0.4 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN204024", + "type": "process", + "setting_id": "AQnZ1c7zUfkqHzUV", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.24mm Draft @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json index bb7a4cf27e..5ecf1d6597 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Fine @Elegoo Neptune 0.8 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN208024", + "type": "process", + "setting_id": "58PjDN7iOw2uuKCa", "from": "system", "name": "0.24mm Fine @Elegoo Neptune 0.8 nozzle", "inherits": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json index ef7e720471..4564e2836a 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.24mm Optimal @Elegoo Neptune 0.6 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN206024", + "type": "process", + "setting_id": "9TcC7ocHTTV5fO6u", "from": "system", "name": "0.24mm Optimal @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json index cc8cc38ec8..dc1f40365c 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN204028", + "type": "process", + "setting_id": "gZWSfkY2eEsk2BOj", "from": "system", "inherits": "0.20mm Standard @Elegoo Neptune 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo Neptune 0.4 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json index a2839ad557..16374edb76 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.30mm Standard @Elegoo Neptune 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN206030", + "setting_id": "G6dUEbP5KTftvQo9", "instantiation": "true", "filename_format": "{nozzle_diameter[0]}{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json index f91c249e99..21508d6fcb 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.32mm Optimal @Elegoo Neptune 0.8 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN208032", + "type": "process", + "setting_id": "pubCZO4TSk26n9tN", "from": "system", "name": "0.32mm Optimal @Elegoo Neptune 0.8 nozzle", "inherits": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json index bb411a8271..2c70c48f96 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.36mm Draft @Elegoo Neptune 0.6 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN206036", + "type": "process", + "setting_id": "3uIERa8zvsPoVkk8", "from": "system", "name": "0.36mm Draft @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json index ca53203fbc..1889c3eb98 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.40mm Standard @Elegoo Neptune 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo Neptune 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN208040", + "setting_id": "OKge4BbgbchBlene", "instantiation": "true", "filename_format": "{nozzle_diameter[0]}{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json index ec6ec519e8..d0deeae0cd 100644 --- a/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN2SERIES/0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle.json @@ -1,5 +1,6 @@ { - "setting_id": "PEN206042", + "type": "process", + "setting_id": "xvfDVb6XEH8USrny", "from": "system", "name": "0.42mm Extra Draft @Elegoo Neptune 0.6 nozzle", "inherits": "0.30mm Standard @Elegoo Neptune 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json index c66b4c4e44..c7551fea08 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Max 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N3Max 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Max02008", + "setting_id": "XEXWDtkuVN27Z0Ae", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json index 5d59fd9257..751845d1a7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Plus 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N3Plus 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Plus02008", + "setting_id": "oRNlKaMaOZS6N4pT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json index e9ea71a4d2..98dc95f83c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.08mm Optimal @Elegoo N3Pro 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N3Pro 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "layer_height": "0.08", - "settings_id": "PEN3Pro02008", + "setting_id": "4d4rm5pkuVEpvKUA", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json index 3bc639009c..2d7fab0c0e 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Max02010", + "setting_id": "2Wskk71VCs9JiZyJ", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json index 8acf8caf10..cafdb29a60 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Plus02010", + "setting_id": "ee55grIk19GJ6uR8", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json index 4e5feb1dcb..78c84996b2 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.10mm Standard @Elegoo N3Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN3Pro02010", + "setting_id": "VTvUwhwFLrsd34JB", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json index de0124f296..593b54ea29 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Max 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N3Max 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Max 0.2 nozzle", + "setting_id": "0tL8rTEK1rEksfWu", "instantiation": "true", - "layer_height": "0.12", - "settings_id": "PEN3Max02012" + "layer_height": "0.12" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json index 72c9a1c20c..ac73a53ff0 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Plus 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N3Plus 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Plus 0.2 nozzle", "layer_height": "0.12", - "instantiation": "true", - "settings_id": "PEN3Plus02012" + "setting_id": "4H7asjR6qAfYD1zA", + "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json index 4077d1d790..93e0053162 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Draft @Elegoo N3Pro 0.2 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N3Pro 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N3Pro 0.2 nozzle", "layer_height": "0.12", - "instantiation": "true", - "settings_id": "PEN3Pro02012" + "setting_id": "B5TzYBAO9JaSXfj8", + "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json index 6abd6e7aed..df15921fc8 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Max 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.12mm Fine @Elegoo N3Max 0.4 nozzle", "layer_height": "0.12", + "setting_id": "EvN6TYCeyMKxI6Re", "instantiation": "true", "wall_loops": "3", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3Max;0.12mm Fine @Elegoo Neptune3Max" diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json index 93eb31aa6d..3ea7659416 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Plus 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.12mm Fine @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.12", + "setting_id": "7BlZuuOXdqTj6cV6", "instantiation": "true", "wall_loops": "3", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3Plus;0.12mm Fine @Elegoo Neptune3Plus" diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json index 6e413070fe..e4e8b01040 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.12mm Fine @Elegoo N3Pro 0.4 nozzle.json @@ -1,9 +1,11 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.12mm Fine @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.12", "wall_loops": "3", + "setting_id": "sxbVyUoQQwvDwEgm", "instantiation": "true", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune3;0.08mm Extra Fine @Elegoo Neptune3Pro;0.12mm Fine @Elegoo Neptune3;0.12mm Fine @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json index 0252596d72..e6f3e04bc7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Max 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Max 0.4 nozzle", "layer_height": "0.16", + "setting_id": "TCM0SNa96VA5Dx2H", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json index 316dc6932c..bdcacf92c7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Plus 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.16", + "setting_id": "WZhze0PkeqiyOdrj", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json index 7dcbbd6ff3..823a13b1be 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.16mm Optimal @Elegoo N3Pro 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.16mm Optimal @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.16", + "setting_id": "xSjvTTFHSiKGi5vc", "instantiation": "true", "renamed_from": "0.16mm Optimal @Elegoo Neptune3;0.16mm Optimal @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json index c6110a312b..badc9335be 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Max04020", + "setting_id": "YVbjgCkFSIfI9zDy", "name": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json index 9d92db7eb6..beb35d4ae7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Plus04020", + "setting_id": "t2QdKzmUAoGrZTl2", "name": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json index 0140bc5070..68635c0424 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Standard @Elegoo N3Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN3Pro04020", + "setting_id": "Z6E0SkSXvbyrgCwI", "name": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json index f869f050a9..5e666a782f 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Max 0.4 nozzle.json @@ -1,9 +1,11 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.20mm Strength @Elegoo N3Max 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "F9cFxKIj5tmaKw0q", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json index 543069d490..b5b6ce375a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Plus 0.4 nozzle.json @@ -1,9 +1,11 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.20mm Strength @Elegoo N3Plus 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "dUTKuxKR2EutaNmT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json index 877f99a280..a369fa15e4 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.20mm Strength @Elegoo N3Pro 0.4 nozzle.json @@ -1,9 +1,11 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.20mm Strength @Elegoo N3Pro 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", "wall_loops": "6", + "setting_id": "8A1LaTaH5mFRXIRT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json index 6b7a7c3881..81bbeed822 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Max 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Max 0.4 nozzle", "layer_height": "0.24", + "setting_id": "4cjFrdHJQUTXPlhY", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json index 613539c88b..647186a296 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Plus 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.24", + "setting_id": "YVe8MEaJXZUeE3h4", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json index f4c5a3a6d3..84bfc06411 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Draft @Elegoo N3Pro 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.24mm Draft @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.24", + "setting_id": "D8EjvZ18sgk2kVfO", "instantiation": "true", "renamed_from": "0.24mm Draft @Elegoo Neptune3;0.24mm Draft @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json index 7d64bfbe5f..9f1fb265ca 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Max 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N3Max 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Max08024", + "setting_id": "AIFj2Nkig3Xe3f80", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json index b5f15fefe2..05753f9621 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Plus 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N3Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Plus08024", + "setting_id": "Fo9SwcT3g26U1cJO", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json index d71a581533..2c43b42df2 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Fine @Elegoo N3Pro 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N3Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", + "setting_id": "QEh6pEz7MS4x51QA", "instantiation": "true", - "layer_height": "0.24", - "settings_id": "PEN3Pro08024" + "layer_height": "0.24" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json index 82e9b86953..9284fa65e4 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Max 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N3Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Max06024", + "setting_id": "sRz0TXDOEWnLxXh5", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json index 91764eee75..dbf6f01505 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Plus 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N3Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Plus06024", + "setting_id": "T7cpTs4IIK8zix8P", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json index 8e437c84b7..a0fbc1a58b 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.24mm Optimal @Elegoo N3Pro 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N3Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.24", - "settings_id": "PEN3Pro06024", + "setting_id": "T2QWt3peRdwFJFXE", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json index 1f32538a9f..5feef5dfe9 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Max 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Max 0.4 nozzle", "layer_height": "0.28", + "setting_id": "nJX8mCa1nrWxYsEd", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3Max" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json index 1dcf6c15b0..45b060a748 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Plus 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Plus 0.4 nozzle", "layer_height": "0.28", + "setting_id": "7ZbuPzdEsBEeZlOC", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3Plus" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json index 09762e3060..fbfcb2f8c4 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N3Pro 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N3Pro 0.4 nozzle", "layer_height": "0.28", + "setting_id": "pcBUWmShCb8ii1Ro", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune3;0.28mm Extra Draft @Elegoo Neptune3Pro" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json index 05baa094b9..524e501772 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N3Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Max10030", + "setting_id": "HMDmYxoPgPEF3o2k", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json index 1909af5d29..88ad4e385a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N3Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Plus10030", + "setting_id": "nnGIKTAThcIjqiNY", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json index 7b07fc4756..d33a7620be 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Fine @Elegoo N3Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N3Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.3", - "settings_id": "PEN3Pro10030", + "setting_id": "PGLk0C6CFjdJgUD2", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json index c2db84bf68..466b789efa 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Max06030", + "setting_id": "z1O6E4twbLkjJYv2", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json index efc781e54b..8917096b8c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Plus06030", + "setting_id": "RQWF0SuJbkGyjytK", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json index 8ad5630d5f..097889e5a9 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.30mm Standard @Elegoo N3Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN3Pro06030", + "setting_id": "u2AAcGYVL3ni7bTp", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json index 2726be4265..540bafd120 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Max 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N3Max 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Max08032", + "setting_id": "EuI4NCtPdnDgCwod", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json index f1ac290c8d..de45890943 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Plus 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N3Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Plus08032", + "setting_id": "cWbafri96E6xdetF", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json index f3ebff1467..2b0823c3fb 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.32mm Optimal @Elegoo N3Pro 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N3Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "layer_height": "0.32", - "settings_id": "PEN3Pro08032", + "setting_id": "JyNhgxXpE3QGd22F", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json index 032c50a984..3a5b561cb7 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Max 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N3Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Max06036", + "setting_id": "lyUQ9qqdlT3xOjLa", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json index f120c0d5d1..ab050a47a5 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Plus 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N3Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Plus06036", + "setting_id": "9fgmDydMRIQt1EMc", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json index e39646456f..4d306b8c9c 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.36mm Draft @Elegoo N3Pro 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N3Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.36", - "settings_id": "PEN3Pro06036", + "setting_id": "y577AyAVfQm2t7MC", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json index 5fb6a64239..b385b6032b 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N3Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Max10040", + "setting_id": "SVth0sMD2ndZBpxW", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json index 8fa84c2659..8671652915 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N3Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Plus10040", + "setting_id": "Bg9wsz7gRUfhdsxO", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json index f4f205ca06..24b31b6c1a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Optimal @Elegoo N3Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N3Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.4", - "settings_id": "PEN3Pro10040", + "setting_id": "TTj088WcmPAL0J2v", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json index c2004e9d83..4edd44ef46 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Max08040", + "setting_id": "QSzRaMgy7S9sJG2F", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json index 9b919d09a6..b77c7c9385 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Plus08040", + "setting_id": "UV4kQ6560POkQRvi", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json index 3d91eaa5d7..bb1c6f23fb 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.40mm Standard @Elegoo N3Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN3Pro08040", + "setting_id": "gj5ZiVs0wSyLTN5a", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json index 81870c3375..64e16d4207 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N3Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Max 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Max06042", + "setting_id": "q8wRFEbNbhFiR68s", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json index 8ea5cec54a..001039fd99 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N3Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Plus 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Plus06042", + "setting_id": "S3XpelIawW7YF0tp", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json index d7ba07bc1a..72aa6be907 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N3Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N3Pro 0.6 nozzle", "layer_height": "0.42", - "settings_id": "PEN3Pro06042", + "setting_id": "fZmtvPZ1k15dep6l", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json index d571b95a99..fc26633f8a 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Max 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N3Max 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Max 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Max08048", + "setting_id": "xpdQ4VMjMsYWaLNA", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json index 39032c8804..f7286e3bb5 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Plus 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N3Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Plus 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Plus08048", + "setting_id": "5H03Otf81sLLUkRT", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json index ff7d45f366..cb5da8f8da 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.48mm Draft @Elegoo N3Pro 0.8 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N3Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N3Pro 0.8 nozzle", "layer_height": "0.48", - "settings_id": "PEN3Pro08048", + "setting_id": "kC1SOTD5KAkOvmkd", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json index 922578180e..4c2aaf69f1 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Max10050", + "setting_id": "ebSwXa3yYyDzIDrI", "instantiation": "true", "filename_format": "EN3Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "gap_infill_speed": "30", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json index f5fd1c1927..066fe6a839 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Plus10050", + "setting_id": "rUKQaYnp5ihWK96M", "instantiation": "true", "filename_format": "EN3Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json index 7e296aa724..bfbec06ffe 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.50mm Standard @Elegoo N3Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN3Pro10050", + "setting_id": "Mkmgg4jTFaGvBJRe", "instantiation": "true", "filename_format": "EN3Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "default_acceleration": "1000", diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json index 829278f87c..4334cd2fb8 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N3Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Max 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Max10060", + "setting_id": "VDAPQAbVmGJlCEUB", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json index 1b7d57401a..54172dcdbe 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N3Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Plus 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Plus10060", + "setting_id": "M67oOpMsXtZzCcLQ", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json index 9fb7fd2514..26d78b0da3 100644 --- a/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN3SERIES/0.60mm Draft @Elegoo N3Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N3Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N3Pro 1.0 nozzle", "layer_height": "0.6", - "settings_id": "PEN3Pro10060", + "setting_id": "FTb0W3wG9mNPkONL", "instantiation": "true" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json index d39591c28b..bb30a9622a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N4 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4 0.2 nozzle", + "setting_id": "mPn1wANI8OeyLWGt", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN402008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4 (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json index 162f7d7ad5..93bcefb615 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Max 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N4Max 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", + "setting_id": "n72kCNTZ1ILUzaiJ", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Max02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4Max (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json index faf500f940..5f663fb35c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Plus 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N4Plus 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", + "setting_id": "apACoiYg6U3Z0xwK", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Plus02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4 Plus (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json index d13921c5fd..ae08228f0f 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.08mm Optimal @Elegoo N4Pro 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.08mm Optimal @Elegoo N4Pro 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", + "setting_id": "tY0jBQmvK2chT34r", "instantiation": "true", "layer_height": "0.08", - "settings_id": "PEN4Pro02008", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.2 nozzle);0.16mm Optimal @Elegoo Neptune4Pro (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json index 723b1211a2..fc4663a2fd 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN402010", + "setting_id": "j8LrMhjmrrWEcnSl", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json index 34c1eee4c5..793f694514 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Max02010", + "setting_id": "zFHnOUd2WXdPG1d0", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json index 49a0a1799b..4064775c34 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Plus 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Plus02010", + "setting_id": "RpheR4sGaJlp7yJp", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json index d0bc173974..6f611b6f10 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.10mm Standard @Elegoo N4Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", "inherits": "fdm_process_elegoo_02010", "from": "system", - "setting_id": "PEN4Pro02010", + "setting_id": "EH1TvdVsdTCuvv2c", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json index 9237988887..fea092f942 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N4 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4 0.2 nozzle", + "setting_id": "Vis3rzOs4NILDE6C", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN402012", "renamed_from": "0.12mm Fine @Elegoo Neptune4 (0.2 nozzle);0.24mm Draft @Elegoo Neptune4 (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4 (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json index b9ff0b2ffb..318662d214 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Max 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N4Max 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Max 0.2 nozzle", + "setting_id": "BdbN0fjzy0GtRZty", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Max02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4Max (0.2 nozzle);0.24mm Draft @Elegoo Neptune4Max (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4Max (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json index cc0ee5a420..5e6c3b13b0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Plus 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N4Plus 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Plus 0.2 nozzle", + "setting_id": "zPlAvLncVwzD1wCI", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Plus02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4 Plus (0.2 nozzle);0.24mm Draft @Elegoo Neptune4 Plus (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4 Plus (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json index 62fdc845ce..62ceae2703 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Draft @Elegoo N4Pro 0.2 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.12mm Draft @Elegoo N4Pro 0.2 nozzle", + "from": "system", "inherits": "0.10mm Standard @Elegoo N4Pro 0.2 nozzle", + "setting_id": "UpIR8nVGr9eXImwd", "instantiation": "true", "layer_height": "0.12", - "settings_id": "PEN4Pro02012", "renamed_from": "0.12mm Fine @Elegoo Neptune4Pro (0.2 nozzle);0.24mm Draft @Elegoo Neptune4Pro (0.2 nozzle);0.28mm Extra Draft @Elegoo Neptune4Pro (0.2 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json index c168a6c718..4c4e045ce5 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", + "setting_id": "RQ9dC2A0MkeEXleJ", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json index 03a2ef9603..afd2451e06 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Max 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", + "setting_id": "YJTSqtPEGZDih9XE", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Max 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json index 2aacf1e4b6..f69751563e 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Plus 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", + "setting_id": "9BipQyur4imL8jml", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Plus 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json index b36898acde..500ba47b84 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.12mm Fine @Elegoo N4Pro 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", + "setting_id": "iN9aVhyxLhUdhDdG", "instantiation": "true", "name": "0.12mm Fine @Elegoo N4Pro 0.4 nozzle", "layer_height": "0.12", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json index 953a158055..819552c612 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", + "setting_id": "Cbq6b2Enl5dz7R61", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json index 5ea2ecf9ac..05ad8379a9 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Max 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", + "setting_id": "StpHJelrwAxTFcwx", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Max 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json index 9f61440b65..b7e0e6bcb0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Plus 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", + "setting_id": "rldSbNbKZcfEVZqR", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Plus 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json index f4b2268525..fe95ed6e04 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.16mm Optimal @Elegoo N4Pro 0.4 nozzle.json @@ -1,6 +1,8 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", + "setting_id": "SNO9sWlpg5QylF2U", "instantiation": "true", "name": "0.16mm Optimal @Elegoo N4Pro 0.4 nozzle", "layer_height": "0.16", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json index 7fa5fc41d1..8904a2de16 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN404020", + "setting_id": "KX7Cn4tNCSa1BMpF", "name": "0.20mm Standard @Elegoo N4 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json index 5c10b66ed1..418d9824c0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Max 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Max04020", + "setting_id": "6llMZka0sgQ4w50C", "name": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json index 65048a36e7..316a5d8dec 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Plus 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Plus04020", + "setting_id": "EWip2jSpsehCzgdG", "name": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json index f08d2190df..d9d74a5fb0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Standard @Elegoo N4Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "PEN4Pro04020", + "setting_id": "ev7Dl6VzLoldRKK3", "name": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "from": "system", "inherits": "fdm_process_elegoo_04020", diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json index 9d3d467672..7b3f4c2e64 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "WBaSzHgrqKENej4G", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json index c7eb5a4257..54ad422763 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Max 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Max 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "HaK3rpieMESKs6PY", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json index a946e44bcf..831205c4d7 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Plus 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Plus 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "ad0UueKfT6sGUn0I", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json index 0de850fbc8..0d475532a4 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.20mm Strength @Elegoo N4Pro 0.4 nozzle.json @@ -1,8 +1,10 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.20mm Strength @Elegoo N4Pro 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", + "setting_id": "LrBDOuD4h741FItb", "instantiation": "true", "reduce_crossing_wall": "1", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json index a40f510b09..e0a2eaabd9 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4 0.4 nozzle", + "setting_id": "3bX9fmM7GOKwsWLc", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json index fabc66714b..7035c986c8 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Max 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Max 0.4 nozzle", + "setting_id": "I5pPHYUqGEV4faQe", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json index 531775a277..aec452e1b0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Plus 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Plus 0.4 nozzle", + "setting_id": "TUwtXktoDMUFiUjH", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json index 3c31c7c37c..20acd0a27c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Draft @Elegoo N4Pro 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.24mm Draft @Elegoo N4Pro 0.4 nozzle", + "setting_id": "JSPwiPfUUfrEmRLx", "instantiation": "true", "layer_height": "0.24", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json index 07aafaccc3..d093eeaf65 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N4 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "HUtKrGQKYKgX2DSp", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN408024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.8 nozzle);0.12mm Fine @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json index cde306b66f..493fd9ff9a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Max 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N4Max 0.8 nozzle", + "from": "system", + "setting_id": "8eKtU9RlWvWk8MfS", "instantiation": "true", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", "layer_height": "0.24", - "settings_id": "PEN4Max08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.8 nozzle);0.12mm Fine @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json index 1bac053831..6bdaeb44c2 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Plus 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N4Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "hRKqKq27wVaeLAPG", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Plus08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.8 nozzle);0.12mm Fine @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json index 7428519417..2449ed7c4b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Fine @Elegoo N4Pro 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Fine @Elegoo N4Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "OcNAeI4a7QtbFJ6W", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Pro08024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.8 nozzle);0.12mm Fine @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json index 38177c8a6e..ff72b55af4 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N4 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "EX3MNVdWZSogtuND", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN406024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 (0.6 nozzle);0.12mm Fine @Elegoo Neptune4 (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json index d8716bfd67..e54636a0b6 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Max 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N4Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "KvtJF6N8LWqwgBJu", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Max06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Max (0.6 nozzle);0.12mm Fine @Elegoo Neptune4Max (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json index 2a18986f22..fcbc9a9066 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Plus 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N4Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "vVYW2JeI230MxnFV", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Plus06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4 Plus (0.6 nozzle);0.12mm Fine @Elegoo Neptune4 Plus (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json index f926a87f5d..9f225d96f5 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.24mm Optimal @Elegoo N4Pro 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.24mm Optimal @Elegoo N4Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "3mpKq49ZsvU2jr1J", "instantiation": "true", "layer_height": "0.24", - "settings_id": "PEN4Pro06024", "renamed_from": "0.08mm Extra Fine @Elegoo Neptune4Pro (0.6 nozzle);0.12mm Fine @Elegoo Neptune4Pro (0.6 nozzle);0.16mm Optimal @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json index 272c2369b5..3495255fee 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4 0.4 nozzle", + "setting_id": "d1EZu3O7DCEtvUo9", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json index 28f860bbc0..316c9f9376 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Max 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Max 0.4 nozzle", + "setting_id": "uBXPR8bbDu4tnfZ7", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Max (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json index cc6e3a6cc1..195d30d125 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Plus 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Plus 0.4 nozzle", + "setting_id": "McXTTMnfUYmOZHcI", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 Plus (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json index 1ad7d31929..98e5594b4c 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle.json @@ -1,7 +1,9 @@ { + "type": "process", "from": "system", "inherits": "0.20mm Standard @Elegoo N4Pro 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo N4Pro 0.4 nozzle", + "setting_id": "qIl89vLzpnjOmZMG", "instantiation": "true", "layer_height": "0.28", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Pro (0.4 nozzle)" diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json index 15f7ee6236..f159ca8b8e 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N4 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "LSxHoq8lDbiY0WwD", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN410030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json index cce0306a49..4dda55dcb9 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N4Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "Usm5LQIdEG5qte0Z", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Max10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json index 93242a56a9..57db88d6c0 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N4Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "sSKLKqIlQsgkvBoj", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Plus10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json index 6f173eb96b..3b9ca2ba34 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Fine @Elegoo N4Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.30mm Fine @Elegoo N4Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "Fs44Eg0QxZTwNB4i", "instantiation": "true", - "layer_height": "0.3", - "settings_id": "PEN4Pro10030" + "layer_height": "0.3" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json index a4e6bd5921..4b0d1d7041 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN406030", + "setting_id": "X0otPkxfrqhtmKyX", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json index 1e2ca7c889..9f10ee23f4 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Max06030", + "setting_id": "Vy5RnlR6iFs2Uo4Z", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json index e40635dcdf..653de53108 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Plus 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Plus06030", + "setting_id": "VtWElYWASazfYCCd", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json index f97ea71506..603c81acb4 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.30mm Standard @Elegoo N4Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEN4Pro06030", + "setting_id": "rNfnCbVknDzyGq7a", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json index 1507f37e6d..444ca610ff 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N4 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "qzrXP9bCuf6aoqg6", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN408032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4 (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json index 6553b8e067..b27212d71a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Max 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N4Max 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", + "setting_id": "G3FnBHsN3NV7ZfTR", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Max08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4Max (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json index 55fb5cf453..ab89009c71 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Plus 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N4Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "xbAlLK2WW32kCp3z", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Plus08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4 Plus (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json index 84cfe1bc2f..2dd5be1fbf 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.32mm Optimal @Elegoo N4Pro 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.32mm Optimal @Elegoo N4Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "KOk0kTX3EelPCG3R", "instantiation": "true", "layer_height": "0.32", - "settings_id": "PEN4Pro08032", "renamed_from": "0.16mm Optimal @Elegoo Neptune4Pro (0.8 nozzle);0.28mm Extra Draft @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json index e894685981..827c319064 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N4 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "RPUd5w4RMBgxhvgu", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN406036", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json index 2cd4e27641..1facc52b31 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Max 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N4Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "C9QhIRg3uvqiceM9", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Max06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json index d076a53a45..6e05f6655f 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Plus 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N4Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "6LT83N9zzhnyndd1", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Plus06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json index 84aeaeb74c..7380250779 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.36mm Draft @Elegoo N4Pro 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.36mm Draft @Elegoo N4Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "uV8fOfHicJZXuBrG", "instantiation": "true", "layer_height": "0.36", - "settings_id": "PEN4Pro06036", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json index 4f019d2d76..e1c9dc2ebf 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N4 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "knCmCemB0pCsXI9H", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN410040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json index 1be6117201..2db783f9c1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N4Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "O0MSBh9OeaZDP7ow", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Max10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json index f439c9f829..f5abebabbb 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N4Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "rxq0eIQKDme3F1Es", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Plus10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json index 599d7d9ae9..56bc5cd096 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Optimal @Elegoo N4Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.40mm Optimal @Elegoo N4Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "tc7tn1h9Sf3B0D0X", "instantiation": "true", - "layer_height": "0.4", - "settings_id": "PEN4Pro10040" + "layer_height": "0.4" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json index 15058a29b2..a07bccbda1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN408040", + "setting_id": "VnE7I5kpYjaWE9TQ", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json index 908bb3b190..c3fd42ae08 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Max08040", + "setting_id": "tgLcMBDWsMF48oRZ", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json index f30cbf4af4..768d30d0a1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Plus 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Plus08040", + "setting_id": "9o2i5h6e4I7l7QOg", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json index 9743836954..5cd78291fc 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.40mm Standard @Elegoo N4Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEN4Pro08040", + "setting_id": "xFnwaHCJymLM4Bgb", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json index 84e25cd158..1c43c12f8b 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N4 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4 0.6 nozzle", + "setting_id": "XlLhnDcy7S6BcaFE", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN406042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json index e60d236b1d..f6d276ebb6 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N4Max 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Max 0.6 nozzle", + "setting_id": "oPxKL0bgR2gX0Ijh", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Max06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Max (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json index 93de50e8f5..7def2341c6 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N4Plus 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Plus 0.6 nozzle", + "setting_id": "qY9HPvv16AZMQj4O", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Plus06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4 Plus (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json index 16f0520ea5..d060f49384 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.42mm Extra Draft @Elegoo N4Pro 0.6 nozzle", + "from": "system", "inherits": "0.30mm Standard @Elegoo N4Pro 0.6 nozzle", + "setting_id": "o1GuCAN5AF2cjFRZ", "instantiation": "true", "layer_height": "0.42", - "settings_id": "PEN4Pro06042", "renamed_from": "0.28mm Extra Draft @Elegoo Neptune4Pro (0.6 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json index 67b282e375..41feffa308 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N4 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4 0.8 nozzle", + "setting_id": "SBUBC3tTWEsoUDwB", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN408048", "renamed_from": "0.24mm Draft @Elegoo Neptune4 (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json index 41504b055d..e0a4de6b6a 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Max 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N4Max 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Max 0.8 nozzle", + "setting_id": "O8HQgyqJNT6oHFL1", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Max08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4Max (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json index 0bb6e5f8ee..f6f5655f0d 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Plus 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N4Plus 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Plus 0.8 nozzle", + "setting_id": "DSXwIJeZIaTQNJdD", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Plus08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4 Plus (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json index 8bb92eda1c..796fc78212 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.48mm Draft @Elegoo N4Pro 0.8 nozzle.json @@ -1,9 +1,10 @@ { "type": "process", "name": "0.48mm Draft @Elegoo N4Pro 0.8 nozzle", + "from": "system", "inherits": "0.40mm Standard @Elegoo N4Pro 0.8 nozzle", + "setting_id": "GYMUhWOFDMRwYdxY", "instantiation": "true", "layer_height": "0.48", - "settings_id": "PEN4Pro08048", "renamed_from": "0.24mm Draft @Elegoo Neptune4Pro (0.8 nozzle)" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json index 8ad0f87da4..a7e938e0a5 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN410050", + "setting_id": "MyxucuufiUoOU1AA", "instantiation": "true", "filename_format": "EN4_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json index 6bbb25a022..07066692df 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Max 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Max10050", + "setting_id": "RtAKEu724PzIrcIX", "instantiation": "true", "filename_format": "EN4Max_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json index e9250cf0c1..69399efa19 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Plus 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Plus10050", + "setting_id": "c3e2AbM7fabaQdjJ", "instantiation": "true", "filename_format": "EN4Plus_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json index d2b0a1489c..851e22f4d1 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.50mm Standard @Elegoo N4Pro 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", "inherits": "fdm_process_elegoo_10050", "from": "system", - "setting_id": "PEN4Pro10050", + "setting_id": "X2ojMhn72WwOJFeP", "instantiation": "true", "filename_format": "EN4Pro_{nozzle_diameter[0]}_{input_filename_base}_{filament_name}_{layer_height}_{print_time}.gcode", "compatible_printers": [ diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json index 6aa656f810..6da75b45b4 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N4 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4 1.0 nozzle", + "setting_id": "Y8DwHQxs3j9DEU2v", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN410060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json index e6d2591dd9..c713999503 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Max 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N4Max 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Max 1.0 nozzle", + "setting_id": "QoV7xebXnXFxPc1G", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Max10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json index b30d5f60f4..78e01e0765 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Plus 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N4Plus 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Plus 1.0 nozzle", + "setting_id": "f5rYjm5HnjXGeRv9", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Plus10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json index 7ed9c5d98b..e935f52c72 100644 --- a/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EN4SERIES/0.60mm Draft @Elegoo N4Pro 1.0 nozzle.json @@ -1,8 +1,9 @@ { "type": "process", "name": "0.60mm Draft @Elegoo N4Pro 1.0 nozzle", + "from": "system", "inherits": "0.50mm Standard @Elegoo N4Pro 1.0 nozzle", + "setting_id": "pjsuqOu6iU4ZDjfL", "instantiation": "true", - "layer_height": "0.6", - "settings_id": "PEN4Pro10060" + "layer_height": "0.6" } diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json index 295cf9b20b..965365edd6 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.16mm Optimal @Elegoo Giga 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.16", + "setting_id": "XLb4AmNTfuDRMWQl", "instantiation": "true", "renamed_from": "0.16mm Optimal @EOS Giga 0.4 nozzle", "name": "0.16mm Optimal @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json index afa4f4a0b3..f82182d302 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.18mm Fine @Elegoo Giga 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.18", + "setting_id": "xxVHp48sijSkmOCr", "instantiation": "true", "renamed_from": "0.18mm Fine @EOS Giga 0.6 nozzle", "name": "0.18mm Fine @Elegoo Giga 0.6 nozzle", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json index 8f8dbf9ca9..1dc016e684 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Standard @Elegoo Giga 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "inherits": "fdm_process_elegoo_04020", "from": "system", - "setting_id": "PEOSG04020", + "setting_id": "GIglVjgVd5bAy2nW", "instantiation": "true", "renamed_from": "0.20mm Standard @EOS Giga 0.4 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json index 398980f074..432e7b60d2 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.20mm Strength @Elegoo Giga 0.4 nozzle.json @@ -1,8 +1,11 @@ { + "type": "process", + "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "name": "0.20mm Strength @Elegoo Giga 0.4 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", + "setting_id": "JsDp89yLYQpZ8a9z", "instantiation": "true", "renamed_from": "0.20mm Strength @EOS Giga 0.4 nozzle", "wall_loops": "6" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json index 620a3ac8bd..c7df41ccde 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Draft @Elegoo Giga 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.24", + "setting_id": "V1FtH3wGlPhP8SlR", "instantiation": "true", "renamed_from": "0.24mm Draft @EOS Giga 0.4 nozzle", "name": "0.24mm Draft @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json index b334d0d45b..3c61774ab9 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Fine @Elegoo Giga 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.24", + "setting_id": "v4n8azbYxr3XfTC1", "instantiation": "true", "renamed_from": "0.24mm Fine @EOS Giga 0.8 nozzle", "name": "0.24mm Fine @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json index 62764498ae..5c9783aca0 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.24mm Optimal @Elegoo Giga 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.24", + "setting_id": "ZvTBY1VByXi0woy8", "instantiation": "true", "renamed_from": "0.24mm Optimal @EOS Giga 0.6 nozzle", "name": "0.24mm Optimal @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json index 8407214a34..cfb1f6173b 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.28mm Extra Draft @Elegoo Giga 0.4 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.20mm Standard @Elegoo Giga 0.4 nozzle", "layer_height": "0.28", + "setting_id": "fJFavkWAsAtwN4W2", "instantiation": "true", "renamed_from": "0.28mm Extra Draft @EOS Giga 0.4 nozzle", "name": "0.28mm Extra Draft @Elegoo Giga 0.4 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json index 424afaed59..0d57c5f756 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Fine @Elegoo Giga 1.0 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.3", + "setting_id": "fmE4BaIielLYEpAm", "instantiation": "true", "renamed_from": "0.30mm Fine @EOS Giga 1.0 nozzle", "name": "0.30mm Fine @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json index 5ee13152a9..e6a04bb40a 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Standard @Elegoo Giga 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "inherits": "fdm_process_elegoo_06030", "from": "system", - "setting_id": "PEOSG06030", + "setting_id": "mMP6cZhv9TYjYlEh", "instantiation": "true", "renamed_from": "0.30mm Standard @EOS Giga 0.6 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json index e5ab6e67fb..ce791916ca 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.30mm Strength @Elegoo Giga 0.6 nozzle.json @@ -1,8 +1,11 @@ { + "type": "process", + "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "name": "0.30mm Strength @Elegoo Giga 0.6 nozzle", "wall_sequence": "inner-outer-inner wall", "reduce_crossing_wall": "1", + "setting_id": "Vwty88kyYO8bPt9l", "instantiation": "true", "renamed_from": "0.30mm Strength @EOS Giga 0.6 nozzle", "wall_loops": "5" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json index bdd1068550..c859de87a7 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.32mm Optimal @Elegoo Giga 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.32", + "setting_id": "U6XpRv8LUHeLMpO6", "instantiation": "true", "renamed_from": "0.32mm Optimal @EOS Giga 0.8 nozzle", "name": "0.32mm Optimal @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json index dbbd626b97..fa032fc410 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.36mm Draft @Elegoo Giga 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.36", + "setting_id": "aFZ4bLGGhFIcwoH5", "instantiation": "true", "renamed_from": "0.36mm Draft @EOS Giga 0.6 nozzle", "name": "0.36mm Draft @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json index a9b9d8f9d2..aa8af94e85 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Optimal @Elegoo Giga 1.0 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.4", + "setting_id": "fGSfqfyNqMhuqZ8X", "instantiation": "true", "renamed_from": "0.40mm Optimal @EOS Giga 1.0 nozzle", "name": "0.40mm Optimal @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json index d2ba5ef203..8b73f6b7d1 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.40mm Standard @Elegoo Giga 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "inherits": "fdm_process_elegoo_08040", "from": "system", - "setting_id": "PEOSG08040", + "setting_id": "oiMWJMGC2aW2v4wg", "instantiation": "true", "renamed_from": "0.40mm Standard @EOS Giga 0.8 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json index 634a0d0dcc..803606068b 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.42mm Extra Draft @Elegoo Giga 0.6 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.30mm Standard @Elegoo Giga 0.6 nozzle", "layer_height": "0.42", + "setting_id": "dlzWR8ZIwaJ1tYId", "instantiation": "true", "renamed_from": "0.42mm Extra Draft @EOS Giga 0.6 nozzle", "name": "0.42mm Extra Draft @Elegoo Giga 0.6 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json index 1d2d1eff86..3c660f5b8e 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.48mm Draft @Elegoo Giga 0.8 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", "layer_height": "0.48", + "setting_id": "lqJRn5QLgMp5i2dr", "instantiation": "true", "renamed_from": "0.48mm Draft @EOS Giga 0.8 nozzle", "name": "0.48mm Draft @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json index fb0fa6878e..f2ad7bb95a 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.50mm Standard @Elegoo Giga 1.0 nozzle.json @@ -1,8 +1,9 @@ { + "type": "process", "inherits": "fdm_process_elegoo_10050", "name": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "from": "system", - "setting_id": "PEOSG10050", + "setting_id": "hLPWpsFCvKgbrebl", "instantiation": "true", "renamed_from": "0.50mm Standard @EOS Giga 1.0 nozzle", "default_acceleration": "3000", diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json index e92e167768..8104d7423a 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.56mm Extra Draft @Elegoo Giga 0.8 nozzle.json @@ -1,5 +1,8 @@ { + "type": "process", + "from": "system", "inherits": "0.40mm Standard @Elegoo Giga 0.8 nozzle", + "setting_id": "EC6Dqk8dUIai51E5", "instantiation": "true", "renamed_from": "0.56mm Extra Draft @EOS Giga 0.8 nozzle", "name": "0.56mm Extra Draft @Elegoo Giga 0.8 nozzle" diff --git a/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json b/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json index fe6e0e6868..d53af64b0e 100644 --- a/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json +++ b/resources/profiles/Elegoo/process/EOSGIGA/0.60mm Draft @Elegoo Giga 1.0 nozzle.json @@ -1,6 +1,9 @@ { + "type": "process", + "from": "system", "inherits": "0.50mm Standard @Elegoo Giga 1.0 nozzle", "layer_height": "0.6", + "setting_id": "VsOntugsCeEPNBvC", "instantiation": "true", "renamed_from": "0.60mm Draft @EOS Giga 1.0 nozzle", "name": "0.60mm Draft @Elegoo Giga 1.0 nozzle" diff --git a/resources/profiles/Eryone.json b/resources/profiles/Eryone.json index 97adffc77b..b3bec6e892 100644 --- a/resources/profiles/Eryone.json +++ b/resources/profiles/Eryone.json @@ -1,6 +1,6 @@ { "name": "Eryone", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Eryone configurations", "machine_model_list": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json index ea3c5a6537..11bd3c3c67 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ABS @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ABS @0.2 nozzle", "from": "system", + "setting_id": "sNet9szMIhVY4WoS", "instantiation": "true", "inherits": "Eryone ABS", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json index 3d221d2f11..0d862c72f6 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ABS-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ABS-CF @0.2 nozzle", "from": "system", + "setting_id": "a7qk6VtkbJziQHZo", "instantiation": "true", "inherits": "Eryone ABS-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS-CF.json b/resources/profiles/Eryone/filament/Eryone ABS-CF.json index a7c69dfaa4..bb976dcd88 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS-CF.json +++ b/resources/profiles/Eryone/filament/Eryone ABS-CF.json @@ -3,7 +3,7 @@ "name": "Eryone ABS-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA11", + "setting_id": "f4VPJtNcZOIIKyDz", "filament_id": "EFL81", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ABS.json b/resources/profiles/Eryone/filament/Eryone ABS.json index 9875f62ff2..c09a35d34e 100644 --- a/resources/profiles/Eryone/filament/Eryone ABS.json +++ b/resources/profiles/Eryone/filament/Eryone ABS.json @@ -3,7 +3,7 @@ "name": "Eryone ABS", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA01", + "setting_id": "JfQiR5qK9Ue3JDt5", "filament_id": "EFL91", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json index acc079a79d..fd8a747c60 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ASA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ASA @0.2 nozzle", "from": "system", + "setting_id": "SopkMvsT3DXzJ9Ky", "instantiation": "true", "inherits": "Eryone ASA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json index 3800cacc88..3e38a60b4f 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone ASA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone ASA-CF @0.2 nozzle", "from": "system", + "setting_id": "yBYSvDH0djt4S123", "instantiation": "true", "inherits": "Eryone ASA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA-CF.json b/resources/profiles/Eryone/filament/Eryone ASA-CF.json index 29ff502aa1..afe2d3b33e 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone ASA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone ASA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA82", + "setting_id": "wSiMHM1kTIgJ2gCt", "filament_id": "EFL82", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone ASA.json b/resources/profiles/Eryone/filament/Eryone ASA.json index add1be1fed..88afccbe26 100644 --- a/resources/profiles/Eryone/filament/Eryone ASA.json +++ b/resources/profiles/Eryone/filament/Eryone ASA.json @@ -3,7 +3,7 @@ "name": "Eryone ASA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA02", + "setting_id": "hu9uQy9zFgemTBjQ", "filament_id": "EFL92", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json index 3e6ae575cb..f8ee131756 100644 --- a/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA @0.2 nozzle", "from": "system", + "setting_id": "zavqdFwS2fsajkps", "instantiation": "true", "inherits": "Eryone PA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json index 6c85addf25..bb0b1ecba2 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA-CF @0.2 nozzle", "from": "system", + "setting_id": "wbnmjqeccJS209GO", "instantiation": "true", "inherits": "Eryone PA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-CF.json b/resources/profiles/Eryone/filament/Eryone PA-CF.json index fc50b14b82..abaf44eb7d 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA72", + "setting_id": "LIXTvjHAxtaHIO8s", "filament_id": "EFL72", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json index 80fced9375..14c8620f6a 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PA-GF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PA-GF @0.2 nozzle", "from": "system", + "setting_id": "J7Oy1mm1szLspwBb", "instantiation": "true", "inherits": "Eryone PA-GF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA-GF.json b/resources/profiles/Eryone/filament/Eryone PA-GF.json index 6cbefa931d..15ae055010 100644 --- a/resources/profiles/Eryone/filament/Eryone PA-GF.json +++ b/resources/profiles/Eryone/filament/Eryone PA-GF.json @@ -3,7 +3,7 @@ "name": "Eryone PA-GF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA73", + "setting_id": "4srMOoPcAlQygIY8", "filament_id": "EFL73", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PA.json b/resources/profiles/Eryone/filament/Eryone PA.json index fe00280426..efcbc94393 100644 --- a/resources/profiles/Eryone/filament/Eryone PA.json +++ b/resources/profiles/Eryone/filament/Eryone PA.json @@ -3,7 +3,7 @@ "name": "Eryone PA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA71", + "setting_id": "oqzAdvvf6jdQTb4M", "filament_id": "EFL71", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json index f75b3cb104..e8ddc59440 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PETG @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PETG @0.2 nozzle", "from": "system", + "setting_id": "cATziDM4CjP6MiC4", "instantiation": "true", "inherits": "Eryone PETG", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json index c8ad2e2ce3..3bb3f6f1df 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PETG-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PETG-CF @0.2 nozzle", "from": "system", + "setting_id": "wsR57UlUrO2aW2Lc", "instantiation": "true", "inherits": "Eryone PETG-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG-CF.json b/resources/profiles/Eryone/filament/Eryone PETG-CF.json index 2ac8aade94..76eca543b5 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PETG-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PETG-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA43", + "setting_id": "Xp95jFFK5QSP3OoR", "filament_id": "EFL43", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PETG.json b/resources/profiles/Eryone/filament/Eryone PETG.json index 08d712dd92..3f0644565a 100644 --- a/resources/profiles/Eryone/filament/Eryone PETG.json +++ b/resources/profiles/Eryone/filament/Eryone PETG.json @@ -3,7 +3,7 @@ "name": "Eryone PETG", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA03", + "setting_id": "rJCPgQiIXRsfQwWY", "filament_id": "EFL93", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json index 8ebe39cebd..204bb5e32e 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PLA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PLA @0.2 nozzle", "from": "system", + "setting_id": "kJhDYIHtXhAd4M6v", "instantiation": "true", "inherits": "Eryone PLA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json index 78af748c1b..9d43ea33e3 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PLA-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PLA-CF @0.2 nozzle", "from": "system", + "setting_id": "ghNuMkVp1164Fw1Z", "instantiation": "true", "inherits": "Eryone PLA-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA-CF.json b/resources/profiles/Eryone/filament/Eryone PLA-CF.json index 467a982aa4..3e7e8fa3d7 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PLA-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PLA-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA40", + "setting_id": "t726eLsJ87OjqUYk", "filament_id": "EFL40", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PLA.json b/resources/profiles/Eryone/filament/Eryone PLA.json index 7fe5c3ffa1..6da685ff2f 100644 --- a/resources/profiles/Eryone/filament/Eryone PLA.json +++ b/resources/profiles/Eryone/filament/Eryone PLA.json @@ -3,7 +3,7 @@ "name": "Eryone PLA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA00", + "setting_id": "nTSleDxF7HWxBeK9", "filament_id": "EFL90", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json index f78100f43f..47d0b9ec14 100644 --- a/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PP @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PP @0.2 nozzle", "from": "system", + "setting_id": "ePXvfc5tmC3GnZPe", "instantiation": "true", "inherits": "Eryone PP", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json index 01280c440f..986696084e 100644 --- a/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone PP-CF @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone PP-CF @0.2 nozzle", "from": "system", + "setting_id": "os5ZrNT1utAczy2F", "instantiation": "true", "inherits": "Eryone PP-CF", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP-CF.json b/resources/profiles/Eryone/filament/Eryone PP-CF.json index 193e4093fb..e2a9c492cf 100644 --- a/resources/profiles/Eryone/filament/Eryone PP-CF.json +++ b/resources/profiles/Eryone/filament/Eryone PP-CF.json @@ -3,7 +3,7 @@ "name": "Eryone PP-CF", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA33", + "setting_id": "GuuXzP9ILCWG5cxt", "filament_id": "EFL33", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone PP.json b/resources/profiles/Eryone/filament/Eryone PP.json index b3c83979a5..835f8fc5a0 100644 --- a/resources/profiles/Eryone/filament/Eryone PP.json +++ b/resources/profiles/Eryone/filament/Eryone PP.json @@ -3,7 +3,7 @@ "name": "Eryone PP", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA43", + "setting_id": "sZF6qOPqqu88Yu5e", "filament_id": "EFL43", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json index 996d277e5f..1a617e7f14 100644 --- a/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone Silk PLA @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone Silk PLA @0.2 nozzle", "from": "system", + "setting_id": "RS6yfcZ6PbJzGrUc", "instantiation": "true", "inherits": "Eryone Silk PLA", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone Silk PLA.json b/resources/profiles/Eryone/filament/Eryone Silk PLA.json index de0450fadb..2edfd832c1 100644 --- a/resources/profiles/Eryone/filament/Eryone Silk PLA.json +++ b/resources/profiles/Eryone/filament/Eryone Silk PLA.json @@ -3,7 +3,7 @@ "name": "Eryone Silk PLA", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA041", + "setting_id": "S3s3NQAoScvfyHh3", "filament_id": "EFL941", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json b/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json index 3065fff68b..8596a81fb9 100644 --- a/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json +++ b/resources/profiles/Eryone/filament/Eryone TPU @0.2 nozzle.json @@ -2,6 +2,7 @@ "type": "filament", "name": "Eryone TPU @0.2 nozzle", "from": "system", + "setting_id": "6Le5wRz6cFfKcPaz", "instantiation": "true", "inherits": "Eryone TPU", "compatible_printers": [ diff --git a/resources/profiles/Eryone/filament/Eryone TPU.json b/resources/profiles/Eryone/filament/Eryone TPU.json index 223e2e60e9..6bfd555337 100644 --- a/resources/profiles/Eryone/filament/Eryone TPU.json +++ b/resources/profiles/Eryone/filament/Eryone TPU.json @@ -3,7 +3,7 @@ "name": "Eryone TPU", "inherits": "Eryone Standard PLA", "from": "system", - "setting_id": "EFSA05", + "setting_id": "ci6MWQPZNf09qrOJ", "filament_id": "EFL95", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json index 55133ecf06..452efb7dba 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.10mm Standard @Eryone ER20 0.2 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "mN66BkXzUCaGGkZ5", "instantiation": "true", "max_layer_height": [ "0.14" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json index 8079d557d2..c9dd07d94e 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.4 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.20mm Standard @Eryone ER20", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "7Hs87Tz3oMj8YGLU", "instantiation": "true", "max_layer_height": [ "0.32" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json index fa7200dfc3..6565c58aa8 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.5 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.25mm Standard @Eryone ER20 0.5 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "8AfjLDQQXEAnxuQ7", "instantiation": "true", "max_layer_height": [ "0.38" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json index 684b3e7305..f090d44b6b 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.6 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.30mm Standard @Eryone ER20 0.6 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "8USSZMCTCDoHK55n", "instantiation": "true", "max_layer_height": [ "0.42" diff --git a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json index 7a4f2428d0..d64321fabf 100644 --- a/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/machine/ER20/Eryone ER20 0.8 nozzle.json @@ -3,6 +3,7 @@ "default_print_profile": "0.40mm Standard @Eryone ER20 0.8 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_common", + "setting_id": "JWFQL6GvDRJk46i7", "instantiation": "true", "max_layer_height": [ "0.56" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json index 9fa105b5fa..fe19a23635 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.2 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "dUHn8STOXHOXD63f", "instantiation": "true", "max_layer_height": [ "0.14" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json index 58c1dcd658..5a95f35977 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.4 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.20mm Standard @Eryone ER20 Klipper", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "xp3wEd41u0J6bR65", "instantiation": "true", "max_layer_height": [ "0.32" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json index 0502b4a4c2..1f97d64742 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.5 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "5zuzTKyILhVSA5J5", "instantiation": "true", "max_layer_height": [ "0.38" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json index 14072c46de..b9f675ea43 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.6 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "LCVtRqmtH6YySurQ", "instantiation": "true", "max_layer_height": [ "0.42" diff --git a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json index a879c82a5a..558a442e30 100644 --- a/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json +++ b/resources/profiles/Eryone/machine/ER20_Klipper/Eryone ER20 Klipper 0.8 nozzle .json @@ -3,6 +3,7 @@ "default_print_profile": "0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle", "from": "system", "inherits": "fdm_machine_eryone_ER20_Klipper_common", + "setting_id": "eMvz9rZXfWxXvuva", "instantiation": "true", "max_layer_height": [ "0.56" 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 7d60fc9534..da3983130a 100644 --- a/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json +++ b/resources/profiles/Eryone/machine/Thinker X400 0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "name": "Thinker X400 0.2 nozzle", "inherits": "Thinker X400 0.4 nozzle", - "setting_id": "GM0032", + "setting_id": "hMvy9QaXQyM7tGke", "instantiation": "true", "printer_model": "Thinker X400", "default_print_profile": "0.10mm Standard @Thinker X400 0.2 nozzle", diff --git a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json index 6a52eccf70..f45febbdbb 100644 --- a/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json +++ b/resources/profiles/Eryone/machine/Thinker X400 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Thinker X400 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "iOmDPImz2E66SIpL", "instantiation": "true", "printer_model": "Thinker X400", "default_print_profile": "0.20mm Standard @Thinker X400", diff --git a/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json b/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json index e50405932c..2f54cd6e82 100644 --- a/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/0.10mm Standard @Thinker X400 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Thinker X400 0.2 nozzle", "inherits": "0.20mm Standard @Thinker X400", "from": "system", + "setting_id": "tO27DW2I42BFee5R", "instantiation": "true", "bottom_shell_layers": "5", "gap_infill_speed": "150", diff --git a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json index aa2f0df773..a67d56a230 100644 --- a/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.12mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "jifvkql7qz6po7bB", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", diff --git a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json index cef2fae801..f17abfeb62 100644 --- a/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.16mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "YZvPJK8iIG1BFWs3", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", 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 f8557ceca8..588628cfab 100644 --- a/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.20mm Standard @Thinker X400.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Thinker X400", "inherits": "fdm_process_common", "from": "", - "setting_id": "GP004", + "setting_id": "XuXFgmQdgSDywHuc", "instantiation": "true", "compatible_printers": [ "Thinker X400 0.4 nozzle" diff --git a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json index b8e428d2ce..5378925cf1 100644 --- a/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json +++ b/resources/profiles/Eryone/process/0.24mm Standard @Thinker X400.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @Thinker X400", "inherits": "0.20mm Standard @Thinker X400", "from": "User", + "setting_id": "QLS70K9RFSLlzGH8", "instantiation": "true", "brim_object_gap": "0", "default_acceleration": "10000", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json index 3ad2a95d03..e12ec5eb51 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.06mm High Quality @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.06_nozzle_0.2", "from": "system", + "setting_id": "GhfBuKKydzWt05Zt", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json index 4d3cf827c4..a8b74416a2 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.08mm Optimal @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Optimal @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.08_nozzle_0.2", "from": "system", + "setting_id": "BK7hqXdVKuKFphxz", "instantiation": "true", "compatible_printers": [ "Eryone ER20 0.2 nozzle" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json index 251a830130..93422fa2e3 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.10mm Standard @Eryone ER20 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Eryone ER20 0.2 nozzle", "inherits": "fdm_process_ER20_0.10_nozzle_0.2", "from": "system", + "setting_id": "hSb8DkaIx4UoSNh6", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json index 3e5872cd3f..f17dc797a8 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.12mm Draft @Eryone ER20 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.12_nozzle_0.2", + "setting_id": "X5RY5e2qDLLXRw73", "instantiation": "true", "name": "0.12mm Draft @Eryone ER20 0.2 nozzle", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json index ce4ed4a458..bb5638f010 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.12mm High Quality @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.12", + "setting_id": "H7ODK5fAAYDUoeSH", "instantiation": "true", "name": "0.12mm High Quality @Eryone ER20", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json index e99fe89b60..7cc56e1902 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.14mm Extra Draft @Eryone ER20 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.14_nozzle_0.2", + "setting_id": "USrHobTi6gZB0qfs", "instantiation": "true", "name": "0.14mm Extra Draft @Eryone ER20 0.2 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json index 004483142a..c552b7ec31 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.15mm Optimal @Eryone ER20 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.15_nozzle_0.5", + "setting_id": "oapNf4dk0MGlHc1t", "instantiation": "true", "name": "0.15mm Optimal @Eryone ER20 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json index b40fea90b4..c59e1da21f 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.16mm Optimal @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.16", + "setting_id": "T7CLbKpkDxOdqBWk", "instantiation": "true", "name": "0.16mm Optimal @Eryone ER20", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json index d72bbaba9f..c7078cfba4 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.18mm Fine @Eryone ER20 0.6 nozzle.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.18_nozzle_0.6", + "setting_id": "XnzfgUygXaUCzqsa", "instantiation": "true", "name": "0.18mm Fine @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json index 5221f736cc..2e223dab0c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Standard @Eryone ER20.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_0.20", + "setting_id": "TMsKM3bODapym77c", "instantiation": "true", "layer_height": "0.20", "name": "0.20mm Standard @Eryone ER20", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json index f95223483f..0ce68ee027 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.20mm Strength @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.20", + "setting_id": "GFfpctaMRI4Nuqk9", "instantiation": "true", "name": "0.20mm Strength @Eryone ER20", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json index 8e27f23a4b..339736d0b1 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Draft @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24", + "setting_id": "8rfQRPMh82vmdDeb", "instantiation": "true", "name": "0.24mm Draft @Eryone ER20", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json index 5cd91fbb5e..44d7d8e926 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Fine @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24_nozzle_0.8", + "setting_id": "0Ham5AnvDEnEzaSY", "instantiation": "true", "name": "0.24mm Fine @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json index 3d5bd06bb0..7fea46be58 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.24mm Optimal @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.24_nozzle_0.6", + "setting_id": "0CRLvmSKxkmglWRi", "instantiation": "true", "name": "0.24mm Optimal @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json index 7579ba02ea..e1a26f1715 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.25mm Standard @Eryone ER20 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.25_nozzle_0.5", + "setting_id": "oEjMrkTjRF6zL46C", "instantiation": "true", "name": "0.25mm Standard @Eryone ER20 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json b/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json index 4a3278cfeb..8a63db28a4 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.28mm Extra Draft @Eryone ER20.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.28", + "setting_id": "oyoecLMFQzjbIfcd", "instantiation": "true", "name": "0.28mm Extra Draft @Eryone ER20", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json index ab669d3232..f928604605 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Standard @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.30_nozzle_0.6", + "setting_id": "jw5QUhazCifzzM6Q", "instantiation": "true", "name": "0.30mm Standard @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json index 326a47a76c..42a56dafef 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.30mm Strength @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.30_nozzle_0.6", + "setting_id": "LqOFomJiS10Vbrdp", "instantiation": "true", "name": "0.30mm Strength @Eryone ER20 0.6 nozzle", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json index d06d7a2937..8c1ff89a9c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.32mm Optimal @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.32_nozzle_0.8", + "setting_id": "5lYVYrlEfVVl2n0F", "instantiation": "true", "name": "0.32mm Optimal @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json index 6e5e4d25f1..e673f0b293 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.36mm Draft @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.36_nozzle_0.6", + "setting_id": "vavNueSF5zRpUlTZ", "instantiation": "true", "name": "0.36mm Draft @Eryone ER20 0.6 nozzle", "travel_speed": "250", diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json index 591061dd50..053d009d36 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.40mm Standard @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.40_nozzle_0.8", + "setting_id": "TlCbtZYdCRCkpIf6", "instantiation": "true", "name": "0.40mm Standard @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json index 1fac940a00..b6c8cd4dbb 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.42mm Extra Draft @Eryone ER20 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.42_nozzle_0.6", + "setting_id": "q6PozBOTtWU7CMb0", "instantiation": "true", "name": "0.42mm Extra Draft @Eryone ER20 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json index 06b1dac3ef..b4b2bed4e5 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.48mm Draft @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.48_nozzle_0.8", + "setting_id": "O3BhYAmUROrYm64x", "instantiation": "true", "name": "0.48mm Draft @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json index a5fbbfeb8c..df15e8722f 100644 --- a/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20/0.56mm Extra Draft @Eryone ER20 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_0.56_nozzle_0.8", + "setting_id": "RCycTBzuArwmwrj1", "instantiation": "true", "name": "0.56mm Extra Draft @Eryone ER20 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json index aef608eb17..2d917e6da7 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.06mm High Quality @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.06_nozzle_0.2", "from": "system", + "setting_id": "DbmPfmdtSO6eADNc", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json index d1205caf13..d333a483fc 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Optimal @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.08_nozzle_0.2", "from": "system", + "setting_id": "PqKmdbXHvL7dQKNU", "instantiation": "true", "compatible_printers": [ "Eryone ER20 Klipper 0.2 nozzle" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json index 44be75b8bd..1cc128ce80 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @Eryone ER20 Klipper 0.2 nozzle", "inherits": "fdm_process_ER20_Klipper_0.10_nozzle_0.2", "from": "system", + "setting_id": "L6ZKLo92qFpTcGkx", "instantiation": "true", "sparse_infill_pattern": "gyroid", "compatible_printers": [ diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json index 4664c11a20..1ea915ac25 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.12_nozzle_0.2", + "setting_id": "G6ezw9j2ZskBlDcf", "instantiation": "true", "name": "0.12mm Draft @Eryone ER20 Klipper 0.2 nozzle", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json index e0fb884858..bd685a42c6 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.12mm High Quality @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.12", + "setting_id": "FdNIlqPmjcMxniJL", "instantiation": "true", "name": "0.12mm High Quality @Eryone ER20 Klipper", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json index d914699b09..17ddd78449 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.14_nozzle_0.2", + "setting_id": "REb8DrBmb84Jz1RU", "instantiation": "true", "name": "0.14mm Extra Draft @Eryone ER20 Klipper 0.2 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json index 87519bab45..dae8d693f8 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.15_nozzle_0.5", + "setting_id": "bwykEBgiXSoyw8zd", "instantiation": "true", "name": "0.15mm Optimal @Eryone ER20 Klipper 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json index c0f050ea88..0526d10668 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.16mm Optimal @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.16", + "setting_id": "T6D9ljLTeYJNh7LY", "instantiation": "true", "name": "0.16mm Optimal @Eryone ER20 Klipper", "sparse_infill_pattern": "gyroid", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json index ea0fc9d954..abba79b691 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.18_nozzle_0.6", + "setting_id": "4Wh9O5o6h68TEy69", "instantiation": "true", "name": "0.18mm Fine @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json index b857db3af9..3208090373 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Standard @Eryone ER20 Klipper.json @@ -4,6 +4,7 @@ ], "from": "system", "inherits": "fdm_process_ER20_Klipper_0.20", + "setting_id": "08wgu9MP0trL3JBg", "instantiation": "true", "layer_height": "0.20", "name": "0.20mm Standard @Eryone ER20 Klipper", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json index 120bd59d17..a0679cda21 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.20mm Strength @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.20", + "setting_id": "7pYaosUUA3Kv13pI", "instantiation": "true", "name": "0.20mm Strength @Eryone ER20 Klipper", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json index 7fb34b2b8d..4a9d3d1a7b 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Draft @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24", + "setting_id": "SJzxe1s82yL2Lgrj", "instantiation": "true", "name": "0.24mm Draft @Eryone ER20 Klipper", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json index 776b5b1b39..75c49ea75a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24_nozzle_0.8", + "setting_id": "FaQ9qpjWF28hexB2", "instantiation": "true", "name": "0.24mm Fine @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json index 70b5563188..67c4801673 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.24_nozzle_0.6", + "setting_id": "BaYIyJyVUiPXPjMr", "instantiation": "true", "name": "0.24mm Optimal @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json index 83bff18a5a..74b798ed80 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.25_nozzle_0.5", + "setting_id": "GFnRlK2ceYBvswLe", "instantiation": "true", "name": "0.25mm Standard @Eryone ER20 Klipper 0.5 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json index af2458c947..182198870c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.28mm Extra Draft @Eryone ER20 Klipper.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.28", + "setting_id": "q5VO6Fykaq7MeqA3", "instantiation": "true", "name": "0.28mm Extra Draft @Eryone ER20 Klipper", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json index 79eb672349..e89b4e4328 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.30_nozzle_0.6", + "setting_id": "uteDUtHF4ALpNDE9", "instantiation": "true", "name": "0.30mm Standard @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json index 6b1705de33..948cffdd9e 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.30_nozzle_0.6", + "setting_id": "I69wf0KGngqBKs6d", "instantiation": "true", "name": "0.30mm Strength @Eryone ER20 Klipper 0.6 nozzle", "sparse_infill_density": "25%", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json index bfe3440001..a4fab18d22 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.32_nozzle_0.8", + "setting_id": "6ULt0zBZlGeQj0zL", "instantiation": "true", "name": "0.32mm Optimal @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json index 9f6b3d55d3..32a776a3c3 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.36_nozzle_0.6", + "setting_id": "JLPcqoC2Uib9aRUQ", "instantiation": "true", "name": "0.36mm Draft @Eryone ER20 Klipper 0.6 nozzle", "travel_speed": "250", diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json index 3499c41b74..90db009e2c 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.40_nozzle_0.8", + "setting_id": "Rar12YnTox9pGeWw", "instantiation": "true", "name": "0.40mm Standard @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json index 031db2b307..2fb538d04a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.42_nozzle_0.6", + "setting_id": "8XAFm1qhJ5VbrcDt", "instantiation": "true", "name": "0.42mm Extra Draft @Eryone ER20 Klipper 0.6 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json index 9f4d3cb460..96a1373759 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.48_nozzle_0.8", + "setting_id": "PtwzuflLVEwcJU1s", "instantiation": "true", "name": "0.48mm Draft @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json index 4027208923..a76d38d67a 100644 --- a/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json +++ b/resources/profiles/Eryone/process/eryone_ER20_Klipper/0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle.json @@ -5,6 +5,7 @@ "elefant_foot_compensation": "0", "from": "system", "inherits": "fdm_process_ER20_Klipper_0.56_nozzle_0.8", + "setting_id": "yjLp31EgxsGWg3AY", "instantiation": "true", "name": "0.56mm Extra Draft @Eryone ER20 Klipper 0.8 nozzle", "type": "process" diff --git a/resources/profiles/FLSun.json b/resources/profiles/FLSun.json index 6c2da9e7a2..e0a9cfd88e 100644 --- a/resources/profiles/FLSun.json +++ b/resources/profiles/FLSun.json @@ -1,6 +1,6 @@ { "name": "FLSun", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "FLSun configurations", "machine_model_list": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic ABS.json b/resources/profiles/FLSun/filament/FLSun Generic ABS.json index db7878862a..82d91d891c 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ABS.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ABS.json @@ -3,7 +3,7 @@ "name": "FLSun Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2f9nYaR0PUMkGvDD", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic ASA.json b/resources/profiles/FLSun/filament/FLSun Generic ASA.json index c43622fc7b..650953c7b0 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic ASA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic ASA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9GPCRihSQTBRxkm3", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json index b869b21164..0b3441d866 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2JOA0YeYZHj0lFmA", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PA.json b/resources/profiles/FLSun/filament/FLSun Generic PA.json index 73ae44afac..e24fbbd966 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ek14AgskfJXeZ84u", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PC.json b/resources/profiles/FLSun/filament/FLSun Generic PC.json index 6b57e55a55..2d03d67063 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PC.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PC.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wluYSRtaCqajFCYT", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PETG.json b/resources/profiles/FLSun/filament/FLSun Generic PETG.json index defba2acc8..6b81b49092 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PETG.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PETG.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FCjlzoLFYn3IVxxD", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json index 3acbc216c9..690c4427f9 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FEdplifUKOSUA4XX", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PLA.json b/resources/profiles/FLSun/filament/FLSun Generic PLA.json index fe1cfcb231..85233e1285 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PLA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PLA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ltWBfkc84nszWS19", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic PVA.json b/resources/profiles/FLSun/filament/FLSun Generic PVA.json index 81c844cc55..106aa001e0 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic PVA.json +++ b/resources/profiles/FLSun/filament/FLSun Generic PVA.json @@ -3,7 +3,7 @@ "name": "FLSun Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IohayLPyRIsZJ0GY", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FLSun/filament/FLSun Generic TPU.json b/resources/profiles/FLSun/filament/FLSun Generic TPU.json index 5bf9c39a39..60b05b8134 100644 --- a/resources/profiles/FLSun/filament/FLSun Generic TPU.json +++ b/resources/profiles/FLSun/filament/FLSun Generic TPU.json @@ -3,7 +3,7 @@ "name": "FLSun Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hewisceC8FmSwzF4", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 ABS.json b/resources/profiles/FLSun/filament/FLSun S1 ABS.json index fabfce1466..d9a3922199 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 ABS.json +++ b/resources/profiles/FLSun/filament/FLSun S1 ABS.json @@ -3,7 +3,7 @@ "name": "FLSun S1 ABS", "inherits": "FLSun Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tvpZ28Oe4Al7hlgj", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 ASA.json b/resources/profiles/FLSun/filament/FLSun S1 ASA.json index a6a064a55d..a82c9179a4 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 ASA.json +++ b/resources/profiles/FLSun/filament/FLSun S1 ASA.json @@ -3,7 +3,7 @@ "name": "FLSun S1 ASA", "inherits": "FLSun Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C5oyaWw3YVEz0CgE", "filament_id": "GFB98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PETG.json b/resources/profiles/FLSun/filament/FLSun S1 PETG.json index 427719e44a..3b477c6335 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PETG.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PETG.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PETG", "inherits": "FLSun Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ac6q0FtMFMLesFdU", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json index 9ad6003036..f6324b0bc3 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA Generic", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z0Y9rQVZairHqwbi", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json b/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json index d14ba22a9e..4cb721859e 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA High Speed.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA High Speed", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v2clpNXXo8m6dV33", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json index d18ba8086d..af4d4b9379 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json +++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "FLSun S1 PLA Silk", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "164Bn4YchxJAaLsa", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun S1 TPU.json b/resources/profiles/FLSun/filament/FLSun S1 TPU.json index 5fb5980a26..7a02ed84cf 100644 --- a/resources/profiles/FLSun/filament/FLSun S1 TPU.json +++ b/resources/profiles/FLSun/filament/FLSun S1 TPU.json @@ -3,7 +3,7 @@ "name": "FLSun S1 TPU", "inherits": "FLSun Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yzPvNqIo7mfWAwNS", "filament_id": "GFU99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 ABS.json b/resources/profiles/FLSun/filament/FLSun T1 ABS.json index 4f1b782cf1..e7d8bea77a 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 ABS.json +++ b/resources/profiles/FLSun/filament/FLSun T1 ABS.json @@ -3,7 +3,7 @@ "name": "FLSun T1 ABS", "inherits": "FLSun Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GP8VqRfidKOdj0ZJ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 ASA.json b/resources/profiles/FLSun/filament/FLSun T1 ASA.json index a74d15a678..c34c34a213 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 ASA.json +++ b/resources/profiles/FLSun/filament/FLSun T1 ASA.json @@ -3,7 +3,7 @@ "name": "FLSun T1 ASA", "inherits": "FLSun Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YmJbWfCQpNk9nxB7", "filament_id": "GFB98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PETG.json b/resources/profiles/FLSun/filament/FLSun T1 PETG.json index 40f2b26338..9b753af05b 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PETG.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PETG.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PETG", "inherits": "FLSun Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A2aA7xcmqgz8ERyY", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json index 126d6ac10d..e266687037 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA Generic", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aUMHmlsPMYDicnPp", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json b/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json index f7cb9699a2..95b2ba75a5 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA High Speed.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA High Speed", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E4lpSLLlAxUW04ik", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json index 32e51abf65..04c82ce071 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json +++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "FLSun T1 PLA Silk", "inherits": "FLSun Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gElUb4GnCoEfVlEd", "filament_id": "GFL99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/FLSun/filament/FLSun T1 TPU.json b/resources/profiles/FLSun/filament/FLSun T1 TPU.json index f1d376c41a..feb8326a22 100644 --- a/resources/profiles/FLSun/filament/FLSun T1 TPU.json +++ b/resources/profiles/FLSun/filament/FLSun T1 TPU.json @@ -3,7 +3,7 @@ "name": "FLSun T1 TPU", "inherits": "FLSun Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "34Ux18VB4d6R6G40", "filament_id": "GFU99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json index a8ff554566..66fb95ccc6 100644 --- a/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun Q5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun Q5 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "LKmuanzzJdFhP8fy", "instantiation": "true", "printer_model": "FLSun Q5", "default_print_profile": "0.20mm Standard @FLSun Q5", diff --git a/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json index 71c8d1b066..02b345c4bf 100644 --- a/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun QQ-S Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun QQ-S Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "nE6QICHiy6e5AiQ4", "instantiation": "true", "printer_model": "FLSun QQ-S Pro", "default_print_profile": "0.20mm Standard @FLSun QQSPro", diff --git a/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json index 73eab7f857..e75c40726b 100644 --- a/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun S1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "49LTtJSqi4OEiaC4", "instantiation": "true", "printer_model": "FLSun S1", "default_print_profile": "0.20mm Standard @FLSun S1", diff --git a/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json index 3efa9e1fdb..b6fac6caa7 100644 --- a/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun SR 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun Super Racer 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "AE0I04uUuMOjQMMc", "instantiation": "true", "printer_model": "FLSun Super Racer (SR)", "default_print_profile": "0.20mm Standard @FLSun SR", diff --git a/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json index d46f3ac93e..3cff2526eb 100644 --- a/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun T1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun T1 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "M1YWzai2pJOT8PmC", "instantiation": "true", "printer_model": "FLSun T1", "default_print_profile": "0.20mm Standard @FLSun T1", diff --git a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json index 719dd6ab19..024d62cc72 100644 --- a/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json +++ b/resources/profiles/FLSun/machine/FLSun V400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FLSun V400 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "4P1vcj47NO5IMNPe", "instantiation": "true", "printer_model": "FLSun V400", "default_print_profile": "0.20mm Standard @FLSun V400", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json index 43285b61b1..6279861202 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "pIcVuwwQ8EWmPKgZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json index eb3e166614..391b7743a1 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ypz6DmDfVK0nHsGe", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json index 62b97a833e..03a66178ad 100644 --- a/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.08mm Fine @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.08mm Fine @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WMx2mtWIuLTNAPHS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json b/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json index 5ea569608f..175bc156d2 100644 --- a/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.12mm Fine @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kKhJMW2CyY9YjIWb", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "7", diff --git a/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json b/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json index 7e36b5301e..60ece5a8dd 100644 --- a/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.12mm Fine @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oNPApvJbDU68qbHu", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "7", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json index 9de684e7df..5c9f752ee6 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TZdqXwp7bC2m9tpO", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json index b6263c05cd..2d5e2ab82b 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HVdXArEX5vgTZkQK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json index 973f664991..ba040799d1 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UGSWIV310UmosGRr", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "6", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json index fb941cd208..6b33217ea2 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tqesgSzTbrfXG1mY", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json index ce78dc1392..049e8677a2 100644 --- a/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.16mm Optimal @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bKRAKNOYR7D8G2Ox", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "6", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json index bf3550bdf0..d9c7f3799b 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CUzDbhgZMATkwFSg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json index a52ecb7451..a4ec969711 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "FV3PZ6zjZP5chJlp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json index b2adc0d490..618ae5422d 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zBLlyEYKKWmqXdEa", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json index 9515e85198..478126620d 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EzioqGPSbnBNftNw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json index 345c3c1031..ff4259dd53 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BRxYqkw9fizTLPYy", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json b/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json index 6b1fce0693..d09a109a58 100644 --- a/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json +++ b/resources/profiles/FLSun/process/0.20mm Standard @FLSun V400.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FLSun V400", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LMRROTQlnO7o9Rcl", "instantiation": "true", "outer_wall_speed": "120", "inner_wall_speed": "200", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json index f9e40e9976..66b5bc2fe6 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PjpsLsUYSt1jfY7G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json index 94f300bf10..92ef6cc2e4 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9mHQwwo6UoNaD07z", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json index 0974b875a0..f9803d2be4 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7Pj4Z9duYyxqCCs1", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json index 06d0cdde0c..3ab6730d9c 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ehSWBo2Q9G7QS3Wt", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json b/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json index 5a116fca2e..0b9e781bc1 100644 --- a/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.24mm Draft @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MvInpEja0HniYPwn", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json index 56847545dc..2c2f123e71 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun Q5.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun Q5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iEXqwmSaxdLWpN8K", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json index 9bc88247b1..e1e50c074e 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun QQSPro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun QQSPro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fJPwsjRdFJRka84X", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json index a15718b261..7dc4f92b0b 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun S1.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun S1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VJ9Pl4a0c8Q0V0jG", "instantiation": "true", "layer_height": "0.3", "bottom_shell_layers": "4", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json index d25270fb04..1c1917adc2 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun SR.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun SR", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kOtY4iPbqQlkQPef", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json index a4c6cd4e38..a6ff00c0c9 100644 --- a/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json +++ b/resources/profiles/FLSun/process/0.30mm Extra Draft @FLSun T1.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @FLSun T1", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uA2KAqKwJB7a9E3w", "instantiation": "true", "layer_height": "0.3", "bottom_shell_layers": "4", diff --git a/resources/profiles/Flashforge.json b/resources/profiles/Flashforge.json index da8160ea01..661d171771 100644 --- a/resources/profiles/Flashforge.json +++ b/resources/profiles/Flashforge.json @@ -1,7 +1,7 @@ { "name": "Flashforge", "url": "", - "version": "02.04.00.02", + "version": "02.04.00.04", "force_update": "0", "description": "Flashforge configurations", "machine_model_list": [ diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json index 427ae5a3ee..83e1c85730 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "M9HM8tihJzV4crs8", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json index c8cdf815c4..f94eafbe9d 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "08VjBSha6gjhJYgk", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json index ab2414e679..d5c6c3c33d 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "JqgkmxnjlnQ3uw1u", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json index aef38f8381..2bf41bc64b 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vvLLPvSeb5PYbT1R", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json index 3b680ad572..e8806df046 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "mPJMPfFCyfWdKzMO", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json index 19680e1df9..56562e51e7 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PC @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PC @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HTgqTUTznOlfCRAd", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json index 80754bd5ea..e5b251acab 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "3w8fnDjkoFaJ6Nhw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json index 5965555ac5..7394511a16 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "owHbDqY55rFtSegz", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json index d2f871f48b..87e74372e5 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eFK1zzT1JY9ZnEl9", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json index 3c5a9ac240..7d6d3c1a95 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "E8CcstoHzax78ZJY", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json index d186114c5e..01672b8f65 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xa22FD8bRVGsLiPJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json index 7f6cc8b723..ff77d7095a 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "bZ9dbA8dIu9mjWyN", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json index 6847cde6b1..b1cb0787b5 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4w0oK3F50O1DUqsu", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json index 2d0fb66fea..fc6f6e975a 100644 --- a/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FlashForge PPS-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FlashForge PPS-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "94vPnztRcpnbfAKx", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json index 1e286819bd..97970235e4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge ABS @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", "filament_id": "GFB99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json index 972f78447d..dc0989bbc4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge ABS Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "SuEfcE6AYK8N1FI4", "instantiation": "true", "filament_settings_id": [ "Flashforge ABS Basic @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json index 21151d26f5..0deb98db56 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "gmkc6fRLMI73Iut8", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json index a965f98006..7f8ec43e72 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fgEYZ1Mgyp1AvtwU", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json index 32dd90664d..0f95b37aad 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cIxbQMVdG5K85rJr", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json index 8c533bc469..4b533b00a7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic @FF AD5X", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9GXBeuCUrScJfmJB", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json index 5e8a02a397..d53b5cc2c1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "ds0GgE1jssl4IbF3", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json index 5702d2d915..eb4ee53f53 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UTWbwTYuXYbBx3uw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json index 948bc30015..fe13cbb5cb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "CuckX5MsN69806ow", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json index 581df95f4d..4a3bd054b2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "NttDJCrfB01uwMDl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json index 2184ee0b05..594f291957 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hJd6dG6OdEffEFC7", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json index 55c82fa239..34d1f4e94c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8yFCuCnEuI3dUvQy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json index b2ef3d8358..60847876a0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "np4fP5kghRlczOTT", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json index a327d456b8..f267e9bc74 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "8o2maTFOXq0XR6Dm", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json index dbb723993a..1ec700928b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "MBo02hFXn0ebDRdb", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json index 7310d52ced..baa7e84ede 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vCsjC0UnKenzIR0O", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json index 9c447053dd..d4b2a75adb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xhxVdlmh5r7meoHo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json index 816e6b1154..ce8cb40ddc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "6dlQN4Xhd6kGZ0Qn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json index e8ef3badca..9518e3fb1c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "r8WVFPozL8f5oLVJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json index b7e12c9cec..80ad9a2da8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS Basic @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "xw0pZNmhw1K4tPQ1", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json index e5bb08f036..3e93a31243 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS Basic", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "m6QLC2UaS3fW298i", "instantiation": "true", "filament_settings_id": [ "Flashforge ABS Basic" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json index 9c2703308e..3b7c0a2db6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Nx3Px0Zu356IKShT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json index 0dd79bf44e..a17e48af0d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "d4EGsmMeEDCOUBF2", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json index 2285057cd1..ed4c177d18 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9ziPFKsjESbw1pXL", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json index ccaa6da0ce..dd952e95a1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-CF @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "NzJJs6yrSik5xuyX", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json index 96d5d067d4..3b1b422c33 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-GF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UinlbuXNbad2kN0s", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json index 822e345435..72364ebe47 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ABS-GF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ABS-GF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "ycgiXY41kqNgslE3", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json index 6f178e352f..0f80d06af9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge ASA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", "filament_id": "GFL99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json index cc923f33d8..fcdb3faedd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge ASA Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "kjS4k8nrIdNNNoWw", "instantiation": "true", "filament_settings_id": [ "Flashforge ASA Basic @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json index 3280dada9b..3294344bd4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge ASA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "Y647IFVkk5JIXzte", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json index e53b3a5cc9..9904aea39c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vaOyXUcrJ97KE7ZW", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json index ebd378dc2c..4353992934 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iLWq5pJ3ox9EAM1Z", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json index 73829aec0b..cb4a543dbd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic @FF AD5X", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i7PUPYxy0Z9weyyA", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json index 393132a800..485f06e046 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "UUSDyOetXSOuBIUd", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json index f706b524e7..4af0b8b47c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "2r0kwhklE24Hp94O", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json index ca73a8b1d5..dae515a9aa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "XWta5jJFsCxBdEPd", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json index d3d51db3d0..4c35d0a62b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "w8O6oenp0NymzCqf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json index 917529c25d..e4435448ae 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "thhmWRzNYLYJOeR2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json index 1806f851bc..86d4e12b4c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "g5jiz6Q6or23BIo7", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json index 1d09c21e35..890dd75f0f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "7xmWlHHNMvXBKdYS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json index dd9f7f8300..4826e42eba 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "r0B8KfZ1mNWMvGqE", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json index 95d77202e4..76cd89a82a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge ABS @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "quOwRRLcNfOy0sYf", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json index a5c24b7d3b..324c9eec04 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CBLZqLhkwf5XKO12", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json index cddf9b76d0..461aa7bd0a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Df3anJxiRXLVO9hw", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json index 59d2cb7077..0c0cc1aab1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Nu4WvBWuEhazZfh5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json index 3d659d11fb..9a59d625d2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "hF0h4ye3hMDtEba1", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json index 87c5c641fd..3a10f337b9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA Basic @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "3isZCWr4CBjFtGDX", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json index 6ba697f4a5..7ccef601f3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA Basic", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "SU6r879TbQMUFCij", "instantiation": "true", "filament_settings_id": [ "Flashforge ASA Basic" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json index 71bc7aa427..9956e193ee 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "TqU1elqwuVr9EhTA", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json index e5f84a43d5..c2a78c9e11 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "nMczAtoc5W0J2WkS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json index 3c87df4ff2..846cf4c76a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF G4", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "ap7X4nWKfFR53NT0", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json index da788e5a6d..d0ad27e1cd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-CF @FF G4P", "inherits": "Flashforge Generic ABS", "from": "system", + "setting_id": "kZXg6odPm5iW79Qn", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json index b0a17ef8c2..02db6bfea9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge ASA-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CI5dvVrCNk2XTU82", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json index 4f1df3e3c3..3a328388df 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-GF @FF C5", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "941E5MaAyFY3iv4V", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json index 6cdd349d1a..46857c2b13 100644 --- a/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge ASA-GF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge ASA-GF @FF C5P", "inherits": "Generic ABS @System", "from": "system", + "setting_id": "RdmsxyUGUX8Ot4oj", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json index 80ada86071..0504844ed6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge ABS @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04_02", + "setting_id": "NWEY6ZxkUS8jqNU2", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json index 628520fa34..ada3f13582 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OaXiy7DI5bOAiaYb", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json index 03bea92365..1f6b35db19 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS @G3U", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Cfd7Q1nGwqxI5Ngh", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json index d2aa442f96..38d58ba346 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ABS.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uygAzLWRQiCIJ8jh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json index 9f296beaaf..d5b0d17c25 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge ASA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04_05", + "setting_id": "spSRbidSN2yeZLhD", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json index ad8a00b2c0..c0819fa0b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gVLGkoCoyrWL4DQr", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json index 2746f0c559..fcce2738f5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA @G3U", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "c6IMgUyqOeS2HFWw", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json index c8e0a07c31..d7b6844c78 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic ASA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jMCunppmYOH5QIra", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json index 604f27388c..baf6514cd9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HIPS @G3U 0.6 Nozzle", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b3CFhGGnZLzpyAWa", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json index 9b4f597573..18f52c4f1f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HIPS.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HIPS", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "n68nw5tzKZ0rq43O", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json index c5df59a89e..93ee8f80cb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge HS PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "1cvcaoBFNbg2GucE", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json index 257745075c..c67de4ecd3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic HS PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic HS PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "foG37d7HZKgt6l43", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json index ddf3931ec2..4d02d458d0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PETG @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "KerUxwPsSEKDO6jL", "filament_id": "GFG99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json index 5ecd2c5310..20a08fe28e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @Flashforge Artemis.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Flashforge Artemis", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "FFFP02", + "setting_id": "YflkaS7NfBE5XiSH", "filament_id": "FFF03", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json index a48793b73c..2183965821 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "W7pWKQ2EWAB5viV1", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json index 6db5a42424..3e61f73029 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eDQb2WfDsUTvj2Nf", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json index 9cf047e2c6..075e2e4923 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG @G3U", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yo4uc7TxQbqnlRUY", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json index b99ea020a4..385ec94b64 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u2OzNKIQIKUrOT9k", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json index b3e5c9fb20..4efa8a0a0f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Qq8eY1kcFHTgzW3", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json index f6ab0a055e..d3fb0d6590 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF @G3U", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gLrecba33jDI9PeI", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json index 81dc45481a..934ba831ef 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG-CF10.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG-CF10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PlC4Ek7d09ytYZqJ", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json index 17b99a5f2c..28ed60ccf7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PETG.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YqiSgA018CdflfT9", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json index 4d05ba7dae..769d2f16d5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP01_01", + "setting_id": "o1CHzasJ7x3CKjue", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json index b698ad45ee..72add60440 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.6 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge Generic PLA @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02_01", "instantiation": "false", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json index 5091ac12c6..ccc07ccec3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U 0.8 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge Generic PLA @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02_01", "instantiation": "false", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json index 4f108d226c..4154eed45e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA @G3U", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "FFGP02", + "setting_id": "gjIdhPTLOr17mz5B", "filament_id": "FFG01", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json index 15cbc7285b..57b925762b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KR0LUSD7wd55oNI6", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json index 39076e562b..7300eb4bf4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U 0.8 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rQSFNxuuqUVzsSV2", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json index 9b18a6f500..f236a9a83b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF @G3U.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF @G3U", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S1UTm2oMRoQ4yM4R", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json index b5b9b728c7..29b86ed5b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-CF10.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-CF10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qH3l3p0yvZHqHnwG", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json index fa93e81d26..d04d5eb4cf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-SILK @FF AD5M 0.25 Nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "WOl0JsKxAQFo2WnW", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json index b5a3a2c6da..bb3acc4145 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA-Silk.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA-Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NryK9oIg8wMDKVHW", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json b/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json index 0abc294d6b..61b5276051 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "FFGP01", + "setting_id": "DwAgYHepesazDUjN", "filament_id": "FFG01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json b/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json index b149bbbeb9..6adaf46d6e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic PVA.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic PVA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NA0PhaTNDvEH38lF", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json b/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json index a8d92698c0..473ba6ac33 100644 --- a/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json +++ b/resources/profiles/Flashforge/filament/Flashforge Generic TPU.json @@ -3,7 +3,7 @@ "name": "Flashforge Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zQEeIIKWSgsDqlpI", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json index 3120b0e017..b9a10c1f18 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF C5", "inherits": "Generic HIPS @System", "from": "system", + "setting_id": "ckwc7U0Q2eKHmCxY", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json index 78224dd1f6..8a61df2fe2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF C5P", "inherits": "Generic HIPS @System", "from": "system", + "setting_id": "AEQYrT7e4Q5J2G6C", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 Pro 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json index 6f6fd6658a..81c501eee9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "jUNUZhE0BJyB64fC", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json index c8bd10ae34..34dacd8f8d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "0qMEqo9YMDLSVafs", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json index e02986818d..756f4ddbf2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ek749gIdUAPq6WxT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json index 40fa974989..9ca5d033bd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "tEohTtyHofD6l6o3", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json index 141ef5a1fc..2e977fd084 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "oLeLrIjFJzoZha3E", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json index 5c86e0e0ab..6ae4e562a2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HXGUlYY4X5IHhL3R", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json index 151f8b0e91..9354f7ede7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "g22Cv3zy3h5BhJYK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json index 10806c1ca7..980ab69f11 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic ABS @G3U 0.6 Nozzle", "from": "system", + "setting_id": "aDzBXuvN7IuSP5sa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json index d5431ca895..6f7493a72b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "CIj24REX7BA8zPHQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json index a4fd3d36e1..7d0d9befb3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HIPS @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HIPS @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "yAGyGjF6uDrjfjLn", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json index a90a1cd188..fbb47b2d7f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge HS PETG @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "1NFhtEvvvgZiHcto", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PETG @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json index 8b762a5b71..fc0e4c7cee 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "eNOkWn5PT8rDpA0g", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json index 28ff77851e..a6a28ae753 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vOqAGzaYLz0XdRvC", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json index 1ef1367169..28c7208fad 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KSuxZ3fpQz0khDSz", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json index 8353fc522f..3b495aebe8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o4B1kAToVny7jw0M", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json index 9080d0185d..5c0421a23e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF C5", "inherits": "Generic PETG HF @System", "from": "system", + "setting_id": "kpRved5M3NktqIYn", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json index de8a43145a..ca2dcd370c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF C5P", "inherits": "Generic PETG HF @System", "from": "system", + "setting_id": "ypxgjHl9uIMyZIce", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json index ffb74f04a7..b8f6997d97 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "uXGuyvVxfdQW22vu", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json index e182c25943..785fd2495b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "q9UbakUmZPzG3xU0", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json index 143ea34fce..57c2e5ca72 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "IL18Lu0qHx1RVqKD", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json index cccbdf815d..f8cfba7acd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2FQib7fZjcwfCnm2", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json index 922e38a439..16e88eeb42 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "CtwOm90WWD4S7U6j", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json index 334e901e88..bc806c44d8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "kvULpm0WhKiSPj8V", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json index b26d2cca25..b14a0b44ba 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "bFVYSPkynBBapFjq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json index 52af4575f2..dfb79c840d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CUU7knzm4cbe1giE", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json index f315a6e11b..6c36ff1fbb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "gcYvL572cumWZdnl", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json index b48e2568df..a58ddca149 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "cx99AH0C575XxAj9", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json index f04ad6e2af..35a01b21ce 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "RrrKoR7MVD8IFQlq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json index 8749e7f32c..a30f562b42 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PETG @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "7VEPGuR16wNukAX2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PETG.json b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json index bea98c5296..38054ea5ae 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PETG.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PETG.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PETG", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H9uwlPw6m6Nf7qH5", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PETG" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json index ddf1226ade..0ee65ec44f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5M 0.25 nozzle", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04_09", + "setting_id": "OmDped3weZ4uHAtY", "filament_id": "GFL99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json index 6591245cae..266200739a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "bfPaqPGaR5zpTsLk", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json index 5e09da1f12..7169a76fdf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oD592bif4ra0ADco", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json index 5fc411ecf1..94da672d0f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ldhMY6F7v6nK8wwf", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json index 24c9234257..edf25222de 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vzOmbjHbkJXrgYM", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json index 5f69bbc557..310fc73a32 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xSJk7LFpYKmckPQh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json index a91076bb1f..87c4ffd656 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xdFZUsj1cNLXdvT6", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json index 3bc3098649..ff783fbf10 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "JCQtuv8Abfz4jVRV", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json index c97ff29e31..7f4547dc19 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hzxRPyH1fqarsMuN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json index 050d3ecdbf..ba5f92ca7c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "oJsLlIIpxwGSoJTv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json index 0c18cc7261..f0fcb415c6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "hJbNZ381ERkZ0KUB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json index 4555f4d60b..eb253a97db 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "BqavrNpwhXDXcZ3r", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json index 75d5a61721..a1acf9af42 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "cgf4Qk4iHZh7zHN5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json index b8d6db53d7..b399b0cf77 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "jFUS6233aq4XPgrn", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json index e20df81301..0c14a75478 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "p31K69Srld6o4sQ2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json index 974aaea789..5b4e2d04d4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "MwbYvnRIzlNmH81h", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json index ae2327c538..40c2ae337a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "rKhHmkqXYD2xN4K9", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json index 06953de55a..8871c32fc4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "Dshsi3O7NvYYjXJt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json index 0a0346bf99..82b514d1af 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "mfnL6QEevCmTmOL0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json index 9ec99ab2ed..a5326ae2b7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "AGLHrHKWye0YTtNK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json index bf4a856ec9..e7f97301bd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "px8qzmB2yFLoNl83", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json index a3b01fd100..9d8e653cec 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "mwuIEsBz5bXEV68w", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json index b31f987e8a..7b61a8668d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "TielygFT88owWg4J", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json index 0e24e2e60f..b15214f50b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "It2NI6OFhNEUvulz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json index 423a53e7a4..4320a3fce3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Qt3huWxoYpMEqEN6", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json index b7464d8f6d..c5a76c1d85 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Y3XuavnnOMoHLGHA", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json index b008d746c1..034a1ee969 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge HS PLA Burnt Ti@FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2HUxAWeolJIlxPs1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge HS PLA.json b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json index f4825e2e42..355d9f6d1e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge HS PLA.json +++ b/resources/profiles/Flashforge/filament/Flashforge HS PLA.json @@ -3,7 +3,7 @@ "name": "Flashforge HS PLA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vdaZBnDsmUC1fhDp", "instantiation": "true", "filament_settings_id": [ "Flashforge HS PLA" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json index b5c41b5341..bf571e2ea3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "u7rolQaTQz9U6veH", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json index a86a315fd0..4672cfc77c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "qTGTwiliWj3dSo9y", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json index ceafbee314..5576d9ff98 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "wAkuJRTLWxGyBU0b", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json index cfbae15215..c80656c59f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "dbs29hQSQl9zuWis", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json index 4c6330a787..ad3daa8504 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "XGNPvS2ps7Xn2fpx", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json index 6359808d76..8946fa929c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "h33iEGZ7wPeBYKYQ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json index c58ad5586e..80326684a6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "e58C9MdOWikIbbVR", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json index 65f0cac2a8..8134b2b258 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "RX2Tg8KpwQpCbkLI", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json index 62c0eca20e..952162aaa2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "C4DfYuQgDXIgK7mk", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json index 6b145a600c..ae3207a7b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PA-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "Yu7hL4izNsgDVqMT", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json index efa42a857e..8fe4514502 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA12-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA12-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1CevPV960sQWT3NF", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json index 1c21ec4a4a..8dbd624a6e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA6-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA6-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NGbZ8pQVTRKw28kp", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json index 0bb9d9d404..bcaea09005 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PA66-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PA66-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5pVoGBvbiUlrJSwR", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json index 7d02bfecb3..7437791891 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "8ZR8o3MKYxXLd70k", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json index 63ab8b0fc1..e83a93e113 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "FSfGFl7FCutxXN2l", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json index 69c2ff7980..1758aa7657 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "ZlpBAM9uaS01sWAJ", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json index 11a113e170..c17b5eeed1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PAHT-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PAHT-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "9DaSYBA2OI7Jj5zS", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json index dc97d5fb24..1036a51c4b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PET-CF @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "3bguiaEtUsS8ULHW", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json index 581b764bf7..9b0c2204a3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PET-CF @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "W6i9E22BVo11TeCm", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PET-CF.json b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json index b014b9f42b..eac6f732f4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PET-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PET-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PET-CF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vflpXTS9GwnODQDH", "instantiation": "true", "filament_density": [ "1.1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json index bd132e67a4..568a8f3adb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PETG @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04_12", "filament_id": "GFG99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json index 6c04a0fe53..656e7c3203 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PETG Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "xOZQvdZa1YCcnjor", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Basic @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json index f744d97e3f..9b1e4c0dff 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Basic", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YLLJ4xZI704GReej", "instantiation": "true", "additional_cooling_fan_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json index f8c174545a..712f68eb71 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PETG Pro @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "8EUg1hTLfsyDPbnG", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Pro @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json index d558f79e90..8d400e1b23 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "UKhV8A2DBc1xyNWc", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json index 7f9f69bf82..0d98e07a7a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dFZ1MmHjj1AAIaMm", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json index 551576eacd..0d59fd73fe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ro3rt7IAJrA5aZD6", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json index 83ea3a7b4f..e48a6c5082 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cTxrnqzr2wVt4Nj7", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json index 45550b6593..d2f664b108 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF C5", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "QA1KD03F0zj2zsVi", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json index db7f2ba5f9..3c11370099 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF C5P", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "EU8Q0XLjED23MNer", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json index 69d8fceea2..77cbe8d5b5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "XFSgx95whLw5FD08", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json index c9c6d34add..ea6f2e9f9c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8x6yU2U8d5f67N73", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json index ff87c21269..78f83738b2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4W0nfaSSZdg2HQkh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json index e7f17b1dac..e41dd59589 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "AJcugKx4qHPJ3JAT", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json index 9014871612..915bbb6753 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "R0nZuLXEo5qA6Mt8", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json index 334bb25fc4..825a5b8fed 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "Ql2BBBymzqEG7GKk", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json index 45f37c6aaa..28c0815822 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "8Jc4eedkknqNB87s", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json index f2ec528c3a..23bdac347c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "KU5tDHAKja1sCoHm", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json index 4e9ffbe869..54ed2d165a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "sb6jD3UZmb0DNIsC", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json index fd62685b31..19f6034de1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4BB1wJLtsXus5eyY", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json index 280584e134..a2848c8bc6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "m7oJx47UMlFctMkX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json index 7ab73f5967..0079505531 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Pro @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "ozD2wU5UiORTtJsa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json index 40a0cd628d..13da0b478b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Pro.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Pro", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IQfUoy7gTmVmBDL5", "instantiation": "true", "additional_cooling_fan_speed": [ "60" @@ -32,9 +32,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json index 174c49edd4..a199aa5af8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PETG Transparent @FF AD5M 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "W59yTyPnVv4LYiah", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG Transparent @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json index 6eab5c835e..a623c9288d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_12", + "setting_id": "NRY4fsPNtnqs0kyH", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json index c1aaafdf81..65ff48dac6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ht7wzk8l0b1kv5tZ", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json index c4374b53ce..f3b8f3859b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NJFHpa5HFHIyHSWu", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json index 6897da3bd2..56c3f5e1e5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent @FF AD5X", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UaObrRNSTwitC6jr", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json index b45e1bcf78..67a5179794 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF C5", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "TtXy042wtT6nF3WB", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json index cadd737312..1d26593dc4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF C5P", "inherits": "Generic PETG @System", "from": "system", + "setting_id": "66OWHhGyuaFISu6v", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json index bf611c746d..e2c1e5a662 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "p5c6XJ1VD8cn2Meh", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json index faac1686d1..827d4fe8af 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "K8WkJmFy2V1zhYQO", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json index 98d09e2005..a92d725a2b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LLK1hwKZhDU8SaGJ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json index d4d8ec46ba..1020d428d7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LaUF2HJtBnpZF7Cd", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json index 107337df66..63ba03680d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "OUToXk8ddS1RPPUK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json index de1788f1cb..f88a28c989 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "ywff8rI39XKjcocY", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json index e8a66f51bc..50e0bb7150 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.25 nozzle", "inherits": "Flashforge PETG @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "C0VV5Uzsl4icRgKa", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json index 808b9f06f5..9d2ad17397 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "kuCvwo6Phr6Ywhm4", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json index 17580c5a66..1e1717f741 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Z2E69w9AevYg15tl", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json index 6aed0d3fe6..0e2202e3dd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "RkQaxwTjhJK0A3zr", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json index d678cdfaf0..087167a1a3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "YBQTMes2S9iJjKDf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json index 1341d95cdb..938ea5875a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG Transparent @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "lCngVWG3q0FWsnrG", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json index c691ad3ca8..f06fa5258b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG Transparent.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG Transparent", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3Gv6MJ3RRja5pbOM", "instantiation": "true", "additional_cooling_fan_speed": [ "60" @@ -32,9 +32,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json index 8880d84f66..e335c18107 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bcqYod61blJRzhK2", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json index 3dbd817687..58c69dbf09 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CnFKOi7fFyS8QlKK", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json index 55865bccc2..55f8d200b1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF @FF AD5X", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eKWJW36I5fVHwjWD", "instantiation": "true", "cool_plate_temp": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json index 8ffc379fbd..2939916d3c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "RXRERfs2oQKewpPS", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json index 9b025a5485..cc565d4999 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "8Ns75F5n2fdQ8sDk", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 Pro 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json index 43a39d34fa..514ce0d360 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4EgMPzlVo1rTeQ1e", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json index 2bc8b64d3e..b44d204d6b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "K9ME1F4oJkPi8jRu", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json index 888b3581d3..5a6548fd04 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PETG-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9jCp0gTjB3Mt95Mj", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json index 19bc36d115..796e883fd8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PETG-CF @FF G4P", "inherits": "Flashforge Generic PETG", "from": "system", + "setting_id": "d5OleuNNZBJK9vxH", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json index 710205ee2c..78eef9b46a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PETG-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG-CF", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MpG61mwVUtJ7t602", "instantiation": "true", "filament_settings_id": [ "Flashforge PETG-CF" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json index d3c8f3cd53..7a0caeba59 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "UQF0kAaXnZgJGK4o", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json index b2dd3dd2c3..36782a176c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "FpLoe6QrPXnrH019", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json index 2223ad18ed..632ffa476f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "YFbZ472BRNga6OpQ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json index 2a3b4cc0a5..01c9b77fe3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "AtVxriSKOrFZzUun", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json index ff5499d3ea..b5fddb2af6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "47Q7YXoJ7rD7Vu21", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json index 391dc6956c..913081a778 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "v7vYsiPVka4c1CUW", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json index 5b30b5d339..f799be321a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PLA @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04_19", "instantiation": "false", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json index 5e86fb8495..15aa47eada 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Basic @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "3fuVuyVcn8U0bRJQ", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Basic @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json index 5860cb2214..7632049ce6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "FrRRUl5OT773uCju", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json index 109e22d3c3..8b80f0ab26 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gMmhMDqjmJfAYcbV", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json index 78a3d06e14..ce1a822ce3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0OsrtqfIxrEJMwac", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json index 0f47ded5c9..70f3451691 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fuzWVrfZqekMETLK", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json index 7b1d2a8cd0..4596bb8286 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "FmUnckQofjunAtwr", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json index 5b4318ff48..b4ee22beee 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "Q0RsVOPLuMByur9c", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json index 04820e88b3..02897b8eec 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "QXJgY8OPyaoYUI1D", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json index 52dd8fd4b6..cc6a2a104e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "R54l7TcwsjdPHvNB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json index 9398556562..036357790a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "MELEwYupDkT2DPxL", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json index 8ed12b7fe7..5612c00943 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "uGLvOoPAfksLO43M", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json index fb5976cf87..3a96df6696 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "gGpKvk3rnLuTjOwo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json index 4ca5c45269..690066aefa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Yopqnj4b5ZVwigGx", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json index bf98713e7c..f1b070e45e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "GrwiA2dArUGV9x2g", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json index a3542ff513..094f397950 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "QEfQrqMwApuSMqih", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json index 7303dfb337..fdf52ed1e2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "BAPIn3eJAPGpscRJ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json index 0d42810c2c..e4e1359133 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "44BmRNRb6vlPq8qe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json index b9cb823c09..24871a3b60 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "ltJbhoAeAec9gxrS", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json index 5268071e67..3d09c85a7d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Basic @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "GxdZiXdqns72ibQl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json index 03d99eba73..df86f44ed6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Basic.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Basic", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5XKGaHUjxHECbnHO", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Basic" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json index 36615e0ccb..ba9fa780ed 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Buint Ti @FF G4 0.8 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "H8IStdO8zEfSLYVE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json index 1cece6050b..281d88bca0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Buint Ti @FF G4P 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Buint Ti @FF G4P 0.8 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4wlkoKnU2bA7xhYO", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json index 159ef1115a..82f569aaf8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Color Change @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "KXy0WyQp06VC2ICh", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Color Change @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json index fde9013349..a9b9532a59 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "9cGw7tXD8YJHEi1H", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json index bee60062f8..deb0deaa91 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TF6BeOl0patjpPaa", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json index 1247790753..a46c00c184 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nkYeEBo8NdkJulAP", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json index 0957f4da6a..2e019a2a16 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yEDfsOsogfZbNBVX", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json index ec44796d82..1c348e66cd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "xZmQdh487UMtvBRu", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json index 66aa7e4aa7..378c5fce63 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "rc00SOyIg30uE3Da", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json index 9eaf1c8c5e..1de1fa9904 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "k1OiugasUs7baG1f", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json index 32034df210..c31f2c817e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "G2Et7kPHptMESzQ0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json index 3cf6352ab3..0b16a42ba2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zsOdmFGBSF9UySMN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json index 24f95c1ceb..b7801aaf6b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "oxRMuvBMu9qdQWUQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json index 66775c6527..45edb3fe4c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "5hwNJvvLtb75XBBg", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json index f40bb1ef0a..90a0c47630 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "mGj8VEyOnnogpkmF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json index 43a2074e8f..09f4c73aaf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "HXVX4mDeUSfW2RgL", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json index d9eba3dd30..8a51ee4c0f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "JDcRA6apekWLXPvH", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json index 52396c7bb6..6ba6fb73f3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "b5GJpvKYktP4vZpj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json index 40ce4a15a5..4962ce6694 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "RjUpQV6iQxTircwj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json index 7712b0492a..f48156cb07 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "9DEZ6SmFdgfluhsR", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json index 4a4f314eca..fecaa9f06e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Color Change @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "girTMkusNTfY04rz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json index 7eaff38a4d..552c55d640 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Color Change.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Color Change", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pCQ2qmeXUyJzP7kS", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Color Change" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json index 3b10b2f79e..79ae2f6c94 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "a1jTbQsflD7SDFih", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Galaxy @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json index b9e1ec0680..95f1514864 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "zyCRsy0mHRgyuQqt", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json index 368af73e7d..d6cd08474c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y8TNaRebTrmFem10", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json index b5cbb518db..2df9a04c0a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qju0AMvvq0B5Glny", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json index 9d9fdbd4f6..ed84105332 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8gGBOEcNvlbZxGW", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json index 0d334c8340..798abe1a32 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "0RkkIcIUFgwOFTBY", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json index 83018f8a0f..904ceb7fc0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "9qVabnSl8xfKSIYX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json index a901d8516d..e18d7b94f3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "DL7lxDI35YErCTWX", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json index 0185ee1637..da3b64cd0f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "koEC7DteUoXHUd2z", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json index 2985aa9d85..88ccddeb08 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "D69fWcXioFcpoUjC", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json index c84d73f5ba..ca7ba95268 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "rfiQUncdSExEaK0U", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json index 52501fdcb5..1783f4d0f8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "WX8lK8efXIVcpjFf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json index 31546afc58..fdf44498b8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Tzvo3oILQJc4SQko", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json index c347c6565d..6115ca4780 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "ZQYrljZtu3es26hB", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json index 3fccbb4de7..f62409f28a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Y5gm20O4yCCDIoC0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json index 1f2c301596..a91a4252cf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "80vSQxnHfd5ZUy5h", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json index da114741bc..da7d433275 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "UZi7T5VoasmXWyH5", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json index 7b018bbf28..b915367cb3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "6UlSb4fqHIMdMxkO", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json index e77099a4fb..c77a90240b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Galaxy @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "H2Cr4B5VUaxyYsN0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json index c110cea783..45ca21acee 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Galaxy.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Galaxy", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NJrc0UZ54Fq8MaqF", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Galaxy" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json index 7707d3224f..7116bb03b2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Luminous @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "k8iibCO2EnlTSRyi", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Luminous @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json index 7fdd4181f7..acda8964fa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "pACct3L7duMh3hfx", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json index b14024a2c1..dcc6311055 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GdvXL8SrKrYHxSgZ", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json index e37d7a4958..23d5a93a94 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SLYD2YcQTQgbSjIF", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json index a9793e9419..32a027e5f2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kOobFSlqEG9Qe0d1", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json index 71702bc1db..43a46d9f06 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "4sE1LTVVuRglRbpD", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json index 2da74bbfac..9fb04c73d9 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "jEUZyaEIBf2eXXeh", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json index 0ed3c8649e..fa64b028ed 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "qZ6kKjRCMfe4Ql3F", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json index fc64e73a78..7b6a3404bc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "xPPSRmadqfqCtRF2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json index 64c10ab554..773aa67d02 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "aWVXIk1xVa9URR1D", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json index 291c6a912e..042492ab8f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "KhBF7hHHVPzqiAca", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json index 9070633aa4..baeabf324a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "sTplnj3gMAzwtLWE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json index 3abb1603cf..be4f7f3ed7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "zJFUJKDJRYi1pRL7", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json index 19392b04cb..8a7622fb59 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "vXPXOKD8vNJlujM1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json index eca09ad35b..b544994aeb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "purqxjmWiflDrnik", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json index b89438baa3..e9a26e8c2a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "qraQ97uusigB63hv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json index e0825c868b..0fae0389cc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Luminous @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "Z1NCX8XMyIVlOlWn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json index ff7f078a41..4393acab05 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Luminous.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Luminous", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s620OFLTgFT4Ds2A", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Luminous" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json index 004fab4369..252743e5f2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Matte @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "DcbISTLvKNMZRzKx", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Matte @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json index ca2934d7e7..e302c58bfe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "4fwlIrzy6O2EsyBZ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json index dbc0db13f1..b461ab7c4d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BVmVfNCuy8HDhcEI", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json index f510fc3d6e..b70192398e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WRMePGzDGdEGiqNv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json index 7987d38377..0648d80a38 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "thnbuaLDDlGrkrdY", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json index dd89d2aeae..67b9a2c858 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "cnPwhLyBq6JL8gEA", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json index 873085030b..6f03f6b8cb 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8b9q1FfVljPmKoEt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json index 25f4359dcd..fe1ca45413 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "o9dOrLgL6efF19O1", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json index 034e372f89..45fe70381f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "QoRmDvhoeGi6Z2xv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json index d766d8d434..d1e83cd7b3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "dHyuoORAUGLtlGkJ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json index 4bc915475b..9090bf2287 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "OgqVyIHfy3U8Dc6d", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json index 5c834f4e13..682ba2be12 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "g1gnICJ3u6hpGazQ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json index ffb38dc018..cf6436ad19 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "feXpVbDM5ON5mwg0", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json index 0c4ff11dde..ef02344293 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "XMnZQ1AxXPJqpqRX", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json index 279879fcf2..d9fcfcc693 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Ke0bRKPNKSsVMO1Y", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json index 7b49e7ddfc..57ac007de8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "IRC2n4GaofxvvyTt", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json index 1de74d10db..185d66e796 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Matte @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "RN4wdTL0qccM4huZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json index 8045ee5892..b6a9949867 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Matte.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Matte", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ipMevDMORKqZYdvD", "instantiation": "true", "filament_max_volumetric_speed": [ "22" @@ -17,9 +17,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json index 92267b8cb0..758de4bbdc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Metal @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "vwwb5nfO63U1ErCn", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Metal @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json index a721e52002..7685f4ea90 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "ekq4MRPyzlYxRhbX", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json index 163f7f8429..bb880ea106 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uusF7Vz94HOwoQF0", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json index 2839cb716b..e34f8d298e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sHZWzrZO8PP0QYZR", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json index a576dfbc8a..5d6a2fe948 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bxwjEFI8HmNY8JI6", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json index 3e30679319..89436d242d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "VvMaIJwFk4Q6KX4p", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json index ba6cb1d33f..6239ad2bad 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "5xqdqoj2l50FegPF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json index 26a32f4579..5f91a2f652 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "R79SbWA9i2OAu2ee", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json index 97fca9b143..8c25b77b20 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zjIN4KzIOwI1VwOc", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json index 1e7e11b792..add7f82214 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "UxMNNil2KnWvAJ4q", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json index 4b0916db1f..f972d75cae 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "57i6iKrVYUS5UiBT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json index 411eb04d7f..9563f42a78 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "vVKalJViJuBvlHkK", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json index 36e4d86633..ae0bb23e05 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "IYPw8a9tkpuf95uH", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json index ba59dd65a1..d33ab097f3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "I0bULoVAbtVfQoCy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json index 7e8772878b..97b47d1fc6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "DbPo3ay2e4a002AB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json index 9c5ae70c2b..eb7cdfc00b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "uztv4hhm2O3T93zZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json index fca561e50d..627883c18c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Metal @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "UFWWrhfgS7N36Y8W", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json index 815c53cc69..fc1ca9b02d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Metal.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Metal", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UD5i0ijsirfieUvb", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Metal" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json index 292232d148..04aeb1f095 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Pro @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "DIMoIGOGedN17WbO", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Pro @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json index dafa3933f7..7101090b3f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "SC5LJcecBaEG5by3", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json index c700751160..fcbcbdf68b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t9lPSFnwLDk0ARIp", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json index 300cff2d82..890831fd51 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SBSlOEwZSvZHeX4r", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json index 7393b4cc2b..425052368c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DbWTm2H71izMWmpx", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json index cdb43a6aa4..4cd37e4758 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "ZENqqRqvEOeloAgs", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json index 666d592558..72234ddfd2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YcXuvz3qYHtVoWxv", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json index ef48bde97b..b8ad354879 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "prItyXNphhuPCAce", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json index 98b4e5200d..6bfe5cb3cd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "83zDmjaAgxxIt7KU", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json index f63dc8084a..5a9918addf 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "px3O28Olb9LExqfT", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json index c1d345541b..ed66794aab 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "QYgsCCHP3Khqrzh3", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json index 988c019b59..cbc1d80955 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "wV01bqvZ6MRaEibZ", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json index 6e0c35ff34..549f5a1562 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "1ro9wHPYhuMHNiYe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json index 53759b0331..856389e1e2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "4W4a7c9ugUVwvvmn", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json index d75dce1e83..6da7732f58 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "CloRo3qxvzxHZuIP", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json index 3702b24b98..dd788c5a94 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "QgUbP07tIXmFysEb", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json index 7a6fd4cb0b..61522df2c7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Pro @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "6mvGOtkPZT6ROboo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json index 1c32af871f..2cb335b80e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Pro.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Pro", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vI875WYbMyQeMwlh", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Pro" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json index 80b1951ba5..b028494888 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Silk @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_25", + "setting_id": "gxl3i7jTwkzrKxF4", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Silk @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json index fd2a604b7d..a2fae947b8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "mx6NWRkqyo2U12XQ", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json index 324f6ff0bf..645ecbc0c0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YH9IHXOFMKwcTLyA", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json index 527ef66d98..4f7e3d3014 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IfAieG0OAG807xlu", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json index 2da9823c1a..4e74bdb6cc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk @FF AD5X", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N6J7QqQ7TIgM3MyW", "instantiation": "true", "cool_plate_temp": [ "50" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json index f038743ded..9c0eec6844 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF C5", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "OIsfpi49wEoF0ekO", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json index 3216d5dbf9..405b1c46c0 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF C5P", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "xxeZ6VPjRFevxDnK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json index 8fc42699bc..a8bbced435 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "x5m17Z5UpqpTtwgF", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json index 7cadc4223a..a3475428a1 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2GZp8yjrY1OioFDi", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json index 27498595da..19a2957ccc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "U0XtCVUhIMnidhbR", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json index a3aa029aad..7cb6dc67bd 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8j9kaYy3ghkF81Cu", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json index 4debc4a290..a838f359d4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "E0LeJwSxaniDkB0b", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json index ec32f02fb7..718ad9c32c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "8rggqgJ9kg9yLE28", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json index d8febdf4e9..fb38d8488a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "hnWRLUwnfXiwnqBM", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json index 365185363b..4bccc9c4ac 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "uY4OWhIytHMz4rWq", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json index c01940c937..4906f57d2c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YSkkXd9EhhEHvGpf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json index d9e25bcc3f..135192e979 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "XlxXZj9Wi1D6IwCE", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json index 0ab4a59d04..f05f9f8e57 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "IPyXBSnMCAikjI9V", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json index 47219f708c..240fae4d59 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Silk @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "f3gJsovSmDKoA7BP", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json index 604c013001..205dc244a6 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Silk.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Silk", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vZb7BvbyVWkZv3rR", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Silk" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json index 9d717ea0c9..16dfdcf81c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5M 0.25 nozzle.json @@ -3,20 +3,13 @@ "name": "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "ojYsAanAPqYhgFoe", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Sparkle @FF AD5M 0.25 nozzle" ], "compatible_printers": [ - "Flashforge Adventurer 5M 0.4 Nozzle", - "Flashforge Adventurer 5M 0.6 Nozzle", - "Flashforge Adventurer 5M 0.8 Nozzle", - "Flashforge Adventurer 5M Pro 0.4 Nozzle", - "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M 0.25 Nozzle", + "Flashforge Adventurer 5M Pro 0.25 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json index a1c6f29434..29b57abe19 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GFSA04_19", + "setting_id": "xVYaNvQwM2chTkPe", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "80" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json index 0373bcd30b..3cf5581d40 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8lsEnMIiHHorJhb", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json index fa3b1e55d9..09bf6a4f97 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oXlxQJY0K6Dnri7e", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json index faa4ba715a..303ab7f286 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle @FF AD5X", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XKpFulrvvrfE56va", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json index 7f2e973aa3..3bfa2b7a10 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "jmVmKMUCcowszvVp", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json index 1da4fa71a1..c8810e8348 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yeh5cd0tAHtHzdoQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json index 68573f24db..a00dcdc264 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "q2Zi0YluaYpG3Ktf", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json index bf30b733ed..8f226d79ad 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4 HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "1qXV6AJqPpAwX1YK", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json index 0fcff5a9be..43fff03323 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "YsyGGOGqUVkEqkIr", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json index ed69f13680..c53e5bc830 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.25 nozzle", "inherits": "Flashforge PLA @FF AD5M 0.25 Nozzle", "from": "system", + "setting_id": "4L3Zm1YIxs8J8dp9", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json index a420e79813..7027ffab33 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "UVvd018dTbygqTgy", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json index 0559cc6b57..64ffa609af 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "F0k8kkgWM5FkLAzo", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json index 526a83658e..f61281e75d 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P HF", "inherits": "Flashforge Generic ABS @G3U", "from": "system", + "setting_id": "Oapl8InwbkwNSIDl", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json index 941e0138d3..b887d42ff2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA Sparkle @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "NiB6Yb4b0auyn9KQ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json index 3472774a0b..c000cb76e4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA Sparkle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA Sparkle", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LYtdPgec1hBLhoQA", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA Sparkle" @@ -14,9 +14,6 @@ "Flashforge Adventurer 5M 0.8 Nozzle", "Flashforge Adventurer 5M Pro 0.4 Nozzle", "Flashforge Adventurer 5M Pro 0.6 Nozzle", - "Flashforge Adventurer 5M Pro 0.8 Nozzle", - "Flashforge AD5X 0.4 nozzle", - "Flashforge AD5X 0.6 nozzle", - "Flashforge AD5X 0.8 nozzle" + "Flashforge Adventurer 5M Pro 0.8 Nozzle" ] } diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json index 33f092a076..a9527280aa 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QRyISvTy06kCwxKo", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json index ab712a43dd..6e4cbcfdfe 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rmnF24E3SuwzRscH", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json index 1a131f44fe..23b1230036 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF @FF AD5X", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BXPI5Pkp7a6pLrCh", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json index 811b8c1a61..de99144bf5 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF C5", "inherits": "Generic PLA-CF @System", "from": "system", + "setting_id": "rBm25DRY1PAkEJ4r", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json index 79ff969101..896f61dd93 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF C5P", "inherits": "Generic PLA-CF @System", "from": "system", + "setting_id": "xReo12oteZ4ECNJN", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json index 687a9986aa..42ddb83ec2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "9PgjgxU7pLl2Dfpe", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json index c140d8aa97..74d834e078 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "RuNKzuIsw7F1ogmG", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json index 51991fa5b4..e588dbdf2c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "YPuMCHNGDWh0FpIB", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json index bc29e0bd27..9a8e75a439 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PLA-CF @FF G4P", "inherits": "Flashforge Generic HS PLA", "from": "system", + "setting_id": "3uC056Y171ZjnQE6", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json index f3875527a7..391c0e86ec 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA-CF", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxNlb64lTODaaQhU", "instantiation": "true", "filament_settings_id": [ "Flashforge PLA-CF" diff --git a/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json index 2b8c9c7369..48ba8894c7 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge PLA-SILK @FF AD5M 0.25 Nozzle.json @@ -3,7 +3,6 @@ "name": "Flashforge PLA-SILK @FF AD5M 0.25 Nozzle", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04_25", "filament_id": "GFL99", "instantiation": "false", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json index 729ed514fe..2e049a81f2 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PPA-CF @FF C5", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "DhC7iFgNKCAq4Zkt", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json index f1c1fe9b34..d55cb8d4b3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPA-CF @FF C5P", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "Jws2AaLWaNyZhqX4", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json index 2b5efdd0a7..1808ab60c8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPA-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MFItX51zZO0KYjdk", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json index 966d8ecdf6..b7cb615d2a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPA-GF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPA-GF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KITjZXcyM4N8cVyu", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json index 05d81dfdf4..4cc5686f67 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "6NjEQ6RJKUAOrSLw", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json index d345977897..940f6e85f8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "vFMKqNjQjlNxwvDI", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json index b3dd501dce..0492ebe524 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF C5", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "ihXPnFERMjbBgrP5", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json index 5a0b980d5d..e11ff56c17 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF C5P", "inherits": "Generic PPA-GF @System", "from": "system", + "setting_id": "UWFjBmSpUkZLBvoO", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json index f6c7c72141..374063554b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "oSGlx5mtGh07BnOz", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json index 3263057a7a..fe1b4c1f6b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge PPS-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "i5DllSvYjVPO04Su", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json index 781bad72ff..c46bfe3da4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json +++ b/resources/profiles/Flashforge/filament/Flashforge PPS-CF.json @@ -3,7 +3,7 @@ "name": "Flashforge PPS-CF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l3dYtVM52X0UMRix", "instantiation": "true", "filament_flow_ratio": [ "0.99" diff --git a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json index a9919871d1..a913609484 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge PVA @FF C5", "inherits": "Generic PVA @System", "from": "system", + "setting_id": "rSYGG2ni41NDVw6l", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json index 2a2a042ba4..c40ba42a92 100644 --- a/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge PVA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge PVA @FF C5P", "inherits": "Generic PVA @System", "from": "system", + "setting_id": "nwgbMjLRJLtJ04ri", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json index 578ae780a0..528998a24c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "f75oElm4zB0hukIj", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json index 393f05081d..0e23841975 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "o4KYTpJF6KksX2mg", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json index acee3c8a77..749a00856c 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HUSkDZL6rCpz0lRk", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json index 6b638fcdc4..085cf59c5b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8xgu0AnMuKbPWyVd", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json index fbbfd912ce..a5b488fc99 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Rgqt3MjxOye5EaFt", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json index 89b8426ca8..3f901a03a4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 65D @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 65D @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "PBFsW5qhVbQteYh5", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json index de1fc383b8..489c5fb15f 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TPbHmcFyPyjvoERv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json index 8036f1afb7..a959585cd8 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zLMgsyDmdoXHhqFv", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json index cb6a15d657..33834e19e3 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A @FF AD5X", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ThakVhjfpgnAlEVH", "instantiation": "true", "cool_plate_temp": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json index c6f9126085..4aad5af360 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "M0ozqaD3jSKoD6fm", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json index d164326c62..0fd54408ca 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ob8IkvzNt9CWCzbk", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json index d8ec078c29..31b83ce172 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "NzxX1lyRJ7wLUihV", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json index c1addfacb5..430ac28bd4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "4FIGiheSGvSJPw3s", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json index 0b8f9e055d..f5bff06851 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.6 HF nozzle", "inherits": "Flashforge Generic PETG @G3U 0.6 Nozzle", "from": "system", + "setting_id": "1GNqSBaQitzhYSx7", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json index 6a23bb62d2..cb901a9bcc 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.6 nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eOhMygyxaccdov7o", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json index 703992f5fc..f5c8f2c553 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P 0.8 HF nozzle", "inherits": "Flashforge Generic PLA @G3U 0.6 Nozzle", "from": "system", + "setting_id": "LxooKiOkRncktNLf", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json index 8948a15040..e4f518e648 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A @FF G4P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU 95A @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "HdoJfbQr0uwQ6Vwb", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json index a8ba6b3491..d9f7ec4840 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU 95A.json @@ -3,7 +3,7 @@ "name": "Flashforge TPU 95A", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J4EaFhnpkLDcl5wH", "instantiation": "true", "filament_settings_id": [ "Flashforge TPU 95A" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json index 429b615021..b7cd53996e 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-64D @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "fd5bACFa33J7aTdp", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json index 1268b7f71c..14bf91e144 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-64D @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-64D @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "hrcELA2qEMkZ6Wvj", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json index 23e5178dcf..30a92209c4 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-90A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "Lis7BZ3lMkoX5KQt", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json index 7e8b19044a..dd8ddf201b 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-90A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-90A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "xY03Hiidu5YNSUyZ", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json index 26f22d1c3e..6d5d7a0455 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-95A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "AHu6wNV3zcPBusOF", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json index ae7b0a0440..f52588da65 100644 --- a/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Flashforge TPU-95A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Flashforge TPU-95A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "8MBRqfLIRdhxk1dF", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json index 69211292a6..c4ebf2a360 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge ABS @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "FFFA01", + "setting_id": "9pxqGyfi52tuVmZ1", "filament_id": "FFF02", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json index c714e8b698..ca504e0e95 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PETG @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "FFFP02", + "setting_id": "tYidxo83oreZoecT", "filament_id": "FFF03", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json index 294129d225..8234e6f07a 100644 --- a/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json +++ b/resources/profiles/Flashforge/filament/Flashforge/Flashforge PLA @FF AD3.json @@ -3,7 +3,7 @@ "name": "Flashforge PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "FFFP01", + "setting_id": "qnKvMRUvJ7tRJ4dX", "filament_id": "FFF01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json index 4431339daa..163a76b62f 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "2JQjReK012FHpHIt", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json index 51724358d1..539b153d74 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "3SCkpXXK8VcQBMQn", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json index 1bdede822a..70ed04fc55 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "dgpcOrf7282LTh1d", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json index 8a931d76d6..d5ce57aeee 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "e85SCr6SV9kQD2hm", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json index 87fe6bce22..85a4492107 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "eGXsHN5B9BZViVNe", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json index 0a421005ae..c7c38d13bb 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "8JSb4JqZ7zLi8uPI", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json index 59f426577b..a81bd9fe8c 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "gZqAGVOlWR79n7hN", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json index f12b431895..542cced451 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "nJF1lCOavNNh4yHs", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json index 26f309cd2b..37dcd0816f 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "TZ0nKqxoIYk2mPh8", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json index ef95d5ba11..75094206d5 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "nH6pwFYsPyBzL1EB", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json index 8831c1ae71..6dee0fbd50 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yok12IOGZzGot5Ll", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json index 9fef5f95cc..9beb4e6e38 100644 --- a/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/FusRock PAHT-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "FusRock PAHT-CF @FF G4P", "inherits": "Flashforge Generic PLA-CF10", "from": "system", + "setting_id": "wmWMf3MfmbfZx2o8", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json index c71d422eb6..de609cdc0b 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Xqb0GQluin2jUQyL", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json index bf5580205d..c20763c836 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "A8PDgw1jZE2m3bem", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json index 920b682901..3c7f3b0e91 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "Iy5lHY4ihEKPgJ5x", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json index 20e12bab23..a727da25ee 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Kdeg55RzLMYhqYMC", "instantiation": "true", "complete_print_exhaust_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json index 35d3c8a4cc..62279c4084 100644 --- a/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json +++ b/resources/profiles/Flashforge/filament/FusRock PET-CF @FF G4P.json @@ -3,6 +3,7 @@ "name": "FusRock PET-CF @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "JXf7KCy4KY65xuzO", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json index b4607c6962..4502c8e0d8 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock S-Multi @FF C5", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "O3tz36NNMoagELL0", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json index f0ce99f275..df0f4c4cc6 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock S-Multi @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock S-Multi @FF C5P", "inherits": "Generic PETG-CF @System", "from": "system", + "setting_id": "Gg9H6I32fOqoLSqE", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json index 28129198fd..9ab78ced38 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json +++ b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5.json @@ -3,6 +3,7 @@ "name": "FusRock S-PAHT @FF C5", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "pV5QERvRuROIZTOa", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json index e10d36f4d9..521a764406 100644 --- a/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json +++ b/resources/profiles/Flashforge/filament/FusRock S-PAHT @FF C5P.json @@ -3,6 +3,7 @@ "name": "FusRock S-PAHT @FF C5P", "inherits": "Generic PA-CF @System", "from": "system", + "setting_id": "0i7VkquM4n0uFaXH", "instantiation": "true", "activate_chamber_temp_control": [ "1" diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json index e40f8951e1..1675096c7e 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic NexPA-CF25.json @@ -3,7 +3,7 @@ "name": "FusRock Generic NexPA-CF25", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TZDKsooodaGVkM4m", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json index fbfcdff601..37dc9b7723 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NdNRNhmsHgHRnz1Z", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json index d9be38b785..953b71d9e3 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-CF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-CF", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fR7maJwWmteJ7bWY", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json index bd8211f6bc..7241cf2afd 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PAHT-GF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PAHT-GF", "inherits": "FusRock Generic PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gLG1R5gtdliSlnZJ", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json index 60666886b5..d6de1c2af8 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AaGdNgYaIIZyZBiW", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json index a1a7687632..95995868fb 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-CF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-CF", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jJVDAlGTt1QJlbn8", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json index f85d293ef7..8fb6eb9b70 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic PET-GF.json @@ -3,7 +3,7 @@ "name": "FusRock Generic PET-GF", "inherits": "FusRock Generic PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IEpmsltdjoCu2txJ", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json index 6781de2252..d09c7dd01f 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-Multi @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "foH2sa61cDy12TzH", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json index 3ee9e7b53e..789b77ea27 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-Multi.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-Multi", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gQLoSJ7xGEdOd8kr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json index 9d1143382d..3f42fa9f24 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT @G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6Z5vce5YKlCGox8v", "filament_id": "GFB99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json index 8f67e3ad0f..9e2336a574 100644 --- a/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json +++ b/resources/profiles/Flashforge/filament/FusRock/FusRock Generic S-PAHT.json @@ -3,7 +3,7 @@ "name": "FusRock Generic S-PAHT", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kMYDFSwivzTjFo2L", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json index 7a7a3e9b6d..a526cc23ff 100644 --- a/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic ABS @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Flashforge AD4", "inherits": "Flashforge Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lS237JRDRMQgJFzd", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json index 9d89312b62..12d944617f 100644 --- a/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic ASA @Flashforge AD4.json @@ -4,7 +4,7 @@ "renamed_from": "Generic ASA @AD4", "inherits": "Flashforge Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tq7YmJohYaNiPplE", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json index aa49b32140..0e77a94bd8 100644 --- a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic BVOH @FF C5", "inherits": "Generic BVOH @System", "from": "system", + "setting_id": "fTnS5cbxHv8cctBa", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json index a1ed3fc676..6679b74a66 100644 --- a/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic BVOH @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic BVOH @FF C5P", "inherits": "Generic BVOH @System", "from": "system", + "setting_id": "Eemk4OAny5OMKhgz", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json index 5a46c487d6..ed788fa452 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "cvJIaPzb0uJLipX1", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json index 8c065feb6b..bd6fbfb0e1 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "wguPruY9M7GcMt6q", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json index 6cc30fbdfa..1b8c0864fb 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "EhobwmFIEg5Cs5Ki", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json index ef605f8a95..f7bdfc0830 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "JvdxJyy7xCm3F0xH", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json index 0002355dbf..7bf0850fe8 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "FtwGLcPMQqKw5uKW", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json index 1239f35af6..a95278c719 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.6 nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "lrnsjoh8DtnTcT7g", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json index 7693b5e67f..ca22248030 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic PET-CF @G3U 0.6 Nozzle", "from": "system", + "setting_id": "Th8rzyWoINHBwgcw", "instantiation": "true", "close_fan_the_first_x_layers": [ "3" diff --git a/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json index bf56c4415c..45eb6c20a5 100644 --- a/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json +++ b/resources/profiles/Flashforge/filament/Generic PET @FF G4P.json @@ -3,6 +3,7 @@ "name": "Generic PET @FF G4P", "inherits": "Flashforge Generic TPU", "from": "system", + "setting_id": "1Lyq9gOfcZ5hPIdW", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json index de00ca612c..8122a7e3b5 100644 --- a/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PETG @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Flashforge AD4", "inherits": "Flashforge Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6vtyYCWYY10OPMbz", "filament_id": "GFG99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json index 114c688a87..ff84af740f 100644 --- a/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PETG-CF10 @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF10 @Flashforge AD4", "inherits": "Flashforge Generic PETG-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fWM9WLGV9mUQOtHh", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json b/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json index 33b1fda520..12f0d129bc 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic PLA @FF C5", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "2VMiVCUPVbi52diP", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json b/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json index 046f966eb8..0f9ccae55c 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic PLA @FF C5P", "inherits": "Generic PLA @System", "from": "system", + "setting_id": "ALRfG5zUa6ytbtho", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json index 838b6019fc..39afe0a2c2 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Flashforge AD4", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "48NJ34G6Uo7VgzD4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json index 3cd99c3110..77e0ed35fd 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA High Speed @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA High Speed @Flashforge AD4", "inherits": "Flashforge Generic HS PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B4EWBUa9G36lZUd7", "filament_id": "GFL99", "instantiation": "true", "bed_temperature_difference": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json index 7e8a2939e4..16e1f0d278 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic PLA Silk @FF C5", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "pTauHiXhGTXdOU1x", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json index 9bb4eca535..eb0aa584da 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic PLA Silk @FF C5P", "inherits": "Generic PLA Silk @System", "from": "system", + "setting_id": "RnoS9bqY1TvNPtg2", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json index bea2ee1a48..199e64cc2b 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA Silk @Flashforge AD4.json @@ -4,7 +4,7 @@ "renamed_from": "PLA Silk @Flashforge AD4", "inherits": "Flashforge Generic PLA-Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9FrKIXABj3yedXri", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json index 038f5d0be1..39a1a6d188 100644 --- a/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic PLA-CF10 @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic PLA-CF10 @Flashforge AD4", "inherits": "Flashforge Generic PLA-CF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F8r0b3G228QEK53U", "filament_id": "GFL99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json index 0b591dbeca..9d91f3746b 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X 0.6 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WQyJHZpkl9Dz6Yo3", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json index 4fd6fc8794..d109f87d0e 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X 0.8 nozzle", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qRqhbOYn5TMfccem", "instantiation": "true", "cool_plate_temp": [ "45" diff --git a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json index 496d623c82..3f79dcf3a5 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json +++ b/resources/profiles/Flashforge/filament/Generic TPU 85A @FF AD5X.json @@ -3,7 +3,7 @@ "name": "Generic TPU 85A @FF AD5X", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LTZCFxkzkGCnUMAR", "instantiation": "true", "cool_plate_temp": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json b/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json index e04db5b1da..a5bfa9cdd5 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json +++ b/resources/profiles/Flashforge/filament/Generic TPU @Flashforge AD4.json @@ -3,7 +3,7 @@ "name": "Generic TPU @Flashforge AD4", "inherits": "Flashforge Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DW9Ck6xMK00Ry2iE", "filament_id": "GFG99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json index 52ff5a781b..659d896a04 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-64D @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "i59KgPtnplOJ8ZBh", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json index ac2c137b8e..76399618fc 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-64D @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-64D @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ERMhwufaef91KJ1d", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json index 14010fffa7..43b69e32e3 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-90A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ZGmi7NF6Rn4idKjT", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json index c02fac4cbe..5b11df4081 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-90A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-90A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "3SRFjKR5ezAukLYW", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json index e9e53a0890..ddfcc5c1af 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5.json @@ -3,6 +3,7 @@ "name": "Generic TPU-95A @FF C5", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "ULqB7JfqebS8d00l", "instantiation": "true", "additional_cooling_fan_speed": [ "40" diff --git a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json index aaa43fac52..1eb7a0bf80 100644 --- a/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json +++ b/resources/profiles/Flashforge/filament/Generic TPU-95A @FF C5P.json @@ -3,6 +3,7 @@ "name": "Generic TPU-95A @FF C5P", "inherits": "Generic TPU @System", "from": "system", + "setting_id": "EQzyVOtOJjpKyRMM", "instantiation": "true", "activate_air_filtration": [ "1" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json index be92c12db5..e0e410486c 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "lALS0WwvUo5AYOq3", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json index c9102cab1e..b005039c27 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "tgRrYwnp5nr1yr9w", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json index f938956f83..eb7577cfe5 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "yom6iIUUwU1MsZwF", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json index 61f5d2f5fe..933d1ff7d3 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.6 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "ysj5nD1op08U8rUT", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json index be65a9de06..34959d59ec 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.6 nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "HBtkC3BfEpBGEWc5", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json index f69e314dec..d4285329e3 100644 --- a/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/filament/Polymaker CoPA @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "Polymaker CoPA @FF G4P 0.8 HF nozzle", "inherits": "FusRock Generic S-PAHT @G3U 0.6 Nozzle", "from": "system", + "setting_id": "zsW4MCpeL5qfzNfg", "instantiation": "true", "close_fan_the_first_x_layers": [ "2" diff --git a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json index 8a7f1cba5b..49196701fa 100644 --- a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json +++ b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic CoPA.json @@ -3,7 +3,7 @@ "name": "Polymaker Generic CoPA", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t6CWYU3ZSddIjwhS", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json index 83c9c9bc4e..8a8b8fe94b 100644 --- a/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json +++ b/resources/profiles/Flashforge/filament/Polymaker/Polymaker Generic S1.json @@ -3,7 +3,7 @@ "name": "Polymaker Generic S1", "inherits": "Flashforge Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NXQtHvtO4tyQ1ueu", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json index d47bf4275f..b6706101f3 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @FF AD3", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_03", + "setting_id": "BENcJjUDhHoKoKr4", "instantiation": "true", "slow_down_layer_time": [ "8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json index 618937e667..7ba7efc88a 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PETG @FF AD5M 0.25 nozzle", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_00", + "setting_id": "FY14rURQIpMyXsct", "instantiation": "true", "filament_max_volumetric_speed": [ "4" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json index 98a3f29e9b..1a033bfade 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PETG @FF AD5M 0.8 nozzle", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08_01", + "setting_id": "l8pXGlKwIwoEVp9p", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json index d2149f0499..5eb9eb4a9e 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PETG @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @FF AD5M", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "GFSNLS08", + "setting_id": "sZhSd1bOSlpCaLF8", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json index b95ff562e5..da5ab9a674 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @FF AD3", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "GFSNLS06_03", + "setting_id": "6IQtR139p9QmD9xy", "instantiation": "true", "nozzle_temperature": [ "215" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json index 9e2daad7ce..7144e3506a 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Marble @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @FF AD5M", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "GFSNLS06", + "setting_id": "M0wMWwyqvlmLuHeV", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json index 38790f6331..3fdb75070c 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @FF AD3", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02_03", + "setting_id": "5gelEcX6iOtqnbsh", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json index bac69b07e6..2b4b89e9ea 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA Matte @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02_00", + "setting_id": "ph88x4XnBjaumzze", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json index b3c56c4d51..fc1c955af6 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA Matte @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @FF AD5M", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "GFSNLS02", + "setting_id": "H3t7rp2KLCCRuJcq", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json index 07d145346d..d812731690 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @FF AD3", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04_03", + "setting_id": "Zen9mJ6TV3zmKH3J", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json index 14a17c001d..51cd62a825 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA+ 2.0 @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04_01", + "setting_id": "F4PiUlguBysVUHLr", "instantiation": "true", "filament_max_volumetric_speed": [ "1.8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json index d681b59bb1..44100dc18a 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ 2.0 @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @FF AD5M", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "GFSNLS04", + "setting_id": "4MRsbnliWaoLU2BQ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json index d89d726806..d5ad5b1910 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @FF AD3", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03_03", + "setting_id": "W8RSexSNZp8lB0y4", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json index 02e6ad033e..cb7dabf0ce 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03_01", + "setting_id": "F4D1UV45L9fPm9WG", "instantiation": "true", "filament_max_volumetric_speed": [ "1.8" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json index fa5e08be14..173c899557 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU PLA+ @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @FF AD5M", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "GFSNLS03", + "setting_id": "TUTKHeFJoFejsySI", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json index 593e9fb08d..e148620df2 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @FF AD3", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05_03", + "setting_id": "Gbd8WKfUXl1kdTJL", "instantiation": "true", "nozzle_temperature": [ "215" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json index 2dab61c3f5..ad61ea92c2 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M 0.25 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "SUNLU Silk PLA+ @FF AD5M 0.25 nozzle", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05_01", + "setting_id": "HdD4n2D1quA1yar4", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json index c2f5570940..4e0c1071fa 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Silk PLA+ @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @FF AD5M", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "GFSNLS05", + "setting_id": "6HbMG3FtDofk4MIm", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json index 15f09eedba..1b6637c110 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD3.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @FF AD3", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "GFSNLS07_03", + "setting_id": "Kvn22UmFqoNUMOg0", "instantiation": "true", "nozzle_temperature": [ "210" diff --git a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json index 30a7c45a66..b0af43d5d0 100644 --- a/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json +++ b/resources/profiles/Flashforge/filament/SUNLU/SUNLU Wood PLA @FF AD5M.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @FF AD5M", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "GFSNLS07", + "setting_id": "qNFWJW8dEhdd6HWm", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json index a8872eab42..ba5fc5f554 100644 --- a/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/FlashForge AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.25 nozzle", "inherits": "Flashforge Adventurer 5M 0.25 Nozzle", "from": "system", - "setting_id": "GM006", + "setting_id": "LyLdzfhgxndhsc7w", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json index 38741af4d0..8db76b0cd5 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "D4l8zt8PRijp1mvT", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json index 942f176431..4955930d7c 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "ByYUTKP0IJn1sgf9", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json index 2bf624af31..ef7b50bbdb 100644 --- a/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge AD5X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge AD5X 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.8 Nozzle", "from": "system", - "setting_id": "GM009", + "setting_id": "nSqJzbo2qKeVBRFp", "instantiation": "true", "printer_model": "Flashforge AD5X", "adaptive_bed_mesh_margin": "0", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json index 7c6ea9bd68..630a5372be 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 3 Series 0.4 Nozzle", "inherits": "fdm_adventurer3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "t5JKEUBlsjdEeRNe", "instantiation": "true", "printer_model": "Flashforge Adventurer 3 Series", "default_print_profile": "0.20mm Standard @Flashforge AD3 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json index 32837dba9f..b015b76ad5 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 3 Series 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 3 Series 0.6 Nozzle", "inherits": "fdm_adventurer3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "UDfjcTtL3vUxC6VO", "instantiation": "true", "printer_model": "Flashforge Adventurer 3 Series", "default_print_profile": "0.20mm Standard @Flashforge AD3 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json index b31abe94c8..2f2783992a 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.3 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PRljA8KgQoirDtHm", "instantiation": "true", "printer_model": "Flashforge Adventurer 4 Series", "default_print_profile": "0.13mm Standard @Flashforge AD4 0.3 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json index b31e3d9d0e..9006cd7f25 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.4 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bBT6oy7bTQGITL6W", "instantiation": "true", "printer_variant": "0.4", "printer_model": "Flashforge Adventurer 4 Series", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json index 6ead0b7996..357e50666a 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 4 Series 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series 0.6 Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wlYxOL7g5BrpCXHH", "instantiation": "true", "printer_model": "Flashforge Adventurer 4 Series", "default_print_profile": "0.30mm Standard @Flashforge AD4 0.6 Nozzle", 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 dcb24c7ab9..948c3f4f40 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 @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 4 Series HS Nozzle", "inherits": "fdm_adventurer4_common", "from": "system", - "setting_id": "GM002", + "setting_id": "bO7OA2EOVlYEA4aS", "instantiation": "true", "printer_variant": "0.4HS", "printer_model": "Flashforge Adventurer 4 Series", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json index 111677c034..1820b8a177 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.25 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM006", + "setting_id": "8bQYnYO44IWdBVc0", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json index e1ead24846..7162c880f9 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.4 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "n2MSk8g91mAD7PZb", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json index f1ab3820e8..4ca3bf23c2 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.6 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "saCGEstG7DaiYhZY", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json index 6a1506f0c3..e9384af649 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M 0.8 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM005", + "setting_id": "Pej2PnncDEXUe7PI", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M", "default_print_profile": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json index 0c7280cc16..40a3329a09 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM010", + "setting_id": "kWmeC9KnTnmGGJFL", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json index d080db7264..a8f6c2abe8 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ThBrRFxO6erzqndo", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json index 21e88ea2e8..bf9382c308 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.6 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qMjPc6vzPMGNc5GD", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json index 7484969d54..855bf147ad 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Adventurer 5M Pro 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Adventurer 5M Pro 0.8 Nozzle", "inherits": "fdm_adventurer5m_common", "from": "system", - "setting_id": "GM009", + "setting_id": "ayutlcoenZcr7Hny", "instantiation": "true", "printer_model": "Flashforge Adventurer 5M Pro", "default_print_profile": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", diff --git a/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json index 70729311ff..5d8eddc0a2 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Artemis 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Artemis 0.4 Nozzle", "inherits": "fdm_artemis_common", "from": "system", - "setting_id": "GM001", + "setting_id": "3iGSjKwQd74bDuGc", "instantiation": "true", "printer_variant": "0.4", "printer_model": "Flashforge Artemis", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json index 333694e1b0..59c227c431 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Creator 5 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "8rfkwQO5Zv1CyFxA", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json index a90a6379f3..9af2bb705b 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Creator 5 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "jNm6AagyxA1v0WER", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json index ed2e762094..e25ed9f229 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "abjALI6WWNzy9B5Q", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json index 589c1f5a02..fb960b8d27 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "DVWFCsTdr2KaH4Sk", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json index 416f3545e2..b9343cf430 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.6 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "INeuYQNjvwoK1Cjb", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json index d72e8c892c..7111452aa9 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Creator 5 Pro 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Creator 5 Pro 0.8 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "kdQuVclmnVWz2Vfu", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json index a414d07bed..4456789cce 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_flashforge_common", "from": "system", - "setting_id": "GM001", + "setting_id": "M9iFVHOKivxm3W4B", "instantiation": "true", "printer_model": "Flashforge Guider 2s", "gcode_flavor": "marlin", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json index b18d773db1..b8388ba7c4 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.4 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "g6wtELHjZ8Gr9YPg", "instantiation": "true", "auxiliary_fan": "1", "bed_custom_model": "", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json index 1c6d3b4b80..f2b89e3585 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.6 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "VKlxYdoMbSJ54J6s", "instantiation": "true", "printer_variant": "0.6", "printer_model": "Flashforge Guider 3 Ultra", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json index 8ee9be8b78..1076239de4 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider 3 Ultra 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "Flashforge Guider 3 Ultra 0.8 Nozzle", "inherits": "fdm_guider3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zqSpSCSeNgnxibvd", "instantiation": "true", "printer_variant": "0.8", "printer_model": "Flashforge Guider 3 Ultra", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json index 5bb7ce3652..2ee3538c7a 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.25 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "7CkhY1WmcYAzSUG1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 2a53e60375..b20d6ce763 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.4 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", "from": "system", + "setting_id": "52GYZAaGoTy0CgMf", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json index d0fa8452ee..452673eb55 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "omiMocXNT3cSNOWQ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 52dc1fd69d..92bee1b7dc 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.6 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "YhHvRWwxThp9paux", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json index ae400d977c..3570045562 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.6 nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "vwHCjHQyazbLKcxE", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 a98730ea82..f61d3d7e77 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 0.8 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "Q84FWmcyIdze15DX", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json index 548da4afa4..3eee06cb24 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.25 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "JsOG0rK4CtdAkccy", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 54fe2df219..35e7f5b067 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.4 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.4 Nozzle", "from": "system", + "setting_id": "KUruzX4VuP8d4jLI", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json index d1d3a98445..e355db941c 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.4 nozzle", "inherits": "Flashforge Adventurer 5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "4e0Km4CkNQC8kyqV", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 a706546c17..5ea36cfca8 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.6 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "GJbFChOygWNwDNGH", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json index 57d3d8ba2d..21ae8e77fa 100644 --- a/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json +++ b/resources/profiles/Flashforge/machine/Flashforge Guider4 Pro 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.6 nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "l735Rr0i9NHHOPcG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", 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 dd46eccff1..660d3c342b 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 @@ -3,6 +3,7 @@ "name": "Flashforge Guider4 Pro 0.8 HF nozzle", "inherits": "Flashforge Guider 3 Ultra 0.6 Nozzle", "from": "system", + "setting_id": "FxML8NgInRadUrgi", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "1", diff --git a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json index 0d986e43a6..7ae7c8713f 100644 --- a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "8LSr3bjBCe0LzX0Y", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index 46855a2b71..6d2383f8f1 100644 --- a/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "TbERLagoTx6NV7tK", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json index ff37627a7b..4242eca15d 100644 --- a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "xT9YfFcFW0XWqEU5", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index b8f78717e0..7f364c5872 100644 --- a/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "8cRuz1ipuV5i8Lfk", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json index ce7c187bb4..53af94cb26 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "b4hAz2zG0bxIJiOV", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json index fbbd047ba6..8204f4303e 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "xvqOfhMaGHifSuJR", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json index 995a18f677..fc3a578b3f 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.10mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "DzIWsXfIu4ziz6U3", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json index edd3a84076..d1f8e0e0a5 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "GTN1HFOvLFYfIxHp", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index cdb164bace..9b9f8c49aa 100644 --- a/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "xqllVCHqbCZyN7aS", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json index 04acd270aa..1b85975878 100644 --- a/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Detail @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Detail @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS001", + "setting_id": "1VeWY2d3H1hYEkzL", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json index 35ebbbf9c7..3259f7899a 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Flashforge AD5M 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", + "setting_id": "BWRX9OsfDELetdzN", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json index 9c2ce868c5..51d39b2a5a 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "9tf28POc5JobvF91", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json index 15bec1d96f..11764c0016 100644 --- a/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Fine @Flashforge G3U 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Flashforge G3U 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "XRInSfrQCATmZl6F", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json index 9b1c66e37a..f058304747 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "PEhXTWCBnd96ucdU", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json index 7e982a4986..095f90b237 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "tMLy6Qa5S9uF8PzD", "instantiation": "true", "bridge_speed": "35", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json index ca1d723bf1..bf0191cc4c 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "lmoOQqYi9swkfzCm", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json index d927f3a4a9..c108649dc1 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.12mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "ZoreCk3KNzllg4mA", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json index 62f3a1ab87..b994e3b183 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "TWBBz4xEOWwGsM5Q", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index 143f729020..8848fea149 100644 --- a/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP011", + "setting_id": "m8tMfAWzSm9vmAiL", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json b/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json index e887b672e0..8eafffa0df 100644 --- a/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.13mm Standard @Flashforge AD4 0.3 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.13mm Standard @Flashforge AD4 0.3 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "System", - "setting_id": "GP006", + "setting_id": "iRI5NfTnNLyyGcaa", "instantiation": "true", "initial_layer_acceleration": "1000", "initial_layer_infill_speed": "10", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json index d721b52240..e7801333ff 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF AD5X 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @FF AD5X 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP012", + "setting_id": "GArq2baSPUHlZvAU", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json index c787e3cafd..9b382e0bb2 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @FF G4 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "428QBNgvzjdo8aW7", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json index 98404b2dcb..e17e7abd9c 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @FF G4P 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "0.14mm Standard @FF G4P 0.25 nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", + "setting_id": "ZECvZ9ke1RmhVzPW", "instantiation": "true", "bridge_acceleration": "10%", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json index e12ce04d8e..d7911038b8 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Flashforge AD5M 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "EWb2Ldtxwzp5w4KY", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json index fc20d8a868..6085b8ee3d 100644 --- a/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "inherits": "0.12mm Standard @Flashforge AD5M Pro 0.25 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "JHGAxS2EeRDgi1tZ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.25 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json index 6a2614f3ab..577586baaf 100644 --- a/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS002", + "setting_id": "VPKIYFY99e6eS9Nd", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json index a0a8ab438b..de246cbdbe 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "4H9zjghIX4OfGnxW", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json index a7c5f8cfa7..c232adcd28 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "9Mykvg556mKLX76N", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json index 4631e0a5b6..d997fa594b 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "qIdJBQt3z3OKjG0N", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json index 409afed493..d04feec279 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "OldLqTbxDSL1VKQm", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json index 910308ed2b..50d80a85d7 100644 --- a/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.16mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.16mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "elwhC4evpm8JnC77", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json index 0371b074e3..06c19c6eca 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @FF AD5X 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @FF AD5X 0.6 nozzle", "inherits": "0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "d06fO17ulsLfKJl0", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json index 23669d714d..2a27ff0d15 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @Flashforge AD5M 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", + "setting_id": "wBnr35lLYEBuPHwh", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json index c169771462..e731bbdd4c 100644 --- a/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Fine @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "MoyaqsclwNQsoedL", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json index c57be39241..466ee35922 100644 --- a/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.18mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "w2KW5WrDquPt70Rg", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json index 81a05fc544..f3f8594c48 100644 --- a/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.18mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "HFELwNgbncFBD7kQ", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json b/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json index 121f4bde4e..ad89354ae1 100644 --- a/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm High-Speed @Flashforge AD4 HS Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High-Speed @Flashforge AD4 HS Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP002", + "setting_id": "0tegPpv7m6UpBWqM", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json index 8744abad54..0607df4095 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "3ei5QadUbDuTI3hi", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json index a24ace1fa4..f7afb4e330 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Uk9Svk5KG7qGu1YQ", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.4 nozzle", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json index baede2b9c7..aef45c34bf 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "w0m7t2XNPeoLIQq1", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json index ffc980cd9d..318b57b07f 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4 PLA600.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4 PLA600", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "vJMNZ7ccBUuLYsPG", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json index 372137ad5f..041c2c103b 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "P7f5GsktOKJcRXLP", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json index 8f1cd492f2..bf005ebb41 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF for PLA 600.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P HF for PLA 600", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "2m2XNW6WoXOafYGa", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json index c7302379d2..3aa928a524 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "DVhcIFTv8VAfBnnO", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json index 23ffceded1..baab0c7647 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "boicXzn9lxXQLWx4", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json index 1e16152761..619014c8a4 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD3 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD3 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "LfmuNl9vbT4h1kIG", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json index fcf873aeb6..2e81b9758f 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD4 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD4 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "wL1NzGxmHbZkysh4", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json index 9973a1ba45..498f9c3064 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP001", + "setting_id": "ZRw6CP34Q7qxgPI0", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json index 3cd9d3e226..cf9f12b7f2 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP002", + "setting_id": "kgymNnIFzKcSJgoZ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.4 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json index 8710e53552..1b9fd03771 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Artemis 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge Artemis 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "duPiYbtsPEZKLQr8", "instantiation": "true", "layer_height": "0.18", "initial_layer_print_height": "0.3", 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 eeb3b76db1..aeb81d2dd9 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "inherits": "fdm_process_flashforge_0.20", "from": "system", - "setting_id": "GP003", + "setting_id": "KhWOD428xXaI9mwx", "instantiation": "true", "accel_to_decel_enable": "0", "accel_to_decel_factor": "50%", diff --git a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json index a8e0a72f03..97d51bec7f 100644 --- a/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.20mm Standard @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS003", + "setting_id": "uknnclg0sGPLeGcN", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json b/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json index 825ef594f2..2585dbdaed 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @FF AD5X.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FF AD5X", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "Hd2oXCM7SQEoObst", "instantiation": "true", "brim_type": "auto_brim", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json index 42f1203170..f9f4800ce1 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Flashforge AD5M 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M 0.4 Nozzle", "from": "system", + "setting_id": "GGgmNEFLexIoUx8k", "instantiation": "true", "layer_height": "0.24", "infill_wall_overlap": "25%", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json index e932811135..fca6623293 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Flashforge AD5M Pro 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "xxKfX8J30yv560Sj", "instantiation": "true", "layer_height": "0.24", "infill_wall_overlap": "30%", diff --git a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json index 4f4728ea15..844e0adbd2 100644 --- a/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Draft @Flashforge G3U 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Flashforge G3U 0.4 Nozzle", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "YeElEtVLb55pdAgy", "instantiation": "true", "bridge_flow": "0.96", "bridge_speed": "15", diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json index 1cb46d8285..a321b13712 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @FF AD5X 0.8 nozzle", "inherits": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "M9MmoZSXup35gDA0", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json index 970b2b5b3e..11cdfe6473 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @Flashforge AD5M 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "from": "system", + "setting_id": "8XCfmrFwB0pqNDMS", "instantiation": "true", "layer_height": "0.24", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json index 2e0f2c7d23..ca13529b2d 100644 --- a/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.24mm Fine @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "WNJRafPyAQrLNGfD", "instantiation": "true", "layer_height": "0.24", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json index a701add8fa..1716148c67 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF C5.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF C5", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "vchCynehN4s32swH", "instantiation": "true", "bridge_speed": "35", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json index 54604fb286..6667fbb4bc 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4 HF.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4 HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "vyHqDjWrmpwi2mhg", "instantiation": "true", "bridge_speed": "15", "elefant_foot_compensation": "0.1", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json index 6bbc7d19de..bb2a68e9eb 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Kc2gIRMpDTDclo0e", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json index 383ce24232..33143ab4df 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P HF.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4P HF", "inherits": "0.20mm Standard @Flashforge G3U 0.4 Nozzle", "from": "system", + "setting_id": "ZtHQuwCqbsB1FJxw", "instantiation": "true", "bridge_speed": "15", "brim_type": "auto_brim", diff --git a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json index 9ac5e4a483..2f0460d24c 100644 --- a/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json +++ b/resources/profiles/Flashforge/process/0.24mm Standard @FF G4P.json @@ -3,6 +3,7 @@ "name": "0.24mm Standard @FF G4P", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "Pc5aTH1KOObhSNcK", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.98", "bridge_flow": "0.98", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json index a90a5cfe4c..4154a33665 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "PWm4py8YhHGjZ3FR", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json index d8be6463aa..18ef06a783 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "niA0yhM8YzI7Ni0m", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json index 4e50c03491..7f7777e9a3 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "j3mtmUxolAIxvXkl", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json index 48ae30124a..a2b3f3db1d 100644 --- a/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.25mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "NEq810Zm1mn8DSWl", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json index c5ca0dfbaa..3eda3c3d34 100644 --- a/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Draft @Flashforge Guider 2s 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @Flashforge Guider 2s 0.4 nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GS004", + "setting_id": "twWwqkfSRYeAkuzT", "instantiation": "true", "adaptive_layer_height": "0", "bridge_flow": "1", diff --git a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json index 5e48bc0a75..e17b0e8d9f 100644 --- a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD3 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @Flashforge AD3 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "s29waRwj2c73VB27", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json index 72be039741..ea65c7de1b 100644 --- a/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Fast @Flashforge AD4 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @Flashforge AD4 0.4 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP001", + "setting_id": "HbCSfTDq9CDodIgH", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json index 712facd2b2..ac5e092ffb 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF AD5X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @FF AD5X 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "JlNWAgYsPK0pEnf4", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json index 07500f7c66..246be2b972 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "VbgpUmBZySYfOWFM", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json index 54dc1a4824..c8f574252a 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "akTSEx0Qnj1SL1IU", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json index 4c9e4945a9..238d3e3330 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "2rXWmDHZN5w6Wdyq", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json index feb1f20c27..65f1ad351a 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD3 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD3 0.6 Nozzle", "inherits": "fdm_process_flashforge_common", "from": "system", - "setting_id": "GP003", + "setting_id": "OE7RtnwqWPwa4Vp2", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json index a843ec2a09..cba58e1202 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD4 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD4 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP004", + "setting_id": "fTyYTe7FN6ps1tMJ", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 4 Series 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json index eb218ec631..7540593b77 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "FoJXtPRI5C4JHZTD", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json index d0f4e9f2db..efc774872f 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP004", + "setting_id": "TOMmiGKvaxWTo2B9", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json index f5b971663b..b0a535fe8e 100644 --- a/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.30mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "fdm_process_flashforge_0.30", "from": "system", - "setting_id": "GP003", + "setting_id": "QhXlZPQdK5K6aKpC", "instantiation": "true", "layer_height": "0.3", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json index 41c0d4ce18..e3828836d7 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "pF4T59Q97nEuyVlE", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json index 7eb8fcd1e0..e034721d3c 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "wAaVfZTSRJ39STVa", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json index 0bd74a6e2b..84db75f781 100644 --- a/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.32mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.32mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "1gxibPIjDyqcZV1e", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json index 2dd229990e..ef242e6e88 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ASYmajlurBiRJ8a0", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json index 45aacd1f6b..a4ab95d048 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "irQ6GdItKJN1d6Rt", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json index ed638bfee0..15d9fa86a5 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "n6mjyu5geF4sjscL", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json index ff45278f0c..7c7e132ac3 100644 --- a/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.36mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.36mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "dDRjud5XpEFlptCC", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json index b513182f54..2295822f05 100644 --- a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ewrFp0DwW5yrzgqd", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json index 9b4e1a131c..88c6c33370 100644 --- a/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.3mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "2JLJ1XP0eQhS65oY", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json index 638532cfc2..be419bfc07 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF AD5X 0.8 nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "zkhLAIpGeFPwnYMf", "instantiation": "true", "enable_prime_tower": "1", "exclude_object": "1", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json index 4f366e617a..76caef1d0f 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "ojgMrFiTa9itgNCJ", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json index 7a0999e498..0e44a0b7a6 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.40mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "uie5sTVuopypuKmI", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json index ccf0a4cbf6..f9eef644f6 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", - "setting_id": "GP002", + "setting_id": "u0jpovtEQsNZSkyN", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json index e13edaf428..f0c6dcfda1 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "3ZjvDS1FBf9wSuaO", "instantiation": "true", "compatible_printers": [ "Flashforge Adventurer 5M Pro 0.8 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json index c9f9db84cb..a09e82b668 100644 --- a/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.40mm Standard @Flashforge G3U 0.8 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Flashforge G3U 0.8 Nozzle", "inherits": "fdm_process_flashforge_0.40", "from": "system", - "setting_id": "GP003", + "setting_id": "gTCiZUTED9NajbsZ", "instantiation": "true", "layer_height": "0.4", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json index 14eafe6be8..20fb1c52f9 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @FF AD5X 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @FF AD5X 0.6 nozzle", "inherits": "0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "ePqStrkF9PBgXen1", "instantiation": "true", "brim_type": "auto_brim", "enable_prime_tower": "1", diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json index 6d5b211b1a..f96b08bb2d 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @Flashforge AD5M 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M 0.6 Nozzle", "from": "system", + "setting_id": "oB1VL0tJHAOzLf5N", "instantiation": "true", "layer_height": "0.42", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json index b115258fc5..123fa4ac24 100644 --- a/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Draft @Flashforge AD5M Pro 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge AD5M Pro 0.6 Nozzle", "from": "system", + "setting_id": "TWLGiPjsuVTPg8rz", "instantiation": "true", "layer_height": "0.42", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json index ff359ca50f..8aaa51eb18 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF C5 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF C5 0.6 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "nl91C8p94E4lZpC4", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.6 nozzle", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json index 6925d9da09..ebfb0fb6b5 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "dnesNhyIopLbcMCf", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json index 8ba26b11e6..4f29c0adad 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "Kc7tvmBJJHGQ3RlO", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json index c9882ae7d5..b2428edd02 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4P 0.6 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "qg4NDWl7Kl9kdNVc", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json index 074c4f71b6..66a91699de 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @FF G4P 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "0.42mm Standard @FF G4P 0.6 nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "DZUexA32pXw33NeC", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json b/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json index 02e68ecfa3..7ab706b16e 100644 --- a/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.42mm Standard @Flashforge G3U 0.6 Nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Flashforge G3U 0.6 Nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", - "setting_id": "GP001", + "setting_id": "bDWkZppcXi8NILsC", "instantiation": "true", "compatible_printers": [ "Flashforge Guider 3 Ultra 0.6 Nozzle" diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json index 90e707d1f2..81f78c35d1 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "N4fhrE0QWnUjerQH", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.8 nozzle", diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json index a3356f1971..21b4ba5bbb 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF G4 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "4Tmjt5k6bKXbIf4a", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json index 7f8748ab51..efe9c32e70 100644 --- a/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json +++ b/resources/profiles/Flashforge/process/0.48mm Standard @FF G4P 0.8 HF nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Standard @FF G4P 0.8 HF nozzle", "inherits": "0.30mm Standard @Flashforge G3U 0.6 Nozzle", "from": "system", + "setting_id": "WtrYyqzfWfpDFQ60", "instantiation": "true", "bottom_solid_infill_flow_ratio": "0.96", "bridge_acceleration": "3000", diff --git a/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json index 20f40cf048..ac6aa6d21d 100644 --- a/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.4mm Standard @FF C5 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.4mm Standard @FF C5 0.8 nozzle", "inherits": "0.20mm Standard @Flashforge AD5M Pro 0.4 Nozzle", "from": "system", + "setting_id": "zFdJtm557yiOxwSl", "instantiation": "true", "compatible_printers": [ "Flashforge Creator 5 0.8 nozzle", diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json index 196afc78a6..2adbb2d77e 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @FF AD5X 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @FF AD5X 0.8 nozzle", "inherits": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "NDOQ4LhG0S0b6vAp", "instantiation": "true", "compatible_printers": [ "Flashforge AD5X 0.8 nozzle" diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json index 7305dec096..76407ae796 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @Flashforge AD5M 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M 0.8 Nozzle", "from": "system", + "setting_id": "LfQRk0JFbNDrzGzk", "instantiation": "true", "layer_height": "0.56", "compatible_printers": [ diff --git a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json index aa5b9b3a5e..143605cae4 100644 --- a/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json +++ b/resources/profiles/Flashforge/process/0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle.json @@ -3,6 +3,7 @@ "name": "0.56mm Draft @Flashforge AD5M Pro 0.8 Nozzle", "inherits": "0.40mm Standard @Flashforge AD5M Pro 0.8 Nozzle", "from": "system", + "setting_id": "eVSsUHI5DvdLa7Jg", "instantiation": "true", "layer_height": "0.56", "compatible_printers": [ diff --git a/resources/profiles/FlyingBear.json b/resources/profiles/FlyingBear.json index 37dd501dff..d93bc00e57 100644 --- a/resources/profiles/FlyingBear.json +++ b/resources/profiles/FlyingBear.json @@ -1,6 +1,6 @@ { "name": "FlyingBear", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "FlyingBear configurations", "machine_model_list": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json index c774e3577b..7a296fea35 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic ABS.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TDBNmmGSexhJjBVm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json index bd76817eba..4fe521fcce 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lpa58hsu9IB697v8", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json index b7551cf689..92227f4254 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PC.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MkIN95sonzI0vNXT", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json index 43abe173e7..2bd49d16a1 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PETG.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "id0y4kfJciWjOwh6", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json index de1c15a459..d41a0cdaa6 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic PLA.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yCGisctQQwASw8kc", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json b/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json index 4e0f0b14ed..1ae309f9e9 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear Generic TPU.json @@ -3,7 +3,7 @@ "name": "FlyingBear Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "84YwyW2C94NdN1zl", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json b/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json index 0e14a1dd85..6d3f9019b2 100644 --- a/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json +++ b/resources/profiles/FlyingBear/filament/FlyingBear PLA Hyper.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper", "inherits": "fdm_filament_pla_Hyper", "from": "system", - "setting_id": "GFSA04", + "setting_id": "72RZHGo7eACm2tN5", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json index e1cc94685f..814a100880 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear ABS @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear ABS @Ghost7", "inherits": "fdm_filament_abs @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UyTzid0zVMCxSrgx", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json index 06d8b96872..ecbff8839e 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PA-CF @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PA-CF @Ghost7", "inherits": "fdm_filament_pa @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NZwDOWmMdBYEejNQ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json index 25e09089dc..5a72ae3680 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PC @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PC @Ghost7", "inherits": "fdm_filament_pc @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QYOEUrnmNMUcVOVF", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json index e49dd80ea8..6c727db151 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PETG Basic @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PETG Basic @Ghost7", "inherits": "fdm_filament_pet @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k2os2FPNl8K7vTZN", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json index 80988af649..41f16faf65 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Basic @Ghost7.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pla @Ghost7", "renamed_from": "FlyingBear PLA @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3JBTG6IDrBCnvIhf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json index fa897766c9..488cda963c 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear PLA Hyper @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper @Ghost7", "inherits": "fdm_filament_pla_Hyper @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qQZUolZHgJxgLo17", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json index 7f2f45e0d8..8b66f6d1ca 100644 --- a/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json +++ b/resources/profiles/FlyingBear/filament/Ghost7/FlyingBear TPU Basic @Ghost7.json @@ -3,7 +3,7 @@ "name": "FlyingBear TPU Basic @Ghost7", "inherits": "fdm_filament_tpu @Ghost7", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wQQncT0OCAktGyHr", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json index f900a7954b..a04e655f4b 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear ABS @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear ABS @S1", "inherits": "fdm_filament_abs @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7dtepGnoDDAdPtUh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json index 97d57e5db7..f24c0d882e 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PA-CF @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PA-CF @S1", "inherits": "fdm_filament_pa @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CLggyaDcebZSbqIH", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json index 55b7d73e8e..54fb8a7ca1 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PC @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PC @S1", "inherits": "fdm_filament_pc @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bPeSARy9AGqM8Y32", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json index bc7588cd94..77bc4b151f 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PETG @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PETG @S1", "inherits": "fdm_filament_pet @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yKU5mMW0nKvNH98B", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json index b7d960ba47..3c3fbd5af8 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA @S1", "inherits": "fdm_filament_pla @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k58jL17n8cOla3Gd", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json index 3ed7f8ff33..06148f4f70 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear PLA Hyper @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear PLA Hyper @S1", "inherits": "fdm_filament_pla_Hyper @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h8XGgMBjEwxNkldf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json b/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json index 0f16c2bab3..2cd4a9e943 100644 --- a/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/FlyingBear TPU @S1.json @@ -3,7 +3,7 @@ "name": "FlyingBear TPU @S1", "inherits": "fdm_filament_tpu @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IVFpAlGo8KButueJ", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json b/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json index 4336e67c71..7e37ab1996 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other ABS @S1.json @@ -3,7 +3,7 @@ "name": "Other ABS @S1", "inherits": "fdm_filament_abs_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nadd5NX7eDvEnlKO", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json index 1c46921804..8eff7046ea 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PA-CF @S1.json @@ -3,7 +3,7 @@ "name": "Other PA-CF @S1", "inherits": "fdm_filament_pa_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sSKkzXv1cn33fF7p", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json index 575491554b..9a09e1c0d5 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PC @S1.json @@ -3,7 +3,7 @@ "name": "Other PC @S1", "inherits": "fdm_filament_pc_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mHuxaHppNFZbldHD", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json index e1d316982b..b610388077 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PETG @S1.json @@ -3,7 +3,7 @@ "name": "Other PETG @S1", "inherits": "fdm_filament_pet_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ko5q6BgADth36RJC", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json index 8bf304d686..1df8312686 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PLA @S1.json @@ -3,7 +3,7 @@ "name": "Other PLA @S1", "inherits": "fdm_filament_pla_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sayo3sMQKH4ZdhEk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json b/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json index 720d872fb5..b9913afec4 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other PLA Hyper @S1.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper @S1", "inherits": "fdm_filament_pla_Hyper_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2QHCKH0yDmBzpQnY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json b/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json index f85c81c15d..aa56b7f0f7 100644 --- a/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json +++ b/resources/profiles/FlyingBear/filament/S1/Other TPU @S1.json @@ -3,7 +3,7 @@ "name": "Other TPU @S1", "inherits": "fdm_filament_tpu_other @S1", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wh8PHrEbFYKsQxo0", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json index 6f2b6fd206..633e17dd93 100644 --- a/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_marlin_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9ahoAgKHXW4Y4wMN", "instantiation": "true", "printer_model": "FlyingBear Ghost 6", "gcode_flavor": "marlin2", diff --git a/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json index bf3c1735fa..0944380e72 100644 --- a/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/FlyingBear Reborn3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Reborn3 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yluu0jklGesUFUuk", "instantiation": "true", "printer_model": "FlyingBear Reborn3", "nozzle_diameter": [ diff --git a/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json index c166c46086..4da21780a1 100644 --- a/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/Ghost7/FlyingBear Ghost7 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear Ghost7 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "z9QfjLoeHAlCIdsj", "instantiation": "true", "printer_model": "FlyingBear Ghost7", "auxiliary_fan": "1", diff --git a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json index 7d26ec2bc6..4e176dca31 100644 --- a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "FlyingBear S1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "sV41gmKNaHHKexKv", "instantiation": "true", "printer_model": "FlyingBear S1", "auxiliary_fan": "1", diff --git a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json index 1b51dd62b8..efb5b73211 100644 --- a/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.08mm Extra Fine @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OMhI4yqayz0VRf7s", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json index 6c302380ea..74745fb399 100644 --- a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "dZMzPwM5ArOA315D", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json index a5307aee74..b1b78f293a 100644 --- a/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.12mm Fine @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "abROLgQer55HN2Ip", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json index 93d498dcde..b7aa5945e5 100644 --- a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "33I5wTHzQ00K99NS", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json index ec7f910287..b8200ed6aa 100644 --- a/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.16mm Optimal @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "5Mgf7IN3oJG6goRS", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json index bec653dcb8..53b3b97531 100644 --- a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "X2GZ8IKYLrs3qVId", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json index c59aa3d6de..0276f5b6a3 100644 --- a/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.20mm Standard @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "r3aIXL8Weo1sx6w8", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json index bdb038a18d..248c0318af 100644 --- a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json +++ b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Ghost 6 0.4 nozzle", "inherits": "fdm_process_ghost_6", "from": "system", - "setting_id": "GP004", + "setting_id": "FWGFDXzBWjGXOtlO", "instantiation": "true", "compatible_printers": [ "FlyingBear Ghost 6 0.4 nozzle" diff --git a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json index 75b11083b6..3bc9bc783f 100644 --- a/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json +++ b/resources/profiles/FlyingBear/process/0.24mm Draft @FlyingBear Reborn3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Reborn3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4oeomEc4XboCLPeF", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json index e1e907df4d..36db9c70c7 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.08mm Extra Fine @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "MgVBCShfLwCDXcK7", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json index 10b7d486a2..8b90f8482f 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.12mm Fine @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "IcBUb661Z0WfAsWx", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json index 5135b85c7e..36f8e3705c 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.16mm Optimal @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP005", + "setting_id": "1wZC0qr91DtOGVAo", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json index afdad7ddb0..ca5c7ea79f 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.20mm Standard @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "zuFTefM8bNf076I6", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json b/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json index afa51e07c3..46d9c72939 100644 --- a/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json +++ b/resources/profiles/FlyingBear/process/Ghost7/0.24mm Draft @FlyingBear Ghost7.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear Ghost7", "inherits": "fdm_process_common_Ghost7", "from": "system", - "setting_id": "GP004", + "setting_id": "inALsOZiG6df6cKY", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json index 14d86d75fe..5213c91265 100644 --- a/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.08mm Extra Fine @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "OgaLwywBqDMCcshT", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json index 26f92e1354..e7b8d33acb 100644 --- a/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.12mm Fine @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "6n3NvhpkP9UkpxFW", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json index 607f17c9b0..27c9643f05 100644 --- a/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.16mm Optimal @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP005", + "setting_id": "tFKoVljYRJ5IDfpJ", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json index 31fa7b055e..085a9788de 100644 --- a/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.20mm Standard @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "st8UPLdz59IKb63k", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json b/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json index dc6202ec93..2d43feeb62 100644 --- a/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json +++ b/resources/profiles/FlyingBear/process/S1/0.24mm Draft @FlyingBear S1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FlyingBear S1", "inherits": "fdm_process_common_S1", "from": "system", - "setting_id": "GP004", + "setting_id": "uB9e5NrlS2hkiGTQ", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/Folgertech.json b/resources/profiles/Folgertech.json index 00c443f558..125cba3d46 100644 --- a/resources/profiles/Folgertech.json +++ b/resources/profiles/Folgertech.json @@ -1,6 +1,6 @@ { "name": "Folgertech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Folgertech configurations", "machine_model_list": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json index 42fd989d17..6cc2611949 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-5 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dygqUQePCtiEOSMX", "instantiation": "true", "printer_model": "Folgertech FT-5", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json index 14f122e55f..c909a09c4d 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-5 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "j5KVIJqBIqEOJKic", "instantiation": "true", "printer_model": "Folgertech FT-5", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json index a4cb040635..6e49be12fe 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-6 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "NHJXX7EfrlyITak3", "instantiation": "true", "printer_model": "Folgertech FT-6", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json index 2d576ea0cf..77b1f6eb7a 100644 --- a/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech FT-6 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech FT-6 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM002", + "setting_id": "b3qSaZ3qXkGX08eM", "instantiation": "true", "printer_model": "Folgertech FT-6", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json index fa1fcaa6c2..490d79b3fe 100644 --- a/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech i3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech i3 0.4 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Pr3Xa7tsNBETM1Xy", "instantiation": "true", "printer_model": "Folgertech i3", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json b/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json index dc7c18d64b..40cf5fbf82 100644 --- a/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json +++ b/resources/profiles/Folgertech/machine/Folgertech i3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Folgertech i3 0.6 nozzle", "inherits": "fdm_folgertech_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mItbfpWJCkszTOSD", "instantiation": "true", "printer_model": "Folgertech i3", "nozzle_diameter": [ diff --git a/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json b/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json index b5af344675..de258992ea 100644 --- a/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json +++ b/resources/profiles/Folgertech/process/0.08mm Extra Fine @FT.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP001", + "setting_id": "4mumHLuCrFPe3ylw", "instantiation": "true", "layer_height": "0.08", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.12mm Fine @FT.json b/resources/profiles/Folgertech/process/0.12mm Fine @FT.json index 76d4f9b368..54ccd0ea11 100644 --- a/resources/profiles/Folgertech/process/0.12mm Fine @FT.json +++ b/resources/profiles/Folgertech/process/0.12mm Fine @FT.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP002", + "setting_id": "nwwwBXK00UOdR7lq", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json b/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json index c9d76be2bf..1f77e050be 100644 --- a/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json +++ b/resources/profiles/Folgertech/process/0.16mm Optimal @FT.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP003", + "setting_id": "NQZcXAQfpzNZQvG7", "instantiation": "true", "layer_height": "0.16", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json index 0a95fb975b..edff6f4845 100644 --- a/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.18mm Fine @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP028", + "setting_id": "Pzfn0p3ZjpyUpM4w", "instantiation": "true", "layer_height": "0.18", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.20mm Standard @FT.json b/resources/profiles/Folgertech/process/0.20mm Standard @FT.json index 62290f4e4e..01d76e08b4 100644 --- a/resources/profiles/Folgertech/process/0.20mm Standard @FT.json +++ b/resources/profiles/Folgertech/process/0.20mm Standard @FT.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WKICuro95QxmuNhM", "instantiation": "true", "layer_height": "0.2", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.20mm Strength @FT.json b/resources/profiles/Folgertech/process/0.20mm Strength @FT.json index 43067d07f4..7fe88e583c 100644 --- a/resources/profiles/Folgertech/process/0.20mm Strength @FT.json +++ b/resources/profiles/Folgertech/process/0.20mm Strength @FT.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP013", + "setting_id": "OvKEMM1AL26tMJST", "instantiation": "true", "outer_wall_speed": "30", "wall_loops": "6", diff --git a/resources/profiles/Folgertech/process/0.24mm Draft @FT.json b/resources/profiles/Folgertech/process/0.24mm Draft @FT.json index d171f47c32..4dbc875585 100644 --- a/resources/profiles/Folgertech/process/0.24mm Draft @FT.json +++ b/resources/profiles/Folgertech/process/0.24mm Draft @FT.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP005", + "setting_id": "vFpvNUSpIFUs8E3U", "instantiation": "true", "layer_height": "0.24", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json index 83e6cc1c7f..503a3247dc 100644 --- a/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.24mm Optimal @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP029", + "setting_id": "xpJM3hRxkXV2Q5nO", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json b/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json index 56c6f96e5c..7196655c57 100644 --- a/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json +++ b/resources/profiles/Folgertech/process/0.28mm Extra Draft @FT.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @FT 0.4 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP006", + "setting_id": "RqnCCylrhzENGF0k", "instantiation": "true", "layer_height": "0.28", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json index 03f074c5bf..f1e657a0a4 100644 --- a/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.30mm Standard @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP010", + "setting_id": "wzCr0a8vWIVfd1mD", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json index b4f0cf6559..f290e97b36 100644 --- a/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.30mm Strength @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP036", + "setting_id": "hw5cYiRtLaVrVKhE", "instantiation": "true", "layer_height": "0.3", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json index 1cc09d2a02..46ef2bfafb 100644 --- a/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.36mm Draft @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP030", + "setting_id": "46F2ROXRIlXzANCi", "instantiation": "true", "layer_height": "0.36", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json b/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json index 770ca1530b..b1bccf9f21 100644 --- a/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json +++ b/resources/profiles/Folgertech/process/0.42mm Extra Draft @FT 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @FT 0.6 nozzle", "inherits": "fdm_process_folgertech_common", "from": "system", - "setting_id": "GP031", + "setting_id": "TvdVRkRKDJ5CSWz8", "instantiation": "true", "layer_height": "0.42", "initial_layer_print_height": "0.3", diff --git a/resources/profiles/Geeetech.json b/resources/profiles/Geeetech.json index 4bee5a1f6a..cdd862e161 100644 --- a/resources/profiles/Geeetech.json +++ b/resources/profiles/Geeetech.json @@ -1,6 +1,6 @@ { "name": "Geeetech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Geeetech configurations", "machine_model_list": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json index 9887c05f93..6fd6849829 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_025", + "setting_id": "aopa7gY8D0nHvg4f", "instantiation": "true", "printer_model": "Geeetech A10 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json index 06cafe210d..6d0100301c 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_021", + "setting_id": "KAcVvCaNu9EE30pd", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json index 1a76a83dab..5c99ed6221 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_022", + "setting_id": "OJpmV0kGTagK2i5S", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json index 7be70d85df..dad0dd06b1 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_023", + "setting_id": "Q8A2JYBIymZoJWtl", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json index fda1b3e3eb..ee95cb6ee9 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_024", + "setting_id": "JKfflzox9NHHB7VB", "instantiation": "true", "printer_model": "Geeetech A10 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json index 46fb86c883..048bea0cf7 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A10 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A10 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_026", + "setting_id": "C7Y10mVPt2IFO7t1", "instantiation": "true", "printer_model": "Geeetech A10 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json index 37d1c02e5f..f6be64133f 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_027", + "setting_id": "XxAQSo972Y0l1iUg", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json index 97332f7e19..05da93dab7 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_028", + "setting_id": "hd9whGPNVBk7NYWX", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json index b3b5800a30..d7ea800abe 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_029", + "setting_id": "sATayUQZW3PjFWZR", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json index 0cb69cd2f0..2a32af9588 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_030", + "setting_id": "8jPP9GGGoyRq5XWv", "instantiation": "true", "printer_model": "Geeetech A20", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json index 405feaebf9..f5ba521f48 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_031", + "setting_id": "bMMEwH5HswPZ38d1", "instantiation": "true", "printer_model": "Geeetech A20 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json index 3a36cd9dab..954c08785a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A20 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A20 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_032", + "setting_id": "1iUHXnnCVClqr16y", "instantiation": "true", "printer_model": "Geeetech A20 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json index b948daaf46..982b8534ac 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_037", + "setting_id": "14hZSmKYFjsnzB4h", "instantiation": "true", "printer_model": "Geeetech A30 M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json index 45e83394fa..d457a9734c 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_033", + "setting_id": "xgv0XAgNsGRNgoF1", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json index 8b7e0b43bf..a846379f70 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_034", + "setting_id": "dlV49278pWNWopID", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json index 0f04a3195d..b7ff8a96db 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_035", + "setting_id": "Vgv7HnLw7FvoYvWM", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json index 0b9834bd9b..8743a78eb4 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_036", + "setting_id": "WPoGX3b9AuqqtNYU", "instantiation": "true", "printer_model": "Geeetech A30 Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json index 68af2e4834..cb35566256 100644 --- a/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech A30 T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech A30 T 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_038", + "setting_id": "wZylOEjg5oFnqdRk", "instantiation": "true", "printer_model": "Geeetech A30 T", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json index 1ae5cb6cae..832c3ef8fb 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_039", + "setting_id": "OV91mFVhJUjbtAnA", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json index ce46d185f5..8493bbdc3a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_040", + "setting_id": "DUmpynR40xf0g480", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json index e8ea5ccf8f..b06e7ecdf6 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_041", + "setting_id": "IBQJHDOZJemko6a0", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json index 4c61f65bba..89a206a327 100644 --- a/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech M1 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_042", + "setting_id": "X32Nb2ZYiOOXsSXM", "instantiation": "true", "printer_model": "Geeetech M1", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json index b1bef84471..161dc60c4e 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_005", + "setting_id": "OjTjIa678KTvfAmw", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json index 6290f9c453..fc34b40a5f 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_006", + "setting_id": "KgTtTFCWYRNgxr4s", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json index c4c201c1c6..b8ecc2dd07 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_007", + "setting_id": "Boy40sguZELCcSYU", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json index b214ed5628..62a81853fa 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_008", + "setting_id": "kpqCTvVvrWSszRor", "instantiation": "true", "printer_model": "Geeetech Mizar", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json index 5889aaf5df..59f39637a5 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar M 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar M 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_021", + "setting_id": "PqM7ZlroG6etKd2R", "instantiation": "true", "printer_model": "Geeetech Mizar M", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json index c4d709c882..9c728a0add 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_017", + "setting_id": "1h9CYaulDN5YSWpN", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json index f09131c8a9..50ba23e728 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_018", + "setting_id": "rs2JjIm6FIeGOpSH", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json index 358fabe132..c5b339fe59 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_019", + "setting_id": "iVRcrHHKbV7k8UHq", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json index 1e0d43a50f..d3fbe0192a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Max 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Max 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_020", + "setting_id": "cGWLPgJ0HuM2Y2Ci", "instantiation": "true", "printer_model": "Geeetech Mizar Max", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json index 14dbff7c1b..873b6b7fcd 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_013", + "setting_id": "QTZasD2D7lzljVZo", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json index 1b7c5fbb8d..64c7e73b7f 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_014", + "setting_id": "9ZUwovRc1geEqeN3", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json index 560f92bcb8..6ef8ddfe0b 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_015", + "setting_id": "mK8o5qrnAzMJ0SDZ", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json index 35dd40cf4c..32bce53318 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar Pro 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_016", + "setting_id": "i2clRQbN6FcPUuEd", "instantiation": "true", "printer_model": "Geeetech Mizar Pro", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json index 36e8b14230..9f9bbe7151 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_009", + "setting_id": "JWBcfgeMBVzXHm5I", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json index 6a76a26f30..2f3f2a712d 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_010", + "setting_id": "Xf47NtjAuBqgXCxI", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json index d288753bfb..3cc1e4aa6a 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_011", + "setting_id": "8Nv5A5sELADxSoH5", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json index 21bf9bc48e..3c71160eb6 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Mizar S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Mizar S 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_012", + "setting_id": "zGPSdq8x3D5DQqhB", "instantiation": "true", "printer_model": "Geeetech Mizar S", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json index 207f74b86d..35a3ada15b 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.2 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_002", + "setting_id": "x7MXIqTu4NRlelRb", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json index 2fafdeabbe..22bc7668e7 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.4 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_001", + "setting_id": "hOK6V2JjHn2UVFtd", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json index 06d4183259..20a3bba340 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.6 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_003", + "setting_id": "0uHAQNJW9kimsunJ", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json index b268c65426..010095dfe2 100644 --- a/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/machine/Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Geeetech Thunder 0.8 nozzle", "inherits": "fdm_geeetech_common", "from": "system", - "setting_id": "GM_GEEETECH_004", + "setting_id": "byTGr8PXRrz0Yl22", "instantiation": "true", "printer_model": "Geeetech Thunder", "default_filament_profile": [ diff --git a/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json index c2984ee9a2..878f337c3d 100644 --- a/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.06mm Fine @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_001", + "setting_id": "fj7nJMq8Beo60kq7", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json index 4e232b667e..92b60955f6 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.08", "from": "system", - "setting_id": "GP_Geeetech_038", + "setting_id": "NaLK6UGsmP7nI9Qk", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json index 1b5b1876f1..0c50e4f53a 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.08", "from": "system", - "setting_id": "GP_Geeetech_003", + "setting_id": "gp1Uol5H2NNxsPFX", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json index cb4a4d2bbd..ff1e273744 100644 --- a/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.08mm Extra Fine @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Geeetech common", "inherits": "fdm_process_geeetech_0.08", "from": "system", - "setting_id": "GP_Geeetech_002", + "setting_id": "1MPhaoeIPZn5O9Yr", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json index fb14bb7f84..a2661c0685 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_039", + "setting_id": "LU6126ZnQZUqJCuQ", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json index 1282cd13a2..686dfdd4fa 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_005", + "setting_id": "zSaB97GyLOLna1et", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json index ee9e08235b..3f2b2c5a15 100644 --- a/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.08mm Optimal @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_004", + "setting_id": "7BZA3ZFkPPAenzZJ", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json index 44e07a87fb..e26dce364d 100644 --- a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.10", "from": "system", - "setting_id": "GP_Geeetech_040", + "setting_id": "5egeJWQ8ymyNiOS0", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json index 9054905804..ae6dd5476c 100644 --- a/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.10mm Fine @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.10", "from": "system", - "setting_id": "GP_Geeetech_006", + "setting_id": "zYZamRYnERchCbE9", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json index 4136930fae..3400d7afa0 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_041", + "setting_id": "yTKioYDUjlaSalwZ", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json index 1c8c034cbd..2da6cebf41 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_008", + "setting_id": "TtyXYNnMjlptZc05", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json index c81b215a0a..5cd5e0d817 100644 --- a/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.10mm Standard @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_007", + "setting_id": "8BwGhU9ArwWlJRrq", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json index eee2f91cff..bec6e319e5 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_042", + "setting_id": "xmuo1p8Qc2WLJfrF", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json index 281783aa6d..3ee5563fd1 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_010", + "setting_id": "wxH4KvLM4AgLY55K", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json index 35d03438b1..3504ec2ad4 100644 --- a/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.12mm Draft @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_009", + "setting_id": "vzQ0twyVes1j0KvF", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json b/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json index 432a298509..b0b99e3060 100644 --- a/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.12mm Fine @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Geeetech common", "inherits": "fdm_process_geeetech_0.12", "from": "system", - "setting_id": "GP_Geeetech_011", + "setting_id": "DCHmMexqN9CUIzOH", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json index 66f24747f9..d0f9d8e2fd 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech M1 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_043", + "setting_id": "WSo55dC3p0Da1W5D", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json index adcecf65ef..ab8d7a033b 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech Thunder 0.2 nozzle", "inherits": "fdm_process_Geeetech_HS_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_013", + "setting_id": "9s5WAidj0l7udJB9", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json index 782d11212c..3509f5fdc3 100644 --- a/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json +++ b/resources/profiles/Geeetech/process/0.14mm Extra Draft @Geeetech common 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @Geeetech common 0.2 nozzle", "inherits": "fdm_process_geeetech_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP_Geeetech_012", + "setting_id": "RL651lgmpmhhBgK5", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.2 nozzle", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json index d9449baef9..82db1ac522 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.16", "from": "system", - "setting_id": "GP_Geeetech_044", + "setting_id": "rqtgNFnnBYkPcc0e", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json index 22cb82e01e..ef55615afb 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.16", "from": "system", - "setting_id": "GP_Geeetech_015", + "setting_id": "QW9Fovxf237jeqvS", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json index 6eb121cb9c..6cf26a4eda 100644 --- a/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.16mm Optimal @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Geeetech common", "inherits": "fdm_process_geeetech_0.16", "from": "system", - "setting_id": "GP_Geeetech_014", + "setting_id": "MD7y5RFFIpuz2J5T", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json index b4e7850e80..039ed1c1d4 100644 --- a/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.18mm Fine @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_016", + "setting_id": "a2zfSi1rzZrqtdSn", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json index df21bcd0c2..54a2ef4a10 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.20", "from": "system", - "setting_id": "GP_Geeetech_046", + "setting_id": "hc7QEhbu0dKGXxO4", "instantiation": "true", "line_width": "0.40", "outer_wall_line_width": "0.40", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json index 017a940898..9318a2f4f7 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.20", "from": "system", - "setting_id": "GP_Geeetech_018", + "setting_id": "LbbZZy7Mek5Zj75c", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json index 6a3cb17d05..d3b147b91f 100644 --- a/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.20mm Standard @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Geeetech common", "inherits": "fdm_process_geeetech_0.20", "from": "system", - "setting_id": "GP_Geeetech_017", + "setting_id": "FAUiIEfWf5tHwkvt", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json b/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json index 495b3a0b19..bb51b878a2 100644 --- a/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.20mm Strength @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @Geeetech common", "inherits": "fdm_process_geeetech_0.20", "from": "system", - "setting_id": "GP_Geeetech_019", + "setting_id": "pUmli2ME3h4kTilQ", "instantiation": "true", "outer_wall_speed": "25", "sparse_infill_density": "25%", diff --git a/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json b/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json index 1233c990e6..4099caa1e4 100644 --- a/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.24mm Draft @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Geeetech common", "inherits": "fdm_process_geeetech_0.24", "from": "system", - "setting_id": "GP_Geeetech_020", + "setting_id": "5TpORjH7TwFfPTrG", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json index 593d773628..604a5ecac4 100644 --- a/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Fine @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_021", + "setting_id": "iwHQDV3U2llp3vzY", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json index 65f45da7a9..ab304b4e36 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_045", + "setting_id": "tO8DKxjoFp9qkGxc", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json index 14332fd04b..71a3626a42 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_023", + "setting_id": "m3SgitPjNHsB1f2r", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json index 1d232c640f..b4c14f7055 100644 --- a/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.24mm Optimal @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_022", + "setting_id": "tIujZIJjTMwRmsbn", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json index 8d563ec66a..9977eecaf3 100644 --- a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json +++ b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech M1.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Geeetech M1", "inherits": "fdm_process_Geeetech_HS_0.25", "from": "system", - "setting_id": "GP_Geeetech_047", + "setting_id": "UlYQo4uJuEo2mYsD", "instantiation": "true", "line_width": "0.40", "outer_wall_line_width": "0.40", diff --git a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json index e3ccdf67b1..c18a3a8eed 100644 --- a/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json +++ b/resources/profiles/Geeetech/process/0.25mm Draft @Geeetech Thunder.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Geeetech Thunder", "inherits": "fdm_process_Geeetech_HS_0.25", "from": "system", - "setting_id": "GP_Geeetech_024", + "setting_id": "rZx2bMXMIj70jjlU", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json b/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json index fe5811b898..8e61bc1c55 100644 --- a/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json +++ b/resources/profiles/Geeetech/process/0.28mm Extra Draft @Geeetech common.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Geeetech common", "inherits": "fdm_process_geeetech_0.28", "from": "system", - "setting_id": "GP_Geeetech_025", + "setting_id": "flsrRhwKpNEQMjch", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.4 nozzle", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json index e4e145a5e8..2093bc84fa 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_048", + "setting_id": "r0yCFNbEdiV6uGeI", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json index b7637c3dc4..83e96cd81c 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_027", + "setting_id": "eVjW0DNUMWsqV0fV", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json index 55d7713fa4..e4b5d345cc 100644 --- a/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Standard @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_026", + "setting_id": "GmZ0axpYwkepgSuG", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json index 987ddf6894..008506764d 100644 --- a/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.30mm Strength @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_028", + "setting_id": "pq6q54Droc2vlNCq", "instantiation": "true", "wall_loops": "4", "sparse_infill_density": "25%", diff --git a/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json index d2a27e7289..1330f44a9c 100644 --- a/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.32mm Optimal @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_029", + "setting_id": "tvTgGNKUD7Pyhew5", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json index 67c1f996a0..c198285191 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech M1 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_049", + "setting_id": "7dLPmG2GiJcmnqlk", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json index 261d318f84..137a634aea 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech Thunder 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech Thunder 0.6 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_031", + "setting_id": "YD2ptKncdCIqBqNQ", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json index 465354df95..8e2952e858 100644 --- a/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Draft @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_030", + "setting_id": "K71Uw32oIj7UPbPH", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json index f272a26ec2..48abce3b00 100644 --- a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Optimal @Geeetech M1 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_050", + "setting_id": "mcwDI7oc0HOIUaiI", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json index 529a625385..44650ef114 100644 --- a/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.36mm Optimal @Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Optimal @Geeetech Thunder 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.36_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_032", + "setting_id": "vahGH49uW93BAABu", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json index 62e265339c..889372119f 100644 --- a/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.40mm Standard @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_033", + "setting_id": "wUcv6T33q7BHi6Qu", "instantiation": "true", "elefant_foot_compensation": "0.15", "compatible_printers": [ diff --git a/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json b/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json index 3f1c89a7ce..beba0ec367 100644 --- a/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json +++ b/resources/profiles/Geeetech/process/0.42mm Extra Draft @Geeetech common 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Geeetech common 0.6 nozzle", "inherits": "fdm_process_geeetech_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP_Geeetech_034", + "setting_id": "kftQJ545l3lT5v3U", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.6 nozzle", diff --git a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json index 6a6ccffa43..db7454eb10 100644 --- a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.44mm Draft @Geeetech M1 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.44_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_051", + "setting_id": "ekh9y1YlDb705tRt", "instantiation": "true", "initial_layer_speed": "30", "initial_layer_infill_speed": "50", diff --git a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json index 4c19fc7844..15d8ba3940 100644 --- a/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.44mm Draft @Geeetech Thunder 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.44mm Draft @Geeetech Thunder 0.8 nozzle", "inherits": "fdm_process_Geeetech_HS_0.44_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_035", + "setting_id": "gCkw7KEvUTkCvdtV", "instantiation": "true", "default_acceleration": "5000", "top_surface_acceleration": "3000", diff --git a/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json index 5e807339e4..2e8097871e 100644 --- a/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.48mm Draft @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_036", + "setting_id": "Chzhvn6bHi5HjUJs", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json b/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json index 8309a5b5da..c6d917875e 100644 --- a/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json +++ b/resources/profiles/Geeetech/process/0.56mm Extra Draft @Geeetech common 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Geeetech common 0.8 nozzle", "inherits": "fdm_process_geeetech_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP_Geeetech_037", + "setting_id": "iYCfOISMf21rpxvu", "instantiation": "true", "compatible_printers": [ "Geeetech A10 Pro 0.8 nozzle", diff --git a/resources/profiles/Ginger Additive.json b/resources/profiles/Ginger Additive.json index b27cf4a94c..6ca48c71ec 100644 --- a/resources/profiles/Ginger Additive.json +++ b/resources/profiles/Ginger Additive.json @@ -1,6 +1,6 @@ { "name": "Ginger Additive", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "Ginger configuration", "machine_model_list": [ diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json index 8e9a78329f..45c67d8876 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PETG.json @@ -1,8 +1,10 @@ { "type": "filament", "name": "Ginger Generic PETG", + "renamed_from": "Ginger Generic rPETG", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "ue95N2e65rdp5K6c", "instantiation": "true", "filament_vendor": [ "Generic" diff --git a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json index e759ec1cdb..8038a710c0 100644 --- a/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json +++ b/resources/profiles/Ginger Additive/filament/Ginger Generic PLA.json @@ -1,8 +1,10 @@ { "type": "filament", "name": "Ginger Generic PLA", + "renamed_from": "Ginger Generic rPLA", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "Z1scjKDBFoDaTa2C", "instantiation": "true", "filament_vendor": [ "Generic" diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json index 9d108c4eea..0d5f4e1319 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 1.2 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 1.2 nozzle", "renamed_from": "ginger G1 1.2 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "XkyfjrZzk0nWQkog", "instantiation": "true", "printer_settings_id": "Ginger G1 1.2 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json index ef00e7c2f6..75e99fe413 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 3.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 3.0 nozzle", "renamed_from": "ginger G1 3.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "dhUNr6odQIkoPSr5", "instantiation": "true", "printer_settings_id": "Ginger G1 3.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json index 446b35c55b..bca5864028 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 5.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 5.0 nozzle", "renamed_from": "ginger G1 5.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "zexhNldsr0gASsVT", "instantiation": "true", "printer_settings_id": "Ginger G1 5.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json index 70d8e48458..abf41daf4e 100644 --- a/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json +++ b/resources/profiles/Ginger Additive/machine/Ginger G1 8.0 nozzle.json @@ -3,6 +3,7 @@ "name": "Ginger G1 8.0 nozzle", "renamed_from": "ginger G1 8.0 nozzle", "inherits": "Ginger_G1_common", + "setting_id": "AcgyffYDZivYtKFi", "instantiation": "true", "printer_settings_id": "Ginger G1 8.0 nozzle", "max_layer_height": [ diff --git a/resources/profiles/Ginger Additive/process/0.60mm Standard.json b/resources/profiles/Ginger Additive/process/0.60mm Standard.json index 33a2b4bce9..a04b50481c 100644 --- a/resources/profiles/Ginger Additive/process/0.60mm Standard.json +++ b/resources/profiles/Ginger Additive/process/0.60mm Standard.json @@ -3,6 +3,7 @@ "name": "0.60mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "DjZUwrFvdniWLKLX", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_shell_layers": "0", diff --git a/resources/profiles/Ginger Additive/process/1.50mm Standard.json b/resources/profiles/Ginger Additive/process/1.50mm Standard.json index 307e510bda..0f13fa4221 100644 --- a/resources/profiles/Ginger Additive/process/1.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/1.50mm Standard.json @@ -3,6 +3,7 @@ "name": "1.50mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "dgDdnVOmSOYGK6Az", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json index 72f5e6a38e..dbc32b030e 100644 --- a/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json +++ b/resources/profiles/Ginger Additive/process/1.80mm Vasemode.json @@ -3,6 +3,7 @@ "name": "1.80mm Vasemode", "inherits": "fdm_process_common", "from": "User", + "setting_id": "J6eZDCuu5egRTMlY", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/2.50mm Standard.json b/resources/profiles/Ginger Additive/process/2.50mm Standard.json index 1c253411aa..5b0aacb049 100644 --- a/resources/profiles/Ginger Additive/process/2.50mm Standard.json +++ b/resources/profiles/Ginger Additive/process/2.50mm Standard.json @@ -3,6 +3,7 @@ "name": "2.50mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "s1uGrnaX5CkNC1b6", "instantiation": "true", "accel_to_decel_enable": "0", "bottom_solid_infill_flow_ratio": "1", diff --git a/resources/profiles/Ginger Additive/process/4.00mm Standard.json b/resources/profiles/Ginger Additive/process/4.00mm Standard.json index b85b39b2ca..e6c8e8267f 100644 --- a/resources/profiles/Ginger Additive/process/4.00mm Standard.json +++ b/resources/profiles/Ginger Additive/process/4.00mm Standard.json @@ -3,6 +3,7 @@ "name": "4.00mm Standard", "inherits": "fdm_process_common", "from": "User", + "setting_id": "iDovRylIX6ufYedC", "instantiation": "true", "accel_to_decel_enable": "0", "brim_type": "outer_only", diff --git a/resources/profiles/InfiMech.json b/resources/profiles/InfiMech.json index 8df27776d7..7ae4c46fb4 100644 --- a/resources/profiles/InfiMech.json +++ b/resources/profiles/InfiMech.json @@ -1,6 +1,6 @@ { "name": "InfiMech", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "1", "description": "InfiMech configurations", "machine_model_list": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json index 32a7ef27bb..ab07650434 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech ABS @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @EX+APS", "inherits": "fdm_filament_abs @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3EdHfL9KE4oRVHB7", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json index 7b0679e25f..0173f7ee05 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PA-CF @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @EX+APS", "inherits": "fdm_filament_pa @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6YMXdKicP2hGUUJn", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json index 7b4d0b9aea..c68955287b 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PC @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @EX+APS", "inherits": "fdm_filament_pc @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GsYpyooWb6ymAb36", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json index d8d1db53d0..39d510f085 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PETG @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @EX+APS", "inherits": "fdm_filament_pet @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sNsRp3vHhcWAxp7d", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json index 5487b7a746..8d715771b9 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Basic @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Basic @EX+APS", "inherits": "fdm_filament_pla @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UTrjyqqetOSYNZxJ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json index 801d26eb98..cbc94ccedd 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech PLA Hyper @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @EX+APS", "inherits": "fdm_filament_pla_Hyper @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p08bW50lbzMjwL5B", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json b/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json index 3ea2992a39..9632d002fb 100644 --- a/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json +++ b/resources/profiles/InfiMech/filament/EX+APS/InfiMech TPU Basic @EX+APS.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU Basic @EX+APS", "inherits": "fdm_filament_tpu @EX+APS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fy9sPlaVkaXHBxbH", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json index b2abe19afc..05b1f4e017 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech ABS @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @EX", "inherits": "fdm_filament_abs @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e6st01mMFr98LVEH", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json index 09428fad05..3042fe20f8 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PA-CF @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @EX", "inherits": "fdm_filament_pa @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qPCd5oTrCmZi63Ng", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json index 9d53ca348f..b1c46585e0 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PC @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @EX", "inherits": "fdm_filament_pc @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Uc2o223YSyShp7EI", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json index 031ed0818b..47172fa13a 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PETG @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @EX", "inherits": "fdm_filament_pet @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5vqLJrKLKv40sT7y", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json index f25c867578..071d0eb53c 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Basic @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Basic @EX", "inherits": "fdm_filament_pla @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bGOpriWvEFZOmqR4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json index 90a3b94c1a..1fab11094e 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech PLA Hyper @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @EX", "inherits": "fdm_filament_pla_Hyper @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y8A92Dw8EMplnZAM", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json b/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json index 6656294285..b72767fc58 100644 --- a/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json +++ b/resources/profiles/InfiMech/filament/EX/InfiMech TPU Basic @EX.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU Basic @EX", "inherits": "fdm_filament_tpu @EX", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vAMeXNwHNVMKYWz3", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json index 075b6bf003..202565b819 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech ABS @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech ABS @HSN", "inherits": "fdm_filament_abs @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QnEhnvxibr6g1nou", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json index d0602ff91b..3f6524b54c 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PA-CF @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PA-CF @HSN", "inherits": "fdm_filament_pa @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L1j3mDKXjE2RKO1B", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json index 9eb1d2f891..35a3314a90 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PC @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PC @HSN", "inherits": "fdm_filament_pc @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HBNOABPFLninXsW6", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json index 6a59dfe3d3..1997c1b375 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PETG @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PETG @HSN", "inherits": "fdm_filament_pet @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DJyFBjQ5n9n1UHv0", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json index a39f79f4f4..f3118fe1d6 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA @HSN", "inherits": "fdm_filament_pla @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NWKMG5q4ITfHcYOD", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json index 6e1ff9429a..a7988eaa70 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech PLA Hyper @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper @HSN", "inherits": "fdm_filament_pla_Hyper @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fAw5pB53L8ZT1Fkm", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json b/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json index a0d73cb070..098ed99ae0 100644 --- a/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/InfiMech TPU @HSN.json @@ -3,7 +3,7 @@ "name": "InfiMech TPU @HSN", "inherits": "fdm_filament_tpu @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CvTHZpKuTaGS186F", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json index 9380bf810b..c7b6451fab 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other ABS @HSN.json @@ -3,7 +3,7 @@ "name": "Other ABS @HSN", "inherits": "fdm_filament_abs_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IuZcFrVQ2rJoMDLP", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json index 12f9d9d3ee..fe5f2097d5 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PA-CF @HSN.json @@ -3,7 +3,7 @@ "name": "Other PA-CF @HSN", "inherits": "fdm_filament_pa_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4I0FW5meyC53Xf8n", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json index 3eff778206..e87712a278 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PC @HSN.json @@ -3,7 +3,7 @@ "name": "Other PC @HSN", "inherits": "fdm_filament_pc_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vUuSuioOUXsg2P3p", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json index b2f0432067..0a4f102aa3 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PETG @HSN.json @@ -3,7 +3,7 @@ "name": "Other PETG @HSN", "inherits": "fdm_filament_pet_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWYq9XssEyY3uWEe", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json index 125354e1d4..c775f37bfc 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PLA @HSN.json @@ -3,7 +3,7 @@ "name": "Other PLA @HSN", "inherits": "fdm_filament_pla_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wOExDniXvR7CcF1w", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json index 808cbc971c..b3cc531849 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other PLA Hyper @HSN.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper @HSN", "inherits": "fdm_filament_pla_Hyper_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "154azDg7YNNWCkNK", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json b/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json index e2694a182a..adbf1cc254 100644 --- a/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json +++ b/resources/profiles/InfiMech/filament/HSN/Other TPU @HSN.json @@ -3,7 +3,7 @@ "name": "Other TPU @HSN", "inherits": "fdm_filament_tpu_other @HSN", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0bU2fl92vCQobYnt", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json b/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json index 523d081eb3..688f43673d 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic ABS.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gtJ2ZoV8fxqqOXuv", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json b/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json index 7750ed8987..74be583957 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k2NSIB3vVUoXGW9F", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PC.json b/resources/profiles/InfiMech/filament/InfiMech Generic PC.json index 1c2fd28d78..2d2223271c 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PC.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PC.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "emj9YLXtmKmeoYJa", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json b/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json index 8af239c747..4837c0eb9e 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PETG.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rhXq50q3u2YxNRcE", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json b/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json index 427e16f8db..0fa96a3fca 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic PLA.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BHNIPk7Nbl7hXZY1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json b/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json index 1dda222ac4..f942042dfd 100644 --- a/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json +++ b/resources/profiles/InfiMech/filament/InfiMech Generic TPU.json @@ -3,7 +3,7 @@ "name": "InfiMech Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pHS9IcwvsPCnkpaO", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json b/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json index e27953a4d4..dee081317f 100644 --- a/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json +++ b/resources/profiles/InfiMech/filament/InfiMech PLA Hyper.json @@ -3,7 +3,7 @@ "name": "InfiMech PLA Hyper", "inherits": "fdm_filament_pla_Hyper", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j86QMTif4fGujRbg", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other ABS.json b/resources/profiles/InfiMech/filament/Other ABS.json index b8bbb05171..a120f2dda6 100644 --- a/resources/profiles/InfiMech/filament/Other ABS.json +++ b/resources/profiles/InfiMech/filament/Other ABS.json @@ -3,7 +3,7 @@ "name": "Other ABS", "inherits": "fdm_filament_abs_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nDLB3RZq23limiBn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other PA-CF.json b/resources/profiles/InfiMech/filament/Other PA-CF.json index c55bffe5c4..1829ec16bb 100644 --- a/resources/profiles/InfiMech/filament/Other PA-CF.json +++ b/resources/profiles/InfiMech/filament/Other PA-CF.json @@ -3,7 +3,7 @@ "name": "Other PA-CF", "inherits": "fdm_filament_pa_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rgz4LjU9KyvbLhRQ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/InfiMech/filament/Other PC.json b/resources/profiles/InfiMech/filament/Other PC.json index 83558b2eb5..dda6d2def7 100644 --- a/resources/profiles/InfiMech/filament/Other PC.json +++ b/resources/profiles/InfiMech/filament/Other PC.json @@ -3,7 +3,7 @@ "name": "Other PC", "inherits": "fdm_filament_pc_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VXkW5oukQdBX6B6T", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/filament/Other PETG.json b/resources/profiles/InfiMech/filament/Other PETG.json index ee869fe585..552e3e4fe7 100644 --- a/resources/profiles/InfiMech/filament/Other PETG.json +++ b/resources/profiles/InfiMech/filament/Other PETG.json @@ -3,7 +3,7 @@ "name": "Other PETG", "inherits": "fdm_filament_pet_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "onLEWi8GYK0avard", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/InfiMech/filament/Other PLA Hyper.json b/resources/profiles/InfiMech/filament/Other PLA Hyper.json index afa08fc4a2..4d1aa6c742 100644 --- a/resources/profiles/InfiMech/filament/Other PLA Hyper.json +++ b/resources/profiles/InfiMech/filament/Other PLA Hyper.json @@ -3,7 +3,7 @@ "name": "Other PLA Hyper", "inherits": "fdm_filament_pla_Hyper_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Iop52BLp5ou8u4QG", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other PLA.json b/resources/profiles/InfiMech/filament/Other PLA.json index 1097ca85ba..aa1fa0a091 100644 --- a/resources/profiles/InfiMech/filament/Other PLA.json +++ b/resources/profiles/InfiMech/filament/Other PLA.json @@ -3,7 +3,7 @@ "name": "Other PLA", "inherits": "fdm_filament_pla_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2Bl4sfgGJBjNMk37", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/InfiMech/filament/Other TPU.json b/resources/profiles/InfiMech/filament/Other TPU.json index f73e56e7d4..edbee9b887 100644 --- a/resources/profiles/InfiMech/filament/Other TPU.json +++ b/resources/profiles/InfiMech/filament/Other TPU.json @@ -3,7 +3,7 @@ "name": "Other TPU", "inherits": "fdm_filament_tpu_other", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nqDc2q94Q2hwMi7B", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json index 6f61f93d2d..149177562f 100644 --- a/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/EX+APS/InfiMech EX+APS 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech EX+APS 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "v2iV5IUj5vAgHG4m", "instantiation": "true", "printer_model": "InfiMech EX+APS", "auxiliary_fan": "1", diff --git a/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json b/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json index 2e874b79d3..2bf51ab627 100644 --- a/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/EX/InfiMech EX 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech EX 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "TBhac3KY549FaS4b", "instantiation": "true", "printer_model": "InfiMech EX", "auxiliary_fan": "1", diff --git a/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json b/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json index 5f5a1f1082..6cf6dde752 100644 --- a/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/HSN/InfiMech TX HSN 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech TX HSN 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "2pj2vUp9hYszVX7V", "instantiation": "true", "printer_model": "InfiMech TX Hardened Steel Nozzle", "nozzle_diameter": [ diff --git a/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json b/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json index 59387e4fe2..a8a419be61 100644 --- a/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json +++ b/resources/profiles/InfiMech/machine/InfiMech TX 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "InfiMech TX 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "1WqMGhjlF5v3sjBZ", "instantiation": "true", "printer_model": "InfiMech TX", "nozzle_diameter": [ diff --git a/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json b/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json index 86f73537a5..23851a5b4b 100644 --- a/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.08mm Extra Fine @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ic9slTaW3rLhRub7", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json b/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json index 8cc75d6690..928d20ca27 100644 --- a/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.12mm Fine @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "uxrcoAGs9bVdipGp", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json b/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json index 165ce6b49c..c3fb83348f 100644 --- a/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.16mm Optimal @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "vI2nEncZzKIGjENk", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json b/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json index b33db97946..0c5866b429 100644 --- a/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.20mm Standard @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MdPs0tFtMqPPDrQm", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json b/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json index 67f83beecf..2be875e76b 100644 --- a/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json +++ b/resources/profiles/InfiMech/process/0.24mm Draft @InfiMech TX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech TX", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JGkiYAwTWxn8PRc4", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json index 10223e1487..751c5d1e33 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.08mm Extra Fine @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "Yk7YmXpq1uYqUhab", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json index 26af0bdd8c..9377f3fbaf 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.12mm Fine @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "psgRIR1JNT5btIOU", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json index 6d8dcde9a9..783db122a4 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.16mm Optimal @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP005", + "setting_id": "2d4xi9oMyBdvUQ7x", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json index 2d1f574254..df6dddd360 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.20mm Standard @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "bmQfzjvJVFT6Uu8i", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json b/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json index 3f0ff4af79..896b777e14 100644 --- a/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json +++ b/resources/profiles/InfiMech/process/EX+APS/0.24mm Draft @InfiMech EX+APS.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech EX+APS", "inherits": "fdm_process_common_EX+APS", "from": "system", - "setting_id": "GP004", + "setting_id": "DVI9tXz54QGawSh0", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json index 772967acf9..2a5c5dce99 100644 --- a/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.08mm Extra Fine @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "2GzaC1bnTxIjUURE", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json index f712214bcd..3d8a15191a 100644 --- a/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.12mm Fine @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "u05lUe2jjJo6AWUd", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json index dfcf16a79f..d95e84cedc 100644 --- a/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.16mm Optimal @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP005", + "setting_id": "2QMczcvFGi3AM0Jv", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json index 891cbac77f..00c2a2aadb 100644 --- a/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.20mm Standard @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "bOAFWauAWvxn5Aj8", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "0", diff --git a/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json b/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json index 32d7dec91f..ae7a814e2e 100644 --- a/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json +++ b/resources/profiles/InfiMech/process/EX/0.24mm Draft @InfiMech EX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech EX", "inherits": "fdm_process_common_EX", "from": "system", - "setting_id": "GP004", + "setting_id": "nfn0CFpmsl3yuBXG", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json index 403ad7fdd8..239b1a3556 100644 --- a/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.08mm Extra Fine @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "7q3pv13ASbe2Iad0", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "7", diff --git a/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json index f6c5ead8f7..764fc676a0 100644 --- a/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.12mm Fine @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "2ZdoZtUnCdDmnLwu", "instantiation": "true", "inner_wall_acceleration": "3000", "bottom_shell_layers": "5", diff --git a/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json index ef998119a6..546464ce49 100644 --- a/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.16mm Optimal @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP005", + "setting_id": "CvcMTqcs64jEvpTU", "instantiation": "true", "inner_wall_acceleration": "3000", "overhang_2_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json index 32366a7e54..04b8b4c3dd 100644 --- a/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.20mm Standard @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "RsDcCRFH96VXJdkK", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json b/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json index be2cf27878..00f83a39ec 100644 --- a/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json +++ b/resources/profiles/InfiMech/process/HSN/0.24mm Draft @InfiMech TX HSN.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @InfiMech TX HSN", "inherits": "fdm_process_common_HSN", "from": "system", - "setting_id": "GP004", + "setting_id": "T9uHAqamT2bXL0LV", "instantiation": "true", "bottom_shell_layers": "3", "overhang_1_4_speed": "50", diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json index 727cb4e0b2..0d0f98e733 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.01", + "version": "02.04.00.02", "force_update": "1", "description": "Kingroon configuration files", "machine_model_list": [ diff --git a/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json index d4f377cb94..8101c119ea 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KLP1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "V7Nb0x13KMPKlEKB", "instantiation": "true", "printer_model": "Kingroon KLP1", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json index 6db5df200a..8643f5224f 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S 3.0 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S 3.0 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "J2s9iNvu2UoaIKJY", "instantiation": "true", "printer_model": "Kingroon KP3S 3.0", "default_print_profile": "0.30mm Standard @Kingroon KP3S 3.0", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json index 84f267f7a5..1c38008996 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO S1 0.4 nozzle.json @@ -2,7 +2,7 @@ "type": "machine", "name": "Kingroon KP3S PRO S1 0.4 nozzle", "inherits": "fdm_machine_common", - "setting_id": "GM003", + "setting_id": "A4kpyp116R9be7ks", "instantiation": "true", "printer_model": "Kingroon KP3S PRO S1", "default_print_profile": "0.20mm Standard @Kingroon KP3S PRO S1", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json index b847346054..04cb2afde4 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S PRO V2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S PRO V2 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "mTLNFIFxtFsGkdyQ", "instantiation": "true", "printer_model": "Kingroon KP3S PRO V2", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json index f25cbbe6d6..3ffa56d05b 100644 --- a/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json +++ b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Kingroon KP3S V1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "hUDREW1HLsKF84Wi", "instantiation": "true", "printer_model": "Kingroon KP3S V1", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json index 913280c0d8..fab9b81259 100644 --- a/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.08mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.08mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "0DvblEjz2NxcdZBB", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json index e287ef2d30..fd5cb328fd 100644 --- a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json +++ b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Standard @Kingroon KLP1", "inherits": "fdm_process_common", + "setting_id": "JnhayooC0fiqPQ6B", "instantiation": "true", "compatible_printers": [ "Kingroon KLP1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json index 3e1db2c501..c35f97507a 100644 --- a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "usLnWrudOQEWM8mC", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json index d2d076a51f..d00132d9b3 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KLP1", "inherits": "fdm_process_common", + "setting_id": "EVVIDKEABDis5XnL", "instantiation": "true", "compatible_printers": [ "Kingroon KLP1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json index aa3831d3a0..3d31bd2122 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO S1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S PRO S1", "inherits": "fdm_process_common", + "setting_id": "t6R8DxQkbEHDGpK1", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO S1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json index 63b4b225b6..03d5104995 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S PRO V2.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S PRO V2", "inherits": "fdm_process_common", + "setting_id": "4DcIhXpMnDYKuSGa", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S PRO V2 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json index fe61d3b24c..f91fc639a0 100644 --- a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json +++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.20mm Standard @Kingroon KP3S V1", "inherits": "fdm_process_common", + "setting_id": "4sJmG8tu4LyGGDDo", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S V1 0.4 nozzle" diff --git a/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json b/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json index 9f9f0757f2..3e39ae2ddf 100644 --- a/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json +++ b/resources/profiles/Kingroon/process/0.30mm Standard @Kingroon KP3S 3.0.json @@ -3,6 +3,7 @@ "name": "0.30mm Standard @Kingroon KP3S 3.0", "inherits": "fdm_process_common", "from": "User", + "setting_id": "RJMTJGKp9m8XneEf", "instantiation": "true", "compatible_printers": [ "Kingroon KP3S 3.0 0.4 nozzle" diff --git a/resources/profiles/LH.json b/resources/profiles/LH.json index 25b7630855..12f8c4cbda 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.01", + "version": "02.04.00.02", "force_update": "0", "description": "LH 3D Printer Configuration", "machine_model_list": [ diff --git a/resources/profiles/LH/filament/LHS ABS.json b/resources/profiles/LH/filament/LHS ABS.json index 95cd7ccd73..28fe82243d 100644 --- a/resources/profiles/LH/filament/LHS ABS.json +++ b/resources/profiles/LH/filament/LHS ABS.json @@ -2,7 +2,7 @@ "name": "LHS ABS", "type": "filament", "filament_id": "LHF_abs", - "setting_id": "LHF_S_abs", + "setting_id": "EQxNYC7BdGEA2iiD", "from": "system", "instantiation": "true", "inherits": "fdm_filament_asa", diff --git a/resources/profiles/LH/filament/LHS ASA.json b/resources/profiles/LH/filament/LHS ASA.json index 9c8ed46093..8d8de19dfa 100644 --- a/resources/profiles/LH/filament/LHS ASA.json +++ b/resources/profiles/LH/filament/LHS ASA.json @@ -1,7 +1,7 @@ { "name": "LHS ASA", "filament_id": "LHF_asa", - "setting_id": "LHF_S_asa", + "setting_id": "hoq5bKHUb9DE1ezj", "type": "filament", "from": "system", "instantiation": "true", diff --git a/resources/profiles/LH/filament/LHS PC CF.json b/resources/profiles/LH/filament/LHS PC CF.json index 522214492f..e565b5a9ab 100644 --- a/resources/profiles/LH/filament/LHS PC CF.json +++ b/resources/profiles/LH/filament/LHS PC CF.json @@ -3,7 +3,7 @@ "name": "LHS PC CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "LHF_S_pccf", + "setting_id": "FOQLD0UX6hUhJBQ0", "filament_id": "LHF_pccf", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/LH/filament/LHS PCTG.json b/resources/profiles/LH/filament/LHS PCTG.json index 7508a1fbd3..a2593c22b7 100644 --- a/resources/profiles/LH/filament/LHS PCTG.json +++ b/resources/profiles/LH/filament/LHS PCTG.json @@ -2,7 +2,7 @@ "name": "LHS PCTG", "type": "filament", "filament_id": "LHF_pctg", - "setting_id": "LHF_S_pctg", + "setting_id": "dKWttiAQNwymKsIC", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS PETG.json b/resources/profiles/LH/filament/LHS PETG.json index 4c50c13b4c..2c960c477c 100644 --- a/resources/profiles/LH/filament/LHS PETG.json +++ b/resources/profiles/LH/filament/LHS PETG.json @@ -2,7 +2,7 @@ "name": "LHS PETG", "type": "filament", "filament_id": "LHF_petg", - "setting_id": "LHF_S_petg", + "setting_id": "aZdY1M44ui7Rtj8r", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS PLA.json b/resources/profiles/LH/filament/LHS PLA.json index 6e927484a8..285fd76c13 100644 --- a/resources/profiles/LH/filament/LHS PLA.json +++ b/resources/profiles/LH/filament/LHS PLA.json @@ -2,7 +2,7 @@ "name": "LHS PLA", "type": "filament", "filament_id": "LHF_pla", - "setting_id": "LHF_S_pla", + "setting_id": "M8WSwqD1iQkQntpy", "from": "system", "instantiation": "true", "inherits": "fdm_filament_pla", diff --git a/resources/profiles/LH/filament/LHS TPU Foamy 78A.json b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json index cb706c46de..47e4c606c6 100644 --- a/resources/profiles/LH/filament/LHS TPU Foamy 78A.json +++ b/resources/profiles/LH/filament/LHS TPU Foamy 78A.json @@ -2,7 +2,7 @@ "name": "LHS TPU Foamy 78A", "type": "filament", "filament_id": "LHF_ftpuf", - "setting_id": "LHF_S_ftpuf", + "setting_id": "FWyg21qHmAKeihMn", "from": "system", "instantiation": "true", "inherits": "fdm_filament_tpu", diff --git a/resources/profiles/LH/filament/LHS TPU.json b/resources/profiles/LH/filament/LHS TPU.json index 463cd29b2b..fc877eb084 100644 --- a/resources/profiles/LH/filament/LHS TPU.json +++ b/resources/profiles/LH/filament/LHS TPU.json @@ -2,7 +2,7 @@ "name": "LHS TPU", "type": "filament", "filament_id": "LHF_ptpu_pl", - "setting_id": "LHF_S_ptpu_pl", + "setting_id": "ILgpZYIqYGH6mqdI", "from": "system", "instantiation": "true", "inherits": "fdm_filament_tpu", diff --git a/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json index 974b81d5fe..623cde41d9 100644 --- a/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json +++ b/resources/profiles/LH/machine/LH Stinger 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "LH Stinger 0.4 nozzle", "inherits": "fdm_lh_common", "from": "system", - "setting_id": "LHS_m01_04", + "setting_id": "SXKv5qx80Qwsq8Zh", "instantiation": "true", "printer_model": "LH Stinger", "nozzle_diameter": [ diff --git a/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json index 3c8b400b87..4fbf1bc51c 100644 --- a/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json +++ b/resources/profiles/LH/machine/LH Stinger MMU 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "LH Stinger MMU 0.4 nozzle", "inherits": "fdm_lh_mmu_common", "from": "system", - "setting_id": "LHS_m01_mmu_04", + "setting_id": "5WBp4QHbKuf93x9h", "instantiation": "true", "printer_model": "LH Stinger MMU", "nozzle_diameter": [ diff --git a/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json index c3a7924bff..e98ffc8855 100644 --- a/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json +++ b/resources/profiles/LH/process/0.10mm HueForge @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.10mm HueForge @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_hueforge", + "setting_id": "YbSn7A99XdQu18TS", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json index cad9a16e51..a71ea3b090 100644 --- a/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json +++ b/resources/profiles/LH/process/0.14mm Detail @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.14mm Detail @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_detail", + "setting_id": "UDQOskW5wNQrbT7G", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json index e473db7707..f9b0f651c1 100644 --- a/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json +++ b/resources/profiles/LH/process/0.14mm Detail Strength @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.14mm Detail Strength @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_detail_strength", + "setting_id": "c3dgsHRrgdfhu5OQ", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json index 78f152a487..5f39a20314 100644 --- a/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Daily @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Daily @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_daily", + "setting_id": "oCPHcikuQmP0q1et", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json index e4a2616d10..79b4551279 100644 --- a/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm MMU @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm MMU @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_mmu", + "setting_id": "g6RZV8hOSJZKm80i", "instantiation": "true", "compatible_printers": [ "LH Stinger MMU 0.4 nozzle" diff --git a/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json index 8582a7f0ac..888cf38469 100644 --- a/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm PETG @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm PETG @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_petg", + "setting_id": "K3dY4BJPW9HL0NQ2", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json index d26b9efef8..7eb85b733f 100644 --- a/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Quiet @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Quiet @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_quiet", + "setting_id": "pqEMaWAFWdh3iNwa", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json index 4d1218db8b..7bf78e8c7c 100644 --- a/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Solid @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Solid @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_solid", + "setting_id": "nV3S6yVyd68DnTX6", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json index a56bf33a87..989f58dbcd 100644 --- a/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Speed @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_speed", + "setting_id": "evHukqVJGThDVg8e", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json index 8d1929bb60..010b92c309 100644 --- a/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm Strength @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_strength", + "setting_id": "AfuFzuVgyfSZJZB8", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json index 6893ec1e05..622bc5b361 100644 --- a/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json +++ b/resources/profiles/LH/process/0.20mm TPU @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.20mm TPU @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_tpu", + "setting_id": "QIkswxTrtKlNxglR", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json index bc612fc5e9..edfbe05965 100644 --- a/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json +++ b/resources/profiles/LH/process/0.25mm Vase Mode @LH Stinger.json @@ -3,7 +3,7 @@ "name": "0.25mm Vase Mode @LH Stinger", "inherits": "fdm_process_lh_common", "from": "system", - "setting_id": "LHS_P_vase_mode", + "setting_id": "tfGhpXLVB51jD4SA", "instantiation": "true", "compatible_printers": [ "LH Stinger 0.4 nozzle", diff --git a/resources/profiles/LONGER.json b/resources/profiles/LONGER.json index 397f95b157..723bb43e91 100644 --- a/resources/profiles/LONGER.json +++ b/resources/profiles/LONGER.json @@ -1,6 +1,6 @@ { "name": "LONGER", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "LONGER configurations", "machine_model_list": [ diff --git a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json index 13934c00a9..c27280bf49 100644 --- a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json +++ b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10 Plus.json @@ -3,7 +3,7 @@ "name": "Generic PETG @LONGER LK10 Plus", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFLLKPG", + "setting_id": "F6pgS8fPQFnN4R0n", "filament_id": "GFLLK10PPETG", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json index d0a31c8e7c..48343c508d 100644 --- a/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json +++ b/resources/profiles/LONGER/filament/Generic PETG @LONGER LK10.json @@ -3,7 +3,7 @@ "name": "Generic PETG @LONGER LK10", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFLLK10G", + "setting_id": "hWuf5kvAA5dXSd8f", "filament_id": "GFLLK10PETG", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json index 47da2fce9b..7eccd144bd 100644 --- a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json +++ b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10 Plus.json @@ -3,7 +3,7 @@ "name": "Generic PLA @LONGER LK10 Plus", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFLLKPPL", + "setting_id": "N4pabxIYPI8KHgVp", "filament_id": "GFLLK10PPLA", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json index f76a0d7e34..fe91a5388b 100644 --- a/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json +++ b/resources/profiles/LONGER/filament/Generic PLA @LONGER LK10.json @@ -3,7 +3,7 @@ "name": "Generic PLA @LONGER LK10", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFLLK10P", + "setting_id": "BLf7EiZ9yayoKwJy", "filament_id": "GFLLK10PLA", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json index d4e8936a40..93a11e4a66 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.2 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "rCXyXcyjM0JIZfa4", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json index ac6b733999..ce8f8b9580 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.4 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IzX3jf8hyO1eSOVE", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json index ee0a634ca8..a99639d18d 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.6 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "imHXw1uvIFhG4ZrL", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json index e5342944d6..0493d30520 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 (0.8 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WhICa7WcreZhBx0N", "instantiation": "true", "printer_model": "LONGER LK10", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json index 234f4953ad..fd586f6a7c 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PMsJm19Fmd1izzf9", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json index e5a63805a8..95a282c1a2 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Fs8OHF8JceLEAO1v", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json index da4bbfeb22..8c10b81e1b 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "XUaskaVS0J50HBTq", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json index 617f9b5014..91ef8d02de 100644 --- a/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/machine/LONGER LK10 Plus (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KPqFqYPrJVyfImNw", "instantiation": "true", "printer_model": "LONGER LK10 Plus", "printer_settings_id": "LONGER", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json index d04f6ad2f9..c101b0c35c 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "4rewUDpVDckN1RBz", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json index c25ba51dc4..a077e6a598 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "aCQD3S06UiljFHkP", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json index cbea2e29bd..4739e2d546 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NyfHJWm3vAvBSATt", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json index b29fadeec3..72ff143002 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "LZxLjR6G6gSN921g", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json index 378135d3a4..ba1f488276 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "pt5mXbn5H8EkwLFe", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json index 62cb4dabea..f92eaaebe5 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "Yxle7KV6zK9QemgL", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json index 39ade43ec2..78ca5e931e 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "MkIzLl9LYtPfzuVF", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json index b936a23793..5e51af595e 100644 --- a/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "NehCN4FIKD5qtHej", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "9", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json index f345e83e48..d601bd8415 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gRMFIR7alPbvKMuP", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json index 4d9ea483c4..85cf793c32 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "o86PZBwDDp2IxFn5", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json index 8e96401c55..d36f6dfa69 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "bVCJXyf7dCBOWdON", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json index 11b739a2ad..caa3176431 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "lnVVFnprz98VIxhr", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json index 09f45490e7..cebf5200cc 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6sOCelWbIuJAhryj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json index 3accdb9368..9c952062a1 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "jZV4VLKS1DWHuYYx", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json index 902840089b..6878c10b5a 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "YZAdp0npeHTgnOjO", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json index 70932c0ccf..afeefc3587 100644 --- a/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.12mm Fine @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "TFOKRXKTxUNRsu7D", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "6", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json index 44e815f6b2..664cbb100d 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "mZIIl7NskpqH9WI5", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json index 9c14c57a80..b4dc7f9765 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "sSQK16zVLSlw8Ndb", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json index adbd86ba95..d80b991535 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "medK5QfuPW1ZOFQv", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json index 6d5fdd918c..9cd2f93bda 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "eSuXIvImpT95xawb", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json index 2a4b6d381f..a5529b8403 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "i4dTKSvcd0Bk6tA5", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json index daf678d232..f49f108d23 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qRe2lkPbt13Bv69D", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json index c560def78e..e3a57456db 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6FEmRj0kD8k24QIB", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json index 85a1ec4910..62335b8ced 100644 --- a/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "nijhyst18zcMDzEk", "instantiation": "true", "layer_height": "0.16", "bottom_shell_layers": "4", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json index 9e58546efa..9137d7fa0e 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gPVvPA8bDwW9DFcY", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json index 9b192a2b94..da94cf13b5 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "1DSx31aPS987vOJL", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json index c6fc731711..69468eb99b 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "5e6XIC5yJJeNvNFs", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json index d433b344ca..8722668ac9 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "x3hfZSXRXMiFcjqX", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json index cbebdac810..c4f29be504 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "z8Ok2rmAXISepqJU", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json index 6b861a4af9..5cdfa09d5a 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "lYhyAGil93rEYJHT", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json index 83f94d30da..8ba9483343 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "cwSLuhMTckFzqPpe", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json index 7a60b5c3b0..015e6e2284 100644 --- a/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.20mm Standard @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IproQ7VtfvhPKflQ", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json index 0e9827399c..724913127d 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "YeH8GaO7aIQ7QR1g", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json index 13272d28ec..eab4deac70 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qzwdIE3o2jUNflDv", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json index d8ab4e65d0..29de5b31e0 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IDwXrEpPnjyHRueg", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json index 8faf82ad45..521087ddae 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "IspkL6JDGiT3nUzD", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json index fb96d17dd3..30ce2e7314 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "9za3LNV8qjTQiTCD", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json index ef772f066b..432972ecf3 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "1BC6FRmc5xu3TN13", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json index 5e21eca79e..c98b1bbc7d 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "CKR9x6EET6aXSUNt", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json index e8e377e8db..1757d9384b 100644 --- a/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.24mm Draft @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "qt5zTPvnQvwWMWfz", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json index 6fefd2adb2..d40546ce0d 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "jY1Uwp6qOb7vIlGo", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json index f85e046609..6c66fa3a3a 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ofbXgcSsiTmuMmVr", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json index 7cb580537e..6f997ec3c3 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "bbiXfNYWq1fY0rsX", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json index 00c94c317d..c9b1509006 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "PskBX42xJfVOlpNu", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json index 10bb4e5dcd..248da7c873 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "oRoJ2OjDZcoiRv15", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json index 8886d1c0b2..e513a7ad78 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "gxDpJ3et9rfFpdb7", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json index 8408d0026f..56f2ed8bc7 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "ndi75zSZ9Bgt4CL0", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json index 6aa685ed41..f570506085 100644 --- a/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json +++ b/resources/profiles/LONGER/process/0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle).json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @LONGER LK10 Plus (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", + "setting_id": "WIPNrthnFLnO3Gcj", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/Lulzbot.json b/resources/profiles/Lulzbot.json index 9d4c5617f9..31836580f0 100644 --- a/resources/profiles/Lulzbot.json +++ b/resources/profiles/Lulzbot.json @@ -1,7 +1,7 @@ { "name": "Lulzbot", "url": "https://ohai.lulzbot.com/group/taz-6/", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Lulzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json index f053100a73..c91c38c8e9 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm ABS.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XwsWBVH2xIwyRMm4", "filament_id": "GFB99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json index 17456c9b6d..748d8de25b 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PETG.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7aS9fdn94lEOU1gJ", "filament_id": "GFG99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json index 4e6b697d11..23547bfafc 100644 --- a/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json +++ b/resources/profiles/Lulzbot/filament/Lulzbot 2.85mm PLA.json @@ -3,7 +3,7 @@ "name": "Lulzbot 2.85mm PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1pyzsOWeVPCxWlqQ", "filament_id": "GFL99", "instantiation": "true", "filament_diameter": [ diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json index 008425504b..cc1224b635 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 4 or 5 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz 4 or 5 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZ004", + "setting_id": "vX6cl42xwlXUf05S", "instantiation": "true", "printer_model": "Lulzbot Taz 4 or 5", "default_print_profile": "0.25mm Standard @Lulzbot Taz 4 or 5", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json index 4571884aab..4a7aa978fb 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz 6 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz 6 0.5 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZ006", + "setting_id": "xwPUM4RYNg01eOO6", "instantiation": "true", "printer_model": "Lulzbot Taz 6", "default_print_profile": "0.25mm Standard @Lulzbot Taz 6", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json index 868ed80184..976d59626e 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Common.json @@ -3,7 +3,6 @@ "name": "Lulzbot Taz Pro Common", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "LZPC001", "instantiation": "false", "printer_model": "Lulzbot Taz Pro Common", "printable_area": [ diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json index dc6dee7178..dccf5c21a9 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro Dual 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz Pro Dual 0.5 nozzle", "inherits": "Lulzbot Taz Pro Common", "from": "system", - "setting_id": "LZPD001", + "setting_id": "sRWzLKWRYOU1YBQX", "instantiation": "true", "single_extruder_multi_material": "0", "extruders_count": "2", diff --git a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json index c2a8352f83..fc67318616 100644 --- a/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json +++ b/resources/profiles/Lulzbot/machine/Lulzbot Taz Pro S 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Lulzbot Taz Pro S 0.5 nozzle", "inherits": "Lulzbot Taz Pro Common", "from": "system", - "setting_id": "LZPS001", + "setting_id": "MkF306AK6QFO2mo6", "instantiation": "true", "single_extruder_multi_material": "1", "extruders_count": "1", diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json index 5a49c4601b..67202d0473 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 4 or 5.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz 4 or 5", "inherits": "0.25mm Standard @Lulzbot Taz 4 or 5", "from": "system", - "setting_id": "LZH04", + "setting_id": "N4f0GCg9YjwFjfZu", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json index a393c1739c..e5eec9e7ac 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz 6.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz 6", "inherits": "0.25mm Standard @Lulzbot Taz 6", "from": "system", - "setting_id": "LZH06", + "setting_id": "A4aKPhCe7QB4fAar", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json index 8f8e449f0b..a466fb0f86 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro Dual.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz Pro Dual", "inherits": "0.25mm Standard @Lulzbot Taz Pro Dual", "from": "system", - "setting_id": "LZHPD01", + "setting_id": "6zkx7ADmjD4qJb2h", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json index 5ce353b06a..a8f3c361e4 100644 --- a/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json +++ b/resources/profiles/Lulzbot/process/0.18mm High Detail @Lulzbot Taz Pro S.json @@ -3,7 +3,7 @@ "name": "0.18mm High Detail @Lulzbot Taz Pro S", "inherits": "0.25mm Standard @Lulzbot Taz Pro S", "from": "system", - "setting_id": "LZHPS01", + "setting_id": "nfwNBrhULXlS9fQ1", "instantiation": "true", "layer_height": "0.18", "compatible_printers": [ diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json index eba3f9ab3f..8114e206de 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 4 or 5.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz 4 or 5", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZS04", + "setting_id": "7AJRQW7g8u7CnKhZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json index f34ccb655e..5cf84c2791 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz 6.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz 6", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZS06", + "setting_id": "K4uIiLjmRJfy0GZv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json index 62a568031a..f6f88cee34 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro Dual.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz Pro Dual", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZSPD01", + "setting_id": "jEDhBnfwOyj5oEO8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json index 19078fac11..05bf1ecca0 100644 --- a/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json +++ b/resources/profiles/Lulzbot/process/0.25mm Standard @Lulzbot Taz Pro S.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @Lulzbot Taz Pro S", "inherits": "fdm_process_common", "from": "system", - "setting_id": "LZSPS01", + "setting_id": "uAws1KNEUyrcJTSy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/M3D.json b/resources/profiles/M3D.json index d2ad7e1478..cb24edb886 100644 --- a/resources/profiles/M3D.json +++ b/resources/profiles/M3D.json @@ -1,6 +1,6 @@ { "name": "M3D", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Configuration for M3D printers", "machine_model_list": [ diff --git a/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json b/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json index bb4ad54b07..6c9d35786c 100644 --- a/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json +++ b/resources/profiles/M3D/machine/M3D Enabler D8500 MM.json @@ -3,7 +3,7 @@ "name": "M3D Enabler D8500 MM", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "M3D_D8500_MM_04", + "setting_id": "AEagqO0H5lE3ndsg", "instantiation": "true", "printer_model": "M3D Enabler D8500 MM Model", "printer_variant": "0.4", diff --git a/resources/profiles/M3D/process/0.15mm MM @D8500.json b/resources/profiles/M3D/process/0.15mm MM @D8500.json index db62fc37e5..d7bcbadab8 100644 --- a/resources/profiles/M3D/process/0.15mm MM @D8500.json +++ b/resources/profiles/M3D/process/0.15mm MM @D8500.json @@ -3,6 +3,7 @@ "name": "0.15mm MM @D8500", "inherits": "fdm_process_common", "from": "system", + "setting_id": "vVl13K18loFa1fgv", "instantiation": "true", "compatible_printers": [ "M3D Enabler D8500 MM" diff --git a/resources/profiles/M3D/process/0.20mm MM @D8500.json b/resources/profiles/M3D/process/0.20mm MM @D8500.json index c611c1b0d2..8dab066799 100644 --- a/resources/profiles/M3D/process/0.20mm MM @D8500.json +++ b/resources/profiles/M3D/process/0.20mm MM @D8500.json @@ -3,6 +3,7 @@ "name": "0.20mm MM @D8500", "inherits": "fdm_process_common", "from": "system", + "setting_id": "sW4h3MpFpgMeE1pl", "instantiation": "true", "compatible_printers": [ "M3D Enabler D8500 MM" diff --git a/resources/profiles/MagicMaker.json b/resources/profiles/MagicMaker.json index 87327300d4..ede555b66c 100644 --- a/resources/profiles/MagicMaker.json +++ b/resources/profiles/MagicMaker.json @@ -1,6 +1,6 @@ { "name": "MagicMaker", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "MagicMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/MagicMaker/filament/MM Generic PEEK.json b/resources/profiles/MagicMaker/filament/MM Generic PEEK.json index 6f379789f4..75b905476e 100644 --- a/resources/profiles/MagicMaker/filament/MM Generic PEEK.json +++ b/resources/profiles/MagicMaker/filament/MM Generic PEEK.json @@ -3,7 +3,7 @@ "name": "MM Generic PEEK", "inherits": "fdm_filament_peek", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iznBAOK0m6dO7SCh", "filament_id": "GFG99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json index fe2abaa957..59f622953b 100644 --- a/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM BoneKing 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM BoneKing 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "iZNIPSUR3fQERgnv", "instantiation": "true", "printer_model": "MM BoneKing", "default_print_profile": "0.10mm Fine @MM BoneKing", diff --git a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json index b6c652b9fd..c1b219aae0 100644 --- a/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hj SK 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hj SK 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "lqwfkkjWuhZa5W1i", "instantiation": "true", "printer_model": "MM hj SK", "default_print_profile": "0.10mm Fine @MM hj SK", diff --git a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json index 060438bee2..fdfc49385a 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs SF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hqs SF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "9fUSbg5O1brpyJX5", "instantiation": "true", "printer_model": "MM hqs SF", "default_print_profile": "0.10mm Fine @MM hqs SF", diff --git a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json index 930fb4c2b2..9760c8382b 100644 --- a/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM hqs hj 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM hqs hj 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "2MC7ljWsyIfNcoCS", "instantiation": "true", "printer_model": "MM hqs hj", "default_print_profile": "0.10mm Fine @MM hqs hj", diff --git a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json index 07cdaf7f0f..7c71afe855 100644 --- a/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json +++ b/resources/profiles/MagicMaker/machine/MM slb 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "MM slb 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "A0I3dDAbwNC059c6", "instantiation": "true", "printer_model": "MM slb", "default_print_profile": "0.10mm Fine @MM slb", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json index 5c77ff05e5..d980bd9ffa 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JoLMVPh4bNahqirV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json index e0c982f3bb..a27ed5c8ac 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "m6Y453vyMDxFz4c7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json index ff191d531f..263c3c7e02 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QI9sXxzUoh2A8c0S", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json index 6855c2ab92..f04d1862e1 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vCIBhcj3X7d07y9G", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json index 9a2d82ef09..740aa73f40 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine @MM slb.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "BLrg8vEj3xZyxNTo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json index 2790f4de2b..fab1e63f1d 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "fIzlKlmcI4pDKviy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json index 1c61ec7db0..f7cbb71eda 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xngBXACjTNqOZNyB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json index 6c078e0f87..e24e6c7fd3 100644 --- a/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.10mm Fine Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine Fast @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wHOzdPcMWYZNhny2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json index 7523e1b7b8..ad71011496 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine BestFast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine BestFast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PVbARB8V8JUBbIZG", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json index ee86047d1d..ffabaed092 100644 --- a/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.12mm Fine SuperFast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine SuperFast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gR34Ioeioizl1UXy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json index 238cc17171..2c252a73e3 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ON1x9dQTQTgGNLCw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json index 14d63d3bec..be5f745572 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JoTnXrNSnHKraaeB", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json index 848a6a020c..5e8078a0ca 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "J9s3XNTCUjsYusKD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json index 3c2ea9e071..1fa581bbde 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MPfzxLi2GBioXdOp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json index fbc282df25..59d7797359 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard @MM slb.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ivz7U0RTrX558HQ4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json index e72b260ab0..b3e9571756 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "OZKDJHIsKAZtJTeq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json index a952e29861..20ab75cbc9 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "RL1Irvbsm9Fh3jNz", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json index 536a475228..b56e29914f 100644 --- a/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.20mm Standard Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard Fast @MM hqs sf", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TkBYOyBebm3pMHrl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", @@ -110,6 +110,6 @@ "travel_acceleration": "10000", "travel_speed": "300", "compatible_printers": [ - "MM hqs sf 0.4 nozzle" + "MM hqs SF 0.4 nozzle" ] } diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json index 4fc9d38a7b..318575eb72 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QuoLlC961atuxMnn", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json index 9f0745a8ba..19ac9c25a5 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aXpG4y73oeV4p4by", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json index 0092b733d8..e5cc84d0fb 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lZ3guqhwMGxBFtIh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json index f4715e7d9d..1a3d053cd2 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM hqs hj.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM hqs hj", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yBdZW946qhSKDU4w", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json index 13a5481de1..fdf6c572e6 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft @MM slb.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft @MM slb", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Clfnw7cqNtWmzjB1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json index a3dd245f34..ef49cf7d48 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM BoneKing.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM BoneKing", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g2unBNIOfILyLrLQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json index b4c75c79f1..4488948238 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hj SK.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM hj SK", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bVabJjzFcaYFQ77o", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json index 14442f236f..adb7fe1465 100644 --- a/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json +++ b/resources/profiles/MagicMaker/process/0.30mm Draft Fast @MM hqs SF.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft Fast @MM hqs SF", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "G2b2NRdM3geucH0v", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Mellow.json b/resources/profiles/Mellow.json index 678fb93480..f0b81c832c 100644 --- a/resources/profiles/Mellow.json +++ b/resources/profiles/Mellow.json @@ -1,6 +1,6 @@ { "name": "Mellow", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Mellow Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/Mellow/machine/M1 0.2 nozzle.json b/resources/profiles/Mellow/machine/M1 0.2 nozzle.json index 43d9c7605d..ee7b465e23 100644 --- a/resources/profiles/Mellow/machine/M1 0.2 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.2 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m002", + "setting_id": "PJ1AEctT0fuqipaq", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.4 nozzle.json b/resources/profiles/Mellow/machine/M1 0.4 nozzle.json index 9c6f9b7a5e..7268629864 100644 --- a/resources/profiles/Mellow/machine/M1 0.4 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.4 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m001", + "setting_id": "5UmVLLJJmKvIlfQG", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.6 nozzle.json b/resources/profiles/Mellow/machine/M1 0.6 nozzle.json index 76cf92bd97..e546c5337b 100644 --- a/resources/profiles/Mellow/machine/M1 0.6 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.6 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m003", + "setting_id": "yHEi0y1nBaexIbTL", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/machine/M1 0.8 nozzle.json b/resources/profiles/Mellow/machine/M1 0.8 nozzle.json index 172b599b7d..742999b30e 100644 --- a/resources/profiles/Mellow/machine/M1 0.8 nozzle.json +++ b/resources/profiles/Mellow/machine/M1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "M1 0.8 nozzle", "inherits": "fdm_common_M1", "from": "system", - "setting_id": "m1_m004", + "setting_id": "vw2dEA9cwpGfNXv3", "instantiation": "true", "printer_model": "M1", "nozzle_diameter": [ diff --git a/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json b/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json index 25027f8220..ece2a6165d 100644 --- a/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json +++ b/resources/profiles/Mellow/process/0.08mm Extra Fine @M1.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p001", + "setting_id": "eancI3korAAbrT0H", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Mellow/process/0.12mm Fine @M1.json b/resources/profiles/Mellow/process/0.12mm Fine @M1.json index e4658ecbbb..5c66d0fa50 100644 --- a/resources/profiles/Mellow/process/0.12mm Fine @M1.json +++ b/resources/profiles/Mellow/process/0.12mm Fine @M1.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p002", + "setting_id": "P7QW1RovYFArn99A", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Mellow/process/0.16mm Optimal @M1.json b/resources/profiles/Mellow/process/0.16mm Optimal @M1.json index 6c4b41c328..95740aaa3c 100644 --- a/resources/profiles/Mellow/process/0.16mm Optimal @M1.json +++ b/resources/profiles/Mellow/process/0.16mm Optimal @M1.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p003", + "setting_id": "E6qD120IMsut2kax", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Mellow/process/0.20mm Standard @M1.json b/resources/profiles/Mellow/process/0.20mm Standard @M1.json index 28ddb60e43..abe66241ab 100644 --- a/resources/profiles/Mellow/process/0.20mm Standard @M1.json +++ b/resources/profiles/Mellow/process/0.20mm Standard @M1.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p004", + "setting_id": "i3eplL8lCrSToFGE", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Mellow/process/0.24mm Draft @M1.json b/resources/profiles/Mellow/process/0.24mm Draft @M1.json index dc71cff1dc..a93e1b47d8 100644 --- a/resources/profiles/Mellow/process/0.24mm Draft @M1.json +++ b/resources/profiles/Mellow/process/0.24mm Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p005", + "setting_id": "CeIfJ33O1WX5GeEl", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json index bb3a9fa979..d09421b327 100644 --- a/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.28mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p006", + "setting_id": "2vvrxWecrgcPDwhW", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json index 1728714895..67a705fc96 100644 --- a/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.32mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p007", + "setting_id": "yjnb7R1H07rZtYGA", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json index 87be3080ba..b4ba3613a8 100644 --- a/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.40mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p008", + "setting_id": "jLh7ECuiNBupMltK", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json b/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json index 48e506f581..fa6c818939 100644 --- a/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json +++ b/resources/profiles/Mellow/process/0.56mm Extra Draft @M1.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @M1", "inherits": "fdm_process_M1_common", "from": "system", - "setting_id": "m1_p009", + "setting_id": "PvZVhrjt2zCKZ5NU", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/OpenEYE.json b/resources/profiles/OpenEYE.json index e8f05e8fd7..e29674323e 100644 --- a/resources/profiles/OpenEYE.json +++ b/resources/profiles/OpenEYE.json @@ -1,7 +1,7 @@ { "name": "OpenEYE", "url": "http://www.openeye.tech", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "OpenEYE Printers Configurations", "machine_model_list": [ diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json index aa31199f54..7596470f68 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.2 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "9a6m3CnRwHifJXhE", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json index 4aad3d8c4d..8a3ce9de77 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.4 nozzle.json @@ -46,6 +46,6 @@ "180", "180" ], - "setting_id": "GM001", + "setting_id": "iJqPJqKBFJvagyMn", "type": "machine" } diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json index 0bfe44e08e..af75b57f29 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.6 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "Ol08fxiiKMYXYxPp", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json index bd61775da4..099f45d80d 100644 --- a/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/machine/OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "OpenEYE Peacock V2 0.8 nozzle", "inherits": "OpenEYE Peacock V2 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "6DsYY53Z6bYd5szH", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json index 8813125f05..8f85b3cbc3 100644 --- a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP139", + "setting_id": "yzZvIRi5lQjYBhlL", "instantiation": "true", "description": "High quality profile for 0.2mm nozzle, prioritizing print quality.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json index ffe6e605b7..11d8039c38 100644 --- a/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.08mm Extra Fine @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.08_nozzle_0.4", "from": "system", - "setting_id": "GP136", + "setting_id": "xwKLqiFWCrUGldma", "instantiation": "true", "default_acceleration": "4000", "gap_infill_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json index 4947e954b3..2857d7b5ef 100644 --- a/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP123", + "setting_id": "rnKBfxEW7XHh12sh", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "40", diff --git a/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json b/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json index 22241f5921..b3c19430b7 100644 --- a/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Balanced Quality @OpenEYE Peacock V2 0.2 nozzle", "inherits": "fdm_process_openeye_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP140", + "setting_id": "fqgA9GWd3xHRa5hs", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "40", diff --git a/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json index 9e7b370f54..ad8d29a70d 100644 --- a/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.12mm Fine @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.12_nozzle_0.4", "from": "system", - "setting_id": "GP142", + "setting_id": "U8RMnKyefKwyyEqs", "instantiation": "true", "bottom_shell_layers": "7", "default_acceleration": "4000", diff --git a/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json index e898178e45..dc027c20ea 100644 --- a/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.16mm Balanced Quality @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Balanced Quality @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.16_nozzle_0.4", "from": "system", - "setting_id": "GP174", + "setting_id": "PBks1gcyPcxRhGtr", "instantiation": "true", "description": "High quality profile for 0.16mm layer height, prioritizing print quality and strength.", "default_acceleration": "4000", diff --git a/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json index 797f3d1171..768427590b 100644 --- a/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.16mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.16_nozzle_0.4", "from": "system", - "setting_id": "GP143", + "setting_id": "gArD4KZxMZuJnIUM", "instantiation": "true", "description": "Standard profile for 0.16mm layer height, prioritizing speed.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json index 9d0b072257..04b89f0bc7 100644 --- a/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Balanced Quality @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP137", + "setting_id": "EITxuIXk5oMAUbWS", "instantiation": "true", "description": "High quality profile for 0.6mm nozzle, prioritizing print quality and strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json index 7857a53630..bfed4e843f 100644 --- a/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.20mm Balanced Strength @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Balanced Strength @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.20_nozzle_0.4", "from": "system", - "setting_id": "GP173", + "setting_id": "G98ptq5O00Dv04YG", "instantiation": "true", "description": "High quality profile for 0.2mm layer height, prioritizing strength and print quality.", "bottom_shell_layers": "4", diff --git a/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json index 077f964866..bc244025ee 100644 --- a/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.20mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.20_nozzle_0.4", "from": "system", - "setting_id": "GP124", + "setting_id": "cONwYqNMrRynsMR1", "instantiation": "true", "description": "Standard profile for 0.4mm nozzle, prioritizing speed.", "default_acceleration": "8000", diff --git a/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json index 4a5c825966..6729e35a2b 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Balanced Quality @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP138", + "setting_id": "f21HvEQ2fofjVX5a", "instantiation": "true", "description": "High quality profile for 0.8mm nozzle, prioritizing print quality.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json index 75dda8a2c6..29642f1c58 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Balanced Strength @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP146", + "setting_id": "U3qj2P5b6g0bo2MV", "instantiation": "true", "description": "Strength profile for 0.6mm nozzle, prioritizing strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json b/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json index 1539d6bbcb..8358dcc909 100644 --- a/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json +++ b/resources/profiles/OpenEYE/process/0.24mm Standard @OpenEYE Peacock V2.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @OpenEYE Peacock V2", "inherits": "fdm_process_openeye_0.24_nozzle_0.4", "from": "system", - "setting_id": "GP144", + "setting_id": "G27ubepZXkYPQ0IW", "instantiation": "true", "default_acceleration": "8000", "initial_layer_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json b/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json index 8c01bfaa82..1bb810e39f 100644 --- a/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @OpenEYE Peacock V2 0.6 nozzle", "inherits": "fdm_process_openeye_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP125", + "setting_id": "o3HerJQnqHZDinoN", "instantiation": "true", "description": "Standard profile for 0.6mm nozzle, prioritizing speed.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json index 7fc3978dd1..41d575cfa2 100644 --- a/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Balanced Strength @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP149", + "setting_id": "ABm7CjdRKhvk1yYQ", "instantiation": "true", "description": "Strength profile for 0.8mm nozzle, prioritizing strength.", "bridge_speed": "50", diff --git a/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json b/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json index dc2336f4f7..5581a2801e 100644 --- a/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json +++ b/resources/profiles/OpenEYE/process/0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @OpenEYE Peacock V2 0.8 nozzle", "inherits": "fdm_process_openeye_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP126", + "setting_id": "SDp0weOnDWdnApMb", "instantiation": "true", "description": "Standard profile for 0.8mm nozzle, prioritizing speed.", "bridge_speed": "50", diff --git a/resources/profiles/OrcaArena.json b/resources/profiles/OrcaArena.json index 43b9a4fd68..c649cf3e6b 100644 --- a/resources/profiles/OrcaArena.json +++ b/resources/profiles/OrcaArena.json @@ -1,7 +1,7 @@ { "name": "Orca Arena Printer", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "Orca Arena configuration files", "machine_model_list": [ diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json index 513b41d499..a945d9670b 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C 0.2 nozzle", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00_00", + "setting_id": "kFPuOcy1vVSJ2mta", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json index 2f13a90224..684e0c7661 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C 0.8 nozzle", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00_01", + "setting_id": "RVxzC2TDEBPCExLD", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json index 92e3db9e33..8a1664b673 100644 --- a/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena ABS @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena ABS @Arena X1C", "inherits": "Arena ABS @base", "from": "system", - "setting_id": "GFSB00", + "setting_id": "25fcPM16xLDCkzr9", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json index 24604989b5..a5d716494b 100644 --- a/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PA-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PA-CF @Arena X1C", "inherits": "Arena PA-CF @base", "from": "system", - "setting_id": "GFSN00", + "setting_id": "HNAQ7QxxEkFzVR8R", "instantiation": "true", "filament_max_volumetric_speed": [ "8" diff --git a/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json index aeb0543ae8..0300ca2dc1 100644 --- a/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PAHT-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PAHT-CF @Arena X1C", "inherits": "Arena PAHT-CF @base", "from": "system", - "setting_id": "GFSN04", + "setting_id": "J9pZk6FWEksKLUB5", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json index 0923b290bf..77a1302f5b 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.2 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_02", + "setting_id": "avNV1IruWQnbpEm8", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json index 891d93a3a1..ab6bbd4be8 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.6 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_01", + "setting_id": "X8makbgEAsBKm4lw", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json index 1a9f1e47ce..d488a9d565 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C 0.8 nozzle", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00_00", + "setting_id": "wjNXBZ089sWoa8Bq", "instantiation": "true", "nozzle_temperature": [ "260" diff --git a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json index 9004fa5c97..347da1786f 100644 --- a/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PC @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PC @Arena X1C", "inherits": "Arena PC @base", "from": "system", - "setting_id": "GFSC00", + "setting_id": "jKE8fewlDCfLj8hK", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle" diff --git a/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json index 6f4760481d..445a497ba2 100644 --- a/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PET-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PET-CF @Arena X1C", "inherits": "Arena PET-CF @base", "from": "system", - "setting_id": "GFST01", + "setting_id": "vvn0qtZmexMRlvSa", "instantiation": "true", "slow_down_for_layer_cooling": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json index 1b085f0ad5..978aa7da5c 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C 0.2 nozzle", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_00", + "setting_id": "YgBVLL3GABpMUZPw", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json index eeb3f2df91..c80683d625 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C 0.8 nozzle", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_02", + "setting_id": "vBx9KPtRfLbcUlTQ", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json index f8ce3447f8..f965e4c23e 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG Basic @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PETG Basic @Arena X1C", "inherits": "Arena PETG Basic @base", "from": "system", - "setting_id": "GFSG00_01", + "setting_id": "XjxkHJgoLNpyqW0L", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json index fd53a401ff..d61c48e038 100644 --- a/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PETG-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PETG-CF @Arena X1C", "inherits": "Arena PETG-CF @base", "from": "system", - "setting_id": "GFSG50_01", + "setting_id": "hfQeDi2sXB62WWoA", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json index 590f4997f2..c058de273c 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00_00", + "setting_id": "BWfmscHWlV8kxaNX", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json index 2d37b64a28..72e58d1e7d 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C 0.8 nozzle", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00_01", + "setting_id": "zIaP3iJH2bV6zJ1K", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json index 9dbb908c62..1349b98af5 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Basic @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Basic @Arena X1C", "inherits": "Arena PLA Basic @base", "from": "system", - "setting_id": "GFSA00", + "setting_id": "dNZmk299IbO0lt5Y", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json index 51eeb13c51..f6cd738e88 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Impact @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Impact @Arena X1C", "inherits": "Arena PLA Impact @base", "from": "system", - "setting_id": "GFSA03", + "setting_id": "o2s2ESxiXnPZgTZF", "instantiation": "true", "filament_max_volumetric_speed": [ "23.2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json index cbd3cb4c73..ebd3ede9bc 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Marble @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Marble @Arena X1C", "inherits": "Arena PLA Marble @base", "from": "system", - "setting_id": "GFSA07_00", + "setting_id": "NLvXFDqqD8fkl2DQ", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json index aa4bbce94a..ba0fbb94f5 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01_00", + "setting_id": "O9zpg6YuyCcpMus8", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json index d78739aad6..ff11119f04 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C 0.8 nozzle", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01_01", + "setting_id": "ZsVcDebY4q4ATzvV", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json index 7cb2f02ce2..ff59b798d9 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Matte @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Matte @Arena X1C", "inherits": "Arena PLA Matte @base", "from": "system", - "setting_id": "GFSA01", + "setting_id": "DsJ6QdsKJ94kiS00", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json index 853ce895d8..6b48c775d4 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Metal @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Metal @base", "from": "system", - "setting_id": "GFSA02_01", + "setting_id": "7bHXeFGhlQAf6noa", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json index 0576d86aa1..90cf39e5c1 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Metal @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Metal @Arena X1C", "inherits": "Arena PLA Metal @base", "from": "system", - "setting_id": "GFSA02", + "setting_id": "OOesW9LPen32issX", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json index f1dff42a18..1dc212bf5a 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Silk @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Silk @base", "from": "system", - "setting_id": "GFSA05_00", + "setting_id": "Ey8IICwCrqLfYxdQ", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json index 612fbdb06c..e02108fb92 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Silk @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Silk @Arena X1C", "inherits": "Arena PLA Silk @base", "from": "system", - "setting_id": "GFSA05_01", + "setting_id": "MtrNeG05EHC47Wn1", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json index 7ffb0abcb1..e8291a318d 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Sparkle @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Sparkle @Arena X1C", "inherits": "Arena PLA Sparkle @base", "from": "system", - "setting_id": "GFSA08_00", + "setting_id": "mAZuRQdAzLNFTf0w", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json index 0cceacab04..3f89beb675 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA Tough @Arena X1C 0.2 nozzle", "inherits": "Arena PLA Tough @base", "from": "system", - "setting_id": "GFSA09_00", + "setting_id": "mQik38fn05zlMAWl", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json index 46ffd6380b..bd2161f952 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA Tough @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA Tough @Arena X1C", "inherits": "Arena PLA Tough @base", "from": "system", - "setting_id": "GFSA09_02", + "setting_id": "DyhePXtlMpQcl6kP", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json index 09a573095a..9006852965 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena PLA-CF @Arena X1C 0.8 nozzle", "inherits": "Arena PLA-CF @base", "from": "system", - "setting_id": "GFSA50_02", + "setting_id": "kCQ3oHXlyrHr3Kax", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json index 1438d93b1c..8f1b1acef7 100644 --- a/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena PLA-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena PLA-CF @Arena X1C", "inherits": "Arena PLA-CF @base", "from": "system", - "setting_id": "GFSA50_01", + "setting_id": "imDeceOg0WvrRwKo", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json index d13ae79bed..d596e08c75 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena Support G @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena Support G @Arena X1C", "inherits": "Arena Support G @base", "from": "system", - "setting_id": "GFSS01", + "setting_id": "XZT2nAJHs6F4QIeo", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json index 3364771c85..cf1aa57677 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Arena Support W @Arena X1C 0.2 nozzle", "inherits": "Arena Support W @base", "from": "system", - "setting_id": "GFSS00_00", + "setting_id": "5pMWRVIJS8vOcR4S", "instantiation": "true", "filament_max_volumetric_speed": [ "0.5" diff --git a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json index f0d4be436b..bafd568f3f 100644 --- a/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena Support W @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena Support W @Arena X1C", "inherits": "Arena Support W @base", "from": "system", - "setting_id": "GFSS00", + "setting_id": "hsvJ5i28mIHRGfat", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json b/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json index 09c645bdca..7ffdb61eb8 100644 --- a/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/Arena TPU 95A @Arena X1C.json @@ -3,7 +3,7 @@ "name": "Arena TPU 95A @Arena X1C", "inherits": "Arena TPU 95A @base", "from": "system", - "setting_id": "GFSU00", + "setting_id": "pjdiz15hZ4VHQCSe", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json index 2b8f47bfc4..37062950e4 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ABS @0.2 nozzle", "inherits": "OrcaArena Generic ABS @base", "from": "system", - "setting_id": "GFSB99_00", + "setting_id": "o9UpKuDWgaJT7sM5", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json index 5a9569bf6c..773f58289e 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ABS.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ABS", "inherits": "OrcaArena Generic ABS @base", "from": "system", - "setting_id": "GFSB99", + "setting_id": "5aN0QkAneu6yEWZh", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json index 6ca633dbcb..2d3f9a5026 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ASA @0.2 nozzle", "inherits": "OrcaArena Generic ASA @base", "from": "system", - "setting_id": "GFSB98_00", + "setting_id": "rV2Uymwz7aoouqiN", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json index fd0a01f484..d092b1f64d 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic ASA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic ASA", "inherits": "OrcaArena Generic ASA @base", "from": "system", - "setting_id": "GFSB98", + "setting_id": "8KdojTD3bygYDxwh", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json index 450fe75872..caf87f47e9 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "XHOpI9EFQmYoJ3Sy", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json index fbca796a40..2f4438a82b 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "IintLqJOecQcKmA8", "filament_id": "GFN99", "instantiation": "true", "required_nozzle_HRC": [ diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json index 77183eea9a..0a26869776 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PC @0.2 nozzle", "inherits": "OrcaArena Generic PC @base", "from": "system", - "setting_id": "GFSC99_00", + "setting_id": "THS8jolD0RsYaFzY", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json index a56573104b..024e76e0bc 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PC.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PC", "inherits": "OrcaArena Generic PC @base", "from": "system", - "setting_id": "GFSC99", + "setting_id": "WCiW1Yi88MEZIO2h", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json index 54567841dc..375031f137 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG @0.2 nozzle", "inherits": "OrcaArena Generic PETG @base", "from": "system", - "setting_id": "GFSG99_01", + "setting_id": "jcoeFJFmDil7U667", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json index 83aec4fcb9..0a6e9a9dbc 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG-CF @Arena X1C.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG-CF @Arena X1C", "inherits": "OrcaArena Generic PETG-CF @base", "from": "system", - "setting_id": "GFSG50", + "setting_id": "2OI2L2q50nSxam2z", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json index bd5b7ce336..8771a7b609 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PETG.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PETG", "inherits": "OrcaArena Generic PETG @base", "from": "system", - "setting_id": "GFSG99", + "setting_id": "1hFOFT9YOdnKBw1d", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json index d10e09f161..261cd931f6 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA @0.2 nozzle", "inherits": "OrcaArena Generic PLA @base", "from": "system", - "setting_id": "GFSL99_00", + "setting_id": "V1TMYgbxBLgciFa2", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json index 75b1cb2ce0..3b6b96bb72 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA Silk", "inherits": "OrcaArena Generic PLA Silk @base", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "WRy8oYxZ542SX6jO", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json index 9bdb6ec468..4a04e96360 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA-CF", "inherits": "OrcaArena Generic PLA-CF @base", "from": "system", - "setting_id": "GFSL98", + "setting_id": "qHV6B5JvmdtAQeNs", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json index 89107d56cd..2a3aef423c 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PLA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PLA", "inherits": "OrcaArena Generic PLA @base", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jGG0BiyRGgPDP8rB", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json index 322b967ee5..8892aac57f 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PVA @0.2 nozzle", "inherits": "OrcaArena Generic PVA @base", "from": "system", - "setting_id": "GFSS99_00", + "setting_id": "N6p6wvNCjR4Lv0WC", "instantiation": "true", "filament_max_volumetric_speed": [ "0.5" diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json index 218e6d34ab..42a68b5fee 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic PVA.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic PVA", "inherits": "OrcaArena Generic PVA @base", "from": "system", - "setting_id": "GFSS99", + "setting_id": "Qh5TOtrBfOFul0OC", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.4 nozzle", diff --git a/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json b/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json index d4d216ef46..a1451c04fd 100644 --- a/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json +++ b/resources/profiles/OrcaArena/filament/OrcaArena Generic TPU.json @@ -3,7 +3,7 @@ "name": "OrcaArena Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "uPHnZUr5Sb16uKZm", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json index 509a2bd967..a81e899e43 100644 --- a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Arena X1C 0.2 nozzle", "inherits": "PolyLite PLA @Arena X1C", "from": "system", - "setting_id": "GFSL25", + "setting_id": "6Mw8tOe4xZHhhwmm", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json index f194b8d358..91c86c236a 100644 --- a/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/PolyLite PLA @Arena X1C.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Arena X1C", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "GFSL19", + "setting_id": "5MUcuvGZJvFIbeIf", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json index 83728d133d..18d145f14b 100644 --- a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA @Arena X1C 0.2 nozzle", "inherits": "PolyTerra PLA @Arena X1C", "from": "system", - "setting_id": "GFSL24", + "setting_id": "IAZOaMNJd9httELA", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json index e01c784ca4..49b9b9412f 100644 --- a/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json +++ b/resources/profiles/OrcaArena/filament/PolyTerra PLA @Arena X1C.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA @Arena X1C", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "GFSL18", + "setting_id": "XZzZCDJvw8Ofj1E4", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json index dd279b8cfc..06517d190b 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.2 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "Sq2AU4u5YdGoPkKZ", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json index f8f1a1ab22..e6007fdb92 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.4 nozzle", "inherits": "fdm_bbl_3dp_001_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EXhiG8uJ1EHskisx", "instantiation": "true", "printer_model": "Orca Arena X1 Carbon", "default_filament_profile": [ diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json index 4f49b8d795..6da86ae949 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.6 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "MBPA7PIjLzEUebvk", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json index e835097520..6b96d2648b 100644 --- a/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/machine/Orca Arena X1 Carbon 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Orca Arena X1 Carbon 0.8 nozzle", "inherits": "Orca Arena X1 Carbon 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "cU6agIrtxdHgoA0X", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json index 55b10ff865..6094cd8748 100644 --- a/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.06mm Standard @Arena X1C 0.2 nozzle.json @@ -3,10 +3,9 @@ "name": "0.06mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "8hA0aiO1Qtv9IfeR", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json index 5817077387..bf86dc0727 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.08mm Extra Fine @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.08mm Extra Fine @Arena X1C", "inherits": "fdm_process_arena_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "t6ZUh6RIxH5i7Ju0", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json index 5df28b4737..3fc7023735 100644 --- a/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.08mm Standard @Arena X1C 0.2 nozzle.json @@ -3,10 +3,9 @@ "name": "0.08mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "AnDHc3M6fQLAl6VE", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json index 78037e2e56..88e6fcc7ad 100644 --- a/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.10mm Standard @Arena X1C 0.2 nozzle.json @@ -3,10 +3,9 @@ "name": "0.10mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "Z4u3mxJ72aSZDIxB", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json index e3a4c22358..6247866b62 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.12mm Fine @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.12mm Fine @Arena X1C", "inherits": "fdm_process_arena_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "orfsZJWNnKXKdxaZ", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json index 2925b1b5f7..07bc4c2c10 100644 --- a/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.12mm Standard @Arena X1C 0.2 nozzle.json @@ -3,10 +3,9 @@ "name": "0.12mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "GO4dmyDkhygncuJZ", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json index 0b6a31ed0c..8aed263410 100644 --- a/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.14mm Standard @Arena X1C 0.2 nozzle.json @@ -3,10 +3,9 @@ "name": "0.14mm Standard @Arena X1C 0.2 nozzle", "inherits": "fdm_process_arena_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "MVY5JxFxbdSUWTOW", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.2 nozzle", - "Orca Arena X1 0.2 nozzle" + "Orca Arena X1 Carbon 0.2 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json index 30e9fc7744..41fa924295 100644 --- a/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.16mm Optimal @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.16mm Optimal @Arena X1C", "inherits": "fdm_process_arena_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "KGSeKT36RuDzR3E6", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json index 5fd8f7356a..77dadbf538 100644 --- a/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.18mm Standard @Arena X1C 0.6 nozzle.json @@ -3,10 +3,9 @@ "name": "0.18mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "IbPMWoSXjuZxo5po", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json index 2fd3148e2f..53ea2b1a9e 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Bambu Support W @Arena X1C.json @@ -3,7 +3,7 @@ "name": "0.20mm Arena Support W @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "GbnCSaKZmIxFJiQU", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", @@ -15,7 +15,6 @@ "support_interface_filament": "0", "enable_prime_tower": "1", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json index f4a52fdc41..d0c2031acd 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Standard @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.20mm Standard @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "vKHHMGciyRPz96ys", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json index 45191cfadc..ee901caa2e 100644 --- a/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.20mm Strength @Arena X1C.json @@ -3,13 +3,12 @@ "name": "0.20mm Strength @Arena X1C", "inherits": "fdm_process_arena_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "FjVoPLBVhhfkZcti", "instantiation": "true", "outer_wall_speed": "60", "wall_loops": "6", "sparse_infill_density": "25%", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json index ad4d86daf6..699f45deee 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.24mm Draft @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.24mm Draft @Arena X1C", "inherits": "fdm_process_arena_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "A3tBfYESL5BUa6az", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json index 3c0911de5b..32786a465d 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.6 nozzle.json @@ -3,10 +3,9 @@ "name": "0.24mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "EHZbaCSjWI2NuLBb", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json index 2b79fc72eb..95ed3be57d 100644 --- a/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.24mm Standard @Arena X1C 0.8 nozzle.json @@ -3,10 +3,9 @@ "name": "0.24mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "YUmFXao5txOnlhO6", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json index 302da6382f..9a38db80af 100644 --- a/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json +++ b/resources/profiles/OrcaArena/process/0.28mm Extra Draft @Arena X1C.json @@ -3,10 +3,9 @@ "name": "0.28mm Extra Draft @Arena X1C", "inherits": "fdm_process_arena_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "Q03WAuYXUC4h4Vyk", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.4 nozzle", - "Orca Arena X1 0.4 nozzle" + "Orca Arena X1 Carbon 0.4 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json index 04b8053a6b..356a1c63a6 100644 --- a/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.30mm Standard @Arena X1C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "QXic13ZwbeezBFC3", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.6 nozzle" diff --git a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json index e690dc9c90..20d5bc0dca 100644 --- a/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.30mm Strength @Arena X1C 0.6 nozzle.json @@ -3,12 +3,11 @@ "name": "0.30mm Strength @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP036", + "setting_id": "Fta7TXvjXtW72vf2", "instantiation": "true", "wall_loops": "4", "sparse_infill_density": "25%", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json index 2009a871c9..2438ba8d71 100644 --- a/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.32mm Standard @Arena X1C 0.8 nozzle.json @@ -3,10 +3,9 @@ "name": "0.32mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "B1M42JYHlcp5aUoq", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json index 7b92f50cfa..04a6431b1f 100644 --- a/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.36mm Standard @Arena X1C 0.6 nozzle.json @@ -3,10 +3,9 @@ "name": "0.36mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "N5ONn0pY2DO8xlFq", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json index b27d89bccd..9037e5dda0 100644 --- a/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.40mm Standard @Arena X1C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "4YeU7BBwA2jQJhyO", "instantiation": "true", "compatible_printers": [ "Orca Arena X1 Carbon 0.8 nozzle" diff --git a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json index d611416d2e..ea6aed50dc 100644 --- a/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.42mm Standard @Arena X1C 0.6 nozzle.json @@ -3,10 +3,9 @@ "name": "0.42mm Standard @Arena X1C 0.6 nozzle", "inherits": "fdm_process_arena_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "aKOq8cZ3LHNl61tR", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.6 nozzle", - "Orca Arena X1 0.6 nozzle" + "Orca Arena X1 Carbon 0.6 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json index ee0659a5d9..079f2d6c0f 100644 --- a/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.48mm Standard @Arena X1C 0.8 nozzle.json @@ -3,10 +3,9 @@ "name": "0.48mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "ZcviTCabCemJLEEa", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json index 179c263f39..49de0404c6 100644 --- a/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json +++ b/resources/profiles/OrcaArena/process/0.56mm Standard @Arena X1C 0.8 nozzle.json @@ -3,10 +3,9 @@ "name": "0.56mm Standard @Arena X1C 0.8 nozzle", "inherits": "fdm_process_arena_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "tqiu1hNVhXEsBBig", "instantiation": "true", "compatible_printers": [ - "Orca Arena X1 Carbon 0.8 nozzle", - "Orca Arena X1 0.8 nozzle" + "Orca Arena X1 Carbon 0.8 nozzle" ] } diff --git a/resources/profiles/OrcaFilamentLibrary.json b/resources/profiles/OrcaFilamentLibrary.json index 2793d510f0..cd9abd8b0d 100644 --- a/resources/profiles/OrcaFilamentLibrary.json +++ b/resources/profiles/OrcaFilamentLibrary.json @@ -1,6 +1,6 @@ { "name": "OrcaFilamentLibrary", - "version": "02.04.00.02", + "version": "02.04.00.03", "force_update": "0", "description": "Orca Filament Library", "filament_list": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json index 1fd91c3871..cf10b79079 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PA-CF @System.json @@ -3,7 +3,7 @@ "name": "AliZ PA-CF @System", "inherits": "AliZ PA-CF @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "swYTbQ8tIa0jDyig", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json index eb98c2bebe..44abbccf92 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG @System.json @@ -3,7 +3,7 @@ "name": "AliZ PETG @System", "inherits": "AliZ PETG @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "CjFEZncKH2LZ7Mp5", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json index 073ff49dff..f461787c2d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-CF @System.json @@ -3,6 +3,6 @@ "name": "AliZ PETG-CF @System", "inherits": "AliZ PETG-CF @base", "from": "system", - "setting_id": "AliZGFSG50", + "setting_id": "555sCo8kTz4YA1pw", "instantiation": "true" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json index 4c50624cf6..0df530eee4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PETG-Metal @System.json @@ -3,7 +3,7 @@ "name": "AliZ PETG-Metal @System", "inherits": "AliZ PETG-Metal @base", "from": "system", - "setting_id": "AliZGFSG50", + "setting_id": "IGZMIStlTq0zC1uf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json index 2a15c79581..64e720de5d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/AliZ/AliZ PLA @System.json @@ -3,7 +3,7 @@ "name": "AliZ PLA @System", "inherits": "AliZ PLA @base", "from": "system", - "setting_id": "AliZGFSA04", + "setting_id": "VX7vgZ1EKA6FYoud", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json index bce1e7204d..30b5938bd1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS @System.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @System", "inherits": "Bambu ABS @base", "from": "system", - "setting_id": "OGFSB00", + "setting_id": "iXiD2dx3qXFVPHRi", "instantiation": "true", "fan_max_speed": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json index 1e7931ce94..2a0c04401e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "Bambu ABS-GF @System", "inherits": "Bambu ABS-GF @base", "from": "system", - "setting_id": "OGFSB50_00", + "setting_id": "mxgv6vFKgwBAF1Gw", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json index 9e0a8457e5..d94e4e4d83 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA @System", "inherits": "Bambu ASA @base", "from": "system", - "setting_id": "OGFSB01_00", + "setting_id": "NEYuPnFvaHGhAdpD", "instantiation": "true", "fan_min_speed": [ "25" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json index 1d5027b431..38ff8539e3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-Aero @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-Aero @System", "inherits": "Bambu ASA-Aero @base", "from": "system", - "setting_id": "OGFSB02_00", + "setting_id": "Z1SeI4Lll9gz2USx", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json index 0f13cbfe12..2185830aa6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu ASA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu ASA-CF @System", "inherits": "Bambu ASA-CF @base", "from": "system", - "setting_id": "OGFSB51_00", + "setting_id": "SsFpqlvxTjHLQXaI", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json index 191e1dad74..cadf540846 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA-CF @System", "inherits": "Bambu PA-CF @base", "from": "system", - "setting_id": "OGFSN00", + "setting_id": "XTve0TGrHzrMdBnZ", "instantiation": "true", "nozzle_temperature_initial_layer": [ "290" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json index 3365706a91..2d7a0843b3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-CF @System", "inherits": "Bambu PA6-CF @base", "from": "system", - "setting_id": "OGFSN05_02", + "setting_id": "gVuTMuWZIYCBze5M", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json index 69ba4d9769..337bcfae2c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PA6-GF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PA6-GF @System", "inherits": "Bambu PA6-GF @base", "from": "system", - "setting_id": "OGFSN08_00", + "setting_id": "tH7iGIF05H81n9Ap", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json index 37142291ee..c751602c7a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PAHT-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PAHT-CF @System", "inherits": "Bambu PAHT-CF @base", "from": "system", - "setting_id": "OGFSN04", + "setting_id": "x7uF6OpFuWDEyTXQ", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json index e418d4b977..2de9e190d2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC @System.json @@ -3,7 +3,7 @@ "name": "Bambu PC @System", "inherits": "Bambu PC @base", "from": "system", - "setting_id": "OGFSC00", + "setting_id": "piqS3ekvyUfN9dgG", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json index bf7df1f0b0..a3abfb5bd5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PC FR @System.json @@ -3,7 +3,7 @@ "name": "Bambu PC FR @System", "inherits": "Bambu PC FR @base", "from": "system", - "setting_id": "OGFSC01_00", + "setting_id": "m7TaVFWJZUqzf0rP", "instantiation": "true", "fan_max_speed": [ "40" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json index 276889589b..629ba1b3c8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PET-CF @System", "inherits": "Bambu PET-CF @base", "from": "system", - "setting_id": "OGFST01", + "setting_id": "n97P7KBaImDlK41v", "instantiation": "true", "reduce_fan_stop_start_freq": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json index 31f9c87332..0eb5c7c460 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Basic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Basic @System", "inherits": "Bambu PETG Basic @base", "from": "system", - "setting_id": "OGFSG00_01", + "setting_id": "CCfgYCmjECjEC2ZS", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json index ab39220bb1..ac9a5c3db0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG HF @System", "inherits": "Bambu PETG HF @base", "from": "system", - "setting_id": "OGFSG02_00", + "setting_id": "yftn2hhK5OuD6W3o", "instantiation": "true", "fan_cooling_layer_time": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json index e7a4ab92b7..990343ec8e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG Translucent @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG Translucent @System", "inherits": "Bambu PETG Translucent @base", "from": "system", - "setting_id": "OGFSG01_00", + "setting_id": "qUW9pYQ6aYUpMb2I", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json index 79f83a60b7..2474c3c9da 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PETG-CF @System", "inherits": "Bambu PETG-CF @base", "from": "system", - "setting_id": "OGFSG50_01", + "setting_id": "jQJcpezqrMLc3PM0", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json index ac07c31d48..511914839a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Aero @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Aero @System", "inherits": "Bambu PLA Aero @base", "from": "system", - "setting_id": "OGFSA11_01", + "setting_id": "R499nyjJA5r7khOd", "instantiation": "true", "additional_cooling_fan_speed": [ "0" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json index 4aa6901b74..04ae179bcc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Basic @System", "inherits": "Bambu PLA Basic @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "zkc85XTKi4cb6cOw", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json index dbbdc3926c..15adc3e70f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Dynamic @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Dynamic @System", "inherits": "Bambu PLA Dynamic @base", "from": "system", - "setting_id": "OGFSA13_00", + "setting_id": "NZkeYlElza4KiVEo", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json index 60b063f4d7..69dc00e4e1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Galaxy @System", "inherits": "Bambu PLA Galaxy @base", "from": "system", - "setting_id": "OGFSA15_00", + "setting_id": "O21mHwtRSSE6HEfS", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json index 290a4e442e..62b7248f32 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Glow @System", "inherits": "Bambu PLA Glow @base", "from": "system", - "setting_id": "OGFSA12_00", + "setting_id": "BiwTTWJCMV2qcaF1", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json index 081109620c..342d7667f8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Impact @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Impact @System", "inherits": "Bambu PLA Impact @base", "from": "system", - "setting_id": "OGFSA03", + "setting_id": "1qdr65SvIErZzxN3", "instantiation": "true", "filament_max_volumetric_speed": [ "23.2" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json index 4e48f57fb3..0573904f7f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Marble @System", "inherits": "Bambu PLA Marble @base", "from": "system", - "setting_id": "OGFSA07_00", + "setting_id": "oNGmbbdba2aULYwQ", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json index 4691b05146..bb359354b1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Matte @System", "inherits": "Bambu PLA Matte @base", "from": "system", - "setting_id": "OGFSA01", + "setting_id": "POQTCsM5qwSXswgr", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json index bef9200db6..7a1a9661d8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Metal @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Metal @System", "inherits": "Bambu PLA Metal @base", "from": "system", - "setting_id": "OGFSA02", + "setting_id": "7w5T6uXXrwLzQb5D", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json index d1551cdac4..8114f02586 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk @System", "inherits": "Bambu PLA Silk @base", "from": "system", - "setting_id": "OGFSA05_01", + "setting_id": "urdS8L3VweWtD0bW", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json index fda0d26d25..c58e4dbc95 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Silk+ @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Silk+ @System", "inherits": "Bambu PLA Silk+ @base", "from": "system", - "setting_id": "OGFSA06_00", + "setting_id": "zsVhjbZLne5ejStD", "instantiation": "true", "supertack_plate_temp": [ "35" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json index eb61c722ed..e766cc69bc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Sparkle @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Sparkle @System", "inherits": "Bambu PLA Sparkle @base", "from": "system", - "setting_id": "OGFSA08_00", + "setting_id": "nSp6ub9WA5JHbtWd", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json index f97e8f8de4..98ac23e383 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Tough @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Tough @System", "inherits": "Bambu PLA Tough @base", "from": "system", - "setting_id": "OGFSA09_02", + "setting_id": "ZxjDjF5XAaoeOobw", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json index 28308d0e7f..4c48b3349b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA Wood @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA Wood @System", "inherits": "Bambu PLA Wood @base", "from": "system", - "setting_id": "OGFSA16_00", + "setting_id": "FJKP4YybAXlqyiRm", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json index 6c22da2123..a677e25a26 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PLA-CF @System", "inherits": "Bambu PLA-CF @base", "from": "system", - "setting_id": "OGFSA50_01", + "setting_id": "JKf6MqhbAM6NRWNY", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json index 3fc9da6fa6..4200478407 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "Bambu PPA-CF @System", "inherits": "Bambu PPA-CF @base", "from": "system", - "setting_id": "OGFSN06_00", + "setting_id": "NEjBweIYKppi6T0Q", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json index 4bc6c18b10..b0f82e6b71 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu PVA @System.json @@ -3,7 +3,7 @@ "name": "Bambu PVA @System", "inherits": "Bambu PVA @base", "from": "system", - "setting_id": "OGFSS04_00", + "setting_id": "Eb9Y2xbVDpjuptrv", "instantiation": "true", "nozzle_temperature": [ "240" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json index 66d00a82b5..8ebc375bfc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PA PET @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PA/PET @System", "inherits": "Bambu Support For PA/PET @base", "from": "system", - "setting_id": "OGFSS03_00", + "setting_id": "mCBL1pC0zpJgldvZ", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json index ecaa46dd40..062522f7cc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA @System", "inherits": "Bambu Support For PLA @base", "from": "system", - "setting_id": "OGFSS02_02", + "setting_id": "EwkurYYKRtkXvAVY", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json index 883a683ecb..06af8de863 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support For PLA-PETG @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support For PLA/PETG @System", "inherits": "Bambu Support For PLA/PETG @base", "from": "system", - "setting_id": "OGFSS05_00", + "setting_id": "0DgThBMi9bjVyuOg", "instantiation": "true", "eng_plate_temp": [ "60" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json index 8850a48df7..9233ede34d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support G @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support G @System", "inherits": "Bambu Support G @base", "from": "system", - "setting_id": "OGFSS01", + "setting_id": "9W0SIxe7p768jkfE", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json index edbb956b7c..5902330b25 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support W @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support W @System", "inherits": "Bambu Support W @base", "from": "system", - "setting_id": "OGFSS00", + "setting_id": "3nHpt1cLFgd9DAiF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json index 17988b0616..3e998e0cc4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu Support for ABS @System.json @@ -3,7 +3,7 @@ "name": "Bambu Support for ABS @System", "inherits": "Bambu Support for ABS @base", "from": "system", - "setting_id": "OGFSS06_00", + "setting_id": "5fy5QeiH5NyGq69r", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json index a9f0036bc6..5973e084b3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A @System", "inherits": "Bambu TPU 95A @base", "from": "system", - "setting_id": "OGFSU00", + "setting_id": "LVi6dblW9n9rnSNJ", "instantiation": "true", "filament_max_volumetric_speed": [ "3.6" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json index 515cdcbea3..ffa696521a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Bambu/Bambu TPU 95A HF @System.json @@ -3,7 +3,7 @@ "name": "Bambu TPU 95A HF @System", "inherits": "Bambu TPU 95A HF @base", "from": "system", - "setting_id": "OGFSU00_00", + "setting_id": "WGZWLSIr7CI2UMB5", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json index 0601318b97..d64cf89771 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS @System.json @@ -3,7 +3,7 @@ "name": "COEX ABS @System", "inherits": "COEX ABS @base", "from": "system", - "setting_id": "COXABS01", + "setting_id": "i5h7v70QQ9wy4NYt", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json index 8c41250996..67445118fc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ABS PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX ABS PRIME @System", "inherits": "COEX ABS PRIME @base", "from": "system", - "setting_id": "CXABSP09", + "setting_id": "vmdyGfZuHpvvozwb", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json index 42173eb034..5ce76b5752 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX ASA PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX ASA PRIME @System", "inherits": "COEX ASA PRIME @base", "from": "system", - "setting_id": "CXASAP04", + "setting_id": "lh6T3We3AQa45aKJ", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json index ff3b4e77fe..630d146e4c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "COEX NYLEX PA6-CF @System", "inherits": "COEX NYLEX PA6-CF @base", "from": "system", - "setting_id": "CXPACF23", + "setting_id": "sAQi35NOKJrl1Sre", "instantiation": "true", "filament_max_volumetric_speed": [ "11" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json deleted file mode 100644 index 5462c9b398..0000000000 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX NYLEX UNFILLED @System.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "type": "filament", - "name": "COEX NYLEX PA6-CF @System", - "inherits": "COEX NYLEX PA6-CF @base", - "from": "system", - "setting_id": "CXPAUN21", - "instantiation": "true", - "filament_max_volumetric_speed": [ - "11" - ], - "filament_long_retractions_when_cut": [ - "nil" - ], - "filament_retraction_distances_when_cut": [ - "nil" - ], - "compatible_printers": [] -} diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json index 3e23c9ce82..7b5ce84f44 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PCTG PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX PCTG PRIME @System", "inherits": "COEX PCTG PRIME @base", "from": "system", - "setting_id": "CXPCTG15", + "setting_id": "tacudYmqOs7dg3if", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json index fffdece7ca..0771bbc941 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PETG @System.json @@ -3,7 +3,7 @@ "name": "COEX PETG @System", "inherits": "COEX PETG @base", "from": "system", - "setting_id": "CXPETG13", + "setting_id": "lbxaL0svepWiafit", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json index 4e2f74f8dc..2b624e25fb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA @System", "inherits": "COEX PLA @base", "from": "system", - "setting_id": "C0XPLA02", + "setting_id": "f1S6sfscdACvBAkV", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json index f2fa914be8..56eed0fe79 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA PRIME @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA PRIME @System", "inherits": "COEX PLA PRIME @base", "from": "system", - "setting_id": "C0XPLA08", + "setting_id": "CM2zZh3KXZnT0YEu", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json index 6779ea56c2..7eb37845fa 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX PLA+Silk @System.json @@ -3,7 +3,7 @@ "name": "COEX PLA+Silk @System", "inherits": "COEX PLA+Silk @base", "from": "system", - "setting_id": "C0XPLS03", + "setting_id": "jiNaW1hx0ChKRApF", "instantiation": "true", "filament_max_volumetric_speed": [ "15" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json index 0345eccb99..e68daf7313 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 30D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 30D @System", "inherits": "COEX TPE 30D @base", "from": "system", - "setting_id": "C0X30D20", + "setting_id": "8J6j9sU1tkqpTVas", "instantiation": "true", "filament_max_volumetric_speed": [ "3.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json index fc29c8b09b..bfd56d195d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 40D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 40D @System", "inherits": "COEX TPE 40D @base", "from": "system", - "setting_id": "C0X40D18", + "setting_id": "5O6zPyLhGADPnBCP", "instantiation": "true", "filament_max_volumetric_speed": [ "5.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json index 46c056d616..91c6f9f5c7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPE 60D @System.json @@ -3,7 +3,7 @@ "name": "COEX TPE 60D @System", "inherits": "COEX TPE 60D @base", "from": "system", - "setting_id": "C0X60D19", + "setting_id": "LXdsCIX0yX1qesC1", "instantiation": "true", "filament_max_volumetric_speed": [ "6.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json index c027be8466..6405a601f2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/COEX/COEX TPU 60A @System.json @@ -3,7 +3,7 @@ "name": "COEX TPU 60A @System", "inherits": "COEX TPU 60A @base", "from": "system", - "setting_id": "C0X60A17", + "setting_id": "7CQX9fvYjknjiwmQ", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json index bb6f1ebd94..6f46fb74dd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS @System.json @@ -3,7 +3,6 @@ "name": "DREMC ABS @System", "inherits": "DREMC ABS @base", "from": "system", - "setting_id": "DREMC003", "instantiation": "false", "compatible_printers": [] } \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json index 1eb4fcd076..e9279cc5ba 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS+ @System.json @@ -3,7 +3,6 @@ "name": "DREMC ABS+ @System", "inherits": "DREMC ABS+ @base", "from": "system", - "setting_id": "DREMC004", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json index 73ffb7f363..f5cde22b77 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "DREMC ABS-GF @System", "inherits": "DREMC ABS-GF @base", "from": "system", - "setting_id": "DREMC009", + "setting_id": "eWq555EPhD9cVAPL", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json index b4026708da..6a11bbe8ce 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA @System", "inherits": "DREMC ASA @base", "from": "system", - "setting_id": "DREMC005", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json index dd81c1f531..6814312593 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA CF @System", "inherits": "DREMC ASA CF @base", "from": "system", - "setting_id": "DREMC012_00", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json index c751f9e86c..e40cd71479 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC ASA GF @System.json @@ -3,7 +3,6 @@ "name": "DREMC ASA GF @System", "inherits": "DREMC ASA GF @base", "from": "system", - "setting_id": "DREMC013_00", "instantiation": "false", "compatible_printers": [] } \ No newline at end of file diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json index a187a36efd..0cecab4c3c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA12-CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC PA12-CF @System", "inherits": "DREMC PA12-CF @base", "from": "system", - "setting_id": "DREMC007", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json index 00ee3751c5..61b28cdb4d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "DREMC PA6-CF @System", "inherits": "DREMC PA6-CF @base", "from": "system", - "setting_id": "DREMC006", + "setting_id": "GPnfqyRGptMQSsGP", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json index 5b277a22af..80100b072f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PET-CF @System.json @@ -3,7 +3,6 @@ "name": "DREMC PET-CF @System", "inherits": "DREMC PET-CF @base", "from": "system", - "setting_id": "DREMC008", "instantiation": "false", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json index e5c8e669cb..04cfb22339 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PETG @System.json @@ -3,7 +3,6 @@ "name": "DREMC PETG @System", "inherits": "DREMC PETG @base", "from": "system", - "setting_id": "DREMC002", "instantiation": "false", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json index b2b78aa204..a2b96c1862 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA HS @System.json @@ -3,7 +3,6 @@ "name": "DREMC PLA+ HS @System", "inherits": "DREMC PLA+ @base", "from": "system", - "setting_id": "DREMC011", "instantiation": "false", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json index 116ce2393f..71ff24bb1b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PLA+ @System.json @@ -3,7 +3,6 @@ "name": "DREMC PLA+ @System", "inherits": "DREMC PLA+ @base", "from": "system", - "setting_id": "DREMC001", "instantiation": "false", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json index a8b216a7cc..32edda19c3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "DREMC PPA-CF @System", "inherits": "DREMC PPA-CF @base", "from": "system", - "setting_id": "DREMC010", + "setting_id": "flUD84NuiAfCit8z", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json index 7645654b4e..3b58f57d25 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/DREMC/DREMC TPU 95A @System.json @@ -3,7 +3,6 @@ "name": "DREMC TPU 95A @System", "inherits": "DREMC TPU 95A @base", "from": "system", - "setting_id": "DREMC010", "instantiation": "false", "filament_max_volumetric_speed": [ "6" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json index 7cc7ea7eea..24fdb45be8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas ASA @System.json @@ -3,7 +3,7 @@ "name": "Elas ASA @System", "inherits": "Elas ASA @base", "from": "system", - "setting_id": "OGFSB01_00", + "setting_id": "xSqkEuXy5sktDx9b", "instantiation": "true", "fan_min_speed": [ "25" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json index bdff2ca67b..0c93f67562 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PETG Basic @System.json @@ -3,7 +3,7 @@ "name": "Elas PETG Basic @System", "inherits": "Elas PETG Basic @base", "from": "system", - "setting_id": "OGFSG00_01", + "setting_id": "zS9x67Qf9TSYFmu2", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json index cb36d744d4..158bbfcec7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Elas PLA Basic @System", "inherits": "Elas PLA Basic @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "ClTJxM5nECKvGVNe", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json index 6ce30a33b4..c2a18c6495 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elas/Elas PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "Elas PLA Pro @System", "inherits": "Elas PLA Pro @base", "from": "system", - "setting_id": "OGFSA00", + "setting_id": "M6lezmKWfkgoj0V0", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json index cee17f94ce..51121cf6fc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ABS @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ABS @System", "inherits": "Elegoo ABS @base", "from": "system", - "setting_id": "OEABSS00", + "setting_id": "UKRDINWkDngjN16F", "instantiation": "true", "renamed_from": "Elegoo ABS", "fan_max_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json index e5b2e66a10..6bd0ca95fd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA @System", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "OEASAS00", + "setting_id": "mpSVVs77BAdKmtP6", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json index 67881a1152..13266c87b5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo ASA-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo ASA-CF @System", "inherits": "Elegoo ASA @base", "from": "system", - "setting_id": "OEASACFS00", + "setting_id": "XT1aUl4pe9t0Ijwg", "instantiation": "true", "renamed_from": "Elegoo ASA-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json index 1f9c14d50d..d7dd19c086 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PAHT-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PAHT-CF @System", "inherits": "Elegoo PAHT @base", "from": "system", - "setting_id": "OEPAHTCFS00", + "setting_id": "S073oXCeOlTEqh6L", "instantiation": "true", "renamed_from": "Elegoo PAHT-CF", "close_fan_the_first_x_layers": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json index 79c73d4400..8d2dcf83b7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PC @System", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "OEPCS00", + "setting_id": "NlNHcKHlkiq8khIf", "instantiation": "true", "renamed_from": "Elegoo PC", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json index 22dcd15ad7..1fecee514c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PC-FR @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PC-FR @System", "inherits": "Elegoo PC @base", "from": "system", - "setting_id": "OEPCFRS00", + "setting_id": "JcopkaXZ7YyLjIcw", "instantiation": "true", "renamed_from": "Elegoo PC-FR", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json index 215dd7fb67..0c1c4265b7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PET-CF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETCFS00", + "setting_id": "oloKoC4Bs8dXatMU", "instantiation": "true", "renamed_from": "Elegoo PET-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json index 00b3abe6ba..621945f027 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGS00", + "setting_id": "4PLHMrDEDw4HLTve", "instantiation": "true", "renamed_from": "Elegoo PETG", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json index 65ca9560b0..35b941684a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG HF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OERPETGHFS00", + "setting_id": "d6gNuzrG00SXvMth", "instantiation": "true", "renamed_from": "Elegoo PETG HF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json index 56220644d9..c16448b1e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG PRO @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG PRO @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGPROS00", + "setting_id": "fdfCAYQEoYa9DN6I", "instantiation": "true", "pressure_advance": [ "0.1" @@ -18,5 +18,5 @@ "5" ], "compatible_printers": [], - "renamed_from": "Elegoo PETG PRO" + "renamed_from": "Elegoo PETG PRO;Elegoo PETG Pro @System" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json index 90944b2256..0346a8eef0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG Translucent @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG Translucent @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGTRANSS00", + "setting_id": "80Auuv3K7l8IptF3", "instantiation": "true", "renamed_from": "Elegoo PETG Translucent", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json index 262967a7a3..81e5b99afc 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-CF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGCFS00", + "setting_id": "bXRJMaXxB3V49x7R", "instantiation": "true", "renamed_from": "Elegoo PETG-CF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json index bcd79021f7..48cd287ba6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PETG-GF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PETG-GF @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OEPETGFS00", + "setting_id": "9NXaejLGh1VFX8bg", "instantiation": "true", "renamed_from": "Elegoo PETG-GF", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json index c806611a42..6120c0ac97 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAS00", + "setting_id": "jiwZ5eoW1vHoJv9K", "instantiation": "true", "filament_max_volumetric_speed": [ "21" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json index d305fe60b2..cdff566915 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Basic @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Basic @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLABASICS00", + "setting_id": "qHDFHECwAInvpuk2", "instantiation": "true", "renamed_from": "Elegoo PLA Basic", "nozzle_temperature": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json index 702ca4fbf2..6874695462 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Galaxy @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAGALAXYS00", + "setting_id": "WXEEksjWsTbRyCPh", "instantiation": "true", "renamed_from": "Elegoo PLA Galaxy", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json index b5442c93cf..1cd70e904b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Glow @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAGLOWS00", + "setting_id": "yFdF2YmEMeCHiPxl", "instantiation": "true", "renamed_from": "Elegoo PLA Glow", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json index b9dc720687..825a6c0dd9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Marble @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAMARBLES00", + "setting_id": "kq7NS8IhIV4cBI1C", "instantiation": "true", "renamed_from": "Elegoo PLA Marble", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json index 6432e78e81..e1361a4b5b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Matte @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAMS00", + "setting_id": "UykE255l5V0oS0Ca", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json index 5f1a94a744..3526f87a69 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA PRO @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA PRO @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAPROS00", + "setting_id": "62GiUVVZd8kx21vw", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json index dcd0aaceb4..475354ca02 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Silk @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLASS00", + "setting_id": "VkXguNj79KADxuYn", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json index 98efe996aa..fc4070bbe7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Sparkle @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Sparkle @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLASPARKLES00", + "setting_id": "VwZIFCojZLQLPrI1", "instantiation": "true", "renamed_from": "Elegoo PLA Sparkle", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json index 7fd5c82416..178976527f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Translucent2 @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Translucent2 @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLATRA2S00", + "setting_id": "q0koYRlO9X8xLXPM", "instantiation": "true", "renamed_from": "Elegoo PLA Translucent2", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json index 10a3680fe9..abae441db5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA Wood @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA Wood @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAWOODS00", + "setting_id": "pMgazYJG8tyTpAVE", "instantiation": "true", "renamed_from": "Elegoo PLA Wood", "fan_min_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json index 4074a97c00..b2bd83416d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA+ @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLAPLUSS00", + "setting_id": "q7NpDtaD9dTq1HIZ", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json index ba130a46b5..4ec26c71ba 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Elegoo PLA-CF @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OEPLACFS00", + "setting_id": "cYxM93L2KZBnAuWu", "instantiation": "true", "fan_cooling_layer_time": [ "80" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json index 8cfea00748..92b7cb43ef 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PETG @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid PETG @System", "inherits": "Elegoo PETG @base", "from": "system", - "setting_id": "OERPETGS00", + "setting_id": "uUQSVOvP8tAaDqvB", "instantiation": "true", "pressure_advance": [ "0.052" @@ -33,5 +33,5 @@ "250" ], "compatible_printers": [], - "renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+" + "renamed_from": "Elegoo Rapid PETG;Elegoo Rapid PETG+;Elegoo RAPID PETG;Elegoo RAPID PETG+" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json index 7913e35ff3..f19e51bcf3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid PLA+ @System", "inherits": "Elegoo PLA @base", "from": "system", - "setting_id": "OERPLAPLUSS00", + "setting_id": "HZ4nP67iAG7a243e", "instantiation": "true", "fan_cooling_layer_time": [ "80" @@ -45,5 +45,5 @@ "; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}" ], "compatible_printers": [], - "renamed_from": "Elegoo Rapid PLA+" + "renamed_from": "Elegoo Rapid PLA+;Elegoo RAPID PLA+" } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json index 9465a56d7a..2006a6494b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo Rapid TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Elegoo Rapid TPU 95A @System", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "OERTPU95AS00", + "setting_id": "WXLuO112bsdM37MI", "instantiation": "true", "renamed_from": "Elegoo Rapid TPU 95A", "pressure_advance": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json index 9c19595a56..fb4260fae0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Elegoo/Elegoo TPU 95A @System.json @@ -3,7 +3,7 @@ "name": "Elegoo TPU 95A @System", "inherits": "Elegoo TPU @base", "from": "system", - "setting_id": "OETPU95AS00", + "setting_id": "SLcn59fIZPDl2brJ", "instantiation": "true", "renamed_from": "Elegoo TPU 95A", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json index 775c51a78e..6d5dd368bf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ABS @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP017", - "setting_id": "GFSEP017_00", + "setting_id": "R1lkPc60BdFq6i2Z", "name": "Eolas Prints ABS @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json index c747f8b9e7..8446ca6746 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints ASA @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP018", - "setting_id": "GFSEP018_00", + "setting_id": "JFXFsEzqXxNqxnsL", "name": "Eolas Prints ASA @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json index 1a26378083..104dd1e567 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP010", - "setting_id": "GFSEP010_00", + "setting_id": "u9fzEmHRAACOHT6J", "name": "Eolas Prints PETG @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json index 234899a38e..8e1aa05628 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP012", - "setting_id": "GFSEP012_00", + "setting_id": "BY3z4yKW9PQZwgto", "name": "Eolas Prints PETG Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json index 399ae3fe72..8c4c299849 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PETG UV Resistant @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP011", - "setting_id": "GFSEP011_00", + "setting_id": "eexjO9xiesNROPCK", "name": "Eolas Prints PETG UV Resistant @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json index 0e4988d1df..9ce7087dd2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Antibacterial @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP008", - "setting_id": "GFSEP008_00", + "setting_id": "LAihILsSxo3djWjq", "name": "Eolas Prints PLA Antibacterial @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json index 09b4d99bc0..2f7d92c799 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA High Speed @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP005", - "setting_id": "GFSEP005_00", + "setting_id": "5g69jS4PRY0PbXvI", "name": "Eolas Prints PLA High Speed @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json index 3a09d931d7..7200a7d631 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 850 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP006", - "setting_id": "GFSEP006_00", + "setting_id": "jdjLUTsIovrt3UAF", "name": "Eolas Prints PLA INGEO 850 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json index 79f29d4151..4df9130980 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA INGEO 870 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP007", - "setting_id": "GFSEP007_00", + "setting_id": "AafBj7XbFWaNhKHu", "name": "Eolas Prints PLA INGEO 870 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json index c4fbbff30d..4b14da901c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Matte @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP002", - "setting_id": "GFSEP002_00", + "setting_id": "7LiJHuwirgABvbUa", "name": "Eolas Prints PLA Matte @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json index 460cf3f291..b40ce2310b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Neon @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP004", - "setting_id": "GFSEP004_00", + "setting_id": "sKgUBhF3VvETDkwg", "name": "Eolas Prints PLA Neon @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json index 9a33a77f98..b2455b02e3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Premium @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP001", - "setting_id": "GFSEP001_00", + "setting_id": "O2Ur7FIG2YlVEyZp", "name": "Eolas Prints PLA Premium @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json index db76c2d983..843cf72fc5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Silk @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP003", - "setting_id": "GFSEP003_00", + "setting_id": "WN0GdqBsjhvnyDmG", "name": "Eolas Prints PLA Silk @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json index 7aad5b1d07..90e0b8d2f4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints PLA Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP009", - "setting_id": "GFSEP009_00", + "setting_id": "o3RoG3NGSBlyBkfZ", "name": "Eolas Prints PLA Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json index cc7a405901..c7b9c26180 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex 93A @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP013", - "setting_id": "GFSEP013_00", + "setting_id": "bQPvp6BCMzcG8FOi", "name": "Eolas Prints TPU Flex 93A @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json index 1839098e36..c5a9a84ac3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D53 @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP014", - "setting_id": "GFSEP014_00", + "setting_id": "XIFP4KMuMtXF5bjQ", "name": "Eolas Prints TPU Flex D53 @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json index 0a6ef06271..169d681f39 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Flex D60 UV Resistant @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP015", - "setting_id": "GFSEP015_00", + "setting_id": "rJmsm0zjvsk9Dy0G", "name": "Eolas Prints TPU D60 UV Resistant @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json index 3adc16bcf6..f5cd2eb40c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Eolas Prints/Eolas Prints TPU Transition @System.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFSEP016", - "setting_id": "GFSEP016_00", + "setting_id": "CM24KGoHLt0yLH93", "name": "Eolas Prints TPU Transition @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json index 3d4ac6a90e..fe0c46bc56 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast ABS @System.json @@ -3,7 +3,7 @@ "name": "FDplast ABS @System", "inherits": "FDplast ABS @base", "from": "system", - "setting_id": "ABS01_00", + "setting_id": "jRvfHo7ROCdAndIE", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json index f6da344cd2..5db4e01d78 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast HIPS @System.json @@ -3,7 +3,7 @@ "name": "FDplast HIPS @System", "inherits": "FDplast HIPS @base", "from": "system", - "setting_id": "HIPS01_00", + "setting_id": "SQrCu9aglj2GsMNb", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json index e1e250eafc..4f9d09ee68 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PETG @System.json @@ -3,7 +3,7 @@ "name": "FDplast PETG @System", "inherits": "FDplast PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "RlwAEGcf1S6VzDXv", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json index fa1ad2602e..2c3943b64e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast PLA @System.json @@ -3,7 +3,7 @@ "name": "FDplast PLA @System", "inherits": "FDplast PLA @base", "from": "system", - "setting_id": "PLA01_00", + "setting_id": "wqCDOOv5DMTIOYnB", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json index c0375e0974..5cb3b5f6f4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast SBS @System.json @@ -3,7 +3,7 @@ "name": "FDplast SBS @System", "inherits": "FDplast SBS @base", "from": "system", - "setting_id": "SBS01_00", + "setting_id": "nIOyJYqe73PKlkmS", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json index 7bc6bb4fcb..f88e36dd61 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FDplast/FDplast TPU @System.json @@ -3,7 +3,7 @@ "name": "FDplast TPU @System", "inherits": "FDplast TPU @base", "from": "system", - "setting_id": "TPU01_00", + "setting_id": "xHtQLOzDScRSbr1f", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json index d2991dc99a..bea08bf527 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PA @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PA @System", "from": "system", - "setting_id": "FILL3D006SYS", + "setting_id": "IX32M9Hib9UlDHuW", "instantiation": "true", "inherits": "FILL3D PA @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json index 95ed331145..6600d5fc36 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PETG @System", "from": "system", - "setting_id": "FILL3D003SYS", + "setting_id": "f8kKGdxNz45g3xtZ", "instantiation": "true", "inherits": "FILL3D PETG @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json index a5e54be1ca..093e6d0ba8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PETG CF @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PETG CF @System", "from": "system", - "setting_id": "FILL3D007SYS", + "setting_id": "MqNSM5lYck0H1Uyd", "instantiation": "true", "inherits": "FILL3D PETG CF @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json index 698fc219c4..cbe0c934f2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Basic @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PLA Basic @System", "from": "system", - "setting_id": "FILL3D002SYS", + "setting_id": "b8Gq0WEZwF3Ty1As", "instantiation": "true", "inherits": "FILL3D PLA Basic @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json index 235ffc90a4..6fa7fe2738 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PLA Turbo @System.json @@ -1,6 +1,6 @@ { "type": "filament", - "setting_id": "FILL3D001SYS", + "setting_id": "eWB0sfzKjOAnz8iy", "name": "FILL3D PLA Turbo @System", "from": "system", "instantiation": "true", diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json index 995aeb304e..8a4e89650e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PP @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PP @System", "from": "system", - "setting_id": "FILL3D004SYS", + "setting_id": "7FAQwU4JwTfuaGa1", "instantiation": "true", "inherits": "FILL3D PP @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json index 087a168b3a..313b3ff01b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FILL3D/FILL3D PPCF @System.json @@ -2,7 +2,7 @@ "type": "filament", "name": "FILL3D PPCF @System", "from": "system", - "setting_id": "FILL3D005SYS", + "setting_id": "CuI1vfvq3rjnqXQq", "instantiation": "true", "inherits": "FILL3D PPCF @base", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json index 8a5b7c62c4..f63b93f11f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Lima.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Amarillo Lima", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "QuJY74Af8ssl9uuB", "filament_id": "FILAR0047", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json index 80b1befd65..75b1bda3c7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Amarillo Radiante.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Amarillo Radiante", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "aFO2PDBIQqvNlH9p", "filament_id": "FILAR0048", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json index eaf601bb40..ccb0abfbfe 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Boreal.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Boreal", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "JQsOaH7Zcs0cLLPY", "filament_id": "FILAR0049", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json index d1aeed176d..135bea1c45 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Francia.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Francia", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "O24dTvHOzlbikvmq", "filament_id": "FILAR0050", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json index 06ce3516e1..af4921a5a8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Azul Imperial.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Azul Imperial", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "JAUmcvfO2lnmxGj5", "filament_id": "FILAR0051", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json index e5e2fdbf9f..19ece09a31 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Blanco Antartida.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Blanco Antartida", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "dd4fL2ztjz4UiTaG", "filament_id": "FILAR0052", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json index 379a12065f..cc9e4d7422 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cian.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Cian", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "kQFbBS3nxU7M2yPa", "filament_id": "FILAR0053", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json index 15962cc994..779c773a3e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Coral.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Coral", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "fspbgXmAOWjFBQqh", "filament_id": "FILAR0054", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json index fa13ab3ae9..00b2b360f5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Cristal.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Cristal", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "MnA2FnHdIuViwo41", "filament_id": "FILAR0055", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json index 59d7b64ed4..194848d1bb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Ceniza.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Gris Ceniza", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "oYjDczRs4U1JdteC", "filament_id": "FILAR0056", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json index 9c0668a87b..bfba887890 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Gris Plata.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Gris Plata", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "eCJ5aFcQ00m97U35", "filament_id": "FILAR0057", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json index e832faadb6..a7bb2ee141 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Magenta.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Magenta", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "CEOhwBE63SWwuh6P", "filament_id": "FILAR0058", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json index 18daa0e204..6e51c8b275 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Negro Azabache.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Negro Azabache", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "OPZin7y48ZEeiH8D", "filament_id": "FILAR0059", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json index 54eece5902..dc573cba91 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PETG Rojo Carmesi.json @@ -3,6 +3,7 @@ "name": "FilAr PETG Rojo Carmesi", "inherits": "FilAr PETG @base", "from": "system", + "setting_id": "ok1h38XzyQXPBIMM", "filament_id": "FILAR0060", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json index 11344db00c..6ba4cbfb87 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Amarillo Lirio.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Amarillo Lirio", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "sZEY2QrlLsDkgZin", "filament_id": "FILAR0022", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json index 165e6d9fe1..ffc1c97a5a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Azul Francia.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Azul Francia", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "kOF3UfqKVqWKFwiH", "filament_id": "FILAR0026", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json index e207e06848..a5bfa7d2d2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Antartida.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Blanco Antartida", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "9KxtnS1WoUAgH323", "filament_id": "FILAR0017", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json index f196d4d2e7..2f03fc3ce8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Blanco Calido.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Blanco Calido", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "pAToQatK3PVTMHrW", "filament_id": "FILAR0018", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json index 11a2fb85f1..58eafa2f7c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Bronce.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Bronce", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "bJuNDmVGIF0TXvkk", "filament_id": "FILAR0001", "instantiation": "true", "filament_vendor": [ 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 index 44f7dedd85..3e98bc7ebf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cafe con Leche.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Cafe con Leche", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "vlPu3T66cQhIr5nl", "filament_id": "FILAR0006", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json index 8cc2fd5f35..276d339eae 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Carpincho.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Carpincho", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "dNsCH2BVjuq3jrN7", "filament_id": "FILAR0009", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json index a0355fb918..9294b3e0d5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Celeste Cielo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Celeste Cielo", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "baAQZuzRZD0nwmqH", "filament_id": "FILAR0027", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json index 3acabfaa12..4fd0d180f7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Cobre.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Cobre", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "BpYgVH5d3LOdib3U", "filament_id": "FILAR0003", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json index 17e58030bf..77c31289ff 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Dorado.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Dorado", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "KHIdy0oNw9YYDNOD", "filament_id": "FILAR0029", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json index bb22078212..acd8b8c9a0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Ceniza.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Ceniza", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "LBpWNtHWPyZi96wr", "filament_id": "FILAR0025", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json index 5fb961188e..1bf3af9593 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Pizarra.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Pizarra", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "SeePXOShT3cge6TS", "filament_id": "FILAR0024", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json index 98b1a7fef0..1cb23756fb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Gris Plata.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Gris Plata", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "B6HABCdHSblZS7lQ", "filament_id": "FILAR0002", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json index 5ae126efba..00dbe089e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Manteca.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Manteca", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "tR4io22VQO0J8UsV", "filament_id": "FILAR0007", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json index 3813ddee5a..bcd1b5ffb4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Marron Oxido.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Marron Oxido", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "r9eviTeCeTW4rLuz", "filament_id": "FILAR0008", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json index 563d8bb3e9..ca76d328c1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Naranja Tigre.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Naranja Tigre", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "zLZxXa78e1oiYWSg", "filament_id": "FILAR0020", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json index 44b5e7ee43..06082ff8c6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Negro Azabache.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Negro Azabache", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "glc7ip75qjodcceS", "filament_id": "FILAR0019", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json index bc5150bf30..9cb39d2135 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Oro.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Oro", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "hCv43F2tNJagwzC7", "filament_id": "FILAR0028", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json index a422bfc092..b18da8d2e8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Piel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Piel", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "6ZwTYvV27Oj3l33v", "filament_id": "FILAR0012", "instantiation": "true", "filament_vendor": [ 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 index b9d6a2f257..516ceb83f9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rojo de Carreras.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rojo de Carreras", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "5dINxIgy0kMYYNDT", "filament_id": "FILAR0021", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json index aa0b5179df..512340cfdf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Amaranto.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rosa Amaranto", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "wgxgJfhOa2ZPikRH", "filament_id": "FILAR0010", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json index 8e7f67b108..afe39634fe 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Rosa Flamenco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Rosa Flamenco", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "FhROwdLMSz3cyRZo", "filament_id": "FILAR0011", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json index b2e973a0fe..05e71143ca 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Tabaco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Tabaco", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "6ax7ka7LBHqhBigT", "filament_id": "FILAR0005", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json index bb95f95a11..fe00512045 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Titanio.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Titanio", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "ZRedeSWJhUayeJLw", "filament_id": "FILAR0004", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json index 8512127f18..da619c819a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde FilAr.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde FilAr", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "SYWoimklLqx5O2Xh", "filament_id": "FILAR0013", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json index 2f7f30801e..ac3fae3303 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Manzana.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Manzana", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "FlPRrQEcKnVKwJDM", "filament_id": "FILAR0014", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json index 85b31f128c..a1e594b840 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Oliva.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Oliva", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "eWAcT15sDLZeV2uS", "filament_id": "FILAR0016", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json index c9d98b2750..c6932f6b22 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Verde Pixel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Verde Pixel", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "Z7toK1R2GuzHVgfo", "filament_id": "FILAR0015", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json index cee7b7a2e1..819187e0fe 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA Violeta Jacaranda.json @@ -3,6 +3,7 @@ "name": "FilAr PLA Violeta Jacaranda", "inherits": "FilAr PLA @base", "from": "system", + "setting_id": "4VO2Qb2cTXQ1TJv2", "filament_id": "FILAR0023", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json index 4ba4263151..e6e4811b6c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Amarillo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Amarillo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "f8DPrkYuTUPJ3cru", "filament_id": "FILAR0030", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json index ea4fe63a2b..d752c69555 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Azul.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Azul", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "QMBocqysEed86R9y", "filament_id": "FILAR0031", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json index bee307127d..3d4c2eb19a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Beige.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Beige", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "XoilIv3HqpDTVRwv", "filament_id": "FILAR0032", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json index 20ddf69fd6..d08673007a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Blanco.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Blanco", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "xkotTQheAIUUhPd7", "filament_id": "FILAR0033", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json index 9a74f6e819..8277b74545 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Bordo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Bordo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "zV2dKrknk0ThDv36", "filament_id": "FILAR0034", "instantiation": "true", "filament_vendor": [ 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 index ba363ff6de..fadf1b26ff 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Celeste Cielo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Celeste Cielo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "UZW4F0aVz1TqstYi", "filament_id": "FILAR0035", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json index 996657bd0f..f184b6be29 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Chocolate.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Chocolate", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "DdW1XKqqRuLM1cAd", "filament_id": "FILAR0036", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json index c12616b93a..b2740bc3b4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Gris.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Gris", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "6OtKg1UxWuNCqsZy", "filament_id": "FILAR0037", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json index 646fdc68a7..b3190c28d9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Marron.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Marron", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "lKOXMY37q8WpMdBA", "filament_id": "FILAR0038", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json index ea32b090a0..b3fabc3603 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Naranja.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Naranja", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "MabNpNP8G9RqEruP", "filament_id": "FILAR0039", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json index 2c210c4da6..d46222cad5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Negro.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Negro", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "Jwrm1uuCo7UjvgWn", "filament_id": "FILAR0040", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json index 1d6e17e841..49fd32c1ac 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Piel.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Piel", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "ifbCS3WypTUa1JHr", "filament_id": "FILAR0041", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json index dd48e730f3..63a280b0c4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rojo.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Rojo", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "ak2QX0IS74Nmtyex", "filament_id": "FILAR0042", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json index b04a0e32f8..78208657c8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Rosa.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Rosa", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "GrEXuL6TYue238MK", "filament_id": "FILAR0043", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json index ddfc5c4ad7..860ac8347d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Uva.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Uva", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "PK1CsK7AS1p1IJaR", "filament_id": "FILAR0044", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json index 9cb05a6ac1..7f49cb138e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Verde.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Verde", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "rsLi8jr62hHPgERG", "filament_id": "FILAR0045", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json index 77c330fd19..f60b17b69e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FilAr/FilAr PLA-mate Violeta.json @@ -3,6 +3,7 @@ "name": "FilAr PLA-mate Violeta", "inherits": "FilAr PLA-mate @base", "from": "system", + "setting_id": "z2Pk06JzY9Tr1WjQ", "filament_id": "FILAR0046", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json index fbab73234d..f0a11fcd6d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/FusRock/FusRock ABS-GF @System.json @@ -3,7 +3,7 @@ "name": "FusRock ABS-GF @System", "inherits": "FusRock ABS-GF @base", "from": "system", - "setting_id": "OGFSB50_00", + "setting_id": "c2ahYHRLD2RYnPSp", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json index 3a1345d1ad..fa4788b45a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ABS @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "W0LP8Ah5MHMzogvV", "filament_id": "OGFB99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json index 11f6376feb..a4e10439c2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic ASA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "bcsNcj4DzLb4K5zN", "filament_id": "OGFB98", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json index 46e2793707..96c3dc4f34 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic BVOH @System.json @@ -3,7 +3,7 @@ "name": "Generic BVOH @System", "inherits": "fdm_filament_bvoh", "from": "system", - "setting_id": "OGFSS97_00", + "setting_id": "oUpbqz3uzQqND5DG", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json index 021ce7f46d..dbf10cf3f5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic CoPE @System.json @@ -3,7 +3,7 @@ "name": "Generic CoPE @System", "inherits": "fdm_filament_cope", "from": "system", - "setting_id": "OGFSC99_00", + "setting_id": "KlHtaJU2GM0uaRGM", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json index a9d9193c5e..6caf96f6b1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic EVA @System.json @@ -3,7 +3,7 @@ "name": "Generic EVA @System", "inherits": "fdm_filament_eva", "from": "system", - "setting_id": "OGFSR99_00", + "setting_id": "cFGhkhQKiFilQ9gZ", "instantiation": "true", "description": "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.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json index d1508fc78a..44cedfc810 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic HIPS @System.json @@ -3,7 +3,7 @@ "name": "Generic HIPS @System", "inherits": "fdm_filament_hips", "from": "system", - "setting_id": "OGFSS98_00", + "setting_id": "A7gedcxip65DXKuf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json index c600d50c85..2cf8b79680 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "9DoeedUBMRPSCyu2", "filament_id": "OGFN99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json index 34ad48d3d0..f7b9df437a 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PA-CF @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "rchW8WI6gcXuAE0V", "filament_id": "OGFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json index 6370c1f066..fd5c80443c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PC @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "LNjv9LwZnbu7ZASC", "filament_id": "OGFC99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json index 8d6465b80d..967c5627cb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PCTG @System.json @@ -3,7 +3,7 @@ "name": "Generic PCTG @System", "inherits": "fdm_filament_pctg", "from": "system", - "setting_id": "OGFSG97_00", + "setting_id": "21dhMVBuVwR2lzIX", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json index e84390f814..844ee902df 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE @System.json @@ -3,7 +3,7 @@ "name": "Generic PE @System", "inherits": "fdm_filament_pe", "from": "system", - "setting_id": "OGFSP99_00", + "setting_id": "8HpfeTNwthJ7L0XE", "instantiation": "true", "description": "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.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json index 29cb34df14..27ee56eb4b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PE-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PE-CF @System", "inherits": "fdm_filament_pe", "from": "system", - "setting_id": "OGFSP98_00", + "setting_id": "prroSXONXxaahNkq", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json index 13ba96ddaa..2eb975f56c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "YiQZfhL6hH0giSHL", "filament_id": "OGFG99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json index 8c1ae57f7f..e402cdf775 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG HF @System.json @@ -3,7 +3,7 @@ "name": "Generic PETG HF @System", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSG96_00", + "setting_id": "wNH8CohYIh9y6ayx", "instantiation": "true", "filament_max_volumetric_speed": [ "20" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json index ffca207af1..5ee99ffed9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PETG-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PETG-CF @System", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "OGFSG50", + "setting_id": "aRVqy4a3X1UTIKem", "instantiation": "true", "fan_cooling_layer_time": [ "30" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json index 0a902eb914..dab5219261 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PHA @System.json @@ -3,7 +3,7 @@ "name": "Generic PHA @System", "inherits": "fdm_filament_pha", "from": "system", - "setting_id": "OGFSR98_00", + "setting_id": "kks2z4JbypqY68RW", "instantiation": "true", "description": "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.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json index aacb99a19d..c018544fa5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "RcBNzytWgwRrwXXz", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json index 57f15195f4..041ff59c44 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA High Speed @System.json @@ -3,7 +3,7 @@ "name": "Generic PLA High Speed @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSL95_00", + "setting_id": "L9wOwDxavVR7vrL7", "filament_id": "OGFL95", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json index 4cdb2c4846..d3a6d4813c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Generic PLA Matte @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSL99_02", + "setting_id": "RFs9eCKYOMUSmvZf", "instantiation": "true", "filament_max_volumetric_speed": [ "11" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json index 8e13dd1763..700b80761f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA Silk @System.json @@ -4,7 +4,7 @@ "renamed_from": "Generic Silk PLA @System", "inherits": "fdm_filament_pla_silk", "from": "system", - "setting_id": "OGFSL99_01", + "setting_id": "oPkXDCBrTQB3SRm4", "instantiation": "true", "filament_max_volumetric_speed": [ "7.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json index 3e348fdd1c..d6a80ed8ee 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PLA-CF @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "l2LkEql1SVH0iRqY", "filament_id": "OGFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json index c88006c88a..e2c16e704f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP @System.json @@ -3,7 +3,7 @@ "name": "Generic PP @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP97_00", + "setting_id": "yos4oScjK83JuXJV", "instantiation": "true", "description": "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.", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json index cafce705e3..65420e9dae 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PP-CF @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP96_00", + "setting_id": "TDHYN3fs5wwakgsM", "instantiation": "true", "description": "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.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json index 3d527b8872..931ee4b7b3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PP-GF @System.json @@ -3,7 +3,7 @@ "name": "Generic PP-GF @System", "inherits": "fdm_filament_pp", "from": "system", - "setting_id": "OGFSP97_03", + "setting_id": "xfVrCZ7ySzkpdzX0", "instantiation": "true", "description": "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.", "filament_cost": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json index 98a2379532..a5fdd90f9c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-CF @System.json @@ -3,7 +3,7 @@ "name": "Generic PPA-CF @System", "inherits": "fdm_filament_ppa", "from": "system", - "setting_id": "OGFSN97_00", + "setting_id": "rZpVQIyltFNiQyW3", "instantiation": "true", "fan_max_speed": [ "35" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json index 70e6aff59c..9ebf9cb656 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PPA-GF @System.json @@ -3,7 +3,7 @@ "name": "Generic PPA-GF @System", "inherits": "fdm_filament_ppa", "from": "system", - "setting_id": "OGFSN96_00", + "setting_id": "yJCAFLt5wstMgMAY", "filament_id": "OGFN96", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json index 058498e358..e1cf8643d1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic PVA @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "1dlLnJKh1HzQCZVJ", "filament_id": "OGFS99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json index 7d33bdac38..082c4dd4bf 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic SBS @System.json @@ -3,7 +3,7 @@ "name": "Generic SBS @System", "inherits": "fdm_filament_sbs", "from": "system", - "setting_id": "OGFSL99", + "setting_id": "fjVWcIfxaOAZHNU1", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json index 71ee3d22f1..be4543b662 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Generic TPU @System.json @@ -4,7 +4,7 @@ "renamed_from": "My Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "OGFSA04", + "setting_id": "D6O8IcmSe8WGqOvb", "filament_id": "OGFU99", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json index cb1c48538e..1df792355b 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/GreenGate3D/GreenGate3D PETG @System.json @@ -3,7 +3,7 @@ "name": "GreenGate3D PETG @System", "inherits": "GreenGate3D PETG @base", "from": "system", - "setting_id": "OGG3S00", + "setting_id": "I7HaLYHVMkN4Jo1V", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json index a70a247b5e..91b364d5eb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT ABS @System.json @@ -3,7 +3,7 @@ "name": "NIT ABS @System", "inherits": "NIT ABS @base", "from": "system", - "setting_id": "ABS01_00", + "setting_id": "mmt7wKFsMPBRZSeX", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json index 101dd62058..efecf83176 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PETG @System.json @@ -3,7 +3,7 @@ "name": "NIT PETG @System", "inherits": "NIT PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "f07BWDWp7pnA3YI2", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json index b5ac1f810f..c804a384d6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/NIT/NIT PLA @System.json @@ -3,7 +3,7 @@ "name": "NIT PLA @System", "inherits": "NIT PLA @base", "from": "system", - "setting_id": "PLA01_00", + "setting_id": "Bb0fr6cpCxR5lOpU", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json index 7d6e811b77..6a778ae1e8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Numakers/Numakers PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Numakers PLA+ @System", "inherits": "Numakers PLA+ @base", "from": "system", - "setting_id": "ONMK00", + "setting_id": "SS0Oh47g7sp3IvRA", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json index bcd92c6988..79b7602f02 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ABS Basic @System.json @@ -3,7 +3,7 @@ "name": "Overture ABS Basic @System", "inherits": "Overture ABS Basic @base", "from": "system", - "setting_id": "OVABS08", + "setting_id": "7ne4ExJvVczKYHOi", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json index 3486270813..673ca2ff44 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture ASA @System.json @@ -3,7 +3,7 @@ "name": "Overture ASA @System", "inherits": "Overture ASA @base", "from": "system", - "setting_id": "OGFOT009", + "setting_id": "GjumRFbEzyUItmha", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json index ef3dd2601e..0448822d33 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Air PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Air PLA @System", "inherits": "Overture Air PLA @base", "from": "system", - "setting_id": "OGFOT006", + "setting_id": "FINUSn8gz6nVXMLU", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json index 396d71a681..f5a2e37f8e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Easy PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Easy PLA @System", "inherits": "Overture Easy PLA @base", "from": "system", - "setting_id": "OGFOT003", + "setting_id": "luYNb9RmaDS1wMB5", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json index 18345b3e05..ec82c504a9 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Matte PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Matte PLA @System", "inherits": "Overture Matte PLA @base", "from": "system", - "setting_id": "OGFSL05_00", + "setting_id": "QgAzYZdGd3FQ6yIF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json index ff06febcf2..497683a974 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture PLA @System", "inherits": "Overture PLA @base", "from": "system", - "setting_id": "OGFSL04_05", + "setting_id": "uSRi3J4c47reOsqv", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json index 916c386e36..63f7e2ecce 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "Overture PLA Pro @System", "inherits": "Overture PLA Pro @base", "from": "system", - "setting_id": "OGFOT001", + "setting_id": "pynx7PjoLrNXAj6f", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json index d6f630803c..bf0cfbba05 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Rock PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Rock PLA @System", "inherits": "Overture Rock PLA @base", "from": "system", - "setting_id": "OGFOT004", + "setting_id": "W22L3Vb1E4K0waZK", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json index fe59ce6c19..70d91bdd6c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Silk PLA @System.json @@ -3,7 +3,7 @@ "name": "Overture Silk PLA @System", "inherits": "Overture Silk PLA @base", "from": "system", - "setting_id": "OGFOT002", + "setting_id": "n2SqDdp5PE48ucOS", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json index e91e6ccfed..e6e6dc480d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture Super PLA+ @System.json @@ -3,7 +3,7 @@ "name": "Overture Super PLA+ @System", "inherits": "Overture Super PLA+ @base", "from": "system", - "setting_id": "OGFOT005", + "setting_id": "rFuAYJDK1dZ19PaZ", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json index a3f19530b6..06cb9f6186 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Overture/Overture TPU @System.json @@ -3,7 +3,7 @@ "name": "Overture TPU @System", "inherits": "Overture TPU @base", "from": "system", - "setting_id": "OGFOT008", + "setting_id": "ZbdiQn66qeBwzOJY", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json index 5b0c2dd01c..6b21c132e4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA12-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF @System", "inherits": "Fiberon PA12-CF @base", "from": "system", - "setting_id": "OGFSL52_00", + "setting_id": "DfSR5s7vw3ybFiVc", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json index 05524e3fcb..16be49cf18 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF @System", "inherits": "Fiberon PA6-CF @base", "from": "system", - "setting_id": "OGFSL50_00", + "setting_id": "QKvGfZNCeG0GVTTK", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json index 6386d2bfb4..31dc9b0596 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA6-GF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-GF @System", "inherits": "Fiberon PA6-GF @base", "from": "system", - "setting_id": "OGFSL51_00", + "setting_id": "XWAJ7Lf0AdyQMnG0", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json index db7ee4b0b6..725245fee2 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PA612-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-CF @System", "inherits": "Fiberon PA612-CF @base", "from": "system", - "setting_id": "OGFSL53_00", + "setting_id": "hllt8pc9lbhAqHOb", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json index 62d45dcd52..05c587f429 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PET-CF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PET-CF @System", "inherits": "Fiberon PET-CF @base", "from": "system", - "setting_id": "OGFSL54_00", + "setting_id": "1yLcgRWt6LMlWyqN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json index 1799bf4e92..f6b8ea6468 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-ESD @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-ESD @System", "inherits": "Fiberon PETG-ESD @base", "from": "system", - "setting_id": "OGFSL06_00", + "setting_id": "YAXl9K9A7DKsU1yU", "instantiation": "true", "filament_cost": [ "29.99" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json index 7a40c19f4e..e4912cc46c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Fiberon PETG-rCF @System.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-rCF @System", "inherits": "Fiberon PETG-rCF @base", "from": "system", - "setting_id": "OGFSL55_00", + "setting_id": "vwILb2DBGZpjNIov", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json index 5fc606849a..cbc27619e7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma CoPE @System.json @@ -3,7 +3,7 @@ "name": "Panchroma CoPE @System", "inherits": "Panchroma CoPE @base", "from": "system", - "setting_id": "OGFSPM016", + "setting_id": "6dj97PxQneOH6dAh", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json index 40ff9c990b..f43166330d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA @System", "inherits": "Panchroma PLA @base", "from": "system", - "setting_id": "OGFSPM001", + "setting_id": "N9Iv6n4e22ZTLiDa", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json index 8581c7cbb3..8afc2c094c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Celestial @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Celestial @System", "inherits": "Panchroma PLA Celestial @base", "from": "system", - "setting_id": "OGFSPM008", + "setting_id": "wZtp5wigxgoyrUYD", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json index 8a4e2b5fcd..66ce666548 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Galaxy @System", "inherits": "Panchroma PLA Galaxy @base", "from": "system", - "setting_id": "OGFSPM007", + "setting_id": "OFqVtp8Ph7Rv4NxJ", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json index c96f2bf8f6..a1116f8262 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Glow @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Glow @System", "inherits": "Panchroma PLA Glow @base", "from": "system", - "setting_id": "OGFSPM010", + "setting_id": "WWhhCznk2myreFox", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json index 3626215821..268193eb01 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Luminous @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Luminous @System", "inherits": "Panchroma PLA Luminous @base", "from": "system", - "setting_id": "OGFSPM011", + "setting_id": "PMbPN3GQUo55qcZe", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json index d610c4e751..aca6072927 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Marble @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Marble @System", "inherits": "Panchroma PLA Marble @base", "from": "system", - "setting_id": "OGFSPM003", + "setting_id": "2MsuI9iRdnQWUItW", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json index a4ad621bcd..1973c329f3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Matte @System", "inherits": "Panchroma PLA Matte @base", "from": "system", - "setting_id": "GFSPM002", + "setting_id": "odemoI8EABzijzd6", "instantiation": "true", "filament_max_volumetric_speed": [ "16" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json index eeb2e5a74a..127c573fe5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Metallic @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Metallic @System", "inherits": "Panchroma PLA Metallic @base", "from": "system", - "setting_id": "OGFSPM012", + "setting_id": "lXSb7YuhA2jYvk44", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json index 80794c3366..2c9b88f0dd 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Neon @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Neon @System", "inherits": "Panchroma PLA Neon @base", "from": "system", - "setting_id": "OGFSPM013", + "setting_id": "LkSJj98giA5JGLbw", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json index 7312509117..47557a94e7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Satin @System.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Stain @System", "inherits": "Panchroma PLA Satin @base", "from": "system", - "setting_id": "OGFSPM005", + "setting_id": "omPWz5nJDQ92U3bY", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json index 1f63d8dca8..2330eb3864 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Silk @System", "inherits": "Panchroma PLA Silk @base", "from": "system", - "setting_id": "OGFSPM004", + "setting_id": "FGZUBbTVxiIFjpmZ", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json index 5568520c0d..e45f3e63c0 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Starlight @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Starlight @System", "inherits": "Panchroma PLA Starlight @base", "from": "system", - "setting_id": "OGFSPM009", + "setting_id": "is91eRA5OlCQn6zh", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json index 7b4adb5230..c8778a3bec 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Temp Shift @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Temp Shift @System", "inherits": "Panchroma PLA Temp Shift @base", "from": "system", - "setting_id": "OGFSPM015", + "setting_id": "equVvINGgFQE3oRS", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json index da4d0d2f2e..81198274a7 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA Translucent @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA Translucent @System", "inherits": "Panchroma PLA Translucent @base", "from": "system", - "setting_id": "OGFSPM006", + "setting_id": "G3BIFSNwpzBuHMkC", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json index 163de000be..a249e4eadb 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Panchroma PLA UV Shift @System.json @@ -3,7 +3,7 @@ "name": "Panchroma PLA UV Shift @System", "inherits": "Panchroma PLA UV Shift @base", "from": "system", - "setting_id": "OGFSPM014", + "setting_id": "TxKc151gb5dKD6zS", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json index aee4daf92b..cf06225627 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ABS @System.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @System", "inherits": "PolyLite ABS @base", "from": "system", - "setting_id": "OGFSB60_00", + "setting_id": "X4JvhjTs6f0bFYlF", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json index a4ea4f6294..99745779d3 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite ASA @System.json @@ -3,7 +3,7 @@ "name": "PolyLite ASA @System", "inherits": "PolyLite ASA @base", "from": "system", - "setting_id": "OGFSB61_00", + "setting_id": "BtLQdaeWwqydljxS", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json index b376e01564..4d17382a38 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite Dual PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite Dual PLA", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "O64868365", + "setting_id": "ShKfsLXZ1EJ4HgKf", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json index 600a6571e9..2a66342352 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PETG @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG @System", "inherits": "PolyLite PETG @base", "from": "system", - "setting_id": "OGFSG60_00", + "setting_id": "iN91PHxwd4XuYhjd", "instantiation": "true", "filament_max_volumetric_speed": [ "11.5" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json index fad2b7bba9..4fc233d3e6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @System", "inherits": "PolyLite PLA @base", "from": "system", - "setting_id": "OGFSL19", + "setting_id": "MKxTIucBtfpUvIhZ", "filament_id": "OGFL00", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json index eb9eb6401f..76ebf22dc5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyLite PLA Pro @System.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Pro @System", "inherits": "PolyLite PLA Pro @base", "from": "system", - "setting_id": "OGFSPM019", + "setting_id": "ezbCIgCaSiBJvWEL", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json index 3951f1909f..84b6fb4aea 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra Dual PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra Dual PLA", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "O1258005940", + "setting_id": "OajdcsUZSmrTA2vC", "filament_id": "OGFL00-1", "instantiation": "true", "compatible_printers": [] diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json index 1c8b6f71b9..2f147e2571 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/PolyTerra PLA @System.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra PLA", "inherits": "PolyTerra PLA @base", "from": "system", - "setting_id": "OGFSL18", + "setting_id": "FAjd26YkHpb8q5Yt", "instantiation": "true", "filament_max_volumetric_speed": [ "22" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json index f2b00694d9..e2f15397f5 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA @System.json @@ -3,7 +3,7 @@ "name": "Polymaker HT-PLA @System", "inherits": "Polymaker HT-PLA @base", "from": "system", - "setting_id": "OGFSPM017", + "setting_id": "4v9PNyAbuOuQHmG6", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json index bb0044bae7..2006687ad4 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Polymaker/Polymaker HT-PLA-GF @System.json @@ -3,7 +3,7 @@ "name": "Polymaker HT-PLA-GF @System", "inherits": "Polymaker HT-PLA-GF @base", "from": "system", - "setting_id": "OGFSPM018", + "setting_id": "mgyRRh5XU0dM0DrF", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json index 7197fd822b..8ca90b6de6 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Marble PLA @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Marble @System", "inherits": "SUNLU PLA Marble @base", "from": "system", - "setting_id": "OSNLS06", + "setting_id": "KmWzb5zSoGKIqKT6", "instantiation": "true", "filament_long_retractions_when_cut": [ "1" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json index 2ca48b6142..8a701f3910 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PETG @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PETG @System", "inherits": "SUNLU PETG @base", "from": "system", - "setting_id": "OSNLS08", + "setting_id": "Kzd2INRTROPH7Zr9", "instantiation": "true", "filament_max_volumetric_speed": [ "14" diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json index bddd40c564..f5a37f6530 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA Matte @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA Matte @System", "inherits": "SUNLU PLA Matte @base", "from": "system", - "setting_id": "OSNLS02", + "setting_id": "dagf4B8EpSz7ToaW", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json index 04a1bd45fe..e41a66d82f 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ 2.0 @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ 2.0 @System", "inherits": "SUNLU PLA+ 2.0 @base", "from": "system", - "setting_id": "OSNLS04", + "setting_id": "8EZyKHm5JquwOtfP", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json index ec7e85a2d2..0dbf2a79b1 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU PLA+ @System.json @@ -3,7 +3,7 @@ "name": "SUNLU PLA+ @System", "inherits": "SUNLU PLA+ @base", "from": "system", - "setting_id": "OSNLS03", + "setting_id": "L85dCvjbjs3h7XiN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json index 88ca4ac288..21b54b8d42 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Silk PLA+ @System.json @@ -3,7 +3,7 @@ "name": "SUNLU Silk PLA+ @System", "inherits": "SUNLU Silk PLA+ @base", "from": "system", - "setting_id": "OSNLS05", + "setting_id": "erMUhA5Vk38Qc8hN", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json index 3dc6239693..52d0c0f25d 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/SUNLU/SUNLU Wood PLA @System.json @@ -3,7 +3,7 @@ "name": "SUNLU Wood PLA @System", "inherits": "SUNLU Wood PLA @base", "from": "system", - "setting_id": "OSNLS07", + "setting_id": "9pQqWo655Q5DL8c0", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json index 339adb4f63..79ae8ff74c 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA @System", "inherits": "Valment PLA @base", "from": "system", - "setting_id": "VLMNT_01", + "setting_id": "yissaEWECKefSRTG", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json index 511e3966f2..8818b8882e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Galaxy @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA Galaxy @System", "inherits": "Valment PLA Galaxy @base", "from": "system", - "setting_id": "VLMNT_04", + "setting_id": "Zc1LaY4aMySCBT3M", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json index 5b4437ec0e..4b672c723e 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA Silk @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA Silk @System", "inherits": "Valment PLA Silk @base", "from": "system", - "setting_id": "VLMNT_02", + "setting_id": "12lhhFnk6kqFu9dI", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json index 3e0e98fea3..c2ba00d764 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/Valment/Valment PLA-CF @System.json @@ -3,7 +3,7 @@ "name": "Valment PLA-CF @System", "inherits": "Valment PLA-CF @base", "from": "system", - "setting_id": "VLMNT_03", + "setting_id": "TQPYW4C5DdUjR0fi", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json index 5e14ab23aa..523bdf96a8 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PETG @System.json @@ -3,7 +3,7 @@ "name": "eSUN PETG @System", "inherits": "eSUN PETG @base", "from": "system", - "setting_id": "PET01_00", + "setting_id": "tCtt9gmmVOziK1i7", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json index 2389dc4ca5..70455e5f95 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA+ @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA+ @System", "inherits": "eSUN PLA+ @base", "from": "system", - "setting_id": "OGFSL03_00", + "setting_id": "NA57fOmvp4jNEmn7", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json index b2589f578b..5edbfbd701 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Basic @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Basic @System", "inherits": "eSUN PLA-Basic @base", "from": "system", - "setting_id": "OGFSL04_00", + "setting_id": "Nf2NTWElEKDEeakr", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json index 03672365cb..5f4f8a1b18 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Marble @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Marble @System", "inherits": "eSUN PLA-Marble @base", "from": "system", - "setting_id": "OGFSL06_00", + "setting_id": "nr31jwZ5zNY6EeY9", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json index 4d3cbc4b59..7aa0653866 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN PLA-Matte @System.json @@ -3,7 +3,7 @@ "name": "eSUN PLA-Matte @System", "inherits": "eSUN PLA-Matte @base", "from": "system", - "setting_id": "OGFSL05_00", + "setting_id": "xV0KBHENaEdiz9zl", "instantiation": "true", "compatible_printers": [] } diff --git a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json index 7109590bec..138a388419 100644 --- a/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json +++ b/resources/profiles/OrcaFilamentLibrary/filament/eSUN/eSUN ePLA-LW @System.json @@ -3,7 +3,7 @@ "name": "eSUN ePLA-LW @System", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "LWSL02_00", + "setting_id": "pYoZnuVPPIlMbdT1", "filament_id": "ESN02", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Peopoly.json b/resources/profiles/Peopoly.json index 92502b774c..ca6b59fb2b 100644 --- a/resources/profiles/Peopoly.json +++ b/resources/profiles/Peopoly.json @@ -1,6 +1,6 @@ { "name": "Peopoly", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Peopoly configurations", "machine_model_list": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json b/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json index 225cbc3dda..7f38c6044a 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic ABS.json @@ -3,6 +3,7 @@ "name": "Peopoly Generic ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "ICnZH4LkPD7c6Lmm", "filament_id": "GFSL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json b/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json index ebf18f5537..add7c8e295 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic PETG.json @@ -3,7 +3,7 @@ "name": "Peopoly Generic PETG", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GSPETG-1", + "setting_id": "7LVGx2lNqhBDdYiJ", "filament_id": "GFPETG-1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json index 125cae02f4..100057e25b 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json +++ b/resources/profiles/Peopoly/filament/Peopoly Generic PLA.json @@ -1,9 +1,10 @@ { "type": "filament", "name": "Peopoly Generic PLA", + "renamed_from": "Peopoly Generic PLA 0.8 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "KNsVV4dvEWAAkzDE", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json b/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json index a874c4e0bc..c00354396c 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer ABS-GF.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer ABS-GF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ufcIVt3x0FqV69h4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json index e205c26ba2..3ec4ef2909 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PET-CF.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PET-CF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xSaZKOpjStJuKiM7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json index 199c236fd1..ccdc0fc0ba 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PETG-C.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PETG-C", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "GFSL99", + "setting_id": "aUX6OHQrKPghlPBb", "filament_id": "GFL99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json b/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json index 590767a038..7f417378eb 100644 --- a/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json +++ b/resources/profiles/Peopoly/filament/Peopoly Lancer PLA-C.json @@ -3,7 +3,7 @@ "name": "Peopoly Lancer PLA-C", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "EFHW4uKJCsBCjAEU", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json index fee341ac67..25ec7c092d 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "e4tGiU9ZtpU54ZUY", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json index f0e1992a0b..64c47ea748 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "208TaseoGSvPkLuT", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json index 5a59380f1b..92807f6423 100644 --- a/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json +++ b/resources/profiles/Peopoly/machine/Peopoly Magneto X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Peopoly Magneto X 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "MWPVJLWHSzm5H2Ec", "instantiation": "true", "printer_model": "Peopoly Magneto X", "nozzle_diameter": [ diff --git a/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json b/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json index ae38e1b6f3..7632b5c19f 100644 --- a/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.16mm Optimal @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Magneto X", "inherits": "fdm_process_pply_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "z8gx4LyAjquxYgBn", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json index e48ea5a330..0c5d866e8c 100644 --- a/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm ABS-GF 0.4 Nozzle Standard @MagnetoX", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP015", + "setting_id": "tJ54pYmoGnisU6wI", "instantiation": "true", "top_shell_thickness": "0.6", "bridge_flow": "1", diff --git a/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json index a51fb718b3..c6c6f01c9a 100644 --- a/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm PET-CF 0.4 Nozzle Standard @MagnetoX", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP016", + "setting_id": "bJFNzjyv23sg2utH", "instantiation": "true", "top_shell_thickness": "0.6", "bridge_flow": "1", diff --git a/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json index fbb6831e27..ceb21fc110 100644 --- a/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm Standard @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Magneto X", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "qVan2trPK4Nkyet7", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json b/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json index 783ee5f625..c1aa43f90d 100644 --- a/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.20mm Strength @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.20mm Strength @Magneto X", "inherits": "fdm_process_pply_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "PABVXPLFXBXP0fp5", "instantiation": "true", "outer_wall_speed": "120", "wall_loops": "6", diff --git a/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json b/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json index e9454785cf..f0c3f8cb45 100644 --- a/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.24mm Draft @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Magneto X", "inherits": "fdm_process_pply_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "sznjgFRvZeFVhOcH", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json b/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json index cc1dc92d3f..8d72b78d2d 100644 --- a/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json +++ b/resources/profiles/Peopoly/process/0.28mm Extra Draft @MagnetoX.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Magneto X", "inherits": "fdm_process_pply_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "Mi4H9dh97BV2SnOc", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.4 nozzle" diff --git a/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json b/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json index caa3384142..93d0160c06 100644 --- a/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json +++ b/resources/profiles/Peopoly/process/0.30mm Standard @Magneto X 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Magneto X 0.6 nozzle", "inherits": "fdm_process_pply_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP008", + "setting_id": "7bb0lWykeIerjXX0", "instantiation": "true", "outer_wall_speed": "120", "compatible_printers": [ diff --git a/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json b/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json index a55762cb45..a530ed24a1 100644 --- a/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json +++ b/resources/profiles/Peopoly/process/0.40mm Standard @Magneto X 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Magneto X 0.8 nozzle", "inherits": "fdm_process_pply_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "B0SGeztUlumk2uuP", "instantiation": "true", "compatible_printers": [ "Peopoly Magneto X 0.8 nozzle" diff --git a/resources/profiles/Phrozen.json b/resources/profiles/Phrozen.json index de1bd03646..bd4e6f1081 100644 --- a/resources/profiles/Phrozen.json +++ b/resources/profiles/Phrozen.json @@ -1,6 +1,6 @@ { "name": "Phrozen", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Phrozen configurations", "machine_model_list": [ diff --git a/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json index 641f68f554..6453756f9e 100644 --- a/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json +++ b/resources/profiles/Phrozen/filament/Phrozen PLA @Phrozen Arco 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Phrozen PLA @Phrozen Arco 0.4 nozzle", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Cc3ULDFzvoHwh8bV", "filament_id": "GFL99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json index 01b96c8109..051f62fa6c 100644 --- a/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json +++ b/resources/profiles/Phrozen/machine/Phrozen Arco 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Phrozen Arco 0.4 nozzle", "inherits": "fdm_machine_common", "from": "User", + "setting_id": "lvaYKTUZr5C9jSwk", "instantiation": "true", "printer_technology": "FFF", "printer_settings_id": "Phrozen Arco 0.4 nozzle", 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 bde0a17ba3..74be068c38 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 @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Phrozen Arco 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ef03fS2IaCOoU9VN", "instantiation": "true", "print_settings_id": "0.20mm Standard @Phrozen Arco 0.4 nozzle", "layer_height": "0.2", diff --git a/resources/profiles/Positron3D.json b/resources/profiles/Positron3D.json index ff2ba78243..d8e066ce73 100644 --- a/resources/profiles/Positron3D.json +++ b/resources/profiles/Positron3D.json @@ -1,6 +1,6 @@ { "name": "Positron 3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Positron 3D Printer Profile", "machine_model_list": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json index 66d5a77a25..5cb62d60f8 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.2 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM002", + "setting_id": "rJkvmsmBm7x7CPtt", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json index 79dd2ab46e..b91eabf9af 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.4 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM001", + "setting_id": "IjBPibVLMqP85BpF", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json index 505ea68e51..7f68793876 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.6 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM003", + "setting_id": "EbQGBn5iNU08HfZu", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json b/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json index 703a64c1b1..d400ee5771 100644 --- a/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json +++ b/resources/profiles/Positron3D/machine/The Positron 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "The Positron 0.8 nozzle", "inherits": "fdm_common_the_positron", "from": "system", - "setting_id": "GM004", + "setting_id": "Ayf2E7XkwriXINkt", "instantiation": "true", "printer_model": "The Positron", "nozzle_diameter": [ diff --git a/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json b/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json index f3103556b8..3e9dc347bd 100644 --- a/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json +++ b/resources/profiles/Positron3D/process/0.08mm Extra Fine @The Positron.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1DDW81XdJwsN54OH", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json b/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json index 0535b1fa5e..2e25633dee 100644 --- a/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json +++ b/resources/profiles/Positron3D/process/0.12mm Fine @The Positron.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AF0j3ZYJvrFtRnt0", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json b/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json index 6ce919a090..0e7d8b5a32 100644 --- a/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json +++ b/resources/profiles/Positron3D/process/0.16mm Optimal @The Positron.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oFGyinsnnFtqnBYJ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json b/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json index fbb1b259ad..6241eec312 100644 --- a/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json +++ b/resources/profiles/Positron3D/process/0.20mm Standard @The Positron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vA3iTj6YYqIsCzds", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json b/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json index 0b403903f1..e8197ab6db 100644 --- a/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.24mm Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "9eN5Dg2TWxh9aMmR", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json index 9184f31537..2249918275 100644 --- a/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.28mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "zdTZXvmpClzt1Auf", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json index 3f5d7764b8..4666579f59 100644 --- a/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.32mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yIZoMnh68LVdids0", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json index 52d6f67b53..ea9234a261 100644 --- a/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.40mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mbVSwPRefQTypjMo", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json b/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json index 1aede3e6ab..2e6609a819 100644 --- a/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json +++ b/resources/profiles/Positron3D/process/0.56mm Extra Draft @The Positron.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @The Positron", "inherits": "fdm_process_the_positron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "K4GIRPpLzOTWINYH", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa.json b/resources/profiles/Prusa.json index 4448a33246..113b085c96 100644 --- a/resources/profiles/Prusa.json +++ b/resources/profiles/Prusa.json @@ -1,6 +1,6 @@ { "name": "Prusa", - "version": "02.04.00.01", + "version": "02.04.00.03", "force_update": "0", "description": "Prusa configurations", "machine_model_list": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json index 3f422bdfe9..0f666ab11b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One 0.6", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AADElwBWs9fzeAKC", "filament_id": "Prusa Generic ABS @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json index a5d617a5bc..6c046f232f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One 0.8", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QLaQiU2tF5ZFTVjP", "filament_id": "Prusa Generic ABS @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json index f52156c97d..f3c61471ed 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.4", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sp0sbcvt0EqZ59NT", "filament_id": "Prusa Generic ABS @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json index d451fcec66..b6892f7630 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.5", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U1ih5tnkViqI3vya", "filament_id": "Prusa Generic ABS @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json index 2cbf0243ca..1354767857 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.6", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MuqHvIoTlM1Pbs8j", "filament_id": "Prusa Generic ABS @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json index ee2702144e..513171ea52 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One HF 0.8", "inherits": "Prusa Generic ABS @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Wbpc2Ddzc3zPnQVr", "filament_id": "Prusa Generic ABS @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json index 2801f4d2d5..a5a1f6cce1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @CORE One", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NajoyXhNAiyJyaRq", "filament_id": "Prusa Generic ABS @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json index fbf4643abc..9cb0f8b001 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NdGEi7BdP59bqz53", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json index 158fe6d3bd..e1d4f272ae 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "f8RXAaEZ13jSgN9u", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json index 099d610200..a867f7d6a6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0QdQCdtcKqM9HhpD", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json index 09e7153cb0..c52dd45677 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MINIIS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LmdcShjNmbZ8E5fo", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json index 78efd2aeb9..e141e4925d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bQgom9OdLzHf862f", "filament_id": "GFB99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json index bf3599b449..9108be7bd0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "juio4SnE9x7bcYdO", "filament_id": "GFB99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json index a94359d17f..67c49bfe9a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dRt2nKkJ0saWba5s", "filament_id": "GFB99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json index b825f0938f..c966113193 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK3.5", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "etTLu2Uk95XriBxT", "filament_id": "GFB99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json index 6c2ead055b..3cbcf73b85 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yeqfgyq1l0b1tCaT", "instantiation": "true", "filament_flow_ratio": [ "0.926" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json index 2a1727eb82..fb9f1a07e7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S 0.6", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VVzzIN41B5ADTIeQ", "filament_id": "Generic ABS @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json index 0adaa68e77..856f2cfe6b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S 0.8", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4705fRqWWP2GZOK8", "filament_id": "Generic ABS @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json index a1e65aa0b1..8faf91c1df 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.4", "inherits": "Prusa Generic ABS @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8iqhyZkLiVCvZYLa", "filament_id": "Generic ABS @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json index 52aefc367f..27f7e69c16 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.5", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bf8ANklVcC0xW1rT", "filament_id": "Generic ABS @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json index 367f2a66d0..dd6439a0e4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.6", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZB9vO7AnRqMDCrOy", "filament_id": "Generic ABS @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json index 3e82415b6a..3b359aa2fd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S HF0.8", "inherits": "Prusa Generic ABS @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7cx9gZh2vUCR0ELG", "filament_id": "Generic ABS @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json index e7a7f3a9e1..6880c7850d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @MK4S", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mDDX6Hdt6Ee00Iqb", "filament_id": "Generic ABS @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "4", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json index b2fd530d45..3aef5fc5e9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @XL 5T", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BVYagI9PtDtO1Jhu", "instantiation": "true", "nozzle_temperature_intial_layer": "255", "nozzle_temperature": "255", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json index 0e44380b42..2abed48083 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS @XL", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fN9NUlg8l5DWy4LN", "instantiation": "true", "nozzle_temperature_intial_layer": "255", "nozzle_temperature": "255", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json index b155913285..287f5d03f9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "86pFdkE3ly08xst7", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json index d94a824b93..358d9a3c46 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yn9imamHaXlFDsPr", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json index 48314ec4fb..1b72e67a4d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MINIIS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KFoCfgUW9k9Yglwj", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json index 4c18678a8a..1622abdbf8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5 0.6", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IF0vGesJrPxKZhhP", "filament_id": "GFB99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json index a07115b90a..bb6fc8b41e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5 0.8", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bl3iXBs56hdXM9SE", "filament_id": "GFB99_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json index 93d0904003..b6a08a7c20 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS HF @MK3.5", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0luFxwjErjX80SXh", "filament_id": "GFB99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ABS.json b/resources/profiles/Prusa/filament/Prusa Generic ABS.json index 8e21b1dbad..0f77dd0216 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ABS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ABS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pqQMpMgbSN3XvTdK", "instantiation": "true", "filament_flow_ratio": [ "0.926" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json index 0575670500..5e47c117c6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One 0.6", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GB4mI21wSfo3jfnQ", "filament_id": "Prusa Generic ASA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json index b86eedddaf..74cf13fd6a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One 0.8", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jwPZBZ4B116kCVu9", "filament_id": "Prusa Generic ASA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json index f494f6fd9b..8fdca4347e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.4", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3SHxmODIq9SCK4Kd", "filament_id": "Prusa Generic ASA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json index b61bb7fca8..5f8eaeca43 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.5", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RBSMuMnrcTyregVJ", "filament_id": "Prusa Generic ASA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json index f02855cb51..39b37c3ed8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.6", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ezNirZa3m7Oi1Ts", "filament_id": "Prusa Generic ASA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json index bd12c658fc..782ea4ce94 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One HF 0.8", "inherits": "Prusa Generic ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EtHBkeDF0LvudfBi", "filament_id": "Prusa Generic ASA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json index 9d8a426834..2cffdfabe5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @CORE One", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pg9KDqFB63PFJo3Q", "filament_id": "Prusa Generic ASA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json index aa5a3dc20f..213f887ea8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.25", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oLhpDGV7BIMFqZZq", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json index 598d17942b..f94c769d78 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CN91PnsqqI5CTRhd", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json index b0fbfdee7b..0ba51d264d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Mg0Sh8QULakXYt0m", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json index d772d53677..10aaaf1503 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MINIIS", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "StIz1ZclM5WV6MCC", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json index c1dbdb1608..ca315a91c4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.25", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EVFkOOWqYWkUZRQG", "filament_id": "GFB98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json index 44a503a60b..f578c5e72a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LW2yi7y86rJ59LMi", "filament_id": "GFB98_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json index b3bee71132..20625fbc8d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5iwLdW6pq5Y4Aziw", "filament_id": "GFB98_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json index 4b82efab06..b7825b00e3 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK3.5", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UaLDui75hljyKAkI", "filament_id": "GFB98_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json index 670de26293..10905e3a24 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ubNQKQ8Ex6khEWaI", "instantiation": "true", "filament_flow_ratio": [ "0.93" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json index a8539be2a2..430313b6e5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S 0.6", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j5YvdepMw4z29kzr", "filament_id": "Prusament ASA @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json index 356ba00146..5853f7bc3f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S 0.8", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FtVjP8q0MzM0vr2J", "filament_id": "Prusament ASA @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json index 2d6bf95217..8055c5926b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.4", "inherits": "Prusa Generic ASA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "na3FnleO5uhDF7Yr", "filament_id": "Prusament ASA @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json index 12e02b1f73..6bf46c7fdc 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.5", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "meEXtenGq7N4dWf3", "filament_id": "Prusament ASA @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json index 0a6a3927f1..bd0250e1e9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.6", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o0UhIK80Y28KX3AK", "filament_id": "Prusament ASA @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json index aec5207b2d..3c06463b06 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S HF0.8", "inherits": "Prusa Generic ASA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VDDgOXq5iphlyQ5U", "filament_id": "Prusament ASA @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json index b1ad8f35e5..dfc2270174 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA @MK4S", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5BZ0OsiwFPYGCcBg", "filament_id": "Prusament ASA @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "4", diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json index f54c333f80..2f8cb00374 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uf2mhiPodkiOu8Ui", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json index da6b89b956..2a238156f7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GMfOVAhKgKoiGZH5", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json index 1c857f4f7a..9f97b95631 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MINIIS", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o8mGAPApXYWIvPhm", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json index 1a65b94b9e..a2288b5602 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5 0.6", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TwgQePxtpUic69Yw", "filament_id": "GFB98_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json index fd11ee7881..719e8c0d7a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5 0.8", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TC1QAhU8v7mruXHK", "filament_id": "GFB98_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json index e3d8cd48be..c514c44cef 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA HF @MK3.5", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1s3xgWuvTP6UvMG7", "filament_id": "GFB98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic ASA.json b/resources/profiles/Prusa/filament/Prusa Generic ASA.json index 409b2e4b0d..85f1d08da6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic ASA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic ASA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i5Zm7qbFAtsgG4mF", "instantiation": "true", "filament_flow_ratio": [ "0.93" diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json index 1be78b5d76..467a0e7aad 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic FLEX @XL 5T", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PaXKTb31IFVovWiK", "instantiation": "true", "filament_loading_speed_start": "3", "filament_loading_speed": "28", diff --git a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json index abf95d434e..c6fd096196 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic FLEX @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic FLEX @XL", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b5AA45MlL14moY71", "instantiation": "true", "filament_loading_speed_start": "3", "filament_loading_speed": "28", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json index c2348f6e33..7fdf301829 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tGSqS5YX8FXkVAKa", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json index 62f2dcf855..ada7470a27 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u3ZeKEiAwme06ioU", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json index eeec2383f8..f08a354372 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nE90oPuU8lRFVBCl", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json index 31c30b5c62..1f62ce1a85 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MINIIS", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hda5VGcBTJOFu6B0", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json index 1e784dadb8..a7f7c13c96 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4LeqziiUcsZFvsqn", "filament_id": "GFN99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json index 2356640975..4a0860931c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FoUTZTxQNZRSUZqi", "filament_id": "GFN99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json index 24cd958de1..ef6a9174fb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7Qe2dHRqSOhsuoPn", "filament_id": "GFN99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json index a6d8ba5d78..db9b97feff 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA @MK3.5", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HIOtwj2ImWrlXkld", "filament_id": "GFN99_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json index 603f8f69e0..c262a5fe97 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R9H0mIGTEh4rxRag", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json index 4cc4ac1d17..61047938ef 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qy8b2cQmrhmxfUfm", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json index 2c5e043008..e38f123038 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PNdZVpjyekMxgAWx", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json index 1bb5245422..a41ec893e7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MINIIS", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B2SFfVrYjPnN9rw3", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json index 20fa5d76ce..db39929ab4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BjLde5wICEYFSlu1", "filament_id": "GFN98_4", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json index 5838eb4c77..0607f4afe2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.6", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XgIsgzltjlTU8ixC", "filament_id": "GFN98_2", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json index 9fd5c35027..3d04097b7d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5 0.8", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b2fjpGuYwbeo7O9K", "filament_id": "GFN98_3", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json index d2ed9a16aa..bf54572e72 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF @MK3.5", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ko8pHTrnZTzz6LyX", "filament_id": "GFN98_1", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json b/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json index be29d48cd3..5144b143d6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bptwthfCtglFSoMw", "instantiation": "true", "filament_type": [ "PA-CF" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PA.json b/resources/profiles/Prusa/filament/Prusa Generic PA.json index 2da3f25a20..9893d5a390 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWO6oNoV0wjzRVja", "instantiation": "true", "nozzle_temperature_initial_layer": [ "280" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json index 1a8d0462a3..cb00cb55ac 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.25", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "P9dO2M6dPICX7rhQ", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json index 8006fc38ef..f747f7e54f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uAzPBVsMr6eS1XXS", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json index a363e9a438..0a59345eef 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MZd6zhq1pvhDj6yz", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json index 064e315d1b..8cbe33d5b7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MINIIS", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H7HoG0RfPLMTnCEo", "instantiation": "true", "filament_max_volumetric_speed": [ "7" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json index 1d4690f198..cf1046b78b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.25", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "365PSnHIwQoBabi7", "filament_id": "GFC99_4", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json index 2663beeef7..5641ffefea 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zullllDHKByF2PMu", "filament_id": "GFC99_2", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json index 53887577d4..2118c4dc43 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TTIxalWBM5b6YTJ0", "filament_id": "GFC99_3", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json index 4ad0b1bf28..06d150cddc 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC @MK3.5", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2h9EbPiUgE3BIHVb", "filament_id": "GFC99_1", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json index 744b1cd9df..bc82e730f2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oj7iq8Bsz8lYyoG8", "instantiation": "true", "filament_max_volumetric_speed": [ "35" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json index f45beea871..d864903081 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SK8h5tE5di3YWaJp", "instantiation": "true", "filament_max_volumetric_speed": [ "29" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json index 06544e4be0..96720cc606 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MINIIS", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "onMXXnQNjbSimzbW", "instantiation": "true", "filament_max_volumetric_speed": [ "24" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json index b0a5e199e0..abcfde31e4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5 0.6", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MAtF0WCx6uLte1Bq", "filament_id": "GFC99_5", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json index 56475f42e8..d10c44bebe 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5 0.8", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Om8P3dn8wY6CbdQg", "filament_id": "GFC99_6", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json index f12cdf769d..6e6c9f3747 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC HF @MK3.5", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uGi7QoODY99zHuCt", "filament_id": "GFC99_4", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PC.json b/resources/profiles/Prusa/filament/Prusa Generic PC.json index 8bcbee4942..3cb8ec5c0d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PC.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PC.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "51vavWbGjxnBwH7e", "instantiation": "true", "filament_max_volumetric_speed": [ "12" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json index 350ffa824b..6e1ac6e621 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One 0.6", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "plb6gY1isTp10Unr", "filament_id": "Prusa Generic PETG @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json index 7009b9620f..7d19ded509 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One 0.8", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WISyN9WbqoZW5bBy", "filament_id": "Prusa Generic PETG @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json index 9117bd0d5f..cb0eb3fb5b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.4", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hMxEpxx9ERuIq28Z", "filament_id": "Prusa Generic PETG @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json index cd8ff8db7c..53e681186f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.5", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HtW04UsVx5VpeLc9", "filament_id": "Prusa Generic PETG @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json index 3d7a3f5468..a6a2b9fc55 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.6", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "29TFTfss7xVear5j", "filament_id": "Prusa Generic PETG @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json index 90df5dffc0..05b926349b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One HF 0.8", "inherits": "Prusa Generic PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N91ct2U3Y3jOat0g", "filament_id": "Prusa Generic PETG @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json index b59924bb30..3e914c0ab9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @CORE One", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VbFWb2QCAMxcrTAW", "filament_id": "Prusa Generic PETG @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json index d54aded776..b804e798b1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.25", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u4zA4rasW1vfwG1o", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json index 1a229b2309..8d4d00ea99 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QJQIAwmRSZW3hNI4", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json index 6f4a32a10f..81c4d41aaf 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nXFZVAKBc3hkxbRt", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json index a3b1e221d1..8803f3e7fd 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MINIIS", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nXB864FJ4Dbz5oXc", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json index 9ef3d4db75..eccfa418a9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.25", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "g5YTLp0ZhzbpCD2h", "filament_id": "GFG99_5", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json index fdbde21870..beacc12d5f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6FATkctkE3RaWnWQ", "filament_id": "GFG99_3", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json index 35316f1bbc..b543c2ffcf 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ITT0YpAms3lzeSBk", "filament_id": "GFG99_4", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json index cfc5ab8d4a..e52a1b8628 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK3.5", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "71gokqKp7e6fhhf4", "filament_id": "GFG99_2", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json index a7a2131368..b0e684dd68 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xk2dCGMzSaT73Gq5", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json index 80defe7aaf..88d4bb1a2f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S 0.6", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pci5FyYkl7E87APR", "filament_id": "Generic PETG @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json index 3124648a4b..358eac5276 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S 0.8", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gBfDSTXrnY1HRyw7", "filament_id": "Generic PETG @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json index 45fda8c566..efbf8db0c7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.4", "inherits": "Prusa Generic PETG @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4pbIJVV1D2h5O3WZ", "filament_id": "Generic PETG @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json index fff8cc9071..3225bdfb2c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.5", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vO26JgugJEsX5z6a", "filament_id": "Generic PETG @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json index 50c10fd3d8..56e0d1b40d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.6", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tv7OUJ7pSPHTkE89", "filament_id": "Generic PETG @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json index ce57b58568..21b47aca86 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S HF0.8", "inherits": "Prusa Generic PETG @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wHfH0a2TgTYr9rWF", "filament_id": "Generic PETG @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json index 5dda23b637..b807315eff 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @MK4S", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IGfvc0jGdG6evRj8", "filament_id": "Generic PETG @MK4S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json index 767491c8e6..3a90f36035 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @XL 5T", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFG99_PRUSA_0", + "setting_id": "FbtB9og6yXm2ZktD", "instantiation": "true", "nozzle_temperature_intial_layer": "230", "nozzle_temperature": "240", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json index a6109d6b5a..14cb0f610b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG @XL", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SQKcHBt6A4D8PwFZ", "instantiation": "true", "nozzle_temperature_intial_layer": "230", "nozzle_temperature": "240", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json index 4f93905340..03675e06e7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tt7C6k90F51Q17NL", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json index 086a3187b9..86b9431c5f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hivI3u5bpGKEJuPR", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json index 1184937dcd..8df215da56 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MINIIS", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SHIhEzb8wJonmulf", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json index 084a546114..7459bccd56 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5 0.6", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hw54qxSSdBrcOr4r", "filament_id": "GFG99_6", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json index 99d9c555b5..36582d0481 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5 0.8", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "txhzOPQmzVqkcdnP", "filament_id": "GFG99_7", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json index c2da44670c..6cd401b6c6 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG HF @MK3.5", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OjIQqC3uJdpcLqlG", "filament_id": "GFG99_5", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PETG.json b/resources/profiles/Prusa/filament/Prusa Generic PETG.json index f6649e4768..6963412e1c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PETG.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PETG.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b55Rd5kKGP1A3BM2", "instantiation": "true", "reduce_fan_stop_start_freq": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json index 522e9a6083..dbf1862382 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One 0.6", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8kSIJx0dpaelcAos", "filament_id": "Prusa Generic PLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json index 94124ca78d..a10f1da37a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One 0.8", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qlG6J2sXs80HpkCl", "filament_id": "Prusa Generic PLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json index 8fe73a6f64..19b8d0c4df 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.4", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KzpBU6cAAqm7z0Sg", "filament_id": "Prusa Generic PLA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json index 0406d8ba42..786bf2adab 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.5", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2G99enCGyOVjrOlt", "filament_id": "Prusa Generic PLA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json index d8513146c1..e325a17ac0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.6", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iNQhrPrIj4GphWxI", "filament_id": "Prusa Generic PLA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json index 46fcbc9ea2..cb895cd542 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One HF 0.8", "inherits": "Prusa Generic PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YIm5w8btcXZqnNFB", "filament_id": "Prusa Generic PLA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json index 8ce0a4f9c4..faaa585e91 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NDBqFGNNvKxlmo3V", "filament_id": "Prusa Generic PLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json index 7faa0a38a5..67a5bbca62 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GOomDjqbF1CGAy8O", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json index dcba99c97b..7bb32fd4d9 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rKRRhdLk0Heg3slz", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json index 13afbdbb24..96016b318a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XC2NBSQXjiKIXnTi", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json index b13314bbe4..2de81c0947 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GUG6Ug0cZt0gs2Z2", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json index b4abb7874f..ade1148e1d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mQtIWbOJ2a4TMYxU", "filament_id": "GFL99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json index af0c20eb4f..6b4a104bd0 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lSbYoT83cp2tQjk3", "filament_id": "GFL99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json index 3792633a38..13853813fb 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kZuzkEvYEluqlAfM", "filament_id": "GFL99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json index 180407667f..c1d96ae9ed 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ojwcK3bKU2Jyosws", "filament_id": "GFL99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json index f803bbd91e..13a0df5f2b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1aLBPgVpr7XZmmX6", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json index 92f6ad54a6..b8cffb4b74 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S 0.6", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6pZohvVY1eUGi2k8", "filament_id": "Generic PLA @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json index d3e65cb8ec..d7bf8889ea 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S 0.8", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8z66T4ABcY8PLJMB", "filament_id": "Generic PLA @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json index be78a202ea..d9485b0a57 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.4", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LV8qQ1t2CmhHaRSA", "filament_id": "Generic PLA @MK4S HF0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json index c2d51ef3e4..7cc2615b2b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.5", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WH3bJGQGSliMx6ta", "filament_id": "Generic PLA @MK4S HF0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json index e5a34fd2bc..a5f5e8b490 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.6", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "du6Gy8TCxk5z7hPx", "filament_id": "Generic PLA @MK4S HF0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json index 98d80a0525..f145d7c0d2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S HF0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S HF0.8", "inherits": "Prusa Generic PLA @MK4S HF0.4", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aLcAkl8Zt2D5lOTp", "filament_id": "Generic PLA @MK4S HF0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json index af802ca8db..e0c8ceedd4 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @MK4S", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CqlMmArE8Llbji7t", "filament_id": "Generic PLA @MK4S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json index 8361effc54..9264a2b0c1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "orBUSq1sDBeMGMON", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "210", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json index 883872baed..fd1ffa1425 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tGG7egsphB0I1i6Z", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "210", diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json index ba828b8b90..7ae24d6fe7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A6tgkt5mCN7hFzoU", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json index e4fd305e37..10353f147e 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3MSF1ZEw3D7bVhEI", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json index f38abbe455..ea67606d37 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eVuV41lUXe9SEmeh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json index d4206aa7a4..fe7364310d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IHOsyOhMvOcpHGtG", "filament_id": "GFL99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json index ff9a87dacf..26f2f013e7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GYne0LPI8ooQJe08", "filament_id": "GFL99_7", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json index d393b326dc..6d89453bd8 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA HF @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bq51JVrGGEktAqIh", "filament_id": "GFL99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json index d24a4d2913..7ec1605d58 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One 0.6", "inherits": "Prusa Generic PLA Silk @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QUaunbCOoBxA8fyJ", "filament_id": "Prusa Generic PLA Silk @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json index c60ffe2ce4..fdce38720a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One 0.8", "inherits": "Prusa Generic PLA Silk @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y2IZMYPduRS1mEFL", "filament_id": "Prusa Generic PLA Silk @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json index 9a69c2890f..3cdf40ad50 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CYztrVFVOPD3RHJx", "filament_id": "Prusa Generic PLA Silk @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json index 43f2e5dad0..a6597f5edf 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S 0.6", "inherits": "Prusa Generic PLA Silk @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1pUu3Y5pDr7LzNu", "filament_id": "Generic PLA Silk @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json index 5c6297b619..f9e7154bdf 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S 0.8", "inherits": "Prusa Generic PLA Silk @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Yw5uZEeqmR9elIn6", "filament_id": "Generic PLA Silk @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json index 07e74a9dc2..1a7cb2de7f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA Silk @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA Silk @MK4S", "inherits": "Prusa Generic PLA @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ngtF8hwv8cSubcR1", "filament_id": "Generic PLA Silk @MK4S", "instantiation": "true", "compatible_printers": [ @@ -11,8 +11,6 @@ "Prusa MK4S 0.3 nozzle", "Prusa MK4S 0.4 nozzle", "Prusa MK4S 0.5 nozzle", - "Prusa MK4S HF0.25 nozzle", - "Prusa MK4S HF0.3 nozzle", "Prusa MK4S HF0.4 nozzle", "Prusa MK4S HF0.5 nozzle" ], diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json index 9e61ca3013..8b41f21ce1 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Sv0IcpOJBk95F94d", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json index dc89e49b57..642ec54a07 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tKAu2YX7WADQuJqv", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json index 61a2156980..90be6a1703 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dHVVnfZSJ6xEgzdQ", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json index 7012fb86fd..1be8101e9a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MINIIS", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VESr5xWPvPIlhyKh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json index 5baef9b2a1..632de6b430 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.25", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pi3x8Wj5sdB7TDDK", "filament_id": "GFL98_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json index ba366236ca..ec4bb6ee6a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.6", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vtxoJOj2lc1qxV3H", "filament_id": "GFL98_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json index 6eee5e0a19..eb7f730ef5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5 0.8", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9gYj4jTP6y4UmR9s", "filament_id": "GFL98_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json index 08b3719a7c..df82e01d98 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF @MK3.5", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yQASt4Ej55vgeZAN", "filament_id": "GFL98_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json index c703c71bd1..8e24ebcd12 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NqmFeHNZtfNefmvd", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PLA.json b/resources/profiles/Prusa/filament/Prusa Generic PLA.json index 9ee03a2da0..ae5ca3e50c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PLA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PLA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pKHhR3Hx6AUoyIO3", "instantiation": "true", "filament_flow_ratio": [ "0.98" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json index 9f8e934961..7391c7c004 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.25", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "B0Dmo1DvtrwBwM7U", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json index 27fda97961..fadbdc53b2 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yGTFSZeo1sUdCpeO", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json index 643ac5f52f..18e1965b76 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ISdXFzAcVUj3ZIfQ", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json index ed0c3cc975..9598a6f09b 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MINIIS", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rhZNRY8BNI1TskG2", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json index d650cae4bc..440310acd7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.25", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ciRHVEjYNqjT5EsD", "filament_id": "GFS99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json index 88b87fd1e6..7f54ae1a7a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G8TFM51vPvMbGSbX", "filament_id": "GFS99_2", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json index 3711185f82..1b6798fd1a 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hueUgJutZ71scT6F", "filament_id": "GFS99_3", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json index 30bf13b337..9ac04757e7 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA @MK3.5", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yaPlNuxryIpkxiOe", "filament_id": "GFS99_1", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json index 13bd0e73b3..3bc8a6b7aa 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4C7OAcG8LVPSTJsh", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json index 1433e482ab..b26ca248ad 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xj6xYUYJ0tAnfgao", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json index a7820c46ec..cd7b4f7b7d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MINIIS", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9MNzR7N4A1k64jne", "instantiation": "true", "filament_flow_ratio": [ "1" diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json index 2f43526930..bcd14e6b66 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5 0.6", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NfhvtCbeYlQ3el2O", "filament_id": "GFS99_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json index 80bacc7aed..8495914c13 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5 0.8", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "J5PBEm3LvfpztfXU", "filament_id": "GFS99_6", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json index 0b9aa3e351..97b2d1ff89 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA HF @MK3.5", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2k0n055aaG1zc0u", "filament_id": "GFS99_4", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic PVA.json b/resources/profiles/Prusa/filament/Prusa Generic PVA.json index 513209be5f..17476b1ce5 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic PVA.json +++ b/resources/profiles/Prusa/filament/Prusa Generic PVA.json @@ -3,7 +3,7 @@ "name": "Prusa Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yLrgUDS7cr4AkOed", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json index 032162ad91..fff78aec9f 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One 0.6", "inherits": "Prusa Generic TPU @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OulnL3bWrEpRJbgJ", "filament_id": "Prusa Generic TPU @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json index e56d19bcaa..4ba3f08222 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One 0.8", "inherits": "Prusa Generic TPU @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9fAhdX2hOAnUDn1I", "filament_id": "Prusa Generic TPU @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json index 12865133cb..9cba165705 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @CORE One", "inherits": "fdm_filament_flex", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VR2WfERGWPIWTRha", "filament_id": "Prusa Generic TPU @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json index 910fd8fdce..8acb55983c 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MINIIS", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TUqkAb8i9HpFdiCy", "instantiation": "true", "filament_max_volumetric_speed": [ "1.35" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json index 446e7e346a..bc6d7ad126 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK3.5", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wfxLtrIAOgG7TKib", "filament_id": "GFU99_2", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json index ba700c28bf..01db48abbf 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9KjaEcwnQA8CsnVy", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json index 880e921c6e..89b8a94856 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.6.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S 0.6", "inherits": "Prusa Generic TPU @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3zJSkjnxFgeAbkhY", "filament_id": "Generic FLEX @MK4S 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json index 0c09b84e9a..0230b22bea 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S 0.8.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S 0.8", "inherits": "Prusa Generic TPU @MK4S", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tRRHfIUwFo1C8Q3B", "filament_id": "Generic FLEX @MK4S 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json index bf8ebf32ca..3fec5776ec 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU @MK4S.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU @MK4S", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JxNaZsG7Y2rQKATV", "filament_id": "Generic FLEX @MK4S", "instantiation": "true", "close_fan_the_first_x_layers": "3", diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json index 7a750f318b..271c36e183 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MINIIS.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU HF @MINIIS", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a9fmPCI24EJoJ5OH", "instantiation": "true", "filament_max_volumetric_speed": [ "10" diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json index 6f4fb83093..91e97c5324 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU HF @MK3.5.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU HF @MK3.5", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Gfuy9ZSCpJw3Usa6", "filament_id": "GFU99_3", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Prusa/filament/Prusa Generic TPU.json b/resources/profiles/Prusa/filament/Prusa Generic TPU.json index 62fd1a32d5..58324d477d 100644 --- a/resources/profiles/Prusa/filament/Prusa Generic TPU.json +++ b/resources/profiles/Prusa/filament/Prusa Generic TPU.json @@ -3,7 +3,7 @@ "name": "Prusa Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l9s40Rloq4urv3Y0", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json index d5f7654286..b3fe97133a 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One 0.6", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XlSISsmFlPbj3BOn", "filament_id": "Prusament ASA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json index 66bb1e5c5b..330f3a7643 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One 0.8", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "89B204vxbuUqB3Os", "filament_id": "Prusament ASA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json index 7e59f85b1f..ace3c0cb55 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.4", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tXktQXr79am1s5UL", "filament_id": "Prusament ASA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json index f6420c5f2c..365a4f56a7 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.5", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YbyojtjXvEtI4Tt3", "filament_id": "Prusament ASA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json index 57e0e005ee..9f79b6842a 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.6", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "35H9TLr1p2Jy767g", "filament_id": "Prusament ASA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json index d20ad22e10..b006ea74c1 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One HF 0.8", "inherits": "Prusament ASA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "efgN1KmROfVKa86P", "filament_id": "Prusament ASA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json index cf96e22f80..1ca5222859 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @CORE One", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UUTjJ4Y8St3c87jD", "filament_id": "Prusament ASA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json index 56ab947210..87d14f9e8f 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @XL 5T", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IQu91UAWOJOQcUq9", "instantiation": "true", "nozzle_temperature_intial_layer": "260", "nozzle_temperature": "260", diff --git a/resources/profiles/Prusa/filament/Prusament ASA @XL.json b/resources/profiles/Prusa/filament/Prusament ASA @XL.json index 02078dcac6..9f3df999d4 100644 --- a/resources/profiles/Prusa/filament/Prusament ASA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament ASA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament ASA @XL", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RaEoFoZdXkkOz9yh", "instantiation": "true", "nozzle_temperature_intial_layer": "260", "nozzle_temperature": "260", diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json index 6c831eae2f..8698746393 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One 0.6", "inherits": "Prusament PA-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sEDEmqR4k65IhJ4D", "filament_id": "Prusament PA-CF @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json index 7d3a336c9b..c22f07ddb4 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One 0.8", "inherits": "Prusament PA-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gwFsNIMKGU1f2vPS", "filament_id": "Prusament PA-CF @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json index 48cb353cdf..c1c87b7041 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @CORE One", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "08PdV2lMsSv1JeOt", "filament_id": "Prusament PA-CF @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json index cc41480569..d287e59aa4 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @XL 5T", "inherits": "fdm_filament_pa11cf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FYerOcjToJ3ABpu1", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json b/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json index 77c683a255..6735c31b8a 100644 --- a/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PA-CF @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PA-CF @XL", "inherits": "fdm_filament_pa11cf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IrL4iU2kkMBHIw3e", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json index 3f2de8fe84..c31c409a16 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One 0.6", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0ytT0Ro3sAjvUPN2", "filament_id": "Prusament PC Blend @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json index 0d01f632f0..b27cac24c3 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One 0.8", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WrAImqAV7odcGf8Y", "filament_id": "Prusament PC Blend @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json index f7a41ce585..e9431a4a94 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.4", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pEsP537TBR5kozQB", "filament_id": "Prusament PC Blend @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json index 72fae72244..824d9468ea 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.5", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3IfLi1ZVCKKbEBUW", "filament_id": "Prusament PC Blend @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json index 17b68ed895..707aff7532 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.6", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q8qWw2G7l2UvxGut", "filament_id": "Prusament PC Blend @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json index 0b55f4bb76..f75f439c4a 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One HF 0.8", "inherits": "Prusament PC Blend @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LDvckXo1zpccnT4g", "filament_id": "Prusament PC Blend @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json index 383ab81f4c..0fe031c276 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @CORE One", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "x1SkWhSSkVVIPwCF", "filament_id": "Prusament PC Blend @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json index 2cfdc7cf0d..9e715f9e52 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @XL 5T", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FOgpd4BtawBtmjPB", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "275", diff --git a/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json b/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json index ce034234f0..8494169720 100644 --- a/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PC Blend @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PC Blend @XL", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DLTlxt04GREtOiec", "instantiation": "true", "nozzle_temperature_intial_layer": "275", "nozzle_temperature": "275", diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json index 0b2d1b6a6d..e12bc8db2b 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One 0.6", "inherits": "Prusament PC-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DYPBEKeKBdTenG3S", "filament_id": "Prusament PC-CF @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json index 3873fbf17e..90bbaf4217 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One 0.8", "inherits": "Prusament PC-CF @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0J8ZuIRTB6EgSke8", "filament_id": "Prusament PC-CF @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json index 1012a246e6..2d860fe307 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @CORE One", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IK6Z7DVevvmR96Or", "filament_id": "Prusament PC-CF @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json index 8001f21aa5..482a0403df 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @XL 5T", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m1YND6uz3GWeVIBG", "instantiation": "true", "nozzle_temperature_intial_layer": "285", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json b/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json index 7f8a85fd0b..7081cd9523 100644 --- a/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PC-CF @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PC-CF @XL", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Eq5x2CcEUUAZ5aof", "instantiation": "true", "nozzle_temperature_intial_layer": "285", "nozzle_temperature": "285", diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json index c50d58d14a..83ef41e09e 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One 0.6", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JVKHdd0UyFqnVj9g", "filament_id": "Prusament PETG @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json index 7ee995057f..eb6cb9a8fa 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One 0.8", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0OCfuaF4u8wo5D20", "filament_id": "Prusament PETG @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json index 7e05bc3140..f2f309b90c 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.4", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lwT1VxW5OkY36kUX", "filament_id": "Prusament PETG @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json index 39f0a8389d..08ed962fe6 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.5", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XAgW7fElXxhaKaBT", "filament_id": "Prusament PETG @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json index 7e30fb5995..cc1fe65500 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.6", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6aTGEZj2EmpTR1mu", "filament_id": "Prusament PETG @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json index 75ca8c4fbd..0f2078b5b4 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One HF 0.8", "inherits": "Prusament PETG @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EmrFLgk6ZkTHAvN8", "filament_id": "Prusament PETG @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json index 378369d5ba..1a03663b6d 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @CORE One", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LSvba9ds3XTwDMCG", "filament_id": "Prusament PETG @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json index 3e1e3ec6d9..e127263ad7 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @XL 5T", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFG99_PRUSA_1", + "setting_id": "USigpRWuzpdkT6ZW", "instantiation": "true", "nozzle_temperature_intial_layer": "240", "nozzle_temperature": "250", diff --git a/resources/profiles/Prusa/filament/Prusament PETG @XL.json b/resources/profiles/Prusa/filament/Prusament PETG @XL.json index efb7996fa6..b552f9ed09 100644 --- a/resources/profiles/Prusa/filament/Prusament PETG @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PETG @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PETG @XL", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vPPD8EkKFy5j8pg5", "instantiation": "true", "nozzle_temperature_intial_layer": "240", "nozzle_temperature": "250", diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json index a841bdd71f..647940d644 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One 0.6", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jGHl1i9Y1oJsLQY8", "filament_id": "Prusament PLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json index d0c72f487a..3af2846aa0 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One 0.8", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ijkbGowmIm8uUYsf", "filament_id": "Prusament PLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json index c6c8e0db9d..a44a2fd1c4 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.4.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.4", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mf4Muog4IcsgkYoA", "filament_id": "Prusament PLA @CORE One HF 0.4", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json index e01911e722..ab7f5b3a37 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.5.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.5", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zJf1Y6eP81j3v8VV", "filament_id": "Prusament PLA @CORE One HF 0.5", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json index 0b447aca62..7c94b57456 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.6", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UAvqLPGHYOT1B2lC", "filament_id": "Prusament PLA @CORE One HF 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json index f85d34afc3..3ba0a21670 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One HF 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One HF 0.8", "inherits": "Prusament PLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0N17rx4NFmuHYLQl", "filament_id": "Prusament PLA @CORE One HF 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json index 8830dc6779..78b1f80425 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PuujUMjNKLZvZNAH", "filament_id": "Prusament PLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json index 24c28e3be7..d74ad3f865 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3xyT73BMaAvbb1Ej", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PLA @XL.json b/resources/profiles/Prusa/filament/Prusament PLA @XL.json index a7fe6fe9f7..60825e3109 100644 --- a/resources/profiles/Prusa/filament/Prusament PLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PlHq1KqHrreo5W8m", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json index 63ff0fa5c3..8c979342b3 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One 0.6", "inherits": "Prusament PVB @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GnslGWS97HuaWX76", "filament_id": "Prusament PVB @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json index 6622bf5c03..2496ec966d 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One 0.8", "inherits": "Prusament PVB @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nn7eVPawILDH4BRW", "filament_id": "Prusament PVB @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json index b294ee5ed5..c3c5cf16c8 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @CORE One", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "085dGkrnPhatF07x", "filament_id": "Prusament PVB @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json b/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json index 2df75b8d62..280a722bb3 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @XL 5T", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DIrPylH6rmu6YA43", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament PVB @XL.json b/resources/profiles/Prusa/filament/Prusament PVB @XL.json index d93cabc6dc..1ac285be6e 100644 --- a/resources/profiles/Prusa/filament/Prusament PVB @XL.json +++ b/resources/profiles/Prusa/filament/Prusament PVB @XL.json @@ -3,7 +3,7 @@ "name": "Prusament PVB @XL", "inherits": "fdm_filament_pvb", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RF55nfxQwqUqe00Q", "instantiation": "true", "nozzle_temperature_intial_layer": "215", "nozzle_temperature": "215", diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json index f6f7a3b2e7..19f2eb0962 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.6.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One 0.6", "inherits": "Prusament rPLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BY8gwU1VY0hFBPSc", "filament_id": "Prusament rPLA @CORE One 0.6", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json index a4b689ed8f..23f10a2927 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One 0.8.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One 0.8", "inherits": "Prusament rPLA @CORE One", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dNK9a3tZOFeUZm60", "filament_id": "Prusament rPLA @CORE One 0.8", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json index c26ea657e0..c32d3baf7f 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @CORE One.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @CORE One", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Bw6H4vFnq7YExyLd", "filament_id": "Prusament rPLA @CORE One", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json b/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json index e438586ae3..cb1d9258c9 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @XL 5T.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @XL 5T", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yAiHzmW4pa8deage", "instantiation": "true", "nozzle_temperature_intial_layer": "205", "nozzle_temperature": "205", diff --git a/resources/profiles/Prusa/filament/Prusament rPLA @XL.json b/resources/profiles/Prusa/filament/Prusament rPLA @XL.json index 2d74362021..ab5867979b 100644 --- a/resources/profiles/Prusa/filament/Prusament rPLA @XL.json +++ b/resources/profiles/Prusa/filament/Prusament rPLA @XL.json @@ -3,7 +3,7 @@ "name": "Prusament rPLA @XL", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "j2BSXHFa7D3Gze7C", "instantiation": "true", "nozzle_temperature_intial_layer": "205", "nozzle_temperature": "205", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json index 8195326b4e..772eb39de7 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.25 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "uzZnbJnFuHfqW6Ks", "instantiation": "true", "default_print_profile": "0.12mm STRUCTURAL @CORE One 0.25", "machine_max_jerk_x": [ diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json index 19659be74e..921a180ace 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.3 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.3 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "llQiP3fGzNknt1fY", "instantiation": "true", "default_print_profile": "0.16mm STRUCTURAL @CORE One 0.3", "machine_max_jerk_x": [ diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json index ab447e5d7b..c604f91bee 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.4 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "ClISXCZS5bKTAlyp", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json index dd483eb498..caa69e6049 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.5 nozzle", "inherits": "Prusa CORE One HF 0.5 nozzle", "from": "system", + "setting_id": "zGqFeWUeg5Z52sc6", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json index 4b3585bcb6..7123d1a55f 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.6 nozzle", "inherits": "Prusa CORE One HF 0.6 nozzle", "from": "system", + "setting_id": "XpVbpRn0H3nkVbV6", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.6", "default_print_profile": "0.25mm SPEED @CORE One 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json index 7c1efd2e6f..1e7f561d28 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One 0.8 nozzle", "inherits": "Prusa CORE One HF 0.8 nozzle", "from": "system", + "setting_id": "huJt1GsW0ImZDBbU", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.8", "default_print_profile": "0.40mm QUALITY @CORE One 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json index 6e04f23466..8841c35b39 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "AUk8BqRmHxaFL1UZ", "instantiation": "true", "before_layer_change_gcode": [ ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n{if layer_z > 150}\nM201 X{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))} Y{interpolate_table(layer_z, (0,7000), (150,7000), (200,4000), (270,2000))}\n{endif}\n" diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json index bd214ff7f0..9751af191c 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.5 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "FdqTraNTvsptI8xE", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.5", "default_print_profile": "0.20mm SPEED @CORE One HF 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json index 2308b9e8c9..25e44f57a9 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.6 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "xKIMTkBfK5gWKpzB", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.6", "default_print_profile": "0.32mm SPEED @CORE One HF 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json index 824bb3ab8b..dfd8e629d0 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One HF 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One HF 0.8 nozzle", "inherits": "Prusa CORE One HF 0.4 nozzle", "from": "system", + "setting_id": "3yKq6T4Yco9AH9Pp", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.8", "default_print_profile": "0.40mm STRUCTURAL @CORE One HF 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json index 498c589b24..d3fa8cbb59 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.4 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "Ll94NxeJaELh5x2F", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One L 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json index 2c24808080..654f3a83cd 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.5 nozzle", "inherits": "Prusa CORE One L HF 0.5 nozzle", "from": "system", + "setting_id": "aBqc8QsHwOcuSE1y", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One", "default_print_profile": "0.20mm SPEED @CORE One 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json index eb1d125986..a442b911c4 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.6 nozzle", "inherits": "Prusa CORE One L HF 0.6 nozzle", "from": "system", + "setting_id": "DnfZ1i54mOYzlwpy", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.6", "default_print_profile": "0.25mm SPEED @CORE One 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json index 0abef20bfa..29090a4966 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L 0.8 nozzle", "inherits": "Prusa CORE One L HF 0.8 nozzle", "from": "system", + "setting_id": "l8oMNiUo6qDtXq8i", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One 0.8", "default_print_profile": "0.40mm QUALITY @CORE One 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json index 78be8a902d..1e8bf9b9f5 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", + "setting_id": "PNUQhbJlsTsoM6GD", "instantiation": "true", "before_layer_change_gcode": [ ";BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n{if layer_z > 150}\nM201 X{interpolate_table(layer_z, (0,6000), (150,6000), (200,4000), (331,2000))} Y{interpolate_table(layer_z, (0,6000), (150,6000), (200,4000), (331,2000))}\n{endif}\n" diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json index 2e7f6bb163..1661a1de12 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.5 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "I8pxHOhnyeLASVOC", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.5", "default_print_profile": "0.20mm SPEED @CORE One HF 0.5", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json index 8143202d27..137a6af4ee 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.6 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "aeDaJfwY7b0lluK8", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.6", "default_print_profile": "0.32mm SPEED @CORE One HF 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json index 55ef95b4c9..bd444671c5 100644 --- a/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa CORE One L HF 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa CORE One L HF 0.8 nozzle", "inherits": "Prusa CORE One L HF 0.4 nozzle", "from": "system", + "setting_id": "t13oS4465a6w541T", "instantiation": "true", "default_filament_profile": "Prusament PLA @CORE One HF 0.8", "default_print_profile": "0.40mm STRUCTURAL @CORE One HF 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json index ff1ce83bc4..b5f9d8392b 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "vfeRNEIxeQSNHeJB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json index b191a0c25b..488734582c 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "CvweSVwK9Tr9cwJW", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json index 28fc4b54c9..ea851b9dcf 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "hbKR1QPMz6XlHrau", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json index 362d15a879..30394e8eef 100644 --- a/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINI 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINI 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OAXzyU4MWaOZaRuO", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json index 413e33e3e7..c800a8a409 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.25 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "BsGxNOxIqRKF8c2X", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json index 2aa6c122a5..d2d6c18f39 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "4Iq79bN4T8i3d47F", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json index 4ea8af908d..c7ebd42263 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.6 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "t40vAdqUDOysca1f", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json index 2bef2eec28..0ae5a7bbbd 100644 --- a/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MINIIS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MINIIS 0.8 nozzle", "inherits": "Prusa MINIIS 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "wcrnNKRdyH27iDuB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MINI IS", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json index 1d465a76d9..d2fefedc6f 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.25 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "pguGJWMHNXK6WqnB", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json index fa73c6554c..6d473ce765 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "pZZXnpOhSCBEPO3g", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json index b414a3a592..3631749c53 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.6 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "wHg116YkhEZYuy6O", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json index f7970e864f..1dd7d455d4 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3.5 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3.5 0.8 nozzle", "inherits": "Prusa MK3.5 0.4 nozzle", "from": "system", - "setting_id": "GM001", + "setting_id": "pDsfgNN0OK7BhaoS", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK3.5", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json index da9e23688e..28333578ff 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "c90DxytuSoiCHlVA", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.25", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json index 515389659a..5b86474541 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "T3EZ1NtmQTNkmDkk", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json index 70f96dc2a8..d94d5a0306 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "k45a0QuhbGQypyDs", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.6", diff --git a/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json index b73fa0af44..92450e95fe 100644 --- a/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK3S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK3S 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "B3BtohdqPX8Dv1zD", "instantiation": "true", "printer_model": "Prusa MK3S", "printer_variant": "0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json index afdea88035..81b75a5098 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.25 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM004", + "setting_id": "mDpNu9NqPH9iPcU2", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json index bc78e8da6e..89aa893547 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "tGox5Ldie8Ka8UAJ", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json index 6ce83ff41b..f5991e42a9 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM002", + "setting_id": "znyKdoWHiEQK2d1K", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json index 3d74f4c7b8..91e64bdbb1 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa MK4 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "px7zp02QEWKtngFK", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa MK4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json index ca1981a591..2552852962 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.25 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "wehS5yGzuMR8nKq0", "instantiation": "true", "default_print_profile": "0.12mm STRUCTURAL @MK4S 0.25", "machine_max_acceleration_travel": [ diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json index 8c902c3081..b28798690a 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.3 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.3 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "PrREHlvB9WBqBG0M", "instantiation": "true", "default_print_profile": "0.16mm STRUCTURAL @MK4S 0.3", "max_layer_height": "0.22", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json index 9a1cb3937d..e9824d1ed6 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.4 nozzle", "inherits": "fdm_machine_common_mk4s", "from": "system", + "setting_id": "8tL4SMT6bHqG2Ql1", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S", "default_print_profile": "0.20mm SPEED @MK4S 0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json index a682a27969..f2d3490eed 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.5 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "gde1qta2jgxAc86M", "instantiation": "true", "default_print_profile": "0.20mm SPEED @MK4S 0.5", "max_layer_height": "0.32", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json index 1c9b1a7de9..0f454ca38f 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.6 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "m0ALiNI26ncFxsY2", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S 0.6", "default_print_profile": "0.25mm SPEED @MK4S 0.6", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json index ef62d35c40..d460517983 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S 0.8 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "rMzjWvSpqLsRK0gP", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S 0.8", "default_print_profile": "0.40mm QUALITY @MK4S 0.8", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json index 777bc4c2b3..abc0f71d50 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.4 nozzle", "inherits": "Prusa MK4S 0.4 nozzle", "from": "system", + "setting_id": "zMYcZUEYGqFVXcPo", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S HF0.4", "default_print_profile": "0.20mm SPEED @MK4S HF0.4", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json index a29c717454..e998a786f3 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.5 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.5 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "snE68Xlomhkl6Q99", "instantiation": "true", "default_print_profile": "0.20mm SPEED @MK4S HF0.5", "max_layer_height": "0.32", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json index 46e8552127..a65253c7a2 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.6 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "QEr8kezSDE7Cqgkx", "instantiation": "true", "default_print_profile": "0.32mm SPEED @MK4S HF0.6", "max_layer_height": "0.40", diff --git a/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json index 5fe1d3d756..dd6cf098d4 100644 --- a/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa MK4S HF0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "Prusa MK4S HF0.8 nozzle", "inherits": "Prusa MK4S HF0.4 nozzle", "from": "system", + "setting_id": "UygX2hdbWqKzY6Nn", "instantiation": "true", "default_filament_profile": "Prusa Generic PLA @MK4S HF0.8", "default_print_profile": "0.40mm STRUCTURAL @MK4S HF0.8", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json index e4caa23a37..8a2ef4ecbb 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.25 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "Vk03At0JQ6hg0ygO", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json index ac70824713..7b6192e64c 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.3 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "RyVMHn8YuMNrJ74m", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json index 34ddcd9f1a..ae5add4f6a 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.4 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "q6XTH5vdgCRHxmNL", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json index 0fb1fd9c44..5d470138ca 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.5 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "ra0oZF5B4OOOpWjQ", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json index 71f8bc1833..050b6b5106 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.6 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "UlIesGF1SS8H6aB7", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json index d10ac810aa..3d64a2420d 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 0.8 nozzle", "inherits": "fdm_machine_common_xl", "from": "system", - "setting_id": "GM003", + "setting_id": "nQYRJ3krSVvnz0pf", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json index dad210ae7c..42916b3a27 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.25 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_007", + "setting_id": "cjyYKRBen6bVW9HC", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json index bd1d3825b1..7a07b277e2 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.3 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.3 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_001", + "setting_id": "fhIadToLJJrUC6UU", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json index 3198e99070..8642ac9ac7 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.4 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_002", + "setting_id": "3QKWVEZ2i2B80s3u", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json index a5942a1518..fe51f7f4f8 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.5 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_004", + "setting_id": "KcCECJX7bJsPHlpT", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json index 8fe7bd9197..1492cf6a6d 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.6 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_005", + "setting_id": "D6hQiwBLl9dpU89U", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json index 505b9b4325..14277e59fe 100644 --- a/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json +++ b/resources/profiles/Prusa/machine/Prusa XL 5T 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Prusa XL 5T 0.8 nozzle", "inherits": "fdm_machine_common_xl_5t", "from": "system", - "setting_id": "GM_PRUSA_006", + "setting_id": "5op39LADxDcHyncW", "instantiation": "true", "gcode_flavor": "marlin2", "printer_model": "Prusa XL 5T", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json index 85095ed76b..e6a06979dd 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @CORE One 0.25", "inherits": "0.05mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "qOFL01RilvzHLLpF", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json index ebb3dda75b..46ca26577f 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @CORE One L 0.25", "inherits": "0.05mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "H97xRaGSwyLBk02t", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json index d4c1348c85..3e281e10d8 100644 --- a/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm DETAIL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm DETAIL @MK4S 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "J10N9iPK44o1XkuG", "instantiation": "true", "bottom_shell_layers": "10", "bridge_speed": "25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json index b2a62985d9..666ebe1202 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "efECy0NOZGfzFBFP", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json index 4710428a52..ace4da020e 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "vUmbvPsSIJ9SW6OU", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json index 47004746a8..b868abb4db 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "o8hfSDG0dyoYR7x8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.05", diff --git a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json index e6eff0025a..c05c5c7d56 100644 --- a/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm Detail @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.05mm Detail @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "M2sPbQHmCSkflMI6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.05", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json index 8657dc4a16..3094f724b7 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "MilRHlhPBDeMRa0R", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S 0.25", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json index 28d7ff910a..762b0bd9cf 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "PbvAzTzrVe5h2cIg", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S 0.4", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json index cc74674f6f..78ad6e1a1b 100644 --- a/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json +++ b/resources/profiles/Prusa/process/0.05mm UltraDetail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.05mm UltraDetail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "oNHHqYCKSoLAaQ1J", "instantiation": "true", "print_settings_id": "0.05mm UltraDetail @MK3S", "bottom_shell_layers": "10", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json index b9d755bcb8..6df8c26c47 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @CORE One 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "k8PBHoGaKhPbHDUc", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json index e96dc8f8f9..ef9638e753 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @CORE One L 0.25", "inherits": "0.07mm DETAIL @MK4S 0.25", "from": "system", + "setting_id": "fISQmzTi7TFITg07", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json index 9a958b4558..725a0af66e 100644 --- a/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm DETAIL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm DETAIL @MK4S 0.25", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "6brG7IXHDzmGRXqk", "instantiation": "true", "bottom_shell_layers": "9", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json index bb01eae309..cf6bea7c73 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "lMQ8IpaIIHuYey5D", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json index 01ed5edd4d..b84b485243 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "jGzl0pIH8NQe7uC5", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.25", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json index 28f13ddad1..f6a888bae7 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "2rrYjLMCWjsKVx2r", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.07", diff --git a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json index 726f1dabc2..7683df4dc8 100644 --- a/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm Detail @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.07mm Detail @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "UY0KmXznMcEMIM33", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.07", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json index 58d19ef519..20b930fa2a 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "PIYckhe9iYXryAA5", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S 0.25", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json index b9870dbf11..e2e75e1b4f 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "oKYwlkPJGx85pMmB", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S 0.4", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json index 34af989434..f8cbafb3a3 100644 --- a/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json +++ b/resources/profiles/Prusa/process/0.07mm UltraDetail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.07mm UltraDetail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "Kq78NpEJ9yHfp0dR", "instantiation": "true", "print_settings_id": "0.07mm UltraDetail @MK3S", "bottom_shell_layers": "8", diff --git a/resources/profiles/Prusa/process/0.08mm Standard @MK4.json b/resources/profiles/Prusa/process/0.08mm Standard @MK4.json index 5a84369836..c7d691a523 100644 --- a/resources/profiles/Prusa/process/0.08mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.08mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "sknzF1ldqGRv8YGH", "instantiation": "true", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json index eeb00197da..2191426a1e 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "VmTT5hHyrcvsj16J", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S 0.25", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json index dd880cbc4e..8d08a246e4 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "E4tNFVImqV67fM47", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S 0.4", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json b/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json index be760d0338..94d3612b94 100644 --- a/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json +++ b/resources/profiles/Prusa/process/0.10mm Detail @MK3S.json @@ -3,6 +3,7 @@ "name": "0.10mm Detail @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "66VClUbq4SZz6xjA", "instantiation": "true", "print_settings_id": "0.10mm Detail @MK3S", "bottom_shell_layers": "7", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json index 76d61987cd..69dcb61081 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @CORE One 0.4", "inherits": "0.10mm FAST DETAIL @MK4S 0.4", "from": "system", + "setting_id": "TB8xk2nE7AbUVYe9", "instantiation": "true", "inner_wall_acceleration": "3000", "sparse_infill_acceleration": "6000", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json index 4c1ae04c4e..44d05cbf53 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @CORE One L 0.4", "inherits": "0.10mm FAST DETAIL @MK4S 0.4", "from": "system", + "setting_id": "YWwFHmydRuoxkAio", "instantiation": "true", "inner_wall_acceleration": "3000", "sparse_infill_acceleration": "6000", diff --git a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json index 25ded93a6e..dd046cab89 100644 --- a/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FAST DETAIL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.10mm FAST DETAIL @MK4S 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "vpFV7gpKO9nE1pkc", "instantiation": "true", "bottom_shell_layers": "7", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json index 182e61fd9d..96d535a6d5 100644 --- a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm FastDetail @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "XS3AmG20Fxg0HJrj", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json index 3ff7a49d09..bcac41bc4c 100644 --- a/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.10mm FastDetail @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.10mm FastDetail @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "yjgrEWRAqJh0uM7u", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json index d4bcb964ff..4091e762fe 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @CORE One 0.5", "inherits": "0.10mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "PK9yKRRPyX3BsA4s", "instantiation": "true", "inner_wall_speed": "70", "small_perimeter_speed": "50", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json index 9d7b6f0a07..8edf1c2204 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @CORE One L 0.5", "inherits": "0.10mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "dJy0tUowSWUxQBlt", "instantiation": "true", "inner_wall_speed": "80", "small_perimeter_speed": "45", diff --git a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json index 5af7ec346d..84e7079c0f 100644 --- a/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.10mm STRUCTURAL @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "LiKk4PtwUDZ7wyj3", "instantiation": "true", "bottom_shell_layers": "7", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json index 1fe634817b..7cc5bfc4a6 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.10mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "eAFe5ATddc99VxqO", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json index 25719f6049..b7eb0f25cf 100644 --- a/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.10mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "UQcPaaSKXsnHRCYq", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json index 5b8f28b79c..40c983124c 100644 --- a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "MGG24FmbpEVyUV5p", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json index d460cbd18e..cadc211e84 100644 --- a/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.10mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.10mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "dJXdBn0NOlO6W6Zy", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.1", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json index 4a09f69b43..dbc7b42108 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @CORE One 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "Y3Pd2Z84Z0vwQrPe", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json index 48dd10207d..f264ae27a0 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @CORE One L 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "jgMpXjl7hn3nEN0s", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json b/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json index a588e508a3..11408bafc2 100644 --- a/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm SPEED @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm SPEED @MK4S 0.25", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "MSqpYhW6mD1MMp3i", "instantiation": "true", "bottom_shell_layers": "6", "bridge_speed": "30", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json index bedf4aa550..4ea2848603 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One 0.25", "inherits": "0.12mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "7kDqJKRKvvJguw7E", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json index e5ea7bea24..7a98a7ac11 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "ahndRyDz7TltQVpV", "instantiation": "true", "sparse_infill_acceleration": "5000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json index 5a1e3947ed..bea0b875dd 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One L 0.25", "inherits": "0.12mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "DKBQNmAKwxVN7LFS", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json index ce7eab7b06..ef3a2030e9 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @CORE One L 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "H065X6eyZg1thlDr", "instantiation": "true", "sparse_infill_acceleration": "5000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json index 0c3af82134..3cbea7a5be 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @MK4S 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "sP1c8kbfiKDgN8MR", "instantiation": "true", "inner_wall_acceleration": "1500", "inner_wall_speed": "70", diff --git a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json index 4d3be82017..3cec15372a 100644 --- a/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.12mm STRUCTURAL @MK4S 0.3", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "ZkPNeh5PoMZk0w42", "instantiation": "true", "bottom_shell_layers": "6", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json index 73f41cf8df..b94952baa5 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "VkbpRYDorJuZkSY7", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json index 0508be84d0..a3b3dbd164 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "KcBmdvGGGHx6CxK6", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json index a5de6a1f46..858d412f5a 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "6ZetPXVNaXZFsSXN", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json index 0fa08e8f37..21bde4174c 100644 --- a/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Speed @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Speed @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "bRTMF8lZsKF6HhPW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json index 5208f333c8..b55d20d8e0 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "btpS2qR0A9EvWqU4", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json index 0c01014739..9e60406483 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "drFGpBBHUiFZGz5t", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.12mm Standard @MK4.json b/resources/profiles/Prusa/process/0.12mm Standard @MK4.json index 1f0d9ff2a8..75533c7455 100644 --- a/resources/profiles/Prusa/process/0.12mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.12mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "WwN8uu0LNJx3ZhdR", "instantiation": "true", "support_top_z_distance": "0.08", "support_bottom_z_distance": "0.08", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json index 3122b3a103..f4f60df63a 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "73SPHauAd2RIus3O", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json index 4554aab13e..1afe27bca8 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "akgU1dHf7Q5uR4by", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json index 880caf880b..0b004e8ac1 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "fob7jEb0BgK6RoKn", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json index b311e60b5c..a9f66f4666 100644 --- a/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.12mm Structural @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.12mm Structural @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "r7sSm3jhvnCkjUD7", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.12", diff --git a/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json b/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json index d892634145..2595748c43 100644 --- a/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Detail @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm Detail @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "ruMTxbUbjXJKQsJI", "instantiation": "true", "print_settings_id": "0.15mm Detail @MK3S 0.6", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json index 32da2a790a..5fd23d8e26 100644 --- a/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "xPmptTe1FfORQhEC", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json index ac87ab00ea..fa89be1fc8 100644 --- a/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "qeZFZeH1EAu3hmtX", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json index bc9eb45740..5881f85a90 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S 0.25", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dsOu1V1ogb4RNViA", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S 0.25", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json index 0e44424860..812c56b07c 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "BBNVLXOFTypVAfDS", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S 0.4", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json b/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json index 991a418042..6db1ce71e8 100644 --- a/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json +++ b/resources/profiles/Prusa/process/0.15mm Quality @MK3S.json @@ -3,6 +3,7 @@ "name": "0.15mm Quality @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "7lsbsn6oKWhmw3j3", "instantiation": "true", "print_settings_id": "0.15mm Quality @MK3S", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json index 506905e673..b75c4030eb 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "84BHQYWlamcr14IB", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json index 6e3c0cb7d1..d3b097db08 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "VzCIZcLeFkrR4e3N", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json index f84194d3a8..9b36c67a5f 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One HF 0.4", "inherits": "0.15mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "Ajm1BOji7RhOH8vj", "instantiation": "true", "overhang_1_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json index ce4b59c344..daf00bb591 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "sXzJXXTDq8jHX4m5", "instantiation": "true", "travel_acceleration": "4000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json index 905c9cb7b9..f467c315b1 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L 0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "L7eFBRpk43QZ2mIg", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json index 38235e70be..cb588c27b1 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @CORE One L HF 0.4", "inherits": "0.15mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "wATWoU2pvkCugSEj", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json index daf9724772..2795e286f9 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S 0.25", "inherits": "0.12mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "DrOC2zjOZJx4BA14", "instantiation": "true", "bottom_shell_layers": "7", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json index 8281c6882b..4176106550 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "M60DxnrVmUqbwINv", "instantiation": "true", "bridge_speed": "45", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json index e37b2f474c..ec569c696a 100644 --- a/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.15mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm SPEED @MK4S HF0.4", "inherits": "0.15mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "Q3tvcNm32wcuelzj", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_speed": "250", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json index 7a300038cd..71a39ad7ef 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.25", "inherits": "0.15mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "yeQIeip8P5tNgdjj", "instantiation": "true", "travel_speed": "350", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json index 4190cf2502..de47b769b0 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.4", "inherits": "0.15mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "Er7s41kb6bBDjBVP", "instantiation": "true", "overhang_3_4_speed": "45", "sparse_infill_speed": "120", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json index 831e221889..4d3400fdfe 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.5", "inherits": "0.15mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Ri9JPCMN8YgbT9pp", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json index 6245161ad2..f21c7f6283 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One 0.6", "inherits": "0.15mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "M8WdIdQWUxYohSoe", "instantiation": "true", "inner_wall_speed": "70", "overhang_3_4_speed": "30", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json index b3b03fc2de..db6fe5d257 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.25", "inherits": "0.15mm STRUCTURAL @MK4S 0.25", "from": "system", + "setting_id": "TS1qx8bCgt6IQSlH", "instantiation": "true", "travel_speed": "500", "travel_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json index f60d564923..9cef828630 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.4", "inherits": "0.15mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "Q5Em2qoElqB5MNcC", "instantiation": "true", "overhang_2_4_speed": "45", "sparse_infill_speed": "120", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json index 067c05304c..1df5867119 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.5", "inherits": "0.15mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "OpPBTGQwzerxtPiq", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json index b2f2eab58d..447e355c81 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @CORE One L 0.6", "inherits": "0.15mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "WA8ZWQEuNUP7ewpq", "instantiation": "true", "inner_wall_speed": "80", "overhang_2_4_speed": "30", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json index 23b9f6f50c..602fffc01d 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.25.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.25", "inherits": "0.15mm SPEED @MK4S 0.25", "from": "system", + "setting_id": "3Qq2696fHXhXfbkP", "instantiation": "true", "inner_wall_acceleration": "1500", "inner_wall_speed": "70", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json index 253941c88e..621697305e 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "ShJ9CnEQUymPOhMD", "instantiation": "true", "bottom_shell_layers": "5", "bridge_speed": "45", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json index 000b7e29d6..a4713aba1c 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "BUt1cfZu3694tlgi", "instantiation": "true", "bottom_shell_layers": "5", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json index beed223258..56c84437a2 100644 --- a/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.15mm STRUCTURAL @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Edy382rlyi3ziqs6", "instantiation": "true", "bottom_shell_layers": "5", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json index 1e874e4d0f..6aafbac3f1 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MINIIS 0.25", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "2Cy0ti9oKfJjasOA", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json index b2cc6ef71c..3e1c2e35be 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "CFEud5GPN2iXshnt", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json index eb3f5b9c8b..e1f0c7a8a7 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MK3.5 0.25", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "spn1tlefgCPjwRMX", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json index 4c165bb4ef..33379bc767 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "E7ZB4Ae12XzEYkAd", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json deleted file mode 100644 index ce9f0aaad7..0000000000 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3S 0.4.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "type": "process", - "name": "0.15mm Speed @MK3S", - "inherits": "process_common_mk3", - "from": "system", - "instantiation": "true", - "print_settings_id": "0.15mm Speed @MK3S", - "bottom_shell_layers": "5", - "bridge_acceleration": "1000", - "bridge_flow": "1", - "bridge_speed": "25", - "gap_infill_speed": "40", - "inner_wall_acceleration": "800", - "inner_wall_line_width": "0.45", - "inner_wall_speed": "60", - "internal_solid_infill_line_width": "0.45", - "internal_solid_infill_speed": "200", - "layer_height": "0.15", - "line_width": "0.45", - "outer_wall_line_width": "0.45", - "outer_wall_speed": "35", - "raft_contact_distance": "0.2", - "small_perimeter_speed": "25", - "sparse_infill_acceleration": "1000", - "sparse_infill_line_width": "0.45", - "sparse_infill_pattern": "crosshatch", - "sparse_infill_speed": "200", - "support_base_pattern_spacing": "2", - "support_bottom_z_distance": "0.2", - "support_interface_speed": "40", - "support_line_width": "0.35", - "support_object_xy_distance": "0.27", - "support_speed": "50", - "support_top_z_distance": "0.2", - "thick_bridges": "0", - "top_shell_layers": "6", - "top_surface_line_width": "0.4", - "top_surface_speed": "50", - "wall_loops": "2", - "compatible_printers": [ - "Prusa MK3S 0.4 nozzle" - ] -} diff --git a/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json b/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json index 60eca84ddb..9d1d4eb290 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @MK3S.json @@ -3,6 +3,7 @@ "name": "0.15mm Speed @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "hMrUzAn55mGAdWZd", "instantiation": "true", "print_settings_id": "0.15mm Speed @MK3S", "bottom_shell_layers": "5", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json index 2a00c85dbc..26cdd296be 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "cgILXbySCC6nqmEb", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json index 44d5c8fcb5..b9b377d8d2 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4AMX1x5HBbBTomRW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json index 64e24be161..8bbcd589a2 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "IcqKzHQfnQA1UkW8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json index e42acaf650..2986511f61 100644 --- a/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Speed @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Speed @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "AHLStcEIoS1RHwyz", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json index 95ebf7e18a..066ac1e2c7 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS 0.25", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "2Bjqd3kqk6pShyiG", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json index 5ba4a33a8f..150489808e 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS 0.6", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "R91IhShMyoBTglCE", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json index 7a49dcef8d..a7ba23c6a0 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "15ygzQ1DiW2HtpPe", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json index 8d5e2b1349..42eec9a583 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5 0.25", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "WsJWh6ENWQXavVtD", "instantiation": "true", "line_width": "0.27", "inner_wall_line_width": "0.27", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json index 5f82ed43ab..7b9381ce90 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5 0.6", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "gVBEPJdKmuE2rM9G", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.6", diff --git a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json index d15dc95937..4b659d9b0e 100644 --- a/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.15mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "W63l7cZGACTBIb3p", "instantiation": "true", "line_width": "0.45", "inner_wall_line_width": "0.45", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json index bff0a1e8db..50a0f4ce26 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.25", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4wRMLZd9QaZoH4kS", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json index 084f2d1f1e..a26826f5f3 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "vvxqhkOrXFUatgrU", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json index 78ccec5ed2..8b3c41bf75 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "hPK1xnCvbwYIFJ7H", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json index 62f03ab062..0e66b45a2f 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "Vk99bKUtLe3aQVtm", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json index 1003ec01a7..887af08eab 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.25.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.25", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "dIHzQRDmPMTuqJwN", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json index a7060e558b..f9614d0c79 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "teKETDr5ds47ql40", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json index 7e1200a724..2e62ad9632 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "Pryn5mnRWDmI9oL6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json index 0904eb6e29..28d280fa93 100644 --- a/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.15mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.15mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "86FOKdhESDAyjhQv", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.15", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json index cc66712af5..e14133f440 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @CORE One 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "YGK4pmtGyq62UmYk", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json index 9953c0ff6a..b3d49bb6ae 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @CORE One L 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "x8xdbwb1fxd6SQjF", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json b/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json index c924a476a6..22bbbfe4cc 100644 --- a/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm SPEED @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm SPEED @MK4S 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "l0Xjr7r8ifFYFfS2", "instantiation": "true", "inner_wall_acceleration": "2500", "inner_wall_speed": "140", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json index 566a53243d..a9fdd909d8 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @CORE One 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "7Ooochf8ACVNHHd8", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json index aab5afe4da..d8a75f9ac7 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @CORE One L 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "g4l1ezOS2gAGP8il", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json index 4e6a76dcdd..4d53a63623 100644 --- a/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.16mm STRUCTURAL @MK4S 0.3", "inherits": "0.12mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "MT56BMLA6reWI2sF", "instantiation": "true", "bottom_shell_layers": "5", "default_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json index e90c50eafb..bba39e2348 100644 --- a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Speed @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "EvodY9EfuOW01UoT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json index d65737f286..97f3038464 100644 --- a/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Speed @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Speed @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "m3gjDMcaMcVsQ40p", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Standard @MK4.json b/resources/profiles/Prusa/process/0.16mm Standard @MK4.json index d8d9a4e001..a5643d328b 100644 --- a/resources/profiles/Prusa/process/0.16mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.16mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "nqsLsyCk09uxuEf4", "instantiation": "true", "support_top_z_distance": "0.16", "support_bottom_z_distance": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json index 3f91278886..deae48fb0e 100644 --- a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Structural @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "af3rNSTMisNshYoW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json index c9e4e2880c..c2d1560e78 100644 --- a/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.16mm Structural @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.16mm Structural @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "ruo2hwRFtsXf0b6V", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.16", diff --git a/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json b/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json index 1bde378532..ac35b3aaee 100644 --- a/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Detail @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm Detail @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dTfnuXbwKxIxw9Ed", "instantiation": "true", "print_settings_id": "0.20mm Detail @MK3S 0.6", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json index 4e31c18c31..87c5922a99 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MINIIS 0.6", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "6OaVdTR4lLVSBCtN", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json index edaf8bd4d0..2c3468da45 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "ScxJeGOa12CObqRg", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json index 4dd9fe8ab6..0613e94dcf 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MK3.5 0.6", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "k8vkbDmFmhTFGjg0", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json index b5ac072218..326dd3f59f 100644 --- a/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "JknR1ZhRLLryHEgS", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json b/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json index 596d0feedd..831fe71ce0 100644 --- a/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Quality @MK3S.json @@ -3,6 +3,7 @@ "name": "0.20mm Quality @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "61A1R52rzLOrzAIm", "instantiation": "true", "print_settings_id": "0.20mm Quality @MK3S", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json index 05fabc20f3..36b166b8ba 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @CORE One 0.4", "inherits": "0.20mm SOLUBLE FULL @MK4S 0.4", "from": "system", + "setting_id": "o828K3OgfkY099HE", "instantiation": "true", "overhang_3_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json index a418d7813d..bec6f409e9 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @CORE One L 0.4", "inherits": "0.20mm SOLUBLE FULL @MK4S 0.4", "from": "system", + "setting_id": "7TWALkI3BHW6hP4s", "instantiation": "true", "overhang_2_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE_L[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json index 051bbab68d..9e0098704f 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE FULL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE FULL @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "yYJCu437HslbPCKF", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and single_extruder_multi_material", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json index cb50aded6a..7a880ee217 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @CORE One 0.4", "inherits": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "from": "system", + "setting_id": "hC9F5dv2WJ4pJMJx", "instantiation": "true", "overhang_3_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json index 97da199ec4..af14b58916 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @CORE One L 0.4", "inherits": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "from": "system", + "setting_id": "r8BNUNlPpwhTlojC", "instantiation": "true", "overhang_2_4_speed": "50", "compatible_printers_condition": "printer_notes=~/.*PRINTER_MODEL_COREONE_L[^_a-zA-Z0-9].*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json index 9643afd782..faf44e3824 100644 --- a/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SOLUBLE INTERFACE @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SOLUBLE INTERFACE @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "bJQXRZ9OGtX61lLw", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and single_extruder_multi_material", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json index a5dd97eaae..85f29c3d5a 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.3", "inherits": "0.20mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "X1LzgkBZdhAyYLzv", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json index 1d958886db..0edfed5957 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.4", "inherits": "0.20mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "TcOnRh8cZfyZcQzx", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json index b5448af911..3f83a3ff54 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "0XpimvIotRzkG5C0", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json index 4862d8cc5c..65410c7fa8 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "wfltF3Wq4BExv5nn", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json index 5ccfbaa7bb..3e286cb782 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.4", "inherits": "0.20mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "JiBYOvJXa3KIsWlk", "instantiation": "true", "overhang_3_4_speed": "50", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json index ea7aec1c34..f42edd925c 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.5", "inherits": "0.20mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "8FVn4dELsu1VoEFn", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json index c635ba612e..c6d2192d23 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One HF 0.6", "inherits": "0.20mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "kzKpZiJ0ni4ry97j", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json index 67b93cc86a..04777950f3 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.3", "inherits": "0.20mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "pmyDqKWv67HUQj8U", "instantiation": "true", "sparse_infill_acceleration": "6000", "inner_wall_acceleration": "3000", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json index 557fe456fa..aa4aa3de8e 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.4", "inherits": "0.20mm SPEED @MK4S 0.4", "from": "system", + "setting_id": "TpYb9Z9NVIfRTVDv", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json index 386d4f7e24..6fa9451458 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "kEd1dVPbUyHTGW2x", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json index 684ee5bba9..3bfe8d97b0 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "Xge3hbQO7LYu708A", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json index 8d114a70b2..ccae634dde 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.4", "inherits": "0.20mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "VfD1ailcNZG4715m", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json index 92e0fff6d8..355504a140 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.5", "inherits": "0.20mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "zLSsXW9vdgJsghDt", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json index e7c52ab1c2..76a8c84750 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @CORE One L HF 0.6", "inherits": "0.20mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "NlEh0boG6G8cm7er", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json index e2231f3c81..af1f2bf444 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.3", "inherits": "0.16mm SPEED @MK4S 0.3", "from": "system", + "setting_id": "8d2rNAizWvmAflv3", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json index f3a7fb25dc..f49a2dbdfa 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "LppzMTuL50os16Y4", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes!~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json index 6e9fd9c265..2af60a6812 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.5", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "2JePowdcfvIARvSH", "instantiation": "true", "bridge_acceleration": "1000", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json index 3c7ac3fdcd..1091cea47f 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Ybga6DH2mlyF5MtU", "instantiation": "true", "bottom_shell_thickness": "0.6", "bridge_speed": "40", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json index f52e927408..1625d6611e 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "3uOgKVnige4Pi69r", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json index 17a5192bb3..6a632c08cb 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "WgAgnBZ5G5Sc8GcQ", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json index 3f92b75fc8..d996ee61be 100644 --- a/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.20mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm SPEED @MK4S HF0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "gXs4zWDUQz3ehJpO", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json index 44c6d071be..cee96bd890 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.3", "inherits": "0.20mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "QQ80iuZyDM3axjhS", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json index 125710a5c8..49c0105c04 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "MJI3kUwsJ3adqKx7", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json index 3721c1d5f9..3b9fa87546 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "4dkMphdZvBhDyRH3", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json index 1adef54326..4b3404e0d6 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One 0.6", "inherits": "0.20mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "SJgbNC9RPNJ5pETW", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json index 2cb7a63701..578a621207 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.3", "inherits": "0.20mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "h8W1s7KwhSXGeOJO", "instantiation": "true", "sparse_infill_acceleration": "6000", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json index cf5e799fba..9dcf115915 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "ZREnOeR8PWDtBt6p", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json index 804d230935..33a8fd98b6 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "nPCt75oBbhvcdEu2", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json index ff84e35f81..d01eca2bc5 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @CORE One L 0.6", "inherits": "0.20mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "lQYryBeFbSH5yG88", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json index 6b2e7f908b..091ff8166c 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.3.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.3", "inherits": "0.16mm STRUCTURAL @MK4S 0.3", "from": "system", + "setting_id": "mrSU54k7z9Hgo1OH", "instantiation": "true", "bottom_shell_layers": "4", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json index f1705d1525..c246f480c4 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "L3DAq2SccG962vEW", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4", "default_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json index 268a9ff203..6065291b10 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "UMpHyWw24UuZweBB", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5", "inner_wall_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json index 86781f7eae..574db2984a 100644 --- a/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.20mm STRUCTURAL @MK4S 0.6", "inherits": "0.20mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "jZOKkGNHWE3u1lv5", "instantiation": "true", "bridge_speed": "30", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json index 3ebbed0671..8503c82977 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MINIIS 0.6", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "XL7AI5iwHPma3sAW", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json index 466363bc20..8d2f3ccd7c 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "8Sg9zpg5mIR9bcnU", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json index dbc1efd19c..19e090c305 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MK3.5 0.6", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "yuklDUzGzkqsumBs", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.6 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json index 36968bb840..df232f27a2 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "pF9Ew8BX7HRNERlA", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json index 5a6997e2f1..605f1c8a69 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.20mm Speed @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "AKAm2oU4IGMAY4c1", "instantiation": "true", "print_settings_id": "0.20mm Speed @MK3S 0.4", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json b/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json index 192d7fc9a6..30ee666458 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @MK3S.json @@ -3,6 +3,7 @@ "name": "0.20mm Speed @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "dNBYGs59kilHSvIa", "instantiation": "true", "print_settings_id": "0.20mm Speed @MK3S", "bottom_shell_layers": "4", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json index f1660b4b88..dab45f662a 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.3", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "FqJrjcMDEtvz4jch", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json index f0cb09654b..b0cac6a312 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "zV7NsprJfhqVv5y4", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json index 5fc8732495..491377b06a 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4ZEDsA7dwvEUWMMd", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json index a8e3f8e555..7abdeef07f 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "KGgLyPwKSFxPjSvx", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json index 9eae2ed2e5..ac28bcb2a9 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.3.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.3", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "a0baBMlcEFTb2OZ8", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json index 7ce2de427c..ca2a97b65b 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "pwGO2EEQjnIEhyKf", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json index f2f7baa3d7..fef2204de3 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "5F5Ch0i10mTq3zuV", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json index 933e4711c0..abc273ff82 100644 --- a/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "NqR708bAWmTqXUFY", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json index 7bd1791b9d..09a1bd2959 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.25.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.25", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "AhtVuWDMULVCl0u1", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json index d8b31f83d3..c4f043f133 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.6", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wMoBkmRqQ0nhI5Tj", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json index 92dd80cca4..0ea92ee09a 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI 0.8.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI 0.8", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vKRfqdBwwfZ5f74h", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINI.json b/resources/profiles/Prusa/process/0.20mm Standard @MINI.json index 868cc50873..4dbddc5ac4 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINI.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINI.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINI", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "H5UpQUDCmsn9Amnq", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json index b43707b17f..0435cc8da9 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINIIS 0.6", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "P1Z1TjcycB4aOjUT", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json index f754a1c118..82464730f3 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "kzZbOFDyAMKrDA3k", "instantiation": "true", "compatible_printers": [ "Prusa MINIIS 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json index c0c885f250..389a31f819 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3.5 0.6", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "uOfAfvo90yA9vHLs", "instantiation": "true", "layer_height": "0.20", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json index ce2f994015..88da3797ab 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "6tMTNrOMs79q12lV", "instantiation": "true", "compatible_printers": [ "Prusa MK3.5 0.4 nozzle" diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json index d9c5bfe82a..58e2a24bd7 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3S 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3S 0.4", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EN9GmgReNJH7sDkh", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json b/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json index 3a91c35a61..fbc6f3f899 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK3S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK3S", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6h0Wz3WHr5VUcJor", "instantiation": "true", "initial_layer_speed": "20", "initial_layer_infill_speed": "25", diff --git a/resources/profiles/Prusa/process/0.20mm Standard @MK4.json b/resources/profiles/Prusa/process/0.20mm Standard @MK4.json index d474fbd16c..9088378b94 100644 --- a/resources/profiles/Prusa/process/0.20mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.20mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "zRE35Z5rfEnie6Io", "instantiation": "true", "compatible_printers": [ "Prusa MK4 0.4 nozzle", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json index 6863fbcc11..60d3811370 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "Qxbp7FRlShkyIUMl", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json index 4fcd77f1ea..4a4cbc41ac 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4GvQY4XeLAzrYIRW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json index a6db9503e7..5af5fce34f 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "TcJJBvFu5zKjphzL", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json index bf2d57b1d9..b6a0286d0a 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "FagNs0wxnyQOYiaQ", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json index 6b0ebc9dbe..d0a18dc4af 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "pO0wAwE0qoXzEQpV", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json index dcc821f639..2ec55473d5 100644 --- a/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.20mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "8OkUXQAW5vByC09t", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.24mm Standard @MK4.json b/resources/profiles/Prusa/process/0.24mm Standard @MK4.json index 61d55279f5..90641f510b 100644 --- a/resources/profiles/Prusa/process/0.24mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.24mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "sEDT2ffQogmU0BA0", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json index 0576c29feb..e89b02925f 100644 --- a/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "NStQbUF9Il7AGEe7", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json index 785a76123f..c4bf3b1a3d 100644 --- a/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "3ObKDK96JNodU1BG", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json index 24a07b9790..3c3e91d783 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One 0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "j18VMrjkn0nNcqF0", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json index 68f78014b7..e86acffc45 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "UbyRKcnbmQtxSOGo", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json index 26be3fdbab..d9e9f8e422 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.4", "inherits": "0.25mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "HmzxDcsh7N8XFbcZ", "instantiation": "true", "overhang_3_4_speed": "50", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json index dfca2e9d15..7f96a05054 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "HvtMtivKFekmwpqp", "instantiation": "true", "overhang_3_4_speed": "50", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json index 7320fd9308..41dc420472 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One HF 0.6", "inherits": "0.25mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "L5p4CoVhGtFA8NUk", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json index dcc43a9923..da38b0feca 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L 0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "dXbRRcioWgelWC4v", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json index 5fcc114df6..d6dce7700c 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "mMMK2jmzahWruFjK", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json index 042000c2b1..ae07e2925f 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.4", "inherits": "0.25mm SPEED @MK4S HF0.4", "from": "system", + "setting_id": "MOYF1incx6aCPT3i", "instantiation": "true", "overhang_2_4_speed": "50", "overhang_3_4_speed": "60%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json index d2d87f0ef4..f5ba02df20 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "5RD43d3hRH0Um64z", "instantiation": "true", "overhang_2_4_speed": "50", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json index 8ba267bc5b..76b3e99919 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @CORE One L HF 0.6", "inherits": "0.25mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "71l9zfjgGKBk7P4O", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json index ffa73cc0ec..3d2dbbae2b 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S 0.5", "inherits": "0.20mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "6zIKQgtZvu0u4I1J", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json index e29ca5a0fa..ff078242ab 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "lhcpQ2vaUl3bNZav", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json index 439f94e235..655cacd54d 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "gN0mZ7Ft7Eu4okID", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json index 78391122cd..d267798743 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.5", "inherits": "0.25mm SPEED @MK4S 0.5", "from": "system", + "setting_id": "k1PEbozPePQEfoUn", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json index 05f6ee35e6..52d17eb1c3 100644 --- a/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.25mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm SPEED @MK4S HF0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "wT069MAflYUgL2Dt", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json index c92287c8cc..1bf77877b3 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One 0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Xwzu2GvZfskVw39Z", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json index 96e747e6d7..71beca6418 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One 0.6", "inherits": "0.25mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "2Az8F1vPrNXgKK1V", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json index 744395633d..572cc0d9db 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One HF 0.4", "inherits": "0.25mm STRUCTURAL @MK4S HF0.4", "from": "system", + "setting_id": "zBWdXWEuyUFu88Pg", "instantiation": "true", "overhang_3_4_speed": "45", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json index d26110eff0..ea76436bcf 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L 0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "Q18YLBysOKUOCGFN", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json index 46e632c103..b469f0147f 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L 0.6", "inherits": "0.25mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "lbfAxjCkRzBZrjkV", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json index dac0e09a36..50a04019bf 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @CORE One L HF 0.4", "inherits": "0.25mm STRUCTURAL @MK4S HF0.4", "from": "system", + "setting_id": "O8EVUpvpeeBJXyC3", "instantiation": "true", "overhang_2_4_speed": "45", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json index 315bb73082..fc265a6c61 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.5.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S 0.5", "inherits": "0.20mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "PmEEwx27ogiKLuTb", "instantiation": "true", "bottom_shell_layers": "3", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json index 4ff3814428..133769f51d 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S 0.6", "inherits": "0.25mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "Xlv8B4XOiA9s2SRR", "instantiation": "true", "bridge_speed": "30", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6", diff --git a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json index 2b6a475102..9c60519cb2 100644 --- a/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.25mm STRUCTURAL @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.25mm STRUCTURAL @MK4S HF0.4", "inherits": "0.20mm STRUCTURAL @MK4S 0.4", "from": "system", + "setting_id": "krbZAdSGpwpMoVa6", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json index 1b246daf0b..e9aa785ec6 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @MINIIS", "inherits": "process_speed_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "WiXsW2wAQT6xR3Br", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json index c0399ac8f7..4289c46032 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @MK3.5", "inherits": "process_speed_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "6zgm1F8XpmrfzjEw", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json index 78c3bf7eb6..5af9cf63ea 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "tq9hNTKxOHFsZMgD", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json index dd103d5f3e..0c01b887dd 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "kYif9gSFIrI9L3CW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json index 0347d1e2bb..7f7664d19b 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "wd734eTxLLTp27F6", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json index 218ac81ba7..5793905ca7 100644 --- a/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "t8zI85OaAzx7AsyL", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json index e41b9dcada..819ffa5d89 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "00iXUgejDbuEyh9k", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json index dceaf245ad..2bda1f2d0a 100644 --- a/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.25mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "Mbhn0O8d09lviJtQ", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json index 9c595e544d..85c5e02eb6 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.4", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "uL9lKUTCwCBZzAKb", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json index edc026da2a..6b27ad3553 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.5", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "BOc6zlHnIaJ1rmc1", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json index cf61231b3e..c5817295d0 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "A90mwMlerqcS0vrw", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json index c0a64ada46..a764f7ebfd 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.4", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "Edfv72b1RXBgmN2G", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json index abb35559f1..45f0fcca77 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.5", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "XucbZWnHhwG4rAhk", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json index 4e76ea368b..1486fc47a8 100644 --- a/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.25mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "5J54CuOpmESv7rvu", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.25", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json index e1b89ef8c6..53a0ac9a31 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @CORE One HF 0.4", "inherits": "0.28mm DRAFT @MK4S HF0.4", "from": "system", + "setting_id": "CbQCA65dMMEkK134", "instantiation": "true", "overhang_3_4_speed": "50", "support_threshold_angle": "35", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json index a89b9b4aec..c6b4961524 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @CORE One L HF 0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @CORE One L HF 0.4", "inherits": "0.28mm DRAFT @MK4S HF0.4", "from": "system", + "setting_id": "RU7TfPyCeUvdXHhB", "instantiation": "true", "overhang_2_4_speed": "50", "support_threshold_angle": "35", diff --git a/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json b/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json index 727941002e..6885891e8d 100644 --- a/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json +++ b/resources/profiles/Prusa/process/0.28mm DRAFT @MK4S HF0.4.json @@ -3,6 +3,7 @@ "name": "0.28mm DRAFT @MK4S HF0.4", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Spw0OqvyBY2H5M9j", "instantiation": "true", "bottom_shell_layers": "3", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.4 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.28mm Standard @MK4.json b/resources/profiles/Prusa/process/0.28mm Standard @MK4.json index 32360e3284..f3e5afb78f 100644 --- a/resources/profiles/Prusa/process/0.28mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.28mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.28mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "Bg1hnOKReinc7pzX", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json index bf1bbe2f34..9c6bd58097 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @CORE One 0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "m23j7wSoEJdezJgy", "instantiation": "true", "overhang_3_4_speed": "35", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json index a713201269..c3a03dccd9 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @CORE One L 0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "tFAbAaIwrUd2Q7Xz", "instantiation": "true", "overhang_2_4_speed": "35", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json b/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json index 133d1aac05..30136ee275 100644 --- a/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm DETAIL @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm DETAIL @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "jllXUdTLgXXBFvmv", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json index 133ca90139..4d6aa0f2fe 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "ptyJRt8c36jzZ2Hq", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json index 18d087f469..78919f67dc 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "bDM5jdM1fJbfkbyc", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json index cc847b676a..ea9890b861 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm Detail @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "1qXLjE0D0HsmBsb4", "instantiation": "true", "print_settings_id": "0.30mm Detail @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json index e6c3ed7ef0..b151b0158b 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "JM08ZuRlG9tw2qoT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.3", diff --git a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json index 0806df8c2e..03d08a0ff7 100644 --- a/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm Detail @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Detail @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "mVylvEhxHQAHdsb2", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.3", diff --git a/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json b/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json index 5b255f7a20..5dba98faa1 100644 --- a/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json +++ b/resources/profiles/Prusa/process/0.30mm Draft @MK3S 0.4.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @MK3S 0.4", "inherits": "process_common_mk3", "from": "system", + "setting_id": "GGfuHP2VuSiglzq3", "instantiation": "true", "print_settings_id": "0.30mm Draft @MK3S 0.4", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json b/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json index 4bc56a992f..62faaa74a1 100644 --- a/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json +++ b/resources/profiles/Prusa/process/0.30mm Draft @MK3S.json @@ -3,6 +3,7 @@ "name": "0.30mm Draft @MK3S", "inherits": "process_common_mk3", "from": "system", + "setting_id": "ZKZEX0KIkQicEM07", "instantiation": "true", "print_settings_id": "0.30mm Draft @MK3S", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json b/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json index 40cda138f3..a85034c320 100644 --- a/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.30mm Quality @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.30mm Quality @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "NG2KbUeHRUSPXrk1", "instantiation": "true", "print_settings_id": "0.30mm Quality @MK3S 0.6", "bridge_acceleration": "1000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json index 5518904561..bf03acf0f0 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @CORE One HF 0.8", "inherits": "0.30mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "wV3jMl7YWJ8dwdE8", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json index 7eb02f671a..1d7e71c409 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @CORE One L HF 0.8", "inherits": "0.30mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "MGqeaqYYBjlVPxJ2", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json index d50dd635e3..4128d50f49 100644 --- a/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.30mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm SPEED @MK4S HF0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "reTpMFk8Nk31aBN7", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "80", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json index 3c0520d441..39b25ddf00 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @CORE One HF 0.8", "inherits": "0.30mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "uzCEBmbNEQVjR8i8", "instantiation": "true", "overhang_3_4_speed": "40", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json index b993d6a90d..74b3ca4da0 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @CORE One L HF 0.8", "inherits": "0.30mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "sG8TZbVakt0sUNJJ", "instantiation": "true", "overhang_2_4_speed": "40", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json index 23d3cfa045..e2d2255ea6 100644 --- a/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.30mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.30mm STRUCTURAL @MK4S HF0.8", "inherits": "0.30mm DETAIL @MK4S 0.8", "from": "system", + "setting_id": "hfqkdmwibTRyrfXY", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json index 7a770a6c01..bcb8e5a24f 100644 --- a/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.32mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "dYseXuv4xa703tvI", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json index 482b497f12..9d302ac415 100644 --- a/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.32mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.32mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "GmseuiaxndWA2NEA", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json index d5ce206eef..2eff09b3df 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "ggWI2g8z3wNfnFG3", "instantiation": "true", "overhang_3_4_speed": "30", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json index 3e81d806a3..130a8407ab 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One HF 0.5", "inherits": "0.32mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "gDKE0bH5qPyNewzu", "instantiation": "true", "overhang_3_4_speed": "50", "support_interface_speed": "50%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json index bafa6bec2f..0493091619 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One HF 0.6", "inherits": "0.32mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "h1nfJq2NJquQhuRt", "instantiation": "true", "overhang_3_4_speed": "35", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json index 98ac75a32f..4a08d4af83 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "T7OokZGHzzb08zU1", "instantiation": "true", "overhang_2_4_speed": "30", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json index c912bc4135..55a52e9e39 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L HF 0.5", "inherits": "0.32mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "qMsePiXtEX9sZoPI", "instantiation": "true", "overhang_2_4_speed": "50", "support_interface_speed": "50%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json index 2441b828c9..59e38d58b3 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @CORE One L HF 0.6", "inherits": "0.32mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "cK8T3bqisPivC2MG", "instantiation": "true", "overhang_2_4_speed": "35", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json index e03cb51a20..6d7707407b 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S 0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "Gd8qx8j8iAcpbyg5", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json index 1248abd88d..ac5abc6aba 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S HF0.5", "inherits": "0.25mm SPEED @MK4S HF0.5", "from": "system", + "setting_id": "pqaJA2REtKWdfqRN", "instantiation": "true", "inner_wall_speed": "160", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json index 9520435fcc..36cf9d8d5a 100644 --- a/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.32mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm SPEED @MK4S HF0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "nwxEXzPZ2ZHEJ8fn", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", "inner_wall_acceleration": "4000", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json index 5bd5043616..8047c051e5 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One 0.6", "inherits": "0.32mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "xwwhZvsBxulQ1x0L", "instantiation": "true", "overhang_3_4_speed": "30", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json index 41cdf31c66..616f708c24 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One HF 0.5", "inherits": "0.32mm STRUCTURAL @MK4S HF0.5", "from": "system", + "setting_id": "RISdNOnVSnA7v3yH", "instantiation": "true", "overhang_3_4_speed": "45", "support_speed": "120", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json index bcc63ecd1c..6af7e5c99e 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One HF 0.6", "inherits": "0.32mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "VeYx8eYxSM2B7X2d", "instantiation": "true", "overhang_3_4_speed": "35", "support_speed": "110", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json index a327cdab37..66ad418759 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L 0.6", "inherits": "0.32mm STRUCTURAL @MK4S 0.6", "from": "system", + "setting_id": "UAxeWJiiT2m1Bbtw", "instantiation": "true", "overhang_2_4_speed": "30", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json index 07b234d5a2..96ccf84ffe 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L HF 0.5", "inherits": "0.32mm STRUCTURAL @MK4S HF0.5", "from": "system", + "setting_id": "JL4YWILCcvv52be3", "instantiation": "true", "overhang_2_4_speed": "45", "support_speed": "120", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json index 45b32b83be..f08e6d163d 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @CORE One L HF 0.6", "inherits": "0.32mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "0VWfEpp1iX7dyQHj", "instantiation": "true", "overhang_2_4_speed": "35", "support_speed": "110", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json index 6a061f0db9..4235502aef 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S 0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S 0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "c7Lno3eNSKr6FJX6", "instantiation": "true", "bottom_shell_layers": "4", "bridge_speed": "30", diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json index 8f35f82e30..ff6554185f 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.5.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S HF0.5", "inherits": "0.25mm STRUCTURAL @MK4S 0.5", "from": "system", + "setting_id": "f82vpEeOQBK3OyLR", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.5 and printer_notes=~/.*HF_NOZZLE.*/", "layer_height": "0.32" diff --git a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json index f5e4e06ec1..d27a6fe3a1 100644 --- a/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.32mm STRUCTURAL @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.32mm STRUCTURAL @MK4S HF0.6", "inherits": "0.32mm SPEED @MK4S 0.6", "from": "system", + "setting_id": "EkP4fKl8xEv2ph7W", "instantiation": "true", "bottom_shell_layers": "4", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.6 and printer_notes=~/.*HF_NOZZLE.*/", diff --git a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json index 61e3fc9926..cbfb7d03ee 100644 --- a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Speed @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "d3SdQ2Ms90vQRJbJ", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json index e8ec37c7f6..0a5a7eb355 100644 --- a/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Speed @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Speed @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "A2r7IL3r5X8aq4K9", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json index 1d90c69033..53cd7a7a91 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "0F6S8dmMndORzA5b", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json index 5b6f1b0f00..d3e2c15c90 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "bKePuYaEL04MBPoC", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.32mm Standard @MK4.json b/resources/profiles/Prusa/process/0.32mm Standard @MK4.json index 2dc20dfe11..f9127b4026 100644 --- a/resources/profiles/Prusa/process/0.32mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.32mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "dfvtNxtSLxS4dtdf", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json index 907904d812..29719b30ea 100644 --- a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Structural @Prusa XL 0.6", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "4ncLiUnnM834iAYT", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json index 63a7f0e144..fd7d7bfcda 100644 --- a/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json +++ b/resources/profiles/Prusa/process/0.32mm Structural @Prusa XL 5T 0.6.json @@ -3,7 +3,7 @@ "name": "0.32mm Structural @Prusa XL 5T 0.6", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "xeKmcP5CbIOoRybG", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.32", diff --git a/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json b/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json index 4f85c2bbfc..5b7482f3f6 100644 --- a/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.35mm Speed @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.35mm Speed @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "nueuvg0V3rKbrAcZ", "instantiation": "true", "print_settings_id": "0.35mm Speed @MK3S 0.6", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json index 9a74c9b2d0..f8684a9d28 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.35mm Standard @MINIIS", "inherits": "process_common_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "xx9iPMmcqAVtjYcN", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json index 57ec50bda1..e92af4d072 100644 --- a/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.35mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.35mm Standard @MK3.5", "inherits": "process_common_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "GLngqRyHYdN5cEw4", "instantiation": "true", "line_width": "0.68", "inner_wall_line_width": "0.68", diff --git a/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json b/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json index 67ad7994d7..916823b98a 100644 --- a/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm Draft @MK3S 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm Draft @MK3S 0.6", "inherits": "process_common_mk3", "from": "system", + "setting_id": "xevpfgK2B9WzOO8D", "instantiation": "true", "print_settings_id": "0.40mm Draft @MK3S 0.6", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json index e37ddd6a06..4bf359d55e 100644 --- a/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.40mm High Flow @MINIIS", "inherits": "process_highflow_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "KcQJxT8hm45mCecB", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json index 48ee37c09a..267e756994 100644 --- a/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json +++ b/resources/profiles/Prusa/process/0.40mm High Flow @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.40mm High Flow @MK3.5", "inherits": "process_highflow_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "64EY8WsPAoLqWxlF", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json index 8678c6f6b9..13aac206ae 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @CORE One 0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "2XzTOQAtbbUhXKeX", "instantiation": "true", "overhang_3_4_speed": "35", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json index 7debdd9b35..637974ee16 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @CORE One L 0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "RiYZSndNAKnfqWEV", "instantiation": "true", "overhang_2_4_speed": "35", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json b/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json index 57791c2e53..0956397fef 100644 --- a/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm QUALITY @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm QUALITY @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "MRHeqHymBP1gBtub", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json index 1fe83f4b45..e34fb5669a 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm Quality @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "5HHBTVM3m6egxp6k", "instantiation": "true", "print_settings_id": "0.40mm Quality @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json index 00c1c54f42..bcbdde8b77 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Quality @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "tj6gyfFMCp33ihPU", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.4", diff --git a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json index 254c9c04f1..aba69efc59 100644 --- a/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm Quality @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.40mm Quality @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "U8SGkKfwyjRe5VCr", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.4", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json index 90829a40e1..b6efaf1a85 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One HF 0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "ecyfUzv5L2MJ74lQ", "instantiation": "true", "overhang_3_4_speed": "35", "overhang_4_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json index df8ed1a00f..1d1f670be5 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One HF 0.8", "inherits": "0.40mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "md2z7xPjOLeOWx25", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json index 36f2cd1693..d06cdafb35 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One L HF 0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "Qz6UOajHaO5Zctcf", "instantiation": "true", "overhang_2_4_speed": "35", "overhang_3_4_speed": "70%", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json index 34521c4410..951ef416a5 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @CORE One L HF 0.8", "inherits": "0.40mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "32gxZmTbua4CBOBA", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json index 22e0f14420..260ab97250 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @MK4S HF0.6", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "zzDZ9Sf3VchPHPhq", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.6", diff --git a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json index 1a55e1da9f..56dbd9aa20 100644 --- a/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.40mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm SPEED @MK4S HF0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "Eq0vnD1Ps6zw0q35", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "65", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json index 9ee47887da..a9704ffdf7 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One HF 0.6", "inherits": "0.40mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "6oVNX62VOpdaRmbI", "instantiation": "true", "overhang_3_4_speed": "35", "travel_speed": "350", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json index 97e19dfe4f..b860b0ccad 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One HF 0.8", "inherits": "0.40mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "oGmCrMvVMo9eXPlo", "instantiation": "true", "overhang_3_4_speed": "40", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json index 189b624f49..ae15f9baf0 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One L HF 0.6", "inherits": "0.40mm STRUCTURAL @MK4S HF0.6", "from": "system", + "setting_id": "UpWXWwLE9frOIeg4", "instantiation": "true", "overhang_2_4_speed": "35", "travel_speed": "500", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json index ba03dc81ad..cbec6efdb3 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @CORE One L HF 0.8", "inherits": "0.40mm STRUCTURAL @MK4S HF0.8", "from": "system", + "setting_id": "wngAGl4Qr4sOzXLA", "instantiation": "true", "overhang_2_4_speed": "40", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json index 3cd65f575f..578e54c61a 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.6.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @MK4S HF0.6", "inherits": "0.40mm SPEED @MK4S HF0.6", "from": "system", + "setting_id": "Ggk6NDzr32YMuBeD", "instantiation": "true", "bridge_speed": "30", "inner_wall_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json index fd1c35fa9e..c3bdb1c347 100644 --- a/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.40mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.40mm STRUCTURAL @MK4S HF0.8", "inherits": "0.40mm QUALITY @MK4S 0.8", "from": "system", + "setting_id": "TyEnq1EFOf3CBmwA", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "65", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json index 554b6aa3f7..e9ef104b91 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MINIIS.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MINIIS", "inherits": "process_detail_miniis", "from": "system", - "setting_id": "GP004", + "setting_id": "dP964UNjH7vgPB6E", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json index 2b48a610f5..28c3640a85 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MK3.5.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MK3.5", "inherits": "process_detail_MK3.5", "from": "system", - "setting_id": "GP004", + "setting_id": "B7uvaoiRvFBRM2vb", "instantiation": "true", "line_width": "0.9", "inner_wall_line_width": "0.9", diff --git a/resources/profiles/Prusa/process/0.40mm Standard @MK4.json b/resources/profiles/Prusa/process/0.40mm Standard @MK4.json index fd11625a65..36d0411f56 100644 --- a/resources/profiles/Prusa/process/0.40mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.40mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "HekoeZvcxM1NIpwD", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json index cd23f77b00..d2e1fa1c24 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @CORE One 0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "MQ9Yw9qzsI0mVAbc", "instantiation": "true", "top_surface_acceleration": "2000", "inner_wall_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json index 17c0a18c0d..203b552ac1 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @CORE One L 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @CORE One L 0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "yYMszPCSBo67sVjd", "instantiation": "true", "top_surface_speed": "2000", "inner_wall_acceleration": "2500", diff --git a/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json b/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json index fa4f86e465..7f2676194d 100644 --- a/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm DRAFT @MK4S 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm DRAFT @MK4S 0.8", "inherits": "process_common_mk4s", "from": "system", + "setting_id": "B6Kv7TTd6ucR62bY", "instantiation": "true", "bottom_shell_layers": "3", "bottom_shell_thickness": "0.8", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json index 9b4c9eebef..6b297e45f0 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @MK3S 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm Draft @MK3S 0.8", "inherits": "process_common_mk3", "from": "system", + "setting_id": "3CwGwu7DcQx8idVK", "instantiation": "true", "print_settings_id": "0.55mm Draft @MK3S 0.8", "bottom_shell_layers": "3", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json index a65f92de62..88f4fc1904 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 0.8.json @@ -3,7 +3,7 @@ "name": "0.55mm Draft @Prusa XL 0.8", "inherits": "process_common_xl", "from": "system", - "setting_id": "GP004", + "setting_id": "M2F7JmD5xGYpqZKq", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.55", diff --git a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json index d0a8afa8de..d5573b0faf 100644 --- a/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm Draft @Prusa XL 5T 0.8.json @@ -3,7 +3,7 @@ "name": "0.55mm Draft @Prusa XL 5T 0.8", "inherits": "process_common_xl_5t", "from": "system", - "setting_id": "GP004", + "setting_id": "uQMlAQBEj5Rf1gBW", "instantiation": "true", "inital_layer_height": "0.2", "layer_height": "0.55", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json index 892c54b684..de9024e3f2 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @CORE One HF 0.8", "inherits": "0.55mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "zBotlr9rsKLjriaN", "instantiation": "true", "overhang_3_4_speed": "45", "top_surface_acceleration": "2000", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json index 5d3b541cd0..cb01d12c9b 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @CORE One L HF 0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @CORE One L HF 0.8", "inherits": "0.55mm SPEED @MK4S HF0.8", "from": "system", + "setting_id": "C1Ba7tvXoXbxs8h8", "instantiation": "true", "overhang_2_4_speed": "45", "top_surface_speed": "2000", diff --git a/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json index fc0ccd20cf..6fd2d5e04b 100644 --- a/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.55mm SPEED @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm SPEED @MK4S HF0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "8T2f9AQSJeZkCTFr", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json b/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json index 9d634ab753..6c7121d234 100644 --- a/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json +++ b/resources/profiles/Prusa/process/0.55mm STRUCTURAL @MK4S HF0.8.json @@ -3,6 +3,7 @@ "name": "0.55mm STRUCTURAL @MK4S HF0.8", "inherits": "0.55mm DRAFT @MK4S 0.8", "from": "system", + "setting_id": "O1BlUFPIeKPLpphK", "instantiation": "true", "compatible_printers_condition": "printer_notes=~/.*MK4S.*/ and nozzle_diameter[0]==0.8 and printer_notes=~/.*HF_NOZZLE.*/", "gap_infill_speed": "60", diff --git a/resources/profiles/Prusa/process/0.56mm Standard @MK4.json b/resources/profiles/Prusa/process/0.56mm Standard @MK4.json index 06349d22f1..27dcd58c69 100644 --- a/resources/profiles/Prusa/process/0.56mm Standard @MK4.json +++ b/resources/profiles/Prusa/process/0.56mm Standard @MK4.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @MK4", "inherits": "process_common_mk4", "from": "system", - "setting_id": "GP004", + "setting_id": "LN5YRmNQR6oNKbPm", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/Qidi.json b/resources/profiles/Qidi.json index 7ff96dbeea..9b3eeedca3 100644 --- a/resources/profiles/Qidi.json +++ b/resources/profiles/Qidi.json @@ -1,6 +1,6 @@ { "name": "Qidi", - "version": "02.04.00.03", + "version": "02.04.00.06", "force_update": "0", "description": "Qidi configurations", "machine_model_list": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json index d128775b69..5a6b2f07b2 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UWRDko6WCvXczl33", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json index 62d6147569..1a6930ff43 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LUEO7LVrgko3oXzg", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json index 9f787f73cd..9ceb5904ff 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NKhfqNQIcfKQBYAK", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json index f3c4889c7b..c773f1f723 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sZn12as9SQDNFDO3", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json index 9bd9f9891c..1930af3ebd 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "coopc46hemdV9QIv", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json index 58ccb23945..2560aa37f1 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qvYl7pfvtgF2y25O", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json index c1ed98f833..a27d0bbfb2 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AzHGQIE0dGXjOhqG", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json index 870aa4b62a..bddac012dc 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CoYm8sbAVmpmJNIV", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json index e02891e778..f6f867f6b6 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FnQb4cNqORpQ3Wkq", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json index dec0a1bcdf..35ed106798 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "94qvrRFOKOACTK2g", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json index b4b0eb179f..9fd1b1d878 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ehJ163zLubzIrWzf", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Bambu ABS.json b/resources/profiles/Qidi/filament/Bambu ABS.json index 7189234795..bc8e84d0d0 100644 --- a/resources/profiles/Qidi/filament/Bambu ABS.json +++ b/resources/profiles/Qidi/filament/Bambu ABS.json @@ -3,7 +3,7 @@ "name": "Bambu ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aZylcH8GeCJOqtTy", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json index 2b76ec337b..c1b4ec3fc1 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "cZhyWv8zbkM3fgAS", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json index a263eb7f26..e97ce167f1 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "PfIdpsKf0Xw5admE", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json index cdc9921c6c..ca2475da91 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "czi4981YiirKP6Yy", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json index 846667811f..123128a303 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1BV8aedNHRa3h7rp", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json index 24d220c590..2b3f40032f 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eNHYNrSKn90P4GdZ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json index 4235bdf0f5..5c2b0ccecb 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VU3PW2x6pfQ9Ayqo", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json index 934e555457..b3b16a0ef2 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ezevTOIexxkTBJ2", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json index a4d967883e..549a7c4055 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2vTNJwgFvUFq7oS9", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json index b51e255826..63080da56e 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q5ToVl9Yb4GGoNXC", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json index 388aa1b953..0ce417dc1d 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XpLJtB1WhRyb1C75", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json index 7f2ce80233..89e531f65e 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PiYLOckPVRFKFTS6", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Bambu PETG.json b/resources/profiles/Qidi/filament/Bambu PETG.json index 945a08f097..70d61730fa 100644 --- a/resources/profiles/Qidi/filament/Bambu PETG.json +++ b/resources/profiles/Qidi/filament/Bambu PETG.json @@ -3,7 +3,7 @@ "name": "Bambu PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "5ZkReXpCOi19xuJg", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json index a3fdad05c8..95434aff3a 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xY62JrDaYjjSb3lh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json index 504d839958..ea5ef9b75d 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HjjvZoWwpjZ2gwDO", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json index bc86554bcd..3d978affa5 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "5dZqeodmshu33k4e", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json index 973b27eb53..5d51f1eafc 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6kHEv9BjLlJi4E9T", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json index e3fb795c88..9451f422a2 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G28Bah0iOaahWlPE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json index 6f3fbfb423..3e93b99515 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ioH4lDHLbCw65TIg", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json index ac0b3a388d..02f5bab7f6 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oAUHAhSZkmCjhJEP", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json index 2d84298502..9677e7fa31 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mT6I8HUJsMgYCjb4", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json index 28782b03e1..d9a8aa89ab 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5sr5ABQQzrYFUxtk", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json index 9e40f5f9e1..c2611c3679 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CNzhUsHWT2FOW2Qe", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json index ebe2a140b4..dc770d61eb 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Bambu PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Bambu PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8Mosuf8MExl0g3Tz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Bambu PLA.json b/resources/profiles/Qidi/filament/Bambu PLA.json index aaab7381ea..ebdf2423d6 100644 --- a/resources/profiles/Qidi/filament/Bambu PLA.json +++ b/resources/profiles/Qidi/filament/Bambu PLA.json @@ -3,7 +3,7 @@ "name": "Bambu PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lweaPojzNVU2FJnO", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json index 024dbdf206..37749f7ca1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QASmOwd2vpLRwI9I", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json index fa3a6fc95e..7aea599422 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FETCvNKTRyxJujEs", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json index edb9bdebcc..2a465f6e24 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ywzSdHmCxIwmIFVS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json index 084d29524a..b5c25a1bce 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EwhasEiqLRcN5gBN", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json index 93406dd75a..4a0b67f0a0 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0NVX3dTScYTIebm3", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json index e793b8bdb6..2c8d4bc22d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HCU0TmDPYF39Gc3X", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json index b2a740f5a8..62bb876608 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Pf6oZn5QrYSbJhdm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json index 4d0f59add4..b6f03502b3 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6LSdExBaTT0Mc3rY", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json index 0aea7d1217..a4ebcb6a7b 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vc2R90RYyDuY8vQn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json index 855f1887db..1d4d13d416 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1HVRVgHeXWVj3T0v", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json index 47cf8b00e8..b16ce365f8 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aJxjGxHK8UJOqYPV", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json index b52c039c6a..5e4fd7cf10 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0fchNQsqRqwI6whN", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json index d026cc9467..ffb2cc0e34 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "Cw3CaLrsjVfJKoWI", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json index 4aaf8ced6c..e6b90b25f2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "eLmXN4kJvaoq5Ude", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json index 25309d78e8..6a763393a7 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSG99", + "setting_id": "mndT3gxOniftGEEZ", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json index 6f9d2dd62c..8e0f9576fb 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L8aHH2WqnlOYuyfd", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json index 9c996e287b..cf9da5b3c1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LMva5CR9m19UAhcI", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json index bf90d8d3cd..400f38d7fa 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5EfWTFx0dXRTREkj", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json index bc4b064417..44b77623c6 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xeu1S6h53DRVM9Pw", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json index b85d2415ab..0b09a46b90 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UrZzA62PJDuvo9EC", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json index bf8de06833..696fddb2d8 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jAykaomjQ4BS9Cg0", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json index 8393618843..c0203d9268 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2QrBYfeT0mp048aY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json index 44d7236902..aee2e475e2 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX PETG @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9otX3aWO4xQA72DT", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json index 5eae8a6341..240181288d 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PETG @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "dqHKVy4ahTjpQFOJ", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json index aee6459536..679eb2b2f1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GrYmKcX6ghgUO8z0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json index e37fbe5b3a..b891604161 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Fwd0BaBVmg2w9oBo", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json index efffa4cba4..af0f830e19 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "OjSAPfXD7c9LpDZI", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json index c94421bcc5..8c0315ecd1 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tNk1yBoRzuKtWamt", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json index 607e64477e..865f120bcb 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oULA9qVGUD5izX9o", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json index ecfa4b60d4..956fa88d62 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RK1LyCal04XMqidp", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json index 996a9187e7..535b07b9b0 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6ehhHeFIMe3KxHA1", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json index 7c87317968..c6a9a6564a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i3bQYXjlGipOAop7", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json index adbe6a9b53..60b9f5318c 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vknSksUeSeKFl8vB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json index 9788bde3d1..89ffc6501a 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I5NFFjIYcoo3SkmC", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json index 265a738163..6e28cd923e 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "HATCHBOX PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gzDFMFaDnAVuDy3B", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json index 0e86d0287f..ee79175e43 100644 --- a/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/HATCHBOX PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jWtANauqr4Azj7fo", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json index 7962de65b9..3fb6ca6406 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PVJaNrzYRoafHb3k", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json index 8ad22ff24c..403311644b 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6dP4f482dvR9Ihhu", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.018" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json index 9da1f23366..5d43601751 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ol1pj7wlmGJlZHbA", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -16,9 +16,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json index dec11db303..aa2cc8787c 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "d9bOxYmwJJ928QUm", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json index 288f960208..451a97354e 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3vOLIQxScIoHCUDQ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json index 46f2965524..161cee6e4c 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ninsIRmjQReutXjA", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json index 19d2e048c5..e5e9652619 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m4sql22MWPed4UK9", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json index 79f5e50f6b..c6d97b1e42 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SbIhXnMLo7UWLdmF", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json index c095847694..ca632cb252 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Hh22vTpUyqF09bma", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json index 2ac56a877e..4419ba6577 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "10PSPCpiTcS92auy", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json index 08ee709578..f203d3f536 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Overture ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Xevn2nrx7W5VQX6z", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Overture ABS @Qidi.json b/resources/profiles/Qidi/filament/Overture ABS @Qidi.json index 524f2d7fe3..0ae10f9086 100644 --- a/resources/profiles/Qidi/filament/Overture ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/Overture ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rRuO94f0PYlPR3yu", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json index 1baf7985bc..028e0adeb3 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YnRI4rYCHDIi7Q0w", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json index 852b6f5b66..f6989b46b5 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Jizherw9T9l0X76l", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.017" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json index 6916b57cae..c15b896bde 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "dHlHvcm2BjzlfUSk", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.009" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json index fe7e059b55..ad955edaeb 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3jqdiWNWro7yFptW", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json index ebbd3abe66..9e4bad8df8 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tARHr87BkRknTQJI", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json index b1c4b76695..ae956faf9b 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EEIdQ4XTkpQyRz3h", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json index 850ba1d081..c961b4b4d1 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBbNF6S5sQYIiS9T", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json index 02a5874f61..299c10c9b0 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gk2D7WKoLK1xPqLC", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json index 8ee6dbb9d7..3beb0aba29 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wtl6yNqJQUVhiBnB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json index 615ef895b3..dc866429d0 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1fl42MjkwXbpjJ3r", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json index ac88c21e08..c87feb65e4 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Overture PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vxGQSWw07PXnllwO", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/Overture PLA @Qidi.json b/resources/profiles/Qidi/filament/Overture PLA @Qidi.json index 0c4c19e9d9..f298c1f233 100644 --- a/resources/profiles/Qidi/filament/Overture PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/Overture PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XXJ4dSi48JuA54Iv", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json index 5795770fc3..24c3e1cf0e 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5rbxArwT1VV5BOSq", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json index da04f99f27..13684caa4b 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EqpfLGTZXcdjm5BM", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.018" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json index 24ae69196e..8112c07176 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ao01rvVFfkWlwpER", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -16,9 +16,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json index 32c223c423..c4a4120209 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dfni3lzB8GJldfQD", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json index c3c6da64a2..6abfb386db 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iWq2EddKO6QAUJuG", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json index 285d252a18..ba69bacdab 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0EswisPwFjFmk1GT", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json index b82676aad6..1b0506e8dc 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t3DcJuJsNgXKW0dP", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json index fa1ac10040..51c39b2aba 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Ino4r7XLgTCFh4YR", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json index b426327f41..1f53c30903 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7NXI13ejzocjD7TO", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json index b06da9eeaa..4bcdb6bcef 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QEJ9knURmXAGsFib", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json index 65392da9c9..8aa1c764f4 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "PolyLite ABS @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GzEXQzyKqqnCVUBh", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json index b925bf7fdc..ef68eb12e1 100644 --- a/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json +++ b/resources/profiles/Qidi/filament/PolyLite ABS @Qidi.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q9QYOF2UmsrK7Wof", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json index 690bf7c4f5..a52b240410 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "uXrENPoTa7HWapCV", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ @@ -16,9 +16,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json index 7b9620e3e0..f18131f02b 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XnU3X7A7kdRrfoTX", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.017" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json index ccfda9d9e2..93bcd56559 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Q6H3JzOum8GYVRF9", "filament_id": "GFL99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.009" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json index 757d5de4d8..4ef9af4534 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tSR6NKHk3ietpsga", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json index 50edbb223a..77d10b9be3 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZF5is6IpP0gGcqRE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json index 6250aa8dde..1559c6d369 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bAqfoS751xDFHubU", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json index d9116bcf6d..6837abbfb2 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2rWOMrYc40ZRNLQi", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json index ce2f124739..eabb962095 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4x8HlY906khbFsG0", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json index 8467c9ee77..b4c8988c1d 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "87QXnh5kCuQoPwjr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json index 68848deba5..6a0d9383f8 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WsMzyALZrDylCkZ6", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json index 852b7b6be3..5d5cb7bf93 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "PolyLite PLA @Qidi", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sHVHjhH9FzhRjeHT", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json index 4fedaedf57..b84cf7bfb4 100644 --- a/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json +++ b/resources/profiles/Qidi/filament/PolyLite PLA @Qidi.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Kg6WHLbWxKAE8cCr", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json index 64ef38fac0..e2d1d05e99 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json index a837b796ea..dfb6609b1c 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Bambu ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json index e2ecae8924..d102f3e77b 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.2 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "k07dzTsKNkPQZdwr", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json index 542a73189e..2e578093a0 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.4 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rT8ustbzQbtECttr", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json index f4978c0c9b..94fa6a5c3f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.6 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gzSb959KICj0XbkH", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json index a574fb66c9..7e73e23481 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu ABS @Qidi Q2 0.8 nozzle", "inherits": "Bambu ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0eP7UhT4gbchwFvv", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json index 094dda64e4..2b36f967cf 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "yHD2P97YYI869y1a", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json index 09f8ec30c5..e2f06e9934 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "dIUVKJDEofMGqc8C", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json index 954ee0996f..2c13e2c8e4 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "0leYv1TdNe38wFpf", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json index 157c0d7230..c8444cefc5 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@Q2C-Series", + "from": "system", + "setting_id": "BvoaoxjqBQLvupeM", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json index 32a40477c8..d1898e4363 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "GFG99", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json index ac704e0352..6a28da194b 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "Bambu PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json index dee30b43c0..dc2c208a80 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.2 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7AO8j6OgpjvRpa6m", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json index 9fa3da5922..a56df3a902 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.4 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8jm8qn5x5Kop8YgM", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json index a91166da3d..160b46cbb5 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.6 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "yKVcpVja9ajirE24", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json index 49bdcfc1ff..2ceb80861f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PETG @Qidi Q2 0.8 nozzle", "inherits": "Bambu PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ZXkamNJiqutzbAxM", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json index 8c839fe787..42067817a2 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "DR6lPjo6HXfJPRev", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json index 39fc3e2b50..8a896b3329 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "abyo9tUNfJ41WD2x", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json index 3d5c8c97b6..2fae6cf452 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "cG6FXCNr8n34Asel", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json index 5a9c835b8b..73c64a15e5 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@Q2C-Series", + "from": "system", + "setting_id": "3Opgt1lYHnCWi4G6", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json index 7febab3ced..1277eab3e3 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Bambu PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json index 0d431b0976..b1f2cdde9f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Bambu PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json index 15ec7bd48b..49e4f25ce7 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.2 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "kDmiLRtJSeB8O4WO", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json index 183c222d72..0b331296be 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.4 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "4m5Qtxbukdt8fJrY", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json index 48abe2158b..5f723bd315 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.6 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ox3UVuRnH7x1B43m", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json index 86eb7400a3..74377cbdb9 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Bambu PLA @Qidi Q2 0.8 nozzle", "inherits": "Bambu PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ayLDF3Bvdg5OCCa9", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json index 1d4a947561..12285e7c4d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "WIoSfzFsVr63PIJn", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json index f8e2fc6069..e161dece7d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "6R2VF4VRx4OsEAIr", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json index 1885644d19..71e19f220f 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "4nf4gNkkvFnDbzRa", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json index 76f29f7b12..530a3c736d 100644 --- a/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Bambu PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@Q2C-Series", + "from": "system", + "setting_id": "CHcUut3zMsRJAIcx", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json index b328b94f62..9e42298338 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Generic ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_0_11", "instantiation": "false", "box_temperature_range_high": [ @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json index 2e9e4ce632..88edeb6155 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_11", - "setting_id": "GFSA04", "name": "Generic ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json index fff9ce0eba..a59be7d705 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.2 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EJWpwgZ8OPbA7oFA", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json index a148b0d1ba..f43d9ea4c8 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.4 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4xAZYpgdcuG5Gw2u", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json index 52d735efa9..1e11f118ac 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.6 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "K2ccIrgJE3wRUxJw", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json index 0ec1ee5219..e05bfb1d3e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic ABS @Qidi Q2 0.8 nozzle", "inherits": "Generic ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xhVIdraWk22ElOGB", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json index 71b463cfa4..207cf1e0b4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "fcId8eFG20nodipB", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json index 8a2b9c786e..451c335f10 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "nCmyUKILQpR1nypd", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json index 8c52b8e5ed..d791bd5a0a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "7wsHMKJwQfUfZ3za", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json index 8cf76807b2..b9013037ea 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@Q2C-Series", + "from": "system", + "setting_id": "XLORH5X2VLIxTozv", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json index b683e4450d..90d5f9150f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PC@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_0_23", "instantiation": "false", "box_temperature_range_high": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json index 6d00fa1a63..55a834093d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_23", - "setting_id": "GFSA04", "name": "Generic PC@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_23", + "instantiation": "false", "box_temperature_range_high": [ "65" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json index 6932388008..382d94f832 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.2 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E9Q7aCypZ279BmgX", "instantiation": "true", "filament_flow_ratio": [ "0.94" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json index 048f96fb49..000fb6ce9e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.4 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RqwB0xjTgL69hn3a", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json index 22768e771e..4eb38fa6af 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.6 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SOrvDqbjHy0trZSD", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json index 99ffca26d0..9882d20648 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PC @Qidi Q2 0.8 nozzle", "inherits": "Generic PC@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z4Ut7w6XMiJqi0Ji", "instantiation": "true", "filament_flow_ratio": [ "0.95" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json index 57927afa7d..4e87bf0e05 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "khy9tY2jZWHSlIYt", + "instantiation": "true", "filament_flow_ratio": [ "0.94" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json index 31a39b9d96..223c79e125 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "Wcm3rVsaUpou9xRq", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json index 7f35355c0e..35810c1389 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "8pHle7WRU4FL2qfo", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json index 65a2b8ac88..9475d0540e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PC @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@Q2C-Series", + "from": "system", + "setting_id": "ymIxEf9ioip57TML", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json index 4581dfc54a..5a8d64615a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_0_41", "instantiation": "false", "box_temperature_range_high": [ @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json index b570247e3f..88c5c926ab 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_41", - "setting_id": "GFSG99", "name": "Generic PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json index c244d7b80e..99de8e911f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.2 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "MZFU0ZIPjWpgS435", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json index e584ec3385..cc155db787 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.4 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "uz9sYXnJt93eY8A4", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json index d2c6a7aaef..d1e1545923 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.6 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qqhljlg48IjYwXDs", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json index 5cccd058d5..5d49cfaf73 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PETG @Qidi Q2 0.8 nozzle", "inherits": "Generic PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "jzIMyjJivnSAXhom", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json index 0de5cc8e7c..caafd9a2b4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "IcynzuX5ojXgX2dk", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json index 4994212168..dd81e8a652 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "7QauCi8rhighWkri", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json index 5af2284e7f..4c15643367 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "AM1y4FYs7fv4WTTo", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json index 294611e376..a7b4dafa9f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@Q2C-Series", + "from": "system", + "setting_id": "b3TpL9kGWf1wSydw", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json index 15a15c408a..21ed221909 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_0_1", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json index 4fb0fdee07..82423a614d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_1", - "setting_id": "GFSL99", "name": "Generic PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_1", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json index d8f6bc1612..fa5a88320d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.2 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Xu74nlBWPIpq34Ix", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json index 73ab650c81..8c13d5c58f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "5a3TbkJQXJmFQgPU", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json index 73fe0d5b85..ff324699a4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WZyL3qjBW8aZXXbq", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json index 505445cfb7..69e3abce4e 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA @Qidi Q2 0.8 nozzle", "inherits": "Generic PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "qqdkpr73SubpHEBs", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json index ed83612ba9..b30e1859f4 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "CWSMY19Jhd6LzFUN", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json index 756ffcedf7..2f542cae4b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "kraVpglrBGD9sQyx", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json index 05e6855feb..5baec42a5c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "0DL2rwUIpvOFPKE0", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json index d929ad6a7f..4bab1ef889 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@Q2C-Series", + "from": "system", + "setting_id": "wtOTxeDyt3j7HsQD", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json index ee01cdb59d..a24a0f4d6f 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA Silk@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99_01", "filament_id": "QD_1_0_4", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json index 43214269e2..1254b1d53a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_4", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json index f1716e9066..9addeb8476 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA Silk @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "D0kRrF3bQSZvs0dA", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json index e935651fe4..1719b7f1e0 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA Silk @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "aDLepQfXlpjIPYfY", "instantiation": "true", "pressure_advance": [ "0.014" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json index 81df04d836..98e493a89b 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@Q2C-Series", + "from": "system", + "setting_id": "tsr5C6eghwRIitda", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json index cf3dc05150..70493f1386 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA Silk @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@Q2C-Series", + "from": "system", + "setting_id": "5V4coBYC2JEZQSbX", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json index fa1a0692b3..47107a8614 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2.json @@ -3,7 +3,6 @@ "name": "Generic PLA+@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json index 8e542a9f68..83d77e0781 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Generic PLA+@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json index 3531320f30..e3703aef5a 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.2 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0CGp5pTYUipUZH9t", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json index bfb3cdfaba..0e6a514901 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.4 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "7oSZal6SCo4OtiB3", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json index e771999262..12b2db7e77 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.6 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "nA9GQTkjSXojeH1I", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json index c9e1c82ac0..e672a5524c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic PLA+ @Qidi Q2 0.8 nozzle", "inherits": "Generic PLA+@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "njN1ifYSUyLzPjo1", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json index 43bfe47633..6590492654 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "cP5qtEGISpluvrXW", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json index 993399e32e..880fa72b0d 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "INOTrdxOY3ewHs3Z", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json index 69e375dcc1..baeeb621f8 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "QWeloGY9T9GkaFK1", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json index 3c8738f6fd..0d932a6f55 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic PLA+ @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@Q2C-Series", + "from": "system", + "setting_id": "C2oqTFXtdd2clnM3", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json index 9b1bd8bcd1..107d337155 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2.json @@ -3,7 +3,6 @@ "name": "Generic TPU 95A@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR99", "filament_id": "QD_1_0_50", "instantiation": "false", "filament_adhesiveness_category": [ @@ -79,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json index 4d3828acf3..8e867a26f2 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_0_50", - "setting_id": "GFSR99", "name": "Generic TPU 95A@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_0_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -79,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json index 3f9be876c5..1f5022e8a1 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.4 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "5axszAjnZIipFG0x", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json index 9291187a8e..b76cf3e73c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.6 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "X8UakUz9froeOdOG", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json index fc495b8e68..180b745e5c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Generic TPU 95A @Qidi Q2 0.8 nozzle", "inherits": "Generic TPU 95A@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "kPew5LiROoFxJPKj", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json index efd8030469..07aa43c4bc 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "HeDaMTs4C6suBJvO", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json index 5e2b16ab12..15440badb9 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "TOHG37PMxN9MzVub", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json index 1ee7b0dd66..1ef0d0537c 100644 --- a/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Generic TPU 95A @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@Q2C-Series", + "from": "system", + "setting_id": "HqURiXvBLRyvLAxP", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json index 400c7efc36..c55ccaa1a9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json index 9ab8361d25..81736dcccf 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "HATCHBOX ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json index 2d6bdb2d8c..9f39e6e314 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3crqR4Lq2v0nbSSF", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json index 11dd628265..3b4e470c43 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ktvlByc5ZYr6wZ7L", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json index e4039dc57d..0324b7802e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yk6xtgojznV3KVMb", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json index 4fb4435796..25c083b0a9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX ABS @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o9ZNdbNvwCA02wrr", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json index 1c7a42d4df..f9893bbfa6 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "UesqbiCMHRmklDRk", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json index 54a819975f..3d2b88ff36 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "mEWH2YlONmNpempZ", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json index 6378cdf769..13d451d40d 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "khy95fONrq7reiSC", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json index 4350827c9f..48393718de 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@Q2C-Series", + "from": "system", + "setting_id": "sHLcYLMcJTimp3ru", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json index 7717c31d1e..10f557a994 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX PETG@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "GFG99", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json index b65fd0b94e..fd739c1779 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "HATCHBOX PETG@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json index 8ac2667b4a..f7ffdfac1c 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4aKj83MzHWJiBwS3", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json index 4da30910b8..4e2552bad6 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CuW8JDCGlx2HMEAh", "instantiation": "true", "pressure_advance": [ "0.056" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json index 4d47d98104..6cd813f16f 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "nqt0XuGvwSGjGnEK", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json index 3b55e5cce5..98b08393ce 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PETG @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX PETG@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "6wBMMo9MKxBPDMGL", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json index a8d22f38c0..c8a14456ab 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "bZMXQWqTu8l3MYJi", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json index 341b5c82b8..94fa73262a 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "DekQbcVeKQg9v5Zr", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json index 390887af12..81287ec494 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "zVhQ76dkj0h0CQYk", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json index 8fefd24f39..b57b5063c9 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PETG @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@Q2C-Series", + "from": "system", + "setting_id": "Kzuc0pyjxtH6gI13", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json index 51daac0878..880ecddb29 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2.json @@ -3,7 +3,6 @@ "name": "HATCHBOX PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json index 882be390aa..4af2d4f816 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "HATCHBOX PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json index c8725092c5..618092e9bd 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.2 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "VTdCYihdM5VmBpiX", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json index a92a23f537..2493035d4b 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.4 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HmoGfF88x0jtISev", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json index c6c9387378..1dba59e82d 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.6 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GV3Wg1QZsFXagniZ", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json index 91a67abc2f..270f2d2528 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "HATCHBOX PLA @Qidi Q2 0.8 nozzle", "inherits": "HATCHBOX PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "T90I5VEkibdTbHzU", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json index 9ce9272e30..7403dd2e6e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "11BHrX7imCTIzPP4", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json index ce173b7a4d..c944c6727e 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "VSgatTEDBtv2agXN", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json index 37383efc74..f920c660f1 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "24LLJRtj2iivS6vL", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json index b894f7ecf8..64c86e9767 100644 --- a/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/HATCHBOX PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@Q2C-Series", + "from": "system", + "setting_id": "HRdiQVVY5WjNXLYx", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json index 102f96a982..5c2067f362 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2.json @@ -3,7 +3,6 @@ "name": "Overture ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json index 25529c480e..a6639b3999 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Overture ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json index 3344fb100e..0ab1aeb737 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.2 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tO957T39JVesXJ8y", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json index 446397cf1c..2199bdd8d6 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.4 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7WvjlWTFfRCDDO4u", "instantiation": "true", "pressure_advance": [ "0.033" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json index 5acf3dfb39..6e47be60b1 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.6 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4Tf72oGjrZT51gcl", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json index 3494396cd5..18dcc1685a 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture ABS @Qidi Q2 0.8 nozzle", "inherits": "Overture ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cpBr271yaztUzTpN", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json index 9964ad6ed8..47f9bcbcaa 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "VYySI4tCOnfTintD", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json index d171e0daea..78ddc8d476 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "JBDqdi6986HRAEXu", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json index df32e70a64..c9fbc3b6b9 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "zfd7hNsD4gyvYjmL", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json index b7b2471a87..82c04c4130 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@Q2C-Series", + "from": "system", + "setting_id": "dIK2bO9muHCLmfLE", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json index daf2b37cc9..2dbdffd469 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2.json @@ -3,7 +3,6 @@ "name": "Overture PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json index 91a21a86bc..986e906c0c 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Overture PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json index ffcab97316..4c24d0c2a8 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.2 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "mmuvOV5LzBTz1IK0", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json index 8e9e441779..003e58a4b0 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.4 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lD2J5G4qCl18B2Du", "instantiation": "true", "pressure_advance": [ "0.037" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json index 570cae31d8..5684a708ac 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.6 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HhjZwkodwhiXHKVe", "instantiation": "true", "pressure_advance": [ "0.019" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json index 4d404f8a99..5641265055 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Overture PLA @Qidi Q2 0.8 nozzle", "inherits": "Overture PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lXQhZdjX1xDHQWtt", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json index a57a19e01b..0057d79f2e 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "sR59dH6Xa2wZYoju", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json index 302197169e..40773ccdd1 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "bwwB2ntJKEDSM6nC", + "instantiation": "true", "pressure_advance": [ "0.037" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json index 1bbc4a7791..0297ea0c7d 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "Bo9y4EOopqDnhhLP", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json index 76503b1edc..94d5dcbef2 100644 --- a/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/Overture PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@Q2C-Series", + "from": "system", + "setting_id": "G7hnYFzduUlF4ecC", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json index d8b6c6f260..b1af2354b5 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2.json @@ -3,7 +3,6 @@ "name": "PolyLite ABS@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFB99", "instantiation": "false", "box_temperature_range_high": [ @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json index 3036b4437f..6d6c27b6b1 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "PolyLite ABS@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json index f58ae6c9cb..0051897c4e 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.2 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qcxxzS9OxRkygztL", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json index 9ee72bf20f..03d2afa08c 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.4 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FqECcDZTCbmnrEGx", "instantiation": "true", "pressure_advance": [ "0.033" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json index 784360aa12..370f4f6ffb 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.6 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CHai30JzOc9xdGc4", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json index a15db013b1..a67f74062b 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite ABS @Qidi Q2 0.8 nozzle", "inherits": "PolyLite ABS@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QZ62A6WrszJ7Ghzh", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json index 969b73be2f..1a09049ecd 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "dO4VcqJOzHGsGTMp", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json index ed5bcf56df..58131134b9 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "1IndaP5mD4ThRTLJ", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json index 2780438ff2..c2906f30f1 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "TUafLspNks0QbMsJ", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json index 942f75cc1c..173dfb62cc 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite ABS @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@Q2C-Series", + "from": "system", + "setting_id": "Zl7BXkcC643FrwXj", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json index 9308ead7fd..be89bf9696 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2.json @@ -3,7 +3,6 @@ "name": "PolyLite PLA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "GFL99", "instantiation": "false", "filament_adhesiveness_category": [ diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json index 7422032108..c42c4aee25 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "PolyLite PLA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json index f6bfc5ba04..cc80488c52 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.2 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "M4HFfDaIMjb6xzKJ", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json index efab9c8786..df1d20042b 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.4 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "QTxRrs7QygtVfKTl", "instantiation": "true", "pressure_advance": [ "0.037" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json index 86fc6a97de..06f45bd6b9 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.6 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0KDkSLzkJ2Z2hg3w", "instantiation": "true", "pressure_advance": [ "0.019" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json index 35d5b39cf6..2a3ddf67aa 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA @Qidi Q2 0.8 nozzle", "inherits": "PolyLite PLA@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "SnWXdbMVS60fzPyZ", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json index 239fbbf300..a0b3a1e558 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "70CH88wjjjp10p1v", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json index f187eca59d..62642b48b6 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "55gNJLcwSNCpFRLt", + "instantiation": "true", "pressure_advance": [ "0.037" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json index 6dac804136..0e70b612bf 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "lfJLLN90UJoDH6DQ", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json index 341b748105..d0a812de02 100644 --- a/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/PolyLite PLA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@Q2C-Series", + "from": "system", + "setting_id": "ZZWSUwsp8FdHoO50", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json index 3a56321d46..62dc85146b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Odorless@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_14", "instantiation": "false", "box_temperature_range_high": [ @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json index 68bbf59293..be98105a39 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_14", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_14", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json index 059cedd0d2..a6b652676c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IL50RqcaWBcR8YCP", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json index 7c2b05c541..fc0ded50d4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u5y89iPYSkz4QHQN", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json index e6c3ae51cf..47a4587ca7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "y1X04vewJnUMlfvR", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json index e247ece065..57d224ad89 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Odorless@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4ipzt6SeTyaywGZF", "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json index 1d88931b5f..5fadadb693 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "GxP0Whwhk4Cnxdu0", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json index 79280bb828..53ecb12131 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "XF8GYACz5foSzwPu", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json index 1f020c4b6b..6e8d7b8f21 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "S2ZKcCRBaIhCz34L", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json index 33ed015f8e..4d01f4dfa0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Odorless @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@Q2C-Series", + "from": "system", + "setting_id": "MKJrQNyu3db94dD8", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json index df6515efc0..9d7e3d0e7f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_11", "instantiation": "false", "box_temperature_range_high": [ @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json index 6fe5eef467..da40111dc4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_11", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json index 7142c7778a..2a537dc524 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C7jN0GZ9tv3lPqgf", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json index f4e6ad4188..0cb18976fa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8HIYmsVwqmihwMVw", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json index 2975aa6eb0..086aedb8a4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "02qwJkk06bFbZTrv", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json index 57a7c981fb..7286ecb01d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Rapido@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XEhyfnES6xFCJtWb", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json index c38a3943b5..7414cc2398 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "qBCJHTf8UYAhtS9Z", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json index 397f089dd4..78296a14ee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "TKmusP00QtJde1tv", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json index 3ae075530a..bc0547202e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "hjWAIr9vj3lifTuF", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json index 12a2c6d467..e29659bf00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@Q2C-Series", + "from": "system", + "setting_id": "PseIYzUGugsYqd0n", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json index db71b3577f..46ccb9e691 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS Rapido Metal@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_13", "instantiation": "false", "box_temperature_range_high": [ @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json index 55a80f869e..afd2b355cb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_13", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_13", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json index febc807f53..acf860840a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DvpAhpb3Pes6cum2", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json index 43c5db3534..46e697994f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O3UGFrYCpNqQpXin", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json index d141e4ac80..6580fb9b87 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VxqczldYOZha7COY", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json index 336068e075..2e8dd282e5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7WGPFQ6a7bsklsKt", "instantiation": "true", "nozzle_temperature": [ "250" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json index fc9473905a..4ea9d4de5b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "aThu2ymueO59okjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json index 0c1b180990..f716a877af 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "U9oVegNbFTAg0hI1", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json index 19fe43ef92..26430a7e04 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "1ZuCqDtoglHX0n3E", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json index caa7666488..6ee3923750 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "AtfdZuYrdD1DIwFP", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json index de714c0ab2..a20b7bb2c1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ABS-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_12", "instantiation": "false", "box_temperature_range_high": [ @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json index 273dc85d4f..5e6df7914d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_12", - "setting_id": "GFSA04", "name": "QIDI ABS-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_12", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json index d88f029bd7..0c270a2dac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u6pq22GuBBsB1DhD", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json index 1c41e55471..29889bfdc2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eGBJvGi279JdUbEr", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json index 6416f14ed3..b62074a257 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI ABS-GF@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nkgcPR2FOWnS1R8p", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json index 4e98bdd285..49f9ae3111 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "aOg4RWjgsKxj4d64", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json index 05ba572607..ab98a3b777 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "3S7sFSqdn1XuuXHd", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json index 8575898ce2..62adde1284 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ABS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@Q2C-Series", + "from": "system", + "setting_id": "fJC5bkmVshJcddR1", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json index d2a3b2b52e..88e5d964e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ASA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_18", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json index 3e56f7552b..c68044bfaf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_18", - "setting_id": "GFSA04", "name": "QIDI ASA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_18", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json index a26eeb4301..368a9afcc6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.2 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "57WYBN9i1xke9Meb", "instantiation": "true", "chamber_temperatures": [ "0" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json index d4cfa84f21..9745c3eae7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.4 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bpBTFAzrvFPRAzXS", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json index 9d1280a1cc..d24959c5fe 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.6 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LApJikdn8PAJYDOw", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json index b89e790007..3f75a6b3bd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q2 0.8 nozzle", "inherits": "QIDI ASA@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "h819SM0stfYmrAXx", "instantiation": "true", "filament_max_volumetric_speed": [ "13" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json index eaa56476e9..f69af8550d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "4trzdB5fUzgXxLr6", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json index c97038e698..04837378d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "2IWByRV9P9UE0erA", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json index 9fb4c72a48..7ee05b965c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "b8YU4smViFgry570", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json index b8d26807bc..806e473ec2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@Q2C-Series", + "from": "system", + "setting_id": "1TgAeftVfWoXHcKD", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json index 461a57029f..b449906758 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI ASA-Aero@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_19", "instantiation": "false", "box_temperature_range_high": [ @@ -124,4 +123,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json index d2947a802f..3c810517f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_19", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_19", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -121,4 +120,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json index d354d276c4..10d036ea07 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA-Aero @Qidi Q2 0.4 nozzle", "inherits": "QIDI ASA-Aero@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X2066M8E8LDIrI69", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json index fd7bfe6ba6..195ab6336b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-Aero@Q2C-Series", + "from": "system", + "setting_id": "oLZHWEc83L05TKNQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json index 6051ada238..4d2165ffd1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json index 3e125f82a2..99e1043b46 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json index a9e49d96ce..7eb6667692 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "kLkuuwlQ2g8ApMCR", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json index 9272ed93c6..6c9d5cf3c9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "qTg48cwBkLGytsgu", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json index b31b680444..112657bad9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2-Series", + "from": "system", + "setting_id": "UbgM0Eu2AGwYjS8s", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json index 913966f571..d8564ecc4a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "3c5EBxNEeYAgyIUe", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json index 4bfe035940..3ff312b625 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "4sIBlrLnfparzSFk", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json index 6836c6e67b..3b6a221de9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI ASA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@Q2C-Series", + "from": "system", + "setting_id": "4LCHbc83VORH1Hmk", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json index de99e42f7f..c15cf5ca65 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PA12-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_27", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json index 33981b31f3..3dbd928222 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_27", - "setting_id": "GFSN99", "name": "QIDI PA12-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_27", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json index b429add80b..1967520f60 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "v7C27U7IGURoq7xV", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json index ccc3e21178..f926020147 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "RgWJDRCobNKRZZHu", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json index 219b2a7a2e..3fbe991289 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PA12-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "RmqULVYCgIPqurJQ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json index 113583800c..22a84e33fa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "1u8IFKUCIggct4ah", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json index f89039577a..4155ad71ed 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "czMRbKZQEfYYX2SC", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json index e325069ef0..162c8a3e2f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PA12-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@Q2C-Series", + "from": "system", + "setting_id": "qevQtRgFRnkNJlbU", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json index df5d842492..fe908219a5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PAHT-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_30", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json index 1971a0ba29..d76e92349e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_30", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_30", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json index 3d90b14070..f317363b2f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "LO7z6vuW9n4XjdLE", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json index d1b64ff81f..d5692f5edf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Nxo29kZKIkw4bTPn", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json index 79953cd28b..c96c13e9c5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PAHT-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "uBTNaJyIa7Rd3glN", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json index 1ceea99626..89b01339e5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "19JEwv2utbuBcOd2", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json index 20afedaf59..b3449a2ac7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "cQvObLcttxZG7V6I", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json index 887704a8eb..02e35ec9df 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@Q2C-Series", + "from": "system", + "setting_id": "bUKhJUHlLLhYyq0v", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json index f300cb3b92..e694512bc7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PAHT-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_31", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json index 71f58c586c..cb8c2640a3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_31", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_31", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json index 57e3399e2b..5ac3f91e00 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "US3Pvd18eemq5hMi", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json index 77b769ae38..6efa6f420e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "qbEj9tCn6GRJZjoX", "instantiation": "true", "pressure_advance": [ "0.015" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json index 0e2603c11c..9a41e56724 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PAHT-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "6FEFgL8CcOGSTRDv", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json index c9ac062eec..31a10c7f72 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "vxdq7Nwg4esRFNu9", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json index 4ff1ef860c..81b6907f8b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "O3fRuZz1uLd5xrgg", + "instantiation": "true", "pressure_advance": [ "0.015" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json index ecbdb934d2..c54ee9ceec 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PAHT-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@Q2C-Series", + "from": "system", + "setting_id": "fF4PUJX9cgyqBj5s", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json index 7955c13998..d4639142de 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PC-ABS-FR@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSA04", "filament_id": "QD_1_1_34", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json index 0c1f5f3888..b0e25aa480 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_34", - "setting_id": "GFSA04", "name": "QIDI PC-ABS-FR@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_34", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json index 8e066d77d5..bc9539178f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.4 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oEKRPaYiY0f2ovtG", "instantiation": "true", "pressure_advance": [ "0.042" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json index 252357962a..0865301e47 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.6 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NfD5oETfBil2j4GF", "instantiation": "true", "pressure_advance": [ "0.031" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json index ec46820d86..3a11087db3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PC-ABS-FR @Qidi Q2 0.8 nozzle", "inherits": "QIDI PC-ABS-FR@Q2-Series", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I330bqTxTPNgvocy", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json index e86ee1c5a9..9ee10c8fd2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "MV0BnLVqbpTmN4pY", + "instantiation": "true", "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json index c147ad1b12..f1b5dcfd8d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "fpfPAd5ZXdxRIrcy", + "instantiation": "true", "pressure_advance": [ "0.031" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json index 77b778af39..16739f1322 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC-ABS-FR @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC-ABS-FR@Q2C-Series", + "from": "system", + "setting_id": "ZqkkkXPjbuCIpnMv", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json index cf33db4628..9dd9600bf9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -94,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json index df087f1064..e1c1441da1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -94,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json index 57aca74e97..9bac0f5d4a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2-Series", + "from": "system", + "setting_id": "A8c8z50h8irCTzgy", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json index 609300aabe..5f2b92705b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2-Series", + "from": "system", + "setting_id": "UKXpo4G5hGGZsn3A", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json index ed0be1d6fd..7aa853435d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2C-Series", + "from": "system", + "setting_id": "vJ2SMIO0mxCouFWb", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json index 236326a0ca..cc307111ca 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PEBA 95A @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@Q2C-Series", + "from": "system", + "setting_id": "w9NXPAGugtCOi4g4", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json index 1f3b4626df..211f90a3a6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PET-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_37", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json index dc02a075fb..59f7315e29 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_37", - "setting_id": "GFSN99", "name": "QIDI PET-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_37", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json index adbd1c7913..037ac3c923 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "yeWsB0SGQo7nBdNh", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json index 3c43cd5f81..6503837587 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "6zRPvpjMwhow7pQw", "instantiation": "true", "pressure_advance": [ "0.025" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json index 5c39f447fb..d72baee376 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PET-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "7Bvliieb9W9v2GQQ", "instantiation": "true", "pressure_advance": [ "0.025" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json index 50efb02ad2..3421801cf6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "bqf0nv6TibBm2zIy", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json index ae960d5014..d66e9e34af 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "ZyRe7KewhXKNHXUR", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json index 726cf1d7b1..43e288d25f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@Q2C-Series", + "from": "system", + "setting_id": "Oz5J6NHYJpy0Qhm2", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json index 3a78c0374e..85fc6f5847 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PET-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_38", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json index 8b28bcba40..c7e66b7972 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_38", - "setting_id": "GFSN99", "name": "QIDI PET-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_38", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json index 27b30217f5..e71bccfd1b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Fs5LA1CHtwQmT5yC", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json index d6e7750c59..f4a2116d67 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "8pGL3cqaPcWtNDix", "instantiation": "true", "pressure_advance": [ "0.014" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json index 32f71ed54e..a875ccdbcf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PET-GF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "ppEDBmq1fnu2mqvJ", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json index 02a9ed8e92..b7b373581a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "zeqpSRbhDK45RDxT", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json index 0e393e7550..e16b9e19aa 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "TKco12fyuw1wZ8yF", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json index 9e8cee5eca..2ef8dac1a2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PET-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@Q2C-Series", + "from": "system", + "setting_id": "0zEwjck3KMuCUV65", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json index d7adc3f905..ba87c9a3b7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_39", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json index 7cbfd85ef9..a08ec8af68 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_39", - "setting_id": "GFSG99", "name": "QIDI PETG Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_39", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json index 12dd9bf282..1aa05eb40d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "oZ3JTBRPsuXZRnJL", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json index 968f1cdd19..dacb1846f2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "9prwI03Kli5jVnXW", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json index ba7f4fe86d..84eb2945a7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "GFpwaI9btfJMX6RA", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json index cf1ad5582f..f4b58fa34b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Basic@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "XO7d84ue5uQSe8Vb", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json index 3e0f0cbdbe..fa133ab110 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "cmDsiuMabyDU7XoL", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json index 00a3b3c491..7ed12927a4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "myllwvTQwpkLwYOJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json index 61219a60dc..ae210b4526 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "uJRjUoz9NvS8UNbZ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json index 6a607ce36c..2403813ee6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@Q2C-Series", + "from": "system", + "setting_id": "4GmsTinCKy3DJIRj", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json index 3d2d2cd750..9815a8eb64 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_41", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json index 402a38f5eb..1c50f16b51 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_41", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json index d2e200e1fe..8c963b0bcc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "UjTBlObQ8oMjHdHL", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json index d0a2da8ee9..8343d63ade 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4bwNKB1GVQeIMcVK", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json index 173421a401..3bd19b7067 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "bQZyIRIno7acYWD8", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json index 31c7c9e164..022958c707 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Rapido@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "qa0V0FgstQWaZ89W", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json index bcd8b976aa..3a1e0feda8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "GGulRExJ8O22prw5", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json index 21b0cefcdd..0a1066eecd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "aPlfkb8XVHh2ImCZ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json index 008b8046fe..868f11f254 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "JKLS99QCyNqP6HpN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json index ac20fcda05..02a49b12bb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@Q2C-Series", + "from": "system", + "setting_id": "91jRijgkVsBVcseN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json index cbc0f35be5..b8f8c4ec5f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Tough@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_40", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json index 2caca86a36..3f272efaee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_40", - "setting_id": "GFSG99", "name": "QIDI PETG Tough@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_40", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json index 797b09703b..3973dae87c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "zUJ72EF3umFGLash", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json index eda6f5b532..d10e86beb1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CiBeqt50CKuYK1Dk", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json index db47586d0c..9d4c9c5bb3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8vaVnkw2DCiJVRNx", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json index 2a8965c01f..0a74df94f9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Tough@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "2r3TG5yjssBYJfm9", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json index 36907329fa..eb3348ae01 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "rv26NO5Wot3ze5vT", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json index b03b7e1ef4..84195ef6d4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "GZWWBRvZwhVvxHqg", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json index 5497df93c2..ac8acabcda 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "3rOOjrvu6WClnoDc", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json index 0e7d2baf12..d2a0f96fe0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Tough @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@Q2C-Series", + "from": "system", + "setting_id": "h2JK23LvFSKngIoU", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json index 8815b518f1..64a56ca919 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG Translucent@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_45", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json index 0a5e7b3f9c..6010799fff 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_45", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_45", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json index 87f2030f0c..f644eb18ca 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.2 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "VEwJneFk2i7mTA4s", "instantiation": "true", "filament_max_volumetric_speed": [ "1" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json index 093e03253a..b1cf532b35 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "MvQfqR0nQw2Nzprt", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json index 816088934b..694a0ed515 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "sBnkqe9X1RnsC27Z", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json index abd5b6a686..8bf42aa374 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG Translucent@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "DcFHqSQzIBlKq7Lp", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json index 3f17b07d1a..345e993b73 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "e2GEG1ZDjxFPcf3T", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json index b75dc7cf51..c33f7317fb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "D1FXyPnXPva8J8GK", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json index 498a969573..3979d32a39 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "93FRGhgEpKKEV1Us", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json index 9d8ca2b34a..784175ab2a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG Translucent @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@Q2C-Series", + "from": "system", + "setting_id": "KTBwATMsWZDT9JSd", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json index f08d715064..475b8f2a78 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_42", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json index b347344329..4ba3a94c25 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_42", - "setting_id": "GFSG99", "name": "QIDI PETG-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_42", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json index 1ac2643c9e..6cfb65c24a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "8ZiJvrii09XkBvju", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json index 99cd433d17..bfe62f8cff 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "dYgZhRNJ3gRRbWIz", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json index ee5036fe67..202fcffa3c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG-CF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "4WOfdCS8AwhIB41D", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json index 18d8d7f80e..f3a969c7d5 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "a3TeQs2LPkvVHhuQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json index ddb38704a9..fe6b63b5ac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "mIQgT9i0sI6nUk2K", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json index 4334dfab69..a22fcd12e1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@Q2C-Series", + "from": "system", + "setting_id": "e9OFaUogg3JwJ8p1", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json index 38c476726b..d510eb7fe8 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PETG-GF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSG99", "filament_id": "QD_1_1_43", "instantiation": "false", "box_temperature_range_high": [ @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json index 57136f23a7..353d2eb3ee 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_43", - "setting_id": "GFSG99", "name": "QIDI PETG-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_43", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json index dc876eb612..80c9be027c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "itHwzuXGmD79gRTe", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json index c32dcfb038..bd4d6e186e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "320OyFvmkPfl0RYb", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json index 5293d52c75..d9fbcae960 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PETG-GF@Q2-Series", "from": "system", - "setting_id": "GFSG99", + "setting_id": "sEKKsxH8XoCMc6JB", "instantiation": "true", "pressure_advance": [ "0.04" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json index 1cc49d1909..7a9d1eec5f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "88oBSw0H0cVUieZQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json index 7e96c25430..4a22fd5257 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "4tN3kEMXaHjBBxwF", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json index b8b088f848..0a492ed9bd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PETG-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@Q2C-Series", + "from": "system", + "setting_id": "Gf491nomAtcjhAvJ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json index 41ef151749..c2799f2f9e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_7", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json index 6589f8b19d..4597470db3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_7", - "setting_id": "GFSL99", "name": "QIDI PLA Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_7", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json index 4709bbfd08..d7178f3a09 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Zb1RsUGnK1dOKZpd", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json index 3db6244af8..9227c6518d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "crOYfahwnNJ4Q93y", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json index 89c3626acd..d2ca96bb55 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1IwXw98b2wR0WkVU", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json index d27c07eef6..ffbf81119f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YDm3NqTmmoS2a9x1", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json index c67b90420d..2947822c17 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "wpQKjPe8jRwQ3WBI", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json index 9fc0839a22..86445026a4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "jlX2OfKRNzFI682k", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json index 76b3d2f65b..2e707d20f6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "oxEN8DYf9kkKS8qg", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json index 1a8871944d..6261c8e6ac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@Q2C-Series", + "from": "system", + "setting_id": "gEs3guvsWgjmTsHz", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json index 20175b091f..4a25bf91f3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Matte Basic@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_8", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json index 97736ff3b4..824ff1d846 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_8", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_8", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json index 4e1135df6c..ee0b29398c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "eMibrVuLWIEFjeoD", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json index f90da09a75..5909346e95 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Bp4SKFAqK9gEvxIN", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json index e3d470dde3..7483863c62 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Qq0CIvgYzdxdcLZ4", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json index 1c6e9748cc..441d231c5a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Matte Basic@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Nt59HnGKjIHV07Kd", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json index 7471e49fae..f6a7b35d95 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "FYKnzaxIcuv1gjpL", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json index 4a45802356..943994cfea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "KMss48gyKoL4j5zn", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json index 2e4fb32035..544cf55818 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "bausfUncYuKRihBt", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json index 81e6c8a8c7..d39bee62b2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@Q2C-Series", + "from": "system", + "setting_id": "5yqKP3fPaQr6GJvk", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json index f4321f32d0..3f57b73a1f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_1", "instantiation": "false", "cool_plate_temp_initial_layer": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json index 5820937c00..d3afa29ba4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_1", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_1", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json index 5efcec840d..605cda1d1d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wIKPtF9PbNVBx8Qy", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json index 63821b4c7e..de3e0ae385 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "YkBoaeDwyqZXulOn", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json index 409aadb1e9..f1d3ffff09 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "c2Lp8H7mc4jUyZQK", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json index af9ee4d6c0..df8008b5e1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "h5pW4UHneDl8pwqL", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json index cfe462d29a..8616e8692b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "jwbytNUPLwz51w3j", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json index 67bac820e5..d45e2ab2a0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "YRPfFnPdVsDfaafq", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json index 7a51f297cd..bfef1b2a40 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "eGM1To6M3Nonr9WC", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json index 77fd091161..85774af891 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@Q2C-Series", + "from": "system", + "setting_id": "NMRzlpF5RoggSMUB", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json index 619bdc8919..e4432822ad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Matte@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_2", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json index 11743dd512..b8cf01a822 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_2", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_2", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json index d32fd1eeea..4e419d9dbd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "GS4njT7svm7OASXo", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json index 3aaeb608c8..e9214e1aab 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WWGoEkZCNPgXAxEv", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json index 8ff57fe92a..9e44a655f3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WkmpiUAmisY1naT9", "instantiation": "true", "pressure_advance": [ "0.016" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json index 157e8c888b..1361c471b7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "I9hqGxHIv0dweWEN", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json index 56438ef12b..df760ae937 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "RJQBUrDfhHtKj6XI", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json index 0fb8930cdc..b5f36950fe 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "tH0zT7nTGNX82gV3", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json index 64cc8abe7d..021e11cc55 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "H9XIQdpvredK4doN", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json index 495df9e4bf..f8b8746941 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@Q2C-Series", + "from": "system", + "setting_id": "ejvNsJ67Q3e5GQLN", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json index 71eb16f367..9728e57f4c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Metal@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_3", "instantiation": "false", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json index a9e220c533..2e3295cd86 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_3", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_3", + "instantiation": "false", "filament_type": [ "PLA" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json index ba0f0005b3..563c3b7a98 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "QKlfYgbwgaybIMf7", "instantiation": "true", "filament_max_volumetric_speed": [ "2" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json index e5e7dd900b..d2ec6620dc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "fs1YpwwgYi8zrupK", "instantiation": "true", "pressure_advance": [ "0.038" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json index d21f817b09..73faa4892a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "RauxCLbBqrmJtT1i", "instantiation": "true", "pressure_advance": [ "0.020" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json index c924e58d80..7ed76f7662 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "PONMhhSUpYB0JO5J", "instantiation": "true", "pressure_advance": [ "0.01" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json index 61d1ee599f..a1e4c8976d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "6zLncXZ6JCWQWc69", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json index af0fb4afb7..19da87c65c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "mn6J5ZBTjcr4cINP", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json index 0bd317f277..d4f0ba4005 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "mGnSMw4Pg5llLuLo", + "instantiation": "true", "pressure_advance": [ "0.020" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json index 99b78dc2aa..c041fe4d0c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@Q2C-Series", + "from": "system", + "setting_id": "cAFmKJHPAshlluST", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json index 50b388e044..ae38a9189f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA Rapido Silk@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_4", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json index bf51864967..9d07d3375e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_4", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json index 7e6bf5f7e0..f14cba6c53 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "srlXh4ddJ3lqHi70", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json index a9cbf94412..55de774f01 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "I0nEd5g6SxZfIYzL", "instantiation": "true", "pressure_advance": [ "0.021" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json index 137ead43b3..d42e11b9ae 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@Q2C-Series", + "from": "system", + "setting_id": "UiribWz6dXt3jzup", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json index b6accf5321..5e7bbaefdc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@Q2C-Series", + "from": "system", + "setting_id": "yZ3G2LyyN2iP9RTu", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json index 248b4062c1..4e1b88726e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PLA-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL98", "filament_id": "QD_1_1_5", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json index 31e21dd09d..67832cba33 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_5", - "setting_id": "GFSL98", "name": "QIDI PLA-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_5", + "instantiation": "false", "filament_adhesiveness_category": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json index 6b75e67fc2..502019ca69 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "KsfbhGEwSkHLERy7", "instantiation": "true", "pressure_advance": [ "0.034" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json index 3e3dee731a..d433a33bcf 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "ndrSgMqHkHTsUYFA", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json index a56efa3e2c..6e8ef1ddeb 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PLA-CF@Q2-Series", "from": "system", - "setting_id": "GFSL98", + "setting_id": "b4zVmMvS88E6elwe", "instantiation": "true", "filament_max_volumetric_speed": [ "18" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json index 55e2308ae6..d582cc6eac 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "n8Oq2FaJ7D6LodTC", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json index 5c7701f1c4..1f11e861fd 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "lmelEA4doZJ4NESg", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json index 2e7673509f..8b28308b25 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PLA-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@Q2C-Series", + "from": "system", + "setting_id": "YCDOpbUtf3MQEMW9", + "instantiation": "true", "filament_max_volumetric_speed": [ "18" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json index e54853403d..dc4e1fd221 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI PPS-CF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_44", "instantiation": "false", "box_temperature_range_high": [ @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json index bc8f35a404..2f27693f04 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_44", - "setting_id": "GFSN99", "name": "QIDI PPS-CF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_44", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json index b1c2f1f699..2bc9654971 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.4 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "JbIx9poPAriGdp13", "instantiation": "true", "pressure_advance": [ "0.03" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json index db48246b30..c3376cdc05 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.6 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "3O3yEvndc2Zzpqln", "instantiation": "true", "pressure_advance": [ "0.021" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json index 60f3adff3d..b15add0e67 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q2 0.8 nozzle", "inherits": "QIDI PPS-CF@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "BZZisCpYqzdD9lvl", "instantiation": "true", "pressure_advance": [ "0.008" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json index 54b62254b8..7bb6e1ff78 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "gskPF1tpzSKrb6zt", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json index ab2f1da2e3..8376eb7332 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "E6qMYOhwcaLXpho8", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json index 94431c52c7..7a72aacab7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-CF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@Q2C-Series", + "from": "system", + "setting_id": "PyswXDniz2jG2qcr", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json index 9e9a281d03..f1de945749 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -115,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json index 5f58a0704a..3fda14c322 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json index 48a0ea6eab..fb481f5704 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "VNDS3Q7xaoZKbu92", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json index 1a97896205..45e0e4e8bc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "Pmt9r3KLuDxb36mX", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json index fef263004e..798ff1fee2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2-Series", + "from": "system", + "setting_id": "x4hehtim7NYSSmaf", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json index f76de51855..c93e3ec0e6 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "DXf7va4b0pLFJAI6", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json index 57a7ff2f05..6478df6ddc 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "FigvAJn38PfjU9LR", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json index 325b9bed4c..33a66769c3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI PPS-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@Q2C-Series", + "from": "system", + "setting_id": "6pOI4AUFTKKOtmdi", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json index 5b81300521..7e12181e9d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI Support For PAHT@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN95", "filament_id": "QD_1_1_32", "instantiation": "false", "box_temperature_range_high": [ @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json index 3eeea472c3..1dfffa1bd7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_32", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_32", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json index d75f050182..eafcce4d50 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.4 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN95", + "setting_id": "PspiqLXugdtXT5xZ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json index cc07109d22..fee163cf57 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.6 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN95", + "setting_id": "qYVq74fCsC8rPJiL", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json index d9ac627df3..bc838ab09a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi Q2 0.8 nozzle", "inherits": "QIDI Support For PAHT@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "cY35hADOl3BxUYZM", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json index b6380fbd9f..38dbf5a936 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "4lFfvmONQVUb7PSr", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json index 97b52eeadc..694ea5743a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "a8HNWpPJjrCglxFd", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json index 56d37428da..56f87e457a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PAHT @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PAHT @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@Q2C-Series", + "from": "system", + "setting_id": "rSb8eojmAbRLKH5t", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json index 105fedadf0..25dca621ad 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI Support For PET/PA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN96", "filament_id": "QD_1_1_33", "instantiation": "false", "box_temperature_range_high": [ @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json index 0bef0d40d1..f126a37f8e 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_33", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_33", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json index 806c4c9e89..e03e9584d7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.4 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "oywAhSTOaqNv9ROQ", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json index 9812fc17ad..780fdf5a7b 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.6 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "UiCqcraA0FAmVheo", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json index 663654002f..967da042c0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi Q2 0.8 nozzle", "inherits": "QIDI Support For PET/PA@Q2-Series", "from": "system", - "setting_id": "GFSN96", + "setting_id": "2B0iekCofB9usaAS", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json index e3c7a8bd6a..67c5633682 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "G3r0SQ4Ms90nYDmW", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json index 5d9ae937c0..f717441c2d 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "5ZtHiuELFCXDNEZq", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json index 4a22efe584..121e87d77f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI Support For PET-PA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@Q2C-Series", + "from": "system", + "setting_id": "qM1c1tU9XPi4CiyV", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json index bc84dd50ad..b31512f047 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI TPU 95A-HF@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR99", "filament_id": "QD_1_1_50", "instantiation": "false", "filament_adhesiveness_category": [ @@ -82,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json index d9970e4afc..dd9b428fed 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_50", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -82,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json index d4b22b457a..b6812bd686 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.4 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "4HK1LYIjrGTonFG4", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json index 6a61d205b3..3e3605ea37 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.6 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "ooW5XfQhmdOt0bY5", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json index 45d3237e63..1f81169f5c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU 95A-HF @Qidi Q2 0.8 nozzle", "inherits": "QIDI TPU 95A-HF@Q2-Series", "from": "system", - "setting_id": "GFSR99", + "setting_id": "a9QyPBu8SIsM6EeU", "instantiation": "true", "nozzle_temperature": [ "220" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json index c69f7fb911..eef0ac7e52 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "fDu71TIyslwqfIIC", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json index 77ad48950f..af7204ccc4 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "X3Bq50h7OpyI5cwA", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json index c7bb629db5..2e9de3a04a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@Q2C-Series", + "from": "system", + "setting_id": "4U8zmwkMTYVejPbB", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json index bef8111123..38a1c1883a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI TPU-Aero@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSR98", "filament_id": "QD_1_1_49", "instantiation": "false", "fan_cooling_layer_time": [ @@ -91,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json index 45de2286d5..525aebb88f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_49", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_49", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -91,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json index da32ab4060..d19dd9c668 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q2 0.4 nozzle", "inherits": "QIDI TPU-Aero@Q2-Series", "from": "system", - "setting_id": "GFSR98", + "setting_id": "0KNVBgGBbpSQVsAy", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json index 3afc908b6a..cc7a9c5c1c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q2 0.6 nozzle", "inherits": "QIDI TPU-Aero@Q2-Series", "from": "system", - "setting_id": "GFSR98", + "setting_id": "T9Gpz3ivPh7hiLJr", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json index c41620b1a6..d3f3d9b0db 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@Q2C-Series", + "from": "system", + "setting_id": "A1IqfJw7OqImKRHJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json index d58720ada6..7f087fc206 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-Aero @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@Q2C-Series", + "from": "system", + "setting_id": "XeIEGj6ExW5qlZ1J", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json index d278dabead..5e995b72be 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_1_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@Q2-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_1_1_15", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -82,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json index d0ccd1a71e..b17c65d3e7 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_15", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -82,4 +81,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json index 671bf19172..99616b8c77 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "d6oaFn6pmW0P34cY", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json index 1c56cf6c29..906eba9410 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "K8X4uDSRbm3mPQEq", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json index 79141e4577..f639c76378 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2-Series", + "from": "system", + "setting_id": "s2xF6tQzUnKYjAUQ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json index 555693425c..72aad58783 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "NsOYbxppmw9kQgvx", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json index f51a4c65ff..49cb7de124 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "1GHTHZoint67pkmJ", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json index 8b8a3f87e4..a56f66ced3 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI TPU-GF @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@Q2C-Series", + "from": "system", + "setting_id": "XtqGcST9qlQZzfHa", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json index 7f1dfaf724..5b9881cb9f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI UltraPA@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN98", "filament_id": "QD_1_1_24", "instantiation": "false", "box_temperature_range_high": [ @@ -97,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json index 43171a8d24..7f11a52b7c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_24", - "setting_id": "GFSN98", "name": "QIDI UltraPA@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_24", + "instantiation": "false", "box_temperature_range_high": [ "55" ], @@ -97,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json index a2b99a2d93..9633d14c82 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.4 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "yCyZ2ltpPfMARrTL", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json index 2d39216013..b7153cd667 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.6 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "qfK4FpDVsjlZshg1", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json index 144e5c48eb..d6e059cee2 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA @Qidi Q2 0.8 nozzle", "inherits": "QIDI UltraPA@Q2-Series", "from": "system", - "setting_id": "GFSN98", + "setting_id": "G35duZRxZzwmKg3e", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json index e65db927e7..3439b3f086 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "Sp4WwVIaTBVVDnDc", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json index 9da119d11f..5343f85817 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "OXR5eUAK3x6nPOM3", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json index cf62861db0..74753c4b81 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@Q2C-Series", + "from": "system", + "setting_id": "VbDeId9i65hJlNYr", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json index 1de3a74cf8..194fe42853 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI UltraPA-CF25@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSN99", "filament_id": "QD_1_1_26", "instantiation": "false", "box_temperature_range_high": [ @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json index 99c1637270..1593decfea 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_26", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_26", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json index 97f4be215d..6a707dd544 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.4 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "fGxyWcWEXmua9y4Z", "instantiation": "true", "compatible_printers": [ "Qidi Q2 0.4 nozzle" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json index dce891b727..086ec92cb9 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.6 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "GobHpUPsRZBrfGwF", "instantiation": "true", "pressure_advance": [ "0.022" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json index 0b4cf131fa..58fd81c119 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q2 0.8 nozzle", "inherits": "QIDI UltraPA-CF25@Q2-Series", "from": "system", - "setting_id": "GFSN99", + "setting_id": "pRs9dWPzsT7aXQ3B", "instantiation": "true", "pressure_advance": [ "0.02" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json index 07f255244f..a689c8ce7f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "ggjTMm3h4Arw55tk", + "instantiation": "true", "compatible_printers": [ "Qidi Q2C 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json index a363a01acb..120360350a 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "ZOb1u0Ah3o9PI6I8", + "instantiation": "true", "pressure_advance": [ "0.022" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json index 3ab8c870b6..8dbffcb651 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@Q2C-Series", + "from": "system", + "setting_id": "mQuwjxr0XlcacKg5", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json index fb9248e9a9..380d48bcb1 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2.json @@ -3,7 +3,6 @@ "name": "QIDI WOOD Rapido@Q2-Series", "inherits": "fdm_filament_q_common", "from": "system", - "setting_id": "GFSL99", "filament_id": "QD_1_1_6", "instantiation": "false", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json index 3853d54bd9..5a7882bd68 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Q2C.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_2_1_6", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido@Q2C-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_q_common", + "from": "system", + "filament_id": "QD_2_1_6", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json index f71fddd7cd..6b10371392 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.4 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "F0J4IJeR9K99QyvR", "instantiation": "true", "pressure_advance": [ "0.044" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json index ad3b9bb506..c708e24a8c 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.6 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ShYSni251UBQ6ez0", "instantiation": "true", "pressure_advance": [ "0.024" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json index 5773d74767..4c400a0553 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q2 0.8 nozzle", "inherits": "QIDI WOOD Rapido@Q2-Series", "from": "system", - "setting_id": "GFSL99", + "setting_id": "N8NPPp8HiFMdVTvr", "instantiation": "true", "pressure_advance": [ "0.012" diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json index 87c84ba992..b7d4a9a6b0 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi Q2C 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "F750rXpmPM7beVmY", + "instantiation": "true", "pressure_advance": [ "0.044" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json index ffb6dd9560..410393c710 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi Q2C 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "fMxaTtxy9Zsksahc", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json index ee10469e23..239fbfcb4f 100644 --- a/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Q2/QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi Q2C 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@Q2C-Series", + "from": "system", + "setting_id": "ILkX32CTmrBR01UC", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json index 560ab1e0b8..9340c8b402 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0J9YPS8382vLms4", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json index 5e42afa81f..651828c165 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SA5qLMqlZg0lBV9u", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json index d90b17231e..951ebcacd6 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MzM45pddZsnN8jk4", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -31,9 +31,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json index bde51d0fd9..c59b3a85ee 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Tq1aLmF5jT1fx5mZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json index b1431fa5c5..e68e7cf3fa 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hhkoG2E1z6ya5hY", "filament_id": "GFB99", "instantiation": "true", "during_print_exhaust_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json index 1faf1db312..395f1dc934 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vr1wXzAo5OR2PASA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json index f49a8ba8ff..5416a7b580 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OCg8c9SWQrZP0SrH", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json index 6447de36ed..ac47e75f00 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3fkdGYKFpaJ8yjwg", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json index 4123a22d98..b0467052ef 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Tkh7jC3ZhD7qchMF", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json index 0a63e9c587..e259f79655 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wOJOXhIjWFMUvDsB", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json index 8341e66e60..b3b3c6007f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Odorless", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WqbBySroQTCBWMoz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Odorless.json b/resources/profiles/Qidi/filament/QIDI ABS Odorless.json index b8c7d13251..9b2cc8c8fd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Odorless.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Odorless.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Odorless", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5GyjZE2Ukzo3BDdg", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json index 10bf718aaf..eda2713729 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CeOohxHZCLelVMCk", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json index fc36d2efa9..96ad8b214c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "VzAotqGZviabVuS4", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -13,9 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json index ad741cac55..7678378711 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1hpYHzEDBeO8jwDr", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -25,9 +25,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json index 00a0cd29f3..606a4e781d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2ZB4CZPo7OnsVeFj", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json index b2a04c1736..51d96df33d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ANlmZnKFevlds1x9", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json index 138ba052d5..832ace793f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qGAb3jPiiSZqPc0W", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json index cce7028de4..939c2fc5bd 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zPlNGjze5nz0Sqtn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json index ccece3db52..a57fa1b64f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "L6hmbX1bqdrGd9g2", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json index 6900e9f0b3..c05f92c7f4 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZKLPQIUecFL5GG2P", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json index be183ed0f0..a4838feb1d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OlI3NRTSS4Vb9ABn", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json index 4b9b196000..f02644b876 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7AXe36Wqh6uupouS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json index 946652f125..552acb8b6e 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CQa9Ke6ku0jK7juR", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -25,9 +25,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json index a0f1a30a0b..695dfa0702 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KBXExHIJGyOE02sr", "filament_id": "GFB99", "instantiation": "true", "enable_pressure_advance": [ @@ -16,9 +16,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json index f7e9c2265f..b3f2dbf64d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QjDN8l4fq8nrEtZS", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -31,9 +31,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index c8c0d350d5..b7e9c56d7e 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "83M8HRLtzoEyAgdd", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index cbb243a8d7..cd38da2783 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JWNlbq8qmrVoCjJZ", "filament_id": "GFB99", "instantiation": "true", "during_print_exhaust_fan_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index fc13b021fd..2cfbfdf4de 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "igcuTXhdFT9QEkki", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 598a51f662..ee01bbbb30 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rci7D9y258kLZl3F", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index bac4ff8148..98b64f2e92 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LClDGDpaf5l4XinA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index 8d0a8f50e0..71c73d5a26 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "TbTSNtElyeqwuhI2", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index 657b0a08fc..a3bde06612 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lRSAQSUdgEOvrWOZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index f8e9bd17e5..fa0b2629ec 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sV1XN1EnDMTMC6eZ", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json index 7a51ddd9bf..b3b7260b51 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido Metal.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido Metal", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EcvWsnEhikUy64mA", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS Rapido.json b/resources/profiles/Qidi/filament/QIDI ABS Rapido.json index 9ded1bbce9..75518e19d5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI ABS Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI ABS Rapido", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sru9yX08jyTVNmOz", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json index 3a2481c709..ddcb0ad389 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BG8J7FyU5Sn6pmGk", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json index 401875ea73..5a8cd10de2 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "87bAUrovoG3W1WZK", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json index 3b69cf957c..7714206d33 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v0K7uK7rq54uGbrE", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json index 3c1fefb424..8aba17e819 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OD1YZ5gmmk39jI21", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json index 8ea5d1c6cd..af4a24396d 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QzCAZozPOpv3IOzz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json index 4e8a078e0f..ab0972598b 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fvB8ilSXksTr2ahl", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF.json b/resources/profiles/Qidi/filament/QIDI ABS-GF.json index 5dbd3d315f..a6d53698c7 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FW543AnWfRtseB8W", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ @@ -64,14 +64,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json index 4397987bd6..4e532d3a34 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uskWZUmvzYkVgG0l", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json index 443981bb6c..464b555e28 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9laiuOlfZEWIjQ3u", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json index 5b43411531..92b8fbb036 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Jh3kEQrLdoGw4WLW", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json index 1f7120e746..863ace51a5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3tblNpw8VgOlt8VU", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json index f43cb80c46..e22b325113 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tssoWES4nOoMEh90", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json index a1c89c8685..64b7fd6f57 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF10", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cgzmqzFT32UhNW5Q", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json index df82f517f5..bffe8b53c8 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF10.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF10.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF10", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hxsu8XybSxfesTJf", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json index eab9802993..1d88686ecc 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Do5JLiLyzue036L8", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json index f82d4ca7ad..df3f122417 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hTEx7UgX2wWanON5", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json index 03c9a66e6e..2c99858ffa 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "shInwFwd1Yh5wUJB", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json index bf432a4f1b..dcdb75359c 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "LQoXGFsJRpjCTBKm", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json index cc40b94b9c..43b86fdab1 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5ONV5cuwTbSMWPMf", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json index 174ecd7a82..8f090308d5 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ABS-GF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nvfnoGOwhELWArss", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json index 27a6931ed6..67eac5a65f 100644 --- a/resources/profiles/Qidi/filament/QIDI ABS-GF25.json +++ b/resources/profiles/Qidi/filament/QIDI ABS-GF25.json @@ -3,7 +3,7 @@ "name": "QIDI ABS-GF25", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mFWkL9nlS289XAWu", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json index aaf326097b..1f61623cb0 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JPrwCFLO4P82f5lz", "filament_id": "GFB99", "instantiation": "true", "nozzle_temperature": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json index 79ecb10157..fed39958bf 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zku756j16aST1ugn", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json index abe63c355c..5dd51ba6e3 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EcewU7mP5y2vDwRn", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json index 3547c48a6f..4595c5cb56 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JPCSXfcIngQGTuOz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json index dfe7bcafd5..53d965df8f 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Max 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hhkWOEdIbQrB4IR0", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json index d01e446712..bf52b6954e 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QiV5OREyiy9cb2yA", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json index e225c6911a..8fa1de7e85 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yOWilrQPhpvcpWM4", "filament_id": "GFB99", "instantiation": "true", "chamber_temperature": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json index 1112214185..3c259e858a 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tohpo42HW9BLvVcH", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json index 310bbd908f..33505ecf75 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iDF5lahr0TRvLF8F", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json index 2d509a165f..ace413d4d2 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "p371tUSbBj3WOi5M", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json index d1665adef9..8d1bb937b1 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI ASA @Qidi X-Smart 3 0.2 nozzle", "inherits": "QIDI ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4NUwEIv3156HKgev", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json index 5d4a18fc00..d7fa79e31b 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI ASA-CF", + "setting_id": "UZg7s2SVhCGDcdkA", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.4 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json index d05c8b1897..4f166dfd1a 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI ASA-CF", + "setting_id": "x8avbSHn73PayVfR", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.6 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json index 70bd90407b..7df6c822af 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI ASA-CF", + "setting_id": "FagCR4bLL1ctSXax", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI ASA-CF", - "name": "QIDI ASA-CF @Qidi Q1 Pro 0.8 nozzle", "during_print_exhaust_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json index 40f8e74d94..33af36c33b 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "T6U1oaEsA0T3ogMM", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json index 0e7f840b75..c549a01bb3 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "8Xm0AjRaktaNfo4o", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json index b47a9623ea..c62d7926f9 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "4p12RphItNlfwqwT", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json index 82feb1c322..ef993b3193 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "346HiaeZvs3BoFUb", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json index 0c70da16d5..d768ca7ab5 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "LROz60JZsh6GN7CK", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json index 2d6f016349..8eb7f15885 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "5OR8LnFPipv3h4h8", + "filament_id": "GFB99", + "instantiation": "true", "during_print_exhaust_fan_speed": [ "40" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json index 03582e8a29..2bc6a5eb2e 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "0pF0sUnOWKqV3N78", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json index 6dc93a3ebf..c8e51ef7fb 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "Ag8e5im3pDAL1G7F", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json index 81fe801019..e4a4a4e6ce 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "Hxv9UhjQyQbFkTc1", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json index 39f7396dee..e3d8e010cd 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "wyns97Rn3EVTl0v5", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json index c686180f21..20348ce7cf 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "zituWsHG83yRR1lM", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json index 5da14451a9..ea8120a8d6 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Smart 3 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF", + "from": "system", + "setting_id": "2CgI1u8NrWGqxN1C", + "filament_id": "GFB99", + "instantiation": "true", "additional_cooling_fan_speed_unseal": [ "0" ], diff --git a/resources/profiles/Qidi/filament/QIDI ASA-CF.json b/resources/profiles/Qidi/filament/QIDI ASA-CF.json index 6a1c41192e..9e1ac1c012 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA-CF.json +++ b/resources/profiles/Qidi/filament/QIDI ASA-CF.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_0_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_common", + "from": "system", + "filament_id": "QD_0_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI ASA.json b/resources/profiles/Qidi/filament/QIDI ASA.json index c7fb51ba7a..bfd6c00df7 100644 --- a/resources/profiles/Qidi/filament/QIDI ASA.json +++ b/resources/profiles/Qidi/filament/QIDI ASA.json @@ -3,7 +3,7 @@ "name": "QIDI ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "v2LrEujF68PPbrux", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -49,24 +49,15 @@ "40" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json index 4e8340bcb8..04cc184d19 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rDi5X7jq3PrXGeSo", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json index d1af286236..12696f5c4a 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tF0ym95Eo2WVjYrv", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json index 91e10ac8c3..3bde720ab2 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bWc3l0t1llvWvFei", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json index 4b079add24..56512094ca 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qdecbUennyPdmB0A", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json index 8a910fe1eb..3b0d9029c2 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oAp4leYdCEJY771O", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json index df02adf1c9..795c6dbbfc 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PA-Ultra", "from": "system", - "setting_id": "GFSA04", + "setting_id": "d5wSCLXU0dhvtbM5", "filament_id": "QD_0_1_24", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json index 2a6e6c6010..a57e564ca4 100644 --- a/resources/profiles/Qidi/filament/QIDI PA-Ultra.json +++ b/resources/profiles/Qidi/filament/QIDI PA-Ultra.json @@ -3,7 +3,7 @@ "name": "QIDI PA-Ultra", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "Rp1vbScHgwAZAwNT", "filament_id": "GFN99", "instantiation": "true", "filament_type": [ @@ -67,14 +67,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -109,4 +104,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json index ec7ab4f707..4c287235ef 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Q3votaRX4HuxZl1j", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json index 7514e7c1b2..6b57b653e1 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aaAKfscwITCW1cIY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json index 9296e83ab7..ba8250d7b8 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nsFoTEFnTCbVM5VS", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json index 417d93b967..14e508b501 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e8Lz1jXDuBS8tzvW", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json index ccf3d67167..8d024087cf 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2DYXiTX67NfmBSCX", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json index 607ade560e..a9f43cdaee 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PA12-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Kkj773eEVzhT6B7Q", "filament_id": "QD_0_1_27", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PA12-CF.json b/resources/profiles/Qidi/filament/QIDI PA12-CF.json index 9850593754..7276593388 100644 --- a/resources/profiles/Qidi/filament/QIDI PA12-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PA12-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PA12-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "tDdg0DlqE4Nle5Xo", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -64,14 +64,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -106,4 +101,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json index ffc4489ccd..483308828c 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wBwy10qTZT9LPkX7", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json index 6472c690be..559d626e6a 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "a7pcw1dTC3bXjkqQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json index 9a5188b877..a70309e85a 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pRBh7YZdJFYv4rED", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json index 04fdb73cad..66bf7ff727 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3HTNW0nsdZy151mm", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json index 0102cc21fc..0e3da99aed 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "t9VMvRmLwAT37YHm", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json index 98d891a1c7..1c5730c874 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PAHT-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "F30WpUvosUoiAKry", "filament_id": "QD_0_1_30", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json index 89dfb9ef96..62533cfa49 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Hws8EIuQkAfaCJGk", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -70,14 +70,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -112,4 +107,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json index 17be142089..ea7f2a65c6 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.6 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PAHT-GF @0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "jRV6kS5c49Jf0IBJ", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ "0.016" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json index dddaedb48b..4496ed57ea 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @0.8 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PAHT-GF @0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "ic09uwyOjmjgZhCY", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ "0.023" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json index bf84bcc9ab..3202c6fce1 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BGwcBuMu2dcF1nGB", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json index 3c126cfebb..35daa7f005 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R8msB42rgbyfT0sG", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json index 4f68081db3..5c2461e535 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "D1nnJWlyUV0wvZnz", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json index 3986aad4ed..0d83c21079 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xHG5cy5GGfu88GoC", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json index b93a4ffe39..d90f8c3eec 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "z1EQUUwgsLHYgeHG", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json index afa21eabf5..4d1b97b8fd 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PAHT-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yTNCP86ycfXgy8zV", "filament_id": "QD_0_1_31", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json index e2f756eef9..1ca4105b5b 100644 --- a/resources/profiles/Qidi/filament/QIDI PAHT-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PAHT-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PAHT-GF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "A6BaDz936RbO2EW1", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -101,4 +101,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json index b2f411ccd2..8ef70475b3 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI PEBA 95A", + "setting_id": "VNbCsg7HAvK02shi", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI PEBA 95A", - "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.4 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json index 277ee545f9..153b1c8543 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI PEBA 95A", + "setting_id": "SBJaM8xcxmruL8Sx", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI PEBA 95A", - "name": "QIDI PEBA 95A @Qidi Q1 Pro 0.6 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json index d7eae7591f..7111d6c347 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A", + "from": "system", + "setting_id": "TbhTBJp30kh8yQFL", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json index f5530a6c2e..4b8b7c4993 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A", + "from": "system", + "setting_id": "dU7GaenYyWsX49Hf", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json index 627d8b65d0..4695bcf9ae 100644 --- a/resources/profiles/Qidi/filament/QIDI PEBA 95A.json +++ b/resources/profiles/Qidi/filament/QIDI PEBA 95A.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_tpu", + "from": "system", + "setting_id": "qkErLCeMU5ufGB0k", + "filament_id": "QD_0_1_36", + "instantiation": "true", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json index 6c2a289e72..fe24beddf7 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sPox9vMaLAuoZoP2", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json index 0e039248cd..beaa69e235 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6BLOwVDtDPvTqanQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json index 6676935664..38ba31b9c2 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "znZt3ns7eHGTA3sX", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json index 119bf5e46b..5a9f9e7aa5 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "3k9qy3LCbhnnRRad", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json index a7700e1310..a6477c90bb 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xYAAeJcC83x4RoIl", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json index 74bde5847b..4670fe40bc 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PET-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JXE7r9nJqui21eJW", "filament_id": "QD_0_1_37", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-CF.json b/resources/profiles/Qidi/filament/QIDI PET-CF.json index 07f5b6ca67..561c9f0929 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PET-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "X4zXjt7t9eLbESzJ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -67,14 +67,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -109,4 +104,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json index 3e830ba687..400337fbd8 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N9zX7M4yR8u5Jqjd", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ @@ -13,8 +13,6 @@ "0.014" ], "compatible_printers": [ - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json index b868bd1c75..f87c252aa5 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ATyJ8qPoYVqi7J3I", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ @@ -13,8 +13,6 @@ "0.01" ], "compatible_printers": [ - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json index 791ffbe21d..d5e51c6102 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I48bgbR8Rq9DDxmR", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json index 5428d0f0f4..ac877dc6ca 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hGLyYZ2WBTIFnWnc", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json index 3ba5c5ec37..4554a3b574 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XC3F1NLZxw1v5Bh3", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json index 6d50361bb4..e7131b8b4a 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zSjGCRFJPKjrnxXj", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json index 82f09ee427..62eaf75e85 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qKGOeBEUrafs1H1C", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json index 1827d597b6..96112b4283 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PET-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S3VakjOmAENmBhoU", "filament_id": "QD_0_1_38", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PET-GF.json b/resources/profiles/Qidi/filament/QIDI PET-GF.json index 2c721010b0..444747342d 100644 --- a/resources/profiles/Qidi/filament/QIDI PET-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PET-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PET-GF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "nXZR8ykt6JdxvTCd", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -98,4 +98,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json index ec35ded332..9aa6df6a65 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "U8Tz8l63gQMoW1TR", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json index ae6faf01b9..5cc5b51fd3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.6 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PETG Basic @0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "i5DnDzOFFFsd4ear", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json index 60f942020e..a4844774cc 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @0.8 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PETG Basic @0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSG99", + "setting_id": "eqwWKpJur2oPzaig", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json index 3f1f21cc8b..1c7fb7e0d3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZwdzHcsJbYBI04Yn", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json index 5e90ef0d2a..dbf88b47cc 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wYE4aUeszHw1HJrZ", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json index b0b19d9c48..ae41acdb9e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SbHnONYlR2WneAjS", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json index 5f0ec1e7ea..0880da2bef 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EQrNIdbODkHki7pY", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json index 0e760ddffd..dd6e20b2ed 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SaZRrBNZwbPUxSRv", "filament_id": "QD_0_1_39", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json index 32dd79c90a..853d55b506 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "33Anr90IUQGC3jJZ", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json index 2e0edfcc1e..8758f39eb5 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "l4LT5GPolnkeEEK6", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json index 3dd13b5478..55db9aa126 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "r6LnysrDaSyIserx", "filament_id": "QD_0_1_39", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Basic.json b/resources/profiles/Qidi/filament/QIDI PETG Basic.json index 2ba661074d..1899fa6b7c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Basic", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "7uiFWB9SSJvhXKt0", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json index 1a1fcbe4f8..d925f371b2 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "17nQzSvxOhC8RqMv", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json index 7109279be9..e1636c5d4a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.6 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PETG Rapido @0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "TJja29CvUqlXnhWM", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json index d124a75e9f..ad4044f181 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @0.8 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PETG Rapido @0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSG99", + "setting_id": "6rVVNiYVHxsxqk0M", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json index b601069ab8..3aff0af94f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MoKlaB96ptTjnoa8", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json index b15315f6f8..45ba611152 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "S2CUnrPuZuvBo19K", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json index 335f4d173e..8f72cf31ed 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kEUCaWmAo3xZC09A", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json index e8f1f9ab78..bf500050a6 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4Tse2Ycxud3qX0aQ", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json index ee8f1fbeec..a2098e7af1 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O2SmSJeOq2QkMawy", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json index 3b9d642182..c2a930616a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UkzoaZIuBEwTCUYL", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json index d75da73dc3..fc64677656 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wMG9FBNFTJR3mI2Y", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json index 258b28d345..da2dbce484 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WF4EIoqqebSQYJCL", "filament_id": "QD_0_1_41", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json index 2721536361..67d19f82a2 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Rapido", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "YK77S7a06UMEQzum", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json index 74fca1f39f..0dfd072089 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "wl53hiPD7EGYabrt", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json index 6678dd884a..2f5838b537 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "QUkztHAxlI1gg1xe", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json index 2f306e7a7e..68706bbe3c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSG99", + "setting_id": "vtQb2QBD5ongR7vC", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -46,9 +46,6 @@ "10" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json index f47c2f3be4..26589c581e 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KHeb2TVAxtw6fbRm", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json index ced98fb927..5317b9f51d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "22HUqZbuYgOGNRfN", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json index c3790819b3..f32ca31314 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "U35fhYtgLMsDXEws", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json index 11bfdebbbc..2a524dda6a 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wqzUWt3IiEURFRYL", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json index fbf51d1ddf..5a24596ad8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Mu4RDxD4sVyJwRXc", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json index be522df3aa..20e2ce8605 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FJryx96xxfATPqls", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json index 1b04bfcde3..f0676efd80 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SmywHXjvv1Ju150F", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json index 9dd342dee6..a669d37ca3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Tough", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BwMkyVGyL0Pmqp1w", "filament_id": "QD_0_1_40", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Tough.json b/resources/profiles/Qidi/filament/QIDI PETG Tough.json index b7bd144063..a9193be4b4 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Tough.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Tough.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Tough", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "SrZXxBXWXda9boGv", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json index 199bb0194e..126d86f7bb 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "I8DmnTJey0BaBBAN", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json index 30d1f21d30..79d558d34f 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "0SbgoW822S43QDoX", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ @@ -19,9 +19,6 @@ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json index 00d632796a..02e4793b34 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @0.8 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PETG Translucent @0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSG99", + "setting_id": "rOakaeWOHKz9immU", "filament_id": "GFG99", "instantiation": "true", "pressure_advance": [ "0.04" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json index 30d3b11a51..2926cfa7d4 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RBy7wrl1ZQOdKe8i", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json index aaff090dd0..23ed635640 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Y0jCXY0Ihd6eRlm4", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json index 219d5fcc3d..b2397ddb33 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9yzSrCFgR00Lx8Ab", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json index 67fb0db5eb..8c86c18134 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uMHHs1N1fLMq56FF", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json index 3f175425a0..5082d4d9f0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6bASygXwTEKR4Twi", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json index 46052bf7bd..22d8ffe823 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QL7Ob5qH7GBsl9ga", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json index 55ce33f31c..e1fbad24e9 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wwodlWk71rHgZ323", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json index 376ede57fa..7ad9a35a0c 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG Translucent", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nh88D1u7mMVGhqCU", "filament_id": "QD_0_1_45", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json index ca90a9d3c2..a7e1a3f943 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG Translucent.json +++ b/resources/profiles/Qidi/filament/QIDI PETG Translucent.json @@ -3,7 +3,7 @@ "name": "QIDI PETG Translucent", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "5k6FnlL39pSbrei2", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json index 4b4ca1731c..15e4f9f4c6 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6EOvD75tBRyvffZF", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json index 8c698b098f..06118ac128 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ByHCLDgv1HFiA1Bb", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json index d95a5d7bbd..aff00a2a31 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "NBrZJME5Jt7jwU4W", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json index 36661d4add..42fe672412 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OSLMQVT2l2Yert5l", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json index 88414fd290..a0b04d61be 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rpJAbHlG6bJhJoAs", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json index 136044c0b7..91265bb6b3 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yyB4FvX6mflpfiZd", "filament_id": "QD_0_1_42", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-CF.json b/resources/profiles/Qidi/filament/QIDI PETG-CF.json index db4f170be0..734b4722ca 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSN99", + "setting_id": "vg3YJMhVaXTMTVLJ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -61,14 +61,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json index 669f792405..c6635252e2 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4kBE3NMTit44g7S1", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json index 608962f4ba..753888565d 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SzH90qDpFuNpG7Ud", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json index d405104a66..ff22c08ab9 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9XoDC8DHvxvgrRor", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json index 05970e46ec..b7f85630bd 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "I6Tg5JVz1Q0RigOW", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json index 2c94d73616..4b29595ea8 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RmitFKegDy89lNH4", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json index 812fbe62e4..a7a0295a94 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PETG-GF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AoO0ihxQmsL2up4w", "filament_id": "QD_0_1_43", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI PETG-GF.json b/resources/profiles/Qidi/filament/QIDI PETG-GF.json index b523e8ab06..060219b0b0 100644 --- a/resources/profiles/Qidi/filament/QIDI PETG-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PETG-GF.json @@ -3,7 +3,7 @@ "name": "QIDI PETG-GF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSN99", + "setting_id": "bex5zSdkQThZQi0s", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -61,14 +61,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json index 9db65cdcd2..52c98be3a0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "hWJXKDKNjeBqYYFk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json index 30a34fd5c5..ab3cc9c974 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "LMfV673NzArmzY44", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json index b091ab26fb..0dc39007eb 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "CyXcxvEKE6gnCRm9", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json index f505e3ab80..449e7e207a 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "g7OVjk2xNWWNQo9D", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json index e6dd92e3e8..c2f7dab865 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EdgtTQVIiPatR9Rt", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json index 33e720de42..ade21c62a6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UTbL94nFN0Cx30p6", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json index a6b7513893..5648eb9fd5 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "INxFTcta59v2Ukpy", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json index 990b748fcd..e49360108e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AOa9WW2IN1VHGXGM", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json index ac6feda98a..951227fba2 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qdagUM7IIKyfHB2g", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json index 5df275dc39..c7f30d1c03 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CwsM4SCrRAhAJVfN", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json index bb7a1b75a7..a255f2e368 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HE3KK8QRsGrgLnr5", "filament_id": "QD_0_1_7", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Basic.json b/resources/profiles/Qidi/filament/QIDI PLA Basic.json index 085587ed86..c5e219dd3f 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Basic", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "UlF92qvJnOYzq0mw", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json index 304448f34e..25eeab9475 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "vzT3dsogzkZSegM0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json index 934322151c..bbea662f87 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "rdGuWICdcIZ3fXJb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json index 11884f42e0..6418a8fa5e 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSL99", + "setting_id": "9z0BoiNtKlwPoCI4", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json index 13d16cdece..86b7154e88 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Txg82qpCGVco78Ih", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json index 5b8b119fdc..9097ca2c19 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "smHGcdmpWzQy1vW3", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json index 8100281ef1..69f09b85ca 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hGKQJNUIQR0srofE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json index bfb588b519..f945029342 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kARyA9JRV7f6Wu3E", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json index a33d2be8d2..a6d7f3b66b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8JEZpQeq7FEoUQQd", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json index 220fec3a9c..90b3876c66 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6Z2ery99xHlP2ciV", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json index 9a16d30605..35d11757ce 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "27eKOPtsQZIRwQYo", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json index 19d4260f27..de7de4d803 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Matte Basic", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nf5VwfZ4gpGG5ufO", "filament_id": "QD_0_1_8", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json index 42f4c4dcff..6204fd0d38 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Matte Basic.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Matte Basic", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "53yYF0gK91AQcKAy", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json index ac76af94c2..c316f431a1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "jpTA43XolFvODs9f", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json index dcb54bfdc9..42556d2f6b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "MGW0kfdHATaAzL1P", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json index 121ce4c6e8..93f8b8b239 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "eQOfNVt6OqCFj0bV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json index 8e842f04d0..f72a01ceda 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tdL1kK6jLbREgYna", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json index 6310dc60b9..05e66e91b6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zfL5B7iAlx3PbJ1j", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json index 51538da714..29f2a5e350 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oZZn5VxcrwDJX9fE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json index 9472798576..9aedb1f214 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o1lfFStVDZMsdFtr", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json index cce3c6cef8..49115068c6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xaGFbFpbrZ9v3RKy", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json index 77215fd2bc..1a17ca5b69 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vy1gTRsTAyLCcyTC", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json index 31dcae5b7d..03d69431af 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Rt3UcmwI8R8fxKUa", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json index a0751c5b31..e62b729ec9 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dWb415VG0AlqTWFD", "filament_id": "QD_0_1_1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json index fec0602b84..0392403caf 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HK2fT6TYIIS94MZD", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json index e7fead6a5e..34bcfbab7b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "User", - "setting_id": "GFSL99", + "setting_id": "syivJeR1eO6H8wsK", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "21" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json index d73761221b..8e168e3347 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "User", - "setting_id": "GFSL99", + "setting_id": "WC8KpzKwpQcHOStJ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "21" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json index f0110131a6..8cef6a51f9 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RccxOqWrkZljiU5Y", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json index 0a91f702bd..8a6e89f667 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8KV7AfivVZHM6ReD", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json index 00e3853e7e..648c46e717 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "c5lFoguRq8sBwQ1K", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json index fb93e62141..3cb87903ff 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "95NdLwU31HQJthJE", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json index 0e6f9c7b55..28111c4f07 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9YVeedSIviWv3n9F", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json index 866637c544..dce300b652 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "M7OXECFdZK4ZAoba", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json index 63aef16920..b95ff5f588 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zXKa67Oj1qSsHlct", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json index a161462609..14732dfba7 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido Matte", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iJ0geNRlmJkSPQfN", "filament_id": "QD_0_1_2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json index 0f41552b2a..0794ea2af4 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Matte.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Matte", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gwmsxvv6cpmVlBDa", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json index de1197129a..92d6c1a902 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "oZC1FZ93158dUC0j", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -19,9 +19,6 @@ "2" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json index d2b3615c31..26f96a21f6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Ix7a15ABLu7ykbMb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json index 6a6cd52db9..4a4f0ffd10 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSL99", + "setting_id": "NdUtpGmW1Rl2h1Xc", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json index 010768c5e4..a4d88bd29c 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6obXUws35j7OkE2v", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json index af2b19a7e1..571decc29b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Z0YSeNJQ3rKDwzsp", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json index cdc75b8566..4119d9da15 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BoVtyU2REc0Ayzc4", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json index 880eac96c0..17f7a4818b 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EKWOHWk37Yn1jS5V", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json index 94217bd906..0ac378e9e8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.2 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PvK39S1OvklDcZiB", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json index 0846aff06c..171ae933d8 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9CsEnbzkLosi8Y4Y", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json index 3e1c5e78c1..46940dd8b6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kQGl05whrHW2T43U", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json index ab3a89dbb7..b007ae0bf6 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PLA Rapido Metal", "from": "system", - "setting_id": "GFSA04", + "setting_id": "m2ctHQXA57lyjj4Q", "filament_id": "QD_0_1_3", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json index e18a6098dd..b118bcfd02 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Metal.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Metal", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "yrS51y3N1ooM5ULv", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json index 1706a417ec..dbe2d57ace 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSL99", + "setting_id": "AaBBTIJSMkxxTPDt", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ @@ -22,9 +22,6 @@ "20" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json index 4383803b33..63cfb9c6b0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "hnWx5ZM2ecclYvKA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json index a28a9eae1c..c81d897d30 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bQTjglDv2qjgrUNl", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json index f4822d6e1b..0cb15c1cae 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "X0DxlkkldQnTUfLy", "filament_id": "QD_0_1_4", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json index 772058c295..bacf625ed2 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PLA Rapido Silk", "from": "system", - "setting_id": "GFSA04", + "setting_id": "McXMhVyp029M56kU", "filament_id": "QD_0_1_4", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json index 2c45d17388..b877e50774 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido Silk.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "zifqr9yiIZKivCNu", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ @@ -56,4 +56,4 @@ "textured_plate_temp_initial_layer": [ "55" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PLA Rapido.json b/resources/profiles/Qidi/filament/QIDI PLA Rapido.json index 5773669488..1add171288 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI PLA Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI PLA Rapido", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JdGWg2Kn3T2L2Ai2", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json index 03f1766011..6d266568a1 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.6 nozzle.json @@ -3,16 +3,13 @@ "name": "QIDI PLA-CF @0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "BTqlIKpYFQCC8gJt", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ "0.01" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json index 1f12ae5b67..ed91757e71 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "0Wr2y2a7rHYbk5fS", "filament_id": "GFL98", "instantiation": "true", "pressure_advance": [ @@ -13,9 +13,6 @@ "18" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json index 419a94a876..3b236b0420 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "xGqY059EYGUevj9G", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json index 2cfdca0b03..cf77b2cdf0 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "Fh7yuJKSeYs8doRG", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json index 0f1e16a755..49c9d3c0f2 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "vs5bFF3r8Kid59u9", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json index c512d32b06..890f9d3f5a 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "Uue4WvW1uAwK2o0Y", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json index 44a5f5de0a..ed3f0d52ac 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "3SSQEk5a2vnHKG2g", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json index beb335d8a9..29df7c92ea 100644 --- a/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PLA-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi PLA-CF", "from": "system", - "setting_id": "GFSL98", + "setting_id": "jlUhowcsrMLKZBHH", "filament_id": "QD_0_1_5", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json index 2c3c9ab207..d90bd4e3c8 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "E30t78jBGCkTztFC", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ @@ -43,8 +43,6 @@ "300" ], "compatible_printers": [ - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json index 1bd5227900..20cbb98a2d 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pYmENqkzOsA9LRLW", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ @@ -43,8 +43,6 @@ "300" ], "compatible_printers": [ - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json index 03327e9e48..d135252ac8 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7ozi6TNb3ObLpD2v", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json index a97d0b97a1..eecd12264a 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iNx7JrGG0r5s24dV", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json index b748af9aa9..50bc577d0e 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tQnGlZa0FL2FpHho", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json index e5d5c290e1..2060c98114 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HVN6Bfz9FENqgw14", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json index 4e92005c04..37cd2a368d 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "T5f0IJeUy3XIzrVw", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json index 8e2ee48a58..2910fe2bd7 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI PPS-CF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eXV1ZPiBolFIU4Ub", "filament_id": "QD_0_1_44", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/QIDI PPS-CF.json b/resources/profiles/Qidi/filament/QIDI PPS-CF.json index 71d619f444..13db20b99f 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-CF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-CF.json @@ -3,7 +3,7 @@ "name": "QIDI PPS-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "ODM3oXV1OSv3qTbZ", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -98,4 +98,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json index 7ef1b37009..6f520e1d27 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI PPS-GF", + "setting_id": "VgQiY3csDj6bBWSk", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.4 nozzle", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json index 9b99299a64..d7e1fa61d5 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI PPS-GF", + "setting_id": "8hFaMBYD7pnmsZWd", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.6 nozzle", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json index 3d4a4dc4c3..d3adec2da2 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI PPS-GF", + "setting_id": "BcrvpHAPx0FBvOi3", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI PPS-GF", - "name": "QIDI PPS-GF @Qidi Q1 Pro 0.8 nozzle", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json index 5978789200..72a765d490 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "U9L7E06Sy2Wnwskl", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json index e8f3ba2c21..5e77b3ea7d 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "crnZYfMj2aMvTdj3", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json index 755f9d6004..b98fc5ef13 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF", + "from": "system", + "setting_id": "MuexSudjg1ht7pBE", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/QIDI PPS-GF.json b/resources/profiles/Qidi/filament/QIDI PPS-GF.json index 5953ece5f6..8688747e35 100644 --- a/resources/profiles/Qidi/filament/QIDI PPS-GF.json +++ b/resources/profiles/Qidi/filament/QIDI PPS-GF.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_pa", + "from": "system", + "setting_id": "uoOOXPpTEGa9bqhx", + "filament_id": "QD_0_1_46", + "instantiation": "true", "box_temperature_range_high": [ "65" ], @@ -125,4 +125,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json index fa044b0d39..7093e58d9e 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aQUPvUd9uPbi7HEx", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json index 486565c43c..2d85b489c1 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "2RpRJwkUVzHwU6Ts", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json index 53099f1611..77b6a34209 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI Support For PAHT", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Arig0uL9inQi0NKf", "filament_id": "QD_0_1_32", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json index 549f4e75db..338628640c 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PAHT.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PAHT.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PAHT", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "7cd7R9xbuNtLfCHa", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -105,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json index 8f6fc82b4d..bd6310ae72 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "EzPLJJzV7W1GfAuZ", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json index ac8e2f0cdb..7899b0435f 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Nfu1o1YZL9zK1VNS", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json index 5f8b0a0881..43ffafb5bb 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI Support For PET/PA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xJQLw0SvSPItH0wa", "filament_id": "QD_0_1_33", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json index a816259320..cf18d83f80 100644 --- a/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json +++ b/resources/profiles/Qidi/filament/QIDI Support For PET-PA.json @@ -3,7 +3,7 @@ "name": "QIDI Support For PET/PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "Am158VMH3y6FDxON", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -102,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json index cea114d725..a99ea32ca7 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "O7oxTgsH9q8jlqzd", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json index d9724e3b0e..159561dbbd 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FR1LQ5DM0upGQQfs", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json index 9402c38124..18134da7e2 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6PFep2VmiWoOZLSn", "filament_id": "QD_0_1_49", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json index 299d21c8e7..fc9b28c722 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI TPU-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "cqXDJN6nwBX3xVB7", "filament_id": "QD_0_1_49", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json index 440e888698..70f7e16ecd 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-Aero.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-Aero.json @@ -3,7 +3,7 @@ "name": "QIDI TPU-Aero", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "BARooxJKaDXbGd9B", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ @@ -52,8 +52,6 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json index 6063dea416..897e274d70 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle", + "inherits": "QIDI TPU-GF", + "setting_id": "GufOfCCphUDzeSo1", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.4 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json index 07d68d36c0..0bd0d3ce6a 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle", + "inherits": "QIDI TPU-GF", + "setting_id": "nY6q9vd6lpaXiQpc", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.6 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json index 9dab3e9b6a..528ae87a68 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle.json @@ -1,13 +1,13 @@ { "type": "filament", + "name": "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle", + "inherits": "QIDI TPU-GF", + "setting_id": "67agKUajM0pFFhia", "filament_id": "GFB99", - "setting_id": "GFSA04", "instantiation": "true", "filament_settings_id": [ "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle" ], - "inherits": "QIDI TPU-GF", - "name": "QIDI TPU-GF @Qidi Q1 Pro 0.8 nozzle", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json index 0458f7db3e..b84207fb37 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "YPsFiwLaWWLToPfS", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json index 141c8091eb..f5d627ac3a 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "jz0KDkNI4lYi5wi2", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json index 47b852c9e5..00bd1f2e0e 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Plus 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF", + "from": "system", + "setting_id": "R45ynb8LjuLowV3e", + "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/QIDI TPU-GF.json b/resources/profiles/Qidi/filament/QIDI TPU-GF.json index e6f7b43003..af3827eb77 100644 --- a/resources/profiles/Qidi/filament/QIDI TPU-GF.json +++ b/resources/profiles/Qidi/filament/QIDI TPU-GF.json @@ -1,11 +1,11 @@ { "type": "filament", - "filament_id": "QD_0_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF", - "from": "system", - "instantiation": "true", "inherits": "fdm_filament_tpu", + "from": "system", + "setting_id": "r8sdMolKGn3b52NX", + "filament_id": "QD_0_1_15", + "instantiation": "true", "filament_adhesiveness_category": [ "600" ], diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json index 04e324c1c1..1921fd982c 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "RgmbbSJpyUyTXPO9", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json index 8c113470a8..d800b11f70 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "aiGnr6fBoUCuwPS5", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json index 7d28278a28..082b2893a3 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "G0qM351aUv23WFmP", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json index 48cd812f92..3871891090 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5Two6xier5Pt2f8V", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json index 43e0121bcd..31b300d45f 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "H011um5zj6afHdTI", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json index ec214204fa..8a2ce25ae4 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25 @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI UltraPA-CF25", "from": "system", - "setting_id": "GFSA04", + "setting_id": "26BECX2hYZ6JNFRq", "filament_id": "QD_0_1_26", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json index ec63d4196e..9ae8202bce 100644 --- a/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json +++ b/resources/profiles/Qidi/filament/QIDI UltraPA-CF25.json @@ -3,7 +3,7 @@ "name": "QIDI UltraPA-CF25", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "2AOnWEOsaS2w9Nmr", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -70,14 +70,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" @@ -112,4 +107,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json index a25ff375ef..60731be079 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "y4aq26TNkKEafwbN", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ @@ -16,9 +16,6 @@ "0.02" ], "compatible_printers": [ - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json index a3f33c3239..a33c51e4b6 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSL99", + "setting_id": "1y0tvUmMkDHYmvWC", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ @@ -16,9 +16,6 @@ "0.01" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json index bb9bd79de0..6a9b8b61f2 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.4 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "n4ywS2KDL59hb8nA", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json index 269179bff6..2c556b42d6 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AZB82l14yp3vT5sz", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json index acee4aee92..825fc4d3bd 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi Q1 Pro 0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0ZZ9ygXQqnKrrWlL", "filament_id": "GFB99", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json index 0024edc29b..ec46dd83ff 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.4 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gfnllytSwMCbiB6b", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json index a6d144559c..1e7359636c 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.6 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PLrMThf2TXZGtp7N", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json index aa445d3fc5..f184003ac0 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido @Qidi X-Plus 4 0.8 nozzle", "inherits": "QIDI WOOD Rapido", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ErWlv0gKexLj8wjB", "filament_id": "QD_0_1_6", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json b/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json index 5391854b32..b80cb7bbe8 100644 --- a/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json +++ b/resources/profiles/Qidi/filament/QIDI WOOD Rapido.json @@ -3,7 +3,7 @@ "name": "QIDI WOOD Rapido", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "NANyXYa8NOQ45Gy2", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json index 94c71fb7a0..1002faa656 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi ASA-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OVQGLLS3QOoDEPNp", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json index 14547a7237..e70b832791 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi ASA-Aero", "from": "system", - "setting_id": "GFSA04", + "setting_id": "FKWhpunDSV0iusbz", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json index 10aa975188..72e771f083 100644 --- a/resources/profiles/Qidi/filament/Qidi ASA-Aero.json +++ b/resources/profiles/Qidi/filament/Qidi ASA-Aero.json @@ -3,7 +3,7 @@ "name": "Qidi ASA-Aero", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "xTg8UPJXoXdyGccz", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json index f90e6e2c4c..2e6b6d9089 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "BNOS859dmAw7GIZp", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json index ba047bbab7..11fb8e0fad 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XfuwzYZzTauK0ADk", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json index 6acb0f934a..05b680a74a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ziWmRGMYOpjc7Hpo", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json index e6337ca70a..b9e1f23232 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lLXYczQE4YfPiyDO", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json index 3639ae3f99..576f73e044 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o62pcRmFnj2mIXhf", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json index e2fa37fd73..10d886d12e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UBWjZCCGQrpgmlpa", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json index 445a500bc4..7bb68abc19 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qB4eDc7UuoKv5m2U", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json index b4e9c92f41..6da9142823 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "N3Ca9PN8nDnvhmak", "filament_id": "GFB99", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json index 0760135c0f..d499ccf490 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UkNcVB3bJZqLN3fu", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json index 8a77eca999..0c76ed7e66 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uK0zY0a6MpcFTZWr", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json index 518d4557cb..06b75195a8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic ABS", "from": "system", - "setting_id": "GFSA04", + "setting_id": "veNBpzcNYa6TAMry", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ABS.json b/resources/profiles/Qidi/filament/Qidi Generic ABS.json index 2e8eef78af..f0ced9aabb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ABS.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ABS.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wcv9ZpNwvZ0ZcWKw", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -52,24 +52,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json index dcb8053763..7e1c6c50f4 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "OLkg128vxsk27w03", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json index 2844defe24..4e79e3b9d4 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pGOT3C5eREsHRylS", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json index 87b872a017..95c9fa660c 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QRlzPtO4mqLKcdws", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json index ecc72af998..81a1153f11 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vLLCDxhI2GR76M1p", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json index 54bc085367..f68bcca3f0 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "6pY4I5kAFdSYPOte", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json index d42f392ee5..4b2cbc742d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "A85OmyjS63OgZa0V", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json index 2f3f7288f3..e070398a5e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "1CBWjstSdMJLJWuv", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json index 0d04f73ccf..28a74dadb1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UIsup1TGWKg0Fq72", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json index a2680f0a6b..422c63c216 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "HQupWXd5yKceVrm4", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json index b34f6eec9c..e24a3519bf 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "R6FcpVRhnSp0i8bK", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json index fda09bfb82..2f3fa6a9d8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic ASA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "sE2DGjOmcjRuuh0z", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic ASA.json b/resources/profiles/Qidi/filament/Qidi Generic ASA.json index cf0f7bb83e..e7878476b5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic ASA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic ASA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WTOEo36YTIFcXDaI", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -40,24 +40,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json index f1e12d9aba..880a914309 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN99", + "setting_id": "aOVEazsct9L3eD2u", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PA.json b/resources/profiles/Qidi/filament/Qidi Generic PA.json index 704722ab43..4e1f0d20ba 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSN98", + "setting_id": "S6S5nM9zZbNCyhya", "filament_id": "GFN99", "instantiation": "true", "filament_type": [ @@ -37,14 +37,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json index 8bffa7efa9..5b7bbeb84a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "i4Nt0riiDwptxOIe", "filament_id": "GFC99", "instantiation": "true", "pressure_advance": [ @@ -13,9 +13,6 @@ "1" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json index a9fd4853d5..d7a15d0bc0 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @0.8 nozzle.json @@ -3,16 +3,13 @@ "name": "Qidi Generic PC @0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "8mJysYABmQTBlWLw", "filament_id": "GFC99", "instantiation": "true", "pressure_advance": [ "0.008" ], "compatible_printers": [ - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json index 3993632f5f..1e6313bc34 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "be2KpgVjm4APQtrt", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json index eb0bc76c20..0aee03bd65 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "9aGpKzNCjXDcfmqr", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json index f0e2993ec5..5b348523ab 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "1BjBpSDoLs6nTHeo", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json index 5e9ea42fc4..a551323664 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "8ptIGtXeMSwVqkVB", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json index 6157e1221f..8dcb9f5e4e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "IQCYG5yZFPsvTuHY", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json index e47d484a20..297315300a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "TPbG7zlsPowdKEVw", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json index d742f4ff82..32c4f84112 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "mzsetSq0CzwqbGnP", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json index c3a13fdb7f..e3b4be943f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PC", "from": "system", - "setting_id": "GFSC99", + "setting_id": "wlnm88gEKcNzvx7W", "filament_id": "GFC99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PC.json b/resources/profiles/Qidi/filament/Qidi Generic PC.json index 1afb655c64..a0a745246e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PC.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PC.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSC99", + "setting_id": "wd4PrqXE2um46ueW", "filament_id": "GFC99", "instantiation": "true", "filament_type": [ @@ -55,8 +55,6 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json index 52d57fad79..f40180cc1f 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "GfDMSO3DjLxfMnUc", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json index a4a2a337b5..6d920bb982 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "SzQLWO8poDxEU0ez", "filament_id": "GFB99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json index 8772ffd70c..70b8be014e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "yyfoSMlQsvkmUGR5", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json index 9653316aa6..69c74caccb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ogHITGUcn1r2bHXc", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json index 844a8d8f67..1a55f38280 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "CVyv3PHeZaSGmD6E", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json index 532e0a5f2f..e820fe24b2 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "tNl6q6MadSoFZ3EH", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json index 59e30b8787..289b97e7e8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "1xGw8fYiSf6YzBnk", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json index b281abf95c..3f3fdb2dae 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MMSCic1l0b3e5qe3", "filament_id": "GFB99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json index 61972465d1..403177c5d7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "KD0ABMKuQunww07p", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json index d4cd1df6ac..adaf03f5de 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ZFkH9oLkRWDVovLu", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json index ccd4db5d76..2afbdbde97 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PETG", "from": "system", - "setting_id": "GFSG99", + "setting_id": "ixR5wIrehSmn8Inz", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json index 8aad0906df..3a668823ca 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG-CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG50", + "setting_id": "kjmXKWCMonhYhy8U", "filament_id": "GFG98", "instantiation": "true", "temperature_vitrification": [ @@ -67,9 +67,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -79,15 +76,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PETG.json b/resources/profiles/Qidi/filament/Qidi Generic PETG.json index 69c747f578..993b9764ba 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PETG.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PETG.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "Yk3w834THlnAS3jr", "filament_id": "GFG99", "instantiation": "true", "filament_type": [ @@ -55,24 +55,15 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json index 4e98f68cd1..2492a8ea78 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "6e0DHBzRkQvU0419", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json index 528acc7d95..4569902a19 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "eCR3lbTRdkYcMZgl", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json index 42b9441efa..7aa69c184d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JSQupeTNYtzE8l6q", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json index f1d4bdd96e..017b42a781 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "n4rp1Pooux07hwx1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json index ad4582d04c..46523499ee 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "P57Nm7E7KTnHMov0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json index 8bfc571a4f..b10017757b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "DWfVtYimjZxqyDzM", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json index 11be4f51b2..e8d6372721 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "ausfQ4SuKLMuruFb", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json index 2b32f6bb46..b1b1b2e9e9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "JJmzlY5XOz9eGO8n", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json index b8f4619b75..6cd43b3246 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "EpYu1ME5tSsFYirK", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json index 01809a2ee5..ce7016ad71 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wZ8U1Ga1bQXbd2nN", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json index 3fa48600ec..b9c1fc36d1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "M0JCDyI7icGyqs43", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json index 80b9f03d03..922bef83eb 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tRztgu06hBi9IxSE", "filament_id": "GFB99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json index e3acd2e08a..7c9a86cdde 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "8XzQCGoYi01mIjNY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json index 79692664a5..4bb1e59e0b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "hkeictJYR1KDX7kB", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json index 4e29f4d5f5..f6131e0ca7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "4YnRWwYLWMODUHXq", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json index cf7b642dd7..2289deef1e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "bKi57zeQX7mAw7kl", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json index a25376ce5a..15336f706a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA @Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi Generic PLA", "from": "system", - "setting_id": "GFSL99", + "setting_id": "lscOLQTFf4Y3Ax1f", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json index 3682c1acd9..a27251d78a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.2 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "HaE0HFgjT8wysrVT", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json index dc4d73eb0e..2f0e4b53b1 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "vxXEJP3C4k5Zjvsx", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json index 0c561bd882..866b9b9707 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.6 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "VqVyXnU77CZCKsNy", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json index 487629837a..47ac610743 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA High Speed @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA @Qidi X-Plus 4 0.8 nozzle", "from": "system", - "setting_id": "GFSL99", + "setting_id": "0504CZkoYLx6NMI0", "filament_id": "GFL99", "instantiation": "true", "slow_down_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json index 4a47dec8b9..08b2fd475b 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA Silk", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "lRRlOS4Xd1pGLIEq", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json index 23fde5367c..0c9b1b3d15 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA Silk", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "DaBZGfcdheWjNdgr", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json index eba040f9a8..128da01c7e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA Silk.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA Silk", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99_01", + "setting_id": "OATeG6kIIRyViXbn", "filament_id": "GFA05", "instantiation": "true", "enable_pressure_advance": "1", @@ -38,15 +38,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", @@ -73,4 +67,4 @@ "textured_plate_temp_initial_layer": [ "55" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json index 6756c4e0e6..4ea48e5379 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "dmKDk6Yb4zQFCWIe", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json index ae35d6daf2..d7be267e76 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vwFHzxD2MrRieUIw", "filament_id": "GFB99", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json index 0bfeb48bd6..9884783666 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wlXNWvECV8ylNVFF", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json index 44583fd72e..751e859201 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gR4NZ8mgTNVxxjhh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json index c4f52b5402..3ceedcf5da 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "wCdBhg6B4tQZw7dp", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json index 5881520065..865f18fe1d 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "7Bxn8OUT1MJbNvxC", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json index 0a6e262878..320e1a5e37 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "miQxMqjI3odS4V1O", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json index ae7f149e28..96d49de862 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "WwUGv09h9thWkzMf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json index e70e9e33a7..5942ed4406 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "oAIJyTMV5EnXTJDF", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json index 35188d5def..62529fb34e 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "Ya2viE6yXmdshs75", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json index 1935f16bf4..88086dd8e5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "XUhGdonOGCUI34EH", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json index 1920d2e25d..7ed74cb2d5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSA04", + "setting_id": "yvokLiCctDUmcDCR", "filament_id": "GFB99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json index b791b6284f..225c8203c7 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "gZxafcPwX1hqI7Dm", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json index e946f31714..662d6b70e9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "j6fJ7L02mVcZ01fO", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json index 3118cd54ef..85de90bcfc 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "KTkq14RsduGBSdMZ", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json index d9684f7fdd..6d7b0c81e9 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "xiomvJqo2HAwsxT0", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json index b28abe56b7..d81651533a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+ @Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi Generic PLA+", "from": "system", - "setting_id": "GFSL99", + "setting_id": "3SemJWSvKeN7OXVy", "filament_id": "GFL99", "instantiation": "true", "pressure_advance": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json index 4df73c84d0..cf8733d478 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA+.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA+.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA+", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "LNjBixpjLg5i8P1d", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ @@ -34,20 +34,11 @@ "220" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", - "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle" + "Qidi X-Max 3 0.4 nozzle" ] } diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json index e68b66533b..ced518b3a6 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL98", + "setting_id": "bJKgxsU0tR1NDtoN", "filament_id": "GFL98", "instantiation": "true", "required_nozzle_HRC": [ @@ -37,9 +37,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -49,15 +46,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic PLA.json b/resources/profiles/Qidi/filament/Qidi Generic PLA.json index e722d67268..2dc3b25203 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PLA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PLA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL99", + "setting_id": "tmrmjsN8vDKGlNpX", "filament_id": "GFL99", "instantiation": "true", "filament_type": [ @@ -28,20 +28,11 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Plus 0.4 nozzle", "Qidi X-Max 0.4 nozzle", "Qidi X-CF Pro 0.4 nozzle", "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", - "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle" + "Qidi X-Max 3 0.4 nozzle" ] } diff --git a/resources/profiles/Qidi/filament/Qidi Generic PVA.json b/resources/profiles/Qidi/filament/Qidi Generic PVA.json index 565e4b130f..3479b4eb41 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic PVA.json +++ b/resources/profiles/Qidi/filament/Qidi Generic PVA.json @@ -3,7 +3,7 @@ "name": "Qidi Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSS99", + "setting_id": "8450opPMJm6GG5Cq", "filament_id": "GFS99", "instantiation": "true", "filament_type": [ @@ -25,9 +25,6 @@ "Generic" ], "compatible_printers": [ - "Qidi X-Plus 0.2 nozzle", - "Qidi X-Max 0.2 nozzle", - "Qidi X-CF Pro 0.2 nozzle", "Qidi X-Smart 3 0.2 nozzle", "Qidi X-Plus 3 0.2 nozzle", "Qidi X-Max 3 0.2 nozzle", @@ -37,15 +34,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Plus 0.6 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json index adba8650c1..15423913f8 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Generic TPU 95A", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0gGSrFIulk4gPLSp", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json index 149109cf50..f83e24e147 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi Generic TPU 95A", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5fkE2aGkghsMdZ1W", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json index 8a32bdf448..d83d0599af 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU 95A.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "JWZrlYnOOlGpTEg6", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ @@ -40,14 +40,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json index 51ce049da8..ff81ed6743 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "s0MMbJlTt9Cbh8FQ", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json index 200c56837a..4e9f07c0c5 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi Generic TPU", "from": "system", - "setting_id": "GFSA04", + "setting_id": "KqdGTkLW1x7oZpvj", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi Generic TPU.json b/resources/profiles/Qidi/filament/Qidi Generic TPU.json index 418f5bf269..8c57a5d28a 100644 --- a/resources/profiles/Qidi/filament/Qidi Generic TPU.json +++ b/resources/profiles/Qidi/filament/Qidi Generic TPU.json @@ -3,7 +3,7 @@ "name": "Qidi Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "qvJXA6V5mxiOguUj", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ @@ -34,14 +34,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json index afc761e382..072f445d57 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0J1PKDesfiwmiXT3", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json index fba287b596..02776d5d00 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CYzutFjZzD3tLXwM", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json index 6ebbcca7d7..60a8329be2 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YJvwrEo0BwfXMOqo", "filament_id": "GFB99", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json index 32c5a64cc5..6116b16149 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "WZuAmHHfdACv1F6k", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json index 80888e6bd5..859df30d32 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "JCCjjewJVs13S08j", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json index f0116a1390..63911a1567 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi PC-ABS-FR", "from": "system", - "setting_id": "GFSA04", + "setting_id": "lWfYhsmJo1Q8FmM8", "filament_id": "QD_0_1_34", "instantiation": "true", "activate_chamber_temp_control": [ diff --git a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json index 52b62c84d8..e6faf129d7 100644 --- a/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json +++ b/resources/profiles/Qidi/filament/Qidi PC-ABS-FR.json @@ -3,7 +3,7 @@ "name": "Qidi PC-ABS-FR", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0pBt0usHW6MGQZXl", "filament_id": "GFB99", "instantiation": "true", "filament_type": [ @@ -52,14 +52,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/filament/Qidi PLA-CF.json b/resources/profiles/Qidi/filament/Qidi PLA-CF.json index 0efe8af2fb..6b8a3e8899 100644 --- a/resources/profiles/Qidi/filament/Qidi PLA-CF.json +++ b/resources/profiles/Qidi/filament/Qidi PLA-CF.json @@ -3,7 +3,7 @@ "name": "Qidi PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL98", + "setting_id": "oqzsRA4OuCqTWPGM", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json index 68c4cc0582..aa18a6f5e7 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi Q1 Pro 0.4 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zqfVVsyY5ZMsfqjK", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json index ac28036e5a..7679296a7b 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fZISb4jbF8jv60dL", "filament_id": "GFB99", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json index ed4d743f3d..469f190953 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi X-Plus 4 0.4 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "MQ5o43Gclt9U65x6", "filament_id": "QD_0_1_50", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json index 47dc6006f2..e56f67abf2 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF @Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi TPU 95A-HF", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wNxGljiKmTzCPgzk", "filament_id": "QD_0_1_50", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json index 7cf7f7129c..ba588dc809 100644 --- a/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json +++ b/resources/profiles/Qidi/filament/Qidi TPU 95A-HF.json @@ -3,7 +3,7 @@ "name": "Qidi TPU 95A-HF", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSR99", + "setting_id": "QCS6zw9BRMWWvrCo", "filament_id": "GFU99", "instantiation": "true", "filament_type": [ @@ -31,14 +31,9 @@ "Qidi X-Smart 3 0.4 nozzle", "Qidi X-Plus 3 0.4 nozzle", "Qidi X-Max 3 0.4 nozzle", - "Qidi X-Max 0.6 nozzle", - "Qidi X-CF Pro 0.6 nozzle", "Qidi X-Smart 3 0.6 nozzle", "Qidi X-Plus 3 0.6 nozzle", "Qidi X-Max 3 0.6 nozzle", - "Qidi X-Plus 0.8 nozzle", - "Qidi X-Max 0.8 nozzle", - "Qidi X-CF Pro 0.8 nozzle", "Qidi X-Smart 3 0.8 nozzle", "Qidi X-Plus 3 0.8 nozzle", "Qidi X-Max 3 0.8 nozzle", diff --git a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json index f3436e2cdf..4e4424936f 100644 --- a/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json +++ b/resources/profiles/Qidi/filament/Tinmorry PETG-ECO.json @@ -3,7 +3,7 @@ "name": "Tinmorry PETG-ECO", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSG99", + "setting_id": "uVa250OrqClMz41k", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json index 20c92167be..875715d005 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "ObaWhyOT9RNUMdI6", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json index 3f119088e2..b284d30bd7 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "83TZ1o0skCCYg62Y", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json index 9deeb5efad..167ff14a45 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "e4v59EmfFFUmBihO", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json index d5c3a63eff..2f53b5312e 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Bambu ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu ABS@X-Max 4-Series", + "from": "system", + "setting_id": "3AQsEBmdQQWNiIO4", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json index a79d23354a..62e6a4204e 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu ABS @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Bambu ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json index dc61177688..0c1fc6a7a0 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "9TNhIV7wgatcYh1N", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json index e1be9cf696..81c28e3e75 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "nVBMZmiIghleaUTP", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json index 056a25d230..0d6bc21a30 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "uUNbXyfDOU57SVNN", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json index 17a30f6bc0..74dd607729 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Bambu PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PETG@X-Max 4-Series", + "from": "system", + "setting_id": "hrxYuEAVW4fZYJmK", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json index 115ad36b10..cdfabbe5a0 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PETG @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "Bambu PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json index dbc41bf220..86bd5507f4 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "96Jkldwh5ncSfFDu", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json index 05ffc94d5d..74a8b6befd 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "aU8ZGs9t4nFOU6gO", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json index 13a1c1511d..af287e369b 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "NGrzUVbjJYUmUH8b", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json index 1bd142da07..1a087563a2 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Bambu PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Bambu PLA@X-Max 4-Series", + "from": "system", + "setting_id": "HoqzQQGC1YAYrE0K", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json index 2782cecae1..9db6ab9698 100644 --- a/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Bambu PLA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Bambu PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json index 168458f94f..d279972582 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "FZbHj2p2roIxznOM", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json index fef8ab7fe8..3a094b95fb 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "ysDcErFoFj9ed7bU", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json index 93cb5d4ef4..da90b9cf70 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "qLHOUz2Ygnup2DQB", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json index 54bcb4f599..14f7a4c706 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic ABS@X-Max 4-Series", + "from": "system", + "setting_id": "tnWPrR1DH65ueDeo", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json index 8400b8a49b..e01dbb5296 100644 --- a/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic ABS @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_11", - "setting_id": "GFSA04", "name": "Generic ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json index aeac1b440e..bcfe6f21a3 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "0jPfHsrKufenRV54", + "instantiation": "true", "filament_flow_ratio": [ "0.94" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json index f32c1ef59d..0c16607133 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "SL8yGVK6yyh7Ce0P", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json index a19ebdb800..c8ecea8665 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "KNMYMJ4gcwLaJrXB", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json index c7e34bee05..55f5ec2e32 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Generic PC @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PC@X-Max 4-Series", + "from": "system", + "setting_id": "7YEkA5j3W20o8tTN", + "instantiation": "true", "filament_flow_ratio": [ "0.95" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json index 788bef8b7c..655713b891 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PC @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_23", - "setting_id": "GFSA04", "name": "Generic PC@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_23", + "instantiation": "false", "box_temperature_range_high": [ "65" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json index f547482601..27f9b8f7fd 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "yEnyAQ47lfdqYm0q", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json index 460fb27535..6ac1d60861 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "XCv5iF6yKlQSg53I", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json index 0d8ed79afa..a003e3aff7 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "vMG4ik94FbjX2HGU", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json index 38ed186eba..f07ffe5566 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "Generic PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PETG@X-Max 4-Series", + "from": "system", + "setting_id": "lHOyUewbi7eXOiX2", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json index a1dbc45ae8..e855840148 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PETG @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_41", - "setting_id": "GFSG99", "name": "Generic PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json index e950b7b041..eb98e9507a 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "VHIjYrFQCcCuLx3y", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json index 4340fa25a1..9b275f3488 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "yE9wOy1UAO2mMq9b", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json index b9ffd93bbc..77af563c8e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "q4GoIMWFilTiYsxq", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json index e0b1c99e9f..03707d096e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA@X-Max 4-Series", + "from": "system", + "setting_id": "K7Rs9SipNTYpW0NV", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json index 19b0f0f1e8..a4ee80e67d 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_1", - "setting_id": "GFSL99", "name": "Generic PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_1", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json index f9325d1cb4..eb72a9d250 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@X-Max 4-Series", + "from": "system", + "setting_id": "H5WaVHBEGGXCBNCG", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json index 58d14c272c..35da3b09de 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA Silk@X-Max 4-Series", + "from": "system", + "setting_id": "U9QBvAi10Oy73olq", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json index 4a58091d1f..e83be7d908 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA Silk @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_4", - "setting_id": "GFSL99_01", "name": "Generic PLA Silk@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json index 911a94fdeb..4bf10a5dcf 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "5zmqHwM0HFBxi2xH", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json index d626a05e61..2964658af4 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "G43aOOmnvhwXsZ3L", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json index 2e4664e2e5..76fa92cb25 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "x2KsG7GA8CRgmngd", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json index 7c84dd470a..bf346d72f9 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Generic PLA+ @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic PLA+@X-Max 4-Series", + "from": "system", + "setting_id": "p0gZGSbqtHedXLe4", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json index bec539f6e8..924752466e 100644 --- a/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic PLA+ @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Generic PLA+@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json index cc7ab98b41..0de6b84a22 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "qBceIx6IKWOfED8g", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json index 45f053228e..0e90822f80 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "Uh1TenQIQNw4u4JD", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json index 9a468fa5e6..86665a59ad 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "Generic TPU 95A @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Generic TPU 95A@X-Max 4-Series", + "from": "system", + "setting_id": "pkkTq8YNVI54H3nT", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json index 64ecd45283..10a520531d 100644 --- a/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Generic TPU 95A @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_0_50", - "setting_id": "GFSR99", "name": "Generic TPU 95A@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_0_50", + "instantiation": "false", "filament_adhesiveness_category": [ "600" ], @@ -79,4 +78,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json index 5e89e28990..b049af2921 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "oEc7qBp8hGIUKMhs", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json index b98edfa426..9c9ed72cf1 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "pkguUnnJl8nPCxfU", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json index d3f8ef830e..3716bc9068 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "FMrsa95wzL2qFuLP", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json index 7cc35c9a5f..c4da12b133 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "HATCHBOX ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX ABS@X-Max 4-Series", + "from": "system", + "setting_id": "JR1t0jGog7DCHEzN", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json index 115d692f51..d7e4f1c7ed 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX ABS @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "HATCHBOX ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json index 386d5164c6..57566fa1a0 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "sGRdg0IX4MrMGWpj", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json index e2eeba025a..06daf029ea 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "WDKsFE4N46eYgxds", + "instantiation": "true", "pressure_advance": [ "0.056" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json index ac76a9fe41..facc884298 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "U3ssAv86SBQsTGzv", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json index ca42d9a3d2..7d76bf5825 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "HATCHBOX PETG @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PETG@X-Max 4-Series", + "from": "system", + "setting_id": "Y5FdpTxdj2CmzU7R", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json index 0756031a43..9e9abfbd09 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PETG @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFG99", - "setting_id": "GFSG99", "name": "HATCHBOX PETG@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFG99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json index a634cd7804..068dc22078 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "O435vUq8oUXZh0L5", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json index 1aaa05ef46..fa5d0636de 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "kjoWs9L40bAEED57", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json index 0042b033b8..49f240f349 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "d9Zcvd5g3fN8TZw9", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json index ac9fb230f2..85523eecb4 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "HATCHBOX PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "HATCHBOX PLA@X-Max 4-Series", + "from": "system", + "setting_id": "15ojXVF9I50YBsnG", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json index 5c9036e7b8..2cb6be1fc3 100644 --- a/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/HATCHBOX PLA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "HATCHBOX PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json index 15336bcda7..8afc2ba0cf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "GCuVY57NORejEknS", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json index 3efa1d4443..0c89e039bf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "wmt9ksAtegWWht1z", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json index 3cee4ce1a9..cc48031499 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "jDN2TUgHD6iLIZ7D", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json index 42d99f26c5..22229cc60d 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "Overture ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture ABS@X-Max 4-Series", + "from": "system", + "setting_id": "2EkhezFbXvWIoAZL", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json index 426574efe9..485db36e9a 100644 --- a/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture ABS @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "Overture ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json index c6c80785a8..5b17637aaf 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "fviMGr9MBOAvKSMl", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json index 08c0c5e37a..bbcec8fd61 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "3QdWBhSArEkFau2X", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json index 409d3ca390..a657b5ecf3 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "38fBe2sB0HgNFCoW", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json index c8aa8c0b80..13e9783c44 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "Overture PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Overture PLA@X-Max 4-Series", + "from": "system", + "setting_id": "CRiRufyTStiGQonN", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json index 87057063c8..289af93715 100644 --- a/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/Overture PLA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "Overture PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json index e3c168d377..06964bd545 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "0tZA7mEPnBAdWefh", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json index 2d417cd0d2..0c82acba82 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "CVP2UVOtfgJoI2NW", + "instantiation": "true", "pressure_advance": [ "0.033" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json index 0dfdc9a5df..ac59a90e8c 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "cO252ch3uc4X0sUb", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json index 25a14f9718..bfbfc602a4 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "PolyLite ABS @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite ABS@X-Max 4-Series", + "from": "system", + "setting_id": "wADGmAQqZes67Lqy", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json index 770c75cb69..215fb00a92 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite ABS @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFB99", - "setting_id": "GFSA04", "name": "PolyLite ABS@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFB99", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json index a883dfde1f..cabcb1eeb8 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "ka8gZuf48AuqSkSU", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json index 6e4e932f34..d1ffbd8d5c 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "lW8UIaUPIj0pljBX", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json index cc8f06a7e2..f22212a279 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "AvqYCDxCnR3mvEw5", + "instantiation": "true", "pressure_advance": [ "0.019" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json index 03e76ae1af..848e79c392 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "PolyLite PLA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "PolyLite PLA@X-Max 4-Series", + "from": "system", + "setting_id": "SCUFdT0Jg2I90rjB", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json index 4e1f6706d7..e8fe4ba7f5 100644 --- a/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/PolyLite PLA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "GFL99", - "setting_id": "GFSL99", "name": "PolyLite PLA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "GFL99", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json index 73ace6c773..0364d6dfdb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "P9rZniuGhkyBT4xR", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json index d0d93a3688..8ea6617866 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "w5Cgcs8HAWM0Gmx3", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json index f200833da6..bb276f2c71 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "GXg11Gby0pXOyr5J", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json index a0520f6ed9..e22b270073 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Odorless@X-Max 4-Series", + "from": "system", + "setting_id": "tOi3ws4LIN7tR2qs", + "instantiation": "true", "filament_max_volumetric_speed": [ "24.5" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json index fcf0ee420d..0b89883f41 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Odorless @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_14", - "setting_id": "GFSA04", "name": "QIDI ABS Odorless@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_14", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -106,4 +105,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json index 12c94e9672..14a76ca31f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "oOA6I3Q7KelWtMFu", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json index d0307d3f0d..16ea4c1c25 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "WvzjNaRg6EkNgzjf", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json index f3b64c9c6a..36f1e10adf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "6TTHdmjRlvqpH5IG", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json index 830773ad57..11a9f3103f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "X2wpQ4ikglynRcLd", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json index ab0755fca1..3ba45a14dc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_11", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_11", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index 7d8a67f467..f866e34533 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "DgxYozgTj91Hs07I", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index bd5b001131..be43663052 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "Ri9lbsfhJ9pWPpm0", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index adb9276964..e006e78442 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "cNyXIPAHCyRz9Okg", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 439b26250a..bfb6ff3503 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "JIvkxvNlR0MCJrQs", + "instantiation": "true", "nozzle_temperature": [ "250" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json index 5da78652af..64dc667a44 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS Rapido Metal @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_13", - "setting_id": "GFSA04", "name": "QIDI ABS Rapido Metal@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_13", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -103,4 +102,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json index d2e3d2aa87..9485ac8bb1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "7rBwXoSZicndxSxN", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json index 00e8cdb0b2..f26055a2bd 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "D1xWI85mnQvPbOuZ", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json index 7ed4ba8295..a26856ff91 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ABS-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ABS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "dcUYtrXA3WEz7Qw7", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json index d3de50be23..218e883448 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ABS-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_12", - "setting_id": "GFSA04", "name": "QIDI ABS-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_12", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json index 50041ed8b7..209c517b3c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "5MVL667eGducTxlJ", + "instantiation": "true", "chamber_temperature": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json index da116a9261..f7f53e4050 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "YDuJZ0iqN7SAWpTC", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json index 35a663dcb1..fa7b3100b2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "XpaM6LL4AaIEi5gv", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json index 31eec9155e..7b0380d6e2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA@X-Max 4-Series", + "from": "system", + "setting_id": "1OZ3ubOH5ohBw93u", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json index 4f9e8c7476..c6937e0080 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_18", - "setting_id": "GFSA04", "name": "QIDI ASA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_18", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json index 1bf6809ae8..fc4c361ccd 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "jco0JlspeZFkBZGm", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json index fdaf5d7b26..3a66fdea86 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-Aero @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_19", - "setting_id": "GFSA04", "name": "QIDI ASA-Aero@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_19", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -124,4 +123,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json index f5334c99f0..62aa5bb086 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "5xQW6rGlxlsZ4WhW", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json index c7a799694b..98e56b9e57 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "s5YLcZKFAILv0wjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json index 2d93e39493..40e163ae44 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI ASA-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI ASA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "8lzlWAr4uET3GYfl", + "instantiation": "true", "filament_max_volumetric_speed": [ "13" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json index 25fd6a3598..3cc72406a4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI ASA-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_20", - "setting_id": "GFSA04", "name": "QIDI ASA-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_20", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json index 280b4db8a6..eff7e6cfbc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "bvcofqyzQpeYVWTm", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json index b6bdb68252..b9d207d293 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "SVtAHcmEht7OlGN8", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json index b95e9a99a8..66d4b39799 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PA12-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PA12-CF@X-Max 4-Series", + "from": "system", + "setting_id": "bScZQ1EI4JxMsx3C", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json index 17020bd0c2..e217915579 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PA12-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_27", - "setting_id": "GFSN99", "name": "QIDI PA12-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_27", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json index 916ec0c62e..b2eaf9d024 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "DQcIvG8x4BpZjdQA", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json index 5b8972ca5b..0644c5ecc0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "XgMFDDBcAUniNXKJ", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json index 594f3bc479..f0f3884f82 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-CF@X-Max 4-Series", + "from": "system", + "setting_id": "BGadPdyFw29nwAsN", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json index 74216c25e7..83cd3e27cb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_30", - "setting_id": "GFSN99", "name": "QIDI PAHT-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_30", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json index aaee1568c4..9025d9735b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "EK8Y1A5fxjCeEYUC", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json index d7f9fa981c..a9891c8028 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "a7EgUbRW0oiTv2h6", + "instantiation": "true", "pressure_advance": [ "0.015" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json index 5e258bd991..08fde22204 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PAHT-GF@X-Max 4-Series", + "from": "system", + "setting_id": "Awxpatb5e911W0ob", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json index e165704936..8a35c7330b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PAHT-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_31", - "setting_id": "GFSN99", "name": "QIDI PAHT-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_31", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json index 49d7ef3d53..52926118e1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "EpS2lRAk9UncJ0Qh", + "instantiation": "true", "pressure_advance": [ "0.042" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json index 516df0be1d..a3ef17c438 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "Jw5thBn1X17HLO9z", + "instantiation": "true", "pressure_advance": [ "0.031" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json index db2702bad3..431f459c4f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSA04", "name": "QIDI PC/ABS-FR @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PC/ABS-FR@X-Max 4-Series", + "from": "system", + "setting_id": "BWOz40OlG1iMj6Vw", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json index d2f1f2a17d..7bffaf11b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PC-ABS-FR @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_34", - "setting_id": "GFSA04", "name": "QIDI PC/ABS-FR@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_34", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json index 9b796c6e84..0ad43d79fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@X-Max 4-Series", + "from": "system", + "setting_id": "LoUbSrp97ASAWCv0", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json index c4a5fa0b68..68aca47d7d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI PEBA 95A @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PEBA 95A@X-Max 4-Series", + "from": "system", + "setting_id": "i1nFTiljEkCDsFuv", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json index 92549cd415..4745e19ad2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PEBA 95A @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_36", - "setting_id": "GFSR98", "name": "QIDI PEBA 95A@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_36", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -94,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json index 8d5e77b997..b0592cad49 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "mT9CQnGe7QsIIhSe", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json index 8734efb172..726c879459 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "wnPptldjH9zMQbkt", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json index 2de3d754b1..5089c84e64 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-CF@X-Max 4-Series", + "from": "system", + "setting_id": "YXvYJNsbPq1I73qT", + "instantiation": "true", "pressure_advance": [ "0.025" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json index daa5d4a2e6..6322639eb3 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_37", - "setting_id": "GFSN99", "name": "QIDI PET-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_37", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json index 32f6d78675..f7b945a118 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "C3LQIPedb6PsEmGT", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json index d7ea6e8146..027407ba38 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "KJ4oFQ5v88asP6iA", + "instantiation": "true", "pressure_advance": [ "0.014" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json index c57d593eb4..7610afd6cc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PET-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PET-GF@X-Max 4-Series", + "from": "system", + "setting_id": "oJkEJM2H0stUQMK3", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json index 86ab634249..f18e2de950 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PET-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_38", - "setting_id": "GFSN99", "name": "QIDI PET-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_38", + "instantiation": "false", "box_temperature_range_high": [ "50" ], @@ -109,4 +108,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json index 8e159abc9a..d0346e4887 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "WEaXpXvyA5hqq0im", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json index f2d9a1132e..59404ca4ca 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "wCCu8057Era4CijT", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json index edd30b44b8..85a4c419d6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "qWr1RECkmgLE4twO", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json index 1d0f5d7bc7..6877fbebf4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Basic@X-Max 4-Series", + "from": "system", + "setting_id": "5cteLaAFOkUiomwZ", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json index 15712e12be..c7261208cc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Basic @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_39", - "setting_id": "GFSG99", "name": "QIDI PETG Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_39", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json index c5f424ba4f..626c97e27a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "l8Gi0pl4dIfwZa7q", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json index 4a09d3ab4b..4bdb48b487 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "OaXBvDWS1KlXsk35", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json index 495eccdd07..89077f8e3c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "UWgxbuEi0PR1Bk9x", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json index 9744d0a32a..582331ef46 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "ocfw23IsmIIFawjn", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json index 333cb9eee7..3050d4abd6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Rapido @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_41", - "setting_id": "GFSG99", "name": "QIDI PETG Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_41", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json index 9f28a06924..d9de99537b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "recYp5LV45rKzUq3", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json index 6b9fca011f..c357a72246 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "IFt5bMViSdnVkDAl", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json index 4f743fbbd4..2f4cf744e8 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "7GJvjbWv3gOXoUvj", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json index 61ebb7d727..96bd404f8d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Tough @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Tough@X-Max 4-Series", + "from": "system", + "setting_id": "YYal7rkOGoxl5M90", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json index a01a6737c7..783925d2b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Tough @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_40", - "setting_id": "GFSG99", "name": "QIDI PETG Tough@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_40", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json index 93c3bc5ce5..510b48ee3f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "xV6r3J8c0VyXevMw", + "instantiation": "true", "filament_max_volumetric_speed": [ "1" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json index 8ca6adb893..862f84d23a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "eSXGagVI0DLddfoG", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json index 0c6bc9a435..187642bff9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "C9cBAgUo3sugnEaq", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json index 98ee712ccc..0ee4a9f1d5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG Translucent@X-Max 4-Series", + "from": "system", + "setting_id": "xG2wymZpv7dQzfVO", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json index b5bfe487d1..21477a006f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG Translucent @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_45", - "setting_id": "GFSG99", "name": "QIDI PETG Translucent@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_45", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json index c316d6cbfa..409410fb13 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "TDyJQysBZx5uUrXh", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json index 5d78154468..21290ab1a2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "etqMwbqNIOEghI9H", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json index 4dbf07bc5e..3dd72e9df6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-CF@X-Max 4-Series", + "from": "system", + "setting_id": "V4quEOjLx2qHAENH", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json index 0cb5a455b5..f3aabb1ef5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_42", - "setting_id": "GFSG99", "name": "QIDI PETG-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_42", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json index 5dc122c03d..4f9abce155 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "DfvA2AssIgxg2koP", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json index 9ef584fbd1..e164733a7a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "w2EZhFm9uYLHfoY0", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json index 0db22e5a46..33f6c88e34 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSG99", "name": "QIDI PETG-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PETG-GF@X-Max 4-Series", + "from": "system", + "setting_id": "NpAT6MflDcl3D2rS", + "instantiation": "true", "pressure_advance": [ "0.04" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json index a486fd2dd0..9b0379ea52 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PETG-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_43", - "setting_id": "GFSG99", "name": "QIDI PETG-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_43", + "instantiation": "false", "box_temperature_range_high": [ "45" ], @@ -100,4 +99,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json index af21513d71..0382b40391 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "pddM6YtMN5SKOSMQ", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json index 5d77581d09..c7ec1fa038 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "umI102qmWo3VoYi2", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json index bb48d4bf11..b30f57044e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "URPeTXoO4r5OBh25", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json index ea62b11058..e4997e03d9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Basic@X-Max 4-Series", + "from": "system", + "setting_id": "ZdqynZo83hNZawRl", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json index 86281c9d0e..2dd1d28dd4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Basic @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_7", - "setting_id": "GFSL99", "name": "QIDI PLA Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_7", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json index 65b094d332..f1c17a69b5 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "h5G8OJslnFi8fmdc", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json index 071b9ebe86..d0eefd0853 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "DgGnTvWpHJFGfJCL", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json index 8903d64309..ae9f6a9d28 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "SZEGJceJHgMEypjt", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json index 3648fd5625..9da229311d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Matte Basic@X-Max 4-Series", + "from": "system", + "setting_id": "AgUB1GEL5WUGnWsQ", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json index 6747f96cbd..dd407427ce 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Matte Basic @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_8", - "setting_id": "GFSL99", "name": "QIDI PLA Matte Basic@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_8", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json index d3101217e5..f012c1c429 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "0OwEIMl2JDQ83ncL", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json index 37917074b0..5b29e0c4fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "cxfsTjUCjfXJJy7O", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json index 5e88003086..2f8d70cb22 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "EM9t6mc5WT25tSIb", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json index 691d43d6ed..66706320b9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "CiU7D3vAVnI4xrwj", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json index 75abd5c197..1e6ea5b8e0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_1", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_1", + "instantiation": "false", "cool_plate_temp_initial_layer": [ "45" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json index dd5ee7b453..90f2a2fa46 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "DhEvGD0RSCSk2d70", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json index 1c9a6bd41b..b8010a20ad 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "EBkHdd7eIzYaFq4Q", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json index 09fc34f134..07c19f4ac3 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "hJTZCUqdro9cM0iU", + "instantiation": "true", "pressure_advance": [ "0.016" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json index fb0cf2f956..84e9dd58d7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Matte@X-Max 4-Series", + "from": "system", + "setting_id": "ZlwpCyFIbmdKAFNg", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json index 98f2367932..95d0666c1d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Matte @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_2", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Matte@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_2", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json index 63c5b5f5ee..3ad4eb9eee 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "CKpTA0DVUTXA8qjd", + "instantiation": "true", "filament_max_volumetric_speed": [ "2" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json index d1164301e4..4eb339e085 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "TJU0fHGhDcWt7GPM", + "instantiation": "true", "pressure_advance": [ "0.038" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json index aaef8ae66e..5699a9eeb4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "JYahu02iwuKpbggG", + "instantiation": "true", "pressure_advance": [ "0.020" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json index 91774f233c..8a35e17880 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Metal@X-Max 4-Series", + "from": "system", + "setting_id": "uhlIGeykRuykDpRI", + "instantiation": "true", "pressure_advance": [ "0.01" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json index febec49d93..0f848e6d5b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Metal @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_3", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Metal@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_3", + "instantiation": "false", "filament_type": [ "PLA" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json index d961d155dc..803447ddbb 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@X-Max 4-Series", + "from": "system", + "setting_id": "TKspEfbNEp1WaWQu", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json index 7d2dd7d4b7..8b41dcc7b6 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA Rapido Silk@X-Max 4-Series", + "from": "system", + "setting_id": "gwb8oIZXCTsucanO", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json index e37ac82116..d5f3d83679 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA Rapido Silk @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_4", - "setting_id": "GFSL99", "name": "QIDI PLA Rapido Silk@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_4", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json index 30b9a59ca0..23ead78cc7 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "zIWB6n4Y6KbWWKuf", + "instantiation": "true", "pressure_advance": [ "0.034" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json index cf67570a51..a9072d35ea 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "CbQ9Va3xYMh6UIyM", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json index f7d7603bc7..b6a9d80d9d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL98", "name": "QIDI PLA-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PLA-CF@X-Max 4-Series", + "from": "system", + "setting_id": "YkwsVaruM5PpT62P", + "instantiation": "true", "filament_max_volumetric_speed": [ "18" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json index 9e1010670d..7331ce75ad 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PLA-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_5", - "setting_id": "GFSL98", "name": "QIDI PLA-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_5", + "instantiation": "false", "additional_cooling_fan_speed": [ "0" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json index ef72f400ab..ae9fd7fecf 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "sVoMm6efHm39fUK1", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json index 9f9c3bc6cb..e7d9d5888d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "y8Xv7Pqorh4ZF8Ww", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json index bda58401be..9308486ff4 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-CF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-CF@X-Max 4-Series", + "from": "system", + "setting_id": "txGnWJtLJxdfF7Ig", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json index cee4f7d64b..c5500bb3c0 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-CF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_44", - "setting_id": "GFSN99", "name": "QIDI PPS-CF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_44", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -115,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json index 9be5e036d0..929396025a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "6R6uV98QWzvGnfdF", + "instantiation": "true", "pressure_advance": [ "0.03" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json index a7f85ed7b8..c0f1a6682f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "GRzzsOhAcBUXfeqv", + "instantiation": "true", "pressure_advance": [ "0.021" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json index bc4261c16b..f6aad50b5f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI PPS-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI PPS-GF@X-Max 4-Series", + "from": "system", + "setting_id": "4C4lvz22vs9gYyoc", + "instantiation": "true", "pressure_advance": [ "0.008" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json index 6839a69d78..318920501f 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI PPS-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_46", - "setting_id": "GFSN99", "name": "QIDI PPS-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_46", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -115,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json index 40308612ab..063f802c12 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "5XqtyE2cFilMZ5oq", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json index 59685e39a0..2f2a79bd3e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "qHgcoY85C9pOvHYc", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json index 408225bc86..4d9c13f466 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PAHT@X-Max 4-Series", + "from": "system", + "setting_id": "8jwLzHbcdONs3hjM", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json index 225926ba0b..2a1eddd8a2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PAHT @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_32", - "setting_id": "GFSN95", "name": "QIDI Support For PAHT@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_32", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json index 4ce23f6fd0..4c28f0ba6b 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "cG5iURd9NCebOAh9", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json index 4e25bbee91..432c3d6f19 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "mm8A9WWVfwTmqaPl", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json index 1bd96134c7..d982419cb2 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI Support For PET/PA@X-Max 4-Series", + "from": "system", + "setting_id": "Z9QN6YE7IWNY5IHb", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json index 3f5838e51b..64fbb1eb22 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI Support For PET-PA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_33", - "setting_id": "GFSN96", "name": "QIDI Support For PET/PA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_33", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -112,4 +111,4 @@ "textured_cool_plate_temp_initial_layer": [ "70" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json index 7445ba2daa..16d91fc786 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "DMbPx29AcKUuqzsv", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json index f254f4f236..5825e7b997 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "NFokjNJ9qsILhMSx", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json index 5ac4ca463c..661591f9fe 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU 95A-HF@X-Max 4-Series", + "from": "system", + "setting_id": "SE0coLF7Tk072e8V", + "instantiation": "true", "nozzle_temperature": [ "220" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json index 5b96c207be..fea6c771ac 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU 95A-HF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_50", - "setting_id": "GFSR99", "name": "QIDI TPU 95A-HF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_50", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -94,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json index 5072fbb5f1..7351937b9c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "Fkhiu19XGkXfBFY2", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json index b9fe006de3..5372eafbca 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-Aero @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-Aero@X-Max 4-Series", + "from": "system", + "setting_id": "ee5KMq5e4UacCHvc", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json index 59e8ce4088..7aeb542fec 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-Aero @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_49", - "setting_id": "GFSR98", "name": "QIDI TPU-Aero@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_49", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -91,4 +90,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json index afb3962165..5de0f35944 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "2c4nAo9FUfwdwYkK", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json index f038d8a130..ec9ba91ae9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "NtAR4vgqjQ8xKSME", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json index 395b6b68e6..894f41389c 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSR99", "name": "QIDI TPU-GF @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI TPU-GF@X-Max 4-Series", + "from": "system", + "setting_id": "MfXlO4PPSwLn750m", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json index 972d21d060..25a934fd19 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI TPU-GF @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_15", - "setting_id": "GFSR99", "name": "QIDI TPU-GF@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_15", + "instantiation": "false", "fan_cooling_layer_time": [ "100" ], @@ -94,4 +93,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json index 0d3cf4be32..980fdec257 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "drEdS5phclobkiNO", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json index 67038751f5..767114a559 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "3XnXQeVV7CjgvnrM", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.6 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json index 6f3c4949fc..a3d32abfa1 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN98", "name": "QIDI UltraPA @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA@X-Max 4-Series", + "from": "system", + "setting_id": "9j84XHFT395HsjDa", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.8 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json index ba039ce341..1194e6c03d 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_24", - "setting_id": "GFSN98", "name": "QIDI UltraPA@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_24", + "instantiation": "false", "box_temperature_range_high": [ "55" ], @@ -97,4 +96,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json index d7d3d02a76..c720797765 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "vPCQfOT2QXyEpBWg", + "instantiation": "true", "compatible_printers": [ "Qidi X-Max 4 0.4 nozzle" ] diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json index af7a151d88..b4db634051 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "NWcMSTjsGdH8otAe", + "instantiation": "true", "pressure_advance": [ "0.022" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json index 6fa041dcf2..2e5e48504a 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25 @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI UltraPA-CF25@X-Max 4-Series", + "from": "system", + "setting_id": "1KMg11UnJuf06LFh", + "instantiation": "true", "pressure_advance": [ "0.02" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json index d4ae5142eb..21629d63c9 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI UltraPA-CF25 @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_26", - "setting_id": "GFSN99", "name": "QIDI UltraPA-CF25@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_26", + "instantiation": "false", "box_temperature_range_high": [ "65" ], @@ -115,4 +114,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json index dbeac86938..81fed9fb7e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "PbuzdsBOxIvSbjXa", + "instantiation": "true", "pressure_advance": [ "0.044" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json index 2ab6d8dc53..b16ee178dc 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "MdLYL9OkYMo0bBue", + "instantiation": "true", "pressure_advance": [ "0.024" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json index ee1aac3a68..a3466d2988 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "filament", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido @Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "QIDI WOOD Rapido@X-Max 4-Series", + "from": "system", + "setting_id": "uJnCn3Hls6d5gHQA", + "instantiation": "true", "pressure_advance": [ "0.012" ], diff --git a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json index 6845869182..d62533d44e 100644 --- a/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json +++ b/resources/profiles/Qidi/filament/X4/QIDI WOOD Rapido @X-Max 4.json @@ -1,11 +1,10 @@ { "type": "filament", - "filament_id": "QD_3_1_6", - "setting_id": "GFSL99", "name": "QIDI WOOD Rapido@X-Max 4-Series", - "from": "system", - "instantiation": "false", "inherits": "fdm_filament_x4_common", + "from": "system", + "filament_id": "QD_3_1_6", + "instantiation": "false", "additional_cooling_fan_speed": [ "100" ], diff --git a/resources/profiles/Qidi/filament/fdm_filament_abs.json b/resources/profiles/Qidi/filament/fdm_filament_abs.json index 31fb0134a0..4783e2162c 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_abs.json +++ b/resources/profiles/Qidi/filament/fdm_filament_abs.json @@ -106,4 +106,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_asa.json b/resources/profiles/Qidi/filament/fdm_filament_asa.json index 9f98db937c..747499b141 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_asa.json +++ b/resources/profiles/Qidi/filament/fdm_filament_asa.json @@ -106,4 +106,4 @@ "textured_cool_plate_temp_initial_layer": [ "80" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_pet.json b/resources/profiles/Qidi/filament/fdm_filament_pet.json index 4096649e98..91c289c722 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_pet.json +++ b/resources/profiles/Qidi/filament/fdm_filament_pet.json @@ -88,4 +88,4 @@ "textured_cool_plate_temp_initial_layer": [ "60" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/filament/fdm_filament_tpu.json b/resources/profiles/Qidi/filament/fdm_filament_tpu.json index d072ae17e2..f261d24923 100644 --- a/resources/profiles/Qidi/filament/fdm_filament_tpu.json +++ b/resources/profiles/Qidi/filament/fdm_filament_tpu.json @@ -97,4 +97,4 @@ "textured_cool_plate_temp_initial_layer": [ "30" ] -} \ No newline at end of file +} diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json index 06a6ade6e0..8b4274e094 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.2 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "wp17yJNXUGPUMl5m", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json index a8ce9a82d6..a97a66730b 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "U5MWs9u3tWvrlVwP", "instantiation": "true", "printer_model": "Qidi Q1 Pro", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json index 6b860faa85..3e2e07d54f 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.6 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "hjj0vhFSNDg1t5V4", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json index df244cebf6..5dea524660 100644 --- a/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q1 Pro 0.8 nozzle", "inherits": "Qidi Q1 Pro 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "nC4aLix0qoflGLDK", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json index 6037e6e4f0..48e0fd8109 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.2 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "xtu7540jmpjIWUjN", "instantiation": "true", "printer_model": "Qidi Q2", "printer_variant": "0.2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json index 6593d851bb..6f3115dbd5 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.4 nozzle", "inherits": "fdm_q_common", "from": "system", - "setting_id": "GM001", + "setting_id": "m9SR0PtzYpYRKgSB", "instantiation": "true", "box_id": "1", "printer_model": "Qidi Q2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json index 5f2ce4b1e3..3962441185 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.6 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "FL8T7GqmzobiHQ4N", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json index c1c7cacbbe..aa479188e9 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2 0.8 nozzle", "inherits": "Qidi Q2 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "DrFTCJ0UXdEP6Zuo", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json index 67d3ae366a..1c0f863f2a 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.2 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "2uuRLbBZvLKjlVli", "instantiation": "true", "printer_model": "Qidi Q2C", "printer_variant": "0.2", diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json index 290ca22210..fbf61a6af9 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.4 nozzle", "inherits": "fdm_q_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xMMjCIf1aSek99az", "instantiation": "true", "box_id": "1", "printer_model": "Qidi Q2C", diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json index 59dfbc7ac2..f1a6bf189e 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.6 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "ThVecKGDfuhKDwQy", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json index 93eb8c7f2d..1a424d3930 100644 --- a/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi Q2C 0.8 nozzle", "inherits": "Qidi Q2C 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "U9m6kWHky7qHk9JL", "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido" diff --git a/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json index 223c2a4407..c82db4969e 100644 --- a/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-CF Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-CF Pro 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WPVxrQhAgGqjT11Q", "instantiation": "true", "printer_model": "Qidi X-CF Pro", "default_print_profile": "0.20mm Standard @Qidi XCFPro", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json index e8329405ed..76577d5f38 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xn5DRJ8PySGduKjg", "instantiation": "true", "printer_model": "Qidi X-Max", "default_print_profile": "0.20mm Standard @Qidi XMax", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json index a0e749b208..d6b10d422d 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.2 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "w9xj6SBvIfjutls6", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json index bcdc7df69a..655b4e32c8 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "6e68LcMl17yl7Ii8", "instantiation": "true", "printer_model": "Qidi X-Max 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json index f13326c9b4..d0d5ac6e04 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.6 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "zminbxV7Q04jQS05", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json index 319c195850..c8042e7e3a 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Max 3 0.8 nozzle", "inherits": "Qidi X-Max 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "gU4KypJqroWrTbDW", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json index 9850a8e59e..b8e618919a 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "GM008", "name": "Qidi X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "QgiXsDkRCjIHtpEa", + "instantiation": "true", "printer_model": "Qidi X-Max 4", "printer_variant": "0.2", "default_filament_profile": [ diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json index 50ebf15682..be754eb338 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.4 nozzle.json @@ -1,11 +1,11 @@ { - "box_id": "3", "type": "machine", - "setting_id": "GM001", "name": "Qidi X-Max 4 0.4 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_machine_x_common", + "from": "system", + "setting_id": "uzcPSO0U1ZQCXXNN", + "instantiation": "true", + "box_id": "3", "printer_model": "Qidi X-Max 4", "gcode_flavor": "klipper", "default_print_profile": "0.20mm Standard @X-Max 4", @@ -79,5 +79,6 @@ "150x150" ], "fan_direction": "left", + "printer_agent": "qidi", "use_3mf": "1" } diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json index d9c9ecaccb..be75b991a3 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "GM008", "name": "Qidi X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "Ict0ZAEiGgYeu7AJ", + "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido @Qidi X-Max 4 0.6 nozzle" ], diff --git a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json index 51a13986a7..6276609a58 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "machine", - "setting_id": "GM008", "name": "Qidi X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "Qidi X-Max 4 0.4 nozzle", + "from": "system", + "setting_id": "pJbz2SGfvEar8cGh", + "instantiation": "true", "default_filament_profile": [ "QIDI PLA Rapido @Qidi X-Max 4 0.8 nozzle" ], diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json index b0c4ab2c21..ed7f0c24a1 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 0.4 nozzle", "inherits": "fdm_qidi_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PNGBV9xF2DA17fi9", "instantiation": "true", "printer_model": "Qidi X-Plus", "default_print_profile": "0.20mm Standard @Qidi XPlus", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json index 6c35a2be84..382cd364fd 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.2 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "yJLmYnXCZesnYsUq", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json index 48bf153e6d..03159944f0 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qupFKHV83yltlRMj", "instantiation": "true", "printer_model": "Qidi X-Plus 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json index 5bcd3c2b32..5af64f9934 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.6 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "vGNyS2kkmz1MEAGt", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json index 2a287ae375..43aa1a2a2b 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 3 0.8 nozzle", "inherits": "Qidi X-Plus 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "ctAgR8JLuCNonuS0", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json index 65295fb21a..b16849ea80 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.2 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "4w9IlgEciz4ITCHN", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json index 1773bf68e3..c4e758a451 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "74ARpc1l6Vh7OYij", "instantiation": "true", "printer_model": "Qidi X-Plus 4", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json index 1a78d06c63..f33fbeb5dc 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.6 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "j7rsk7qDSN6EAkX8", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json index 87a2563d06..e66c252d0f 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Plus 4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Plus 4 0.8 nozzle", "inherits": "Qidi X-Plus 4 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "y7578aVMt4H1aVnW", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json index f7c42a543f..bd5d6b5bba 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.2 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "y61rAluWLMdxyx7v", "instantiation": "true", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json index d70e47b42d..d224dbf971 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.4 nozzle", "inherits": "fdm_qidi_x3_common", "from": "system", - "setting_id": "GM001", + "setting_id": "mS7RmjSwsNzkV6LT", "instantiation": "true", "printer_model": "Qidi X-Smart 3", "gcode_flavor": "klipper", diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json index e50034e64e..255f4d67db 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.6 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "GlQr5TpSBRGEYgp5", "instantiation": "true", "nozzle_diameter": [ "0.6" diff --git a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json index d1033027fe..ef62543341 100644 --- a/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json +++ b/resources/profiles/Qidi/machine/Qidi X-Smart 3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Qidi X-Smart 3 0.8 nozzle", "inherits": "Qidi X-Smart 3 0.4 nozzle", "from": "system", - "setting_id": "GM008", + "setting_id": "GWRUzX26tWoJ5dlM", "instantiation": "true", "nozzle_diameter": [ "0.8" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json index fdfaa4bfae..ceb26e58ea 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "VyI9dXN8nPd56A8s", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json index c5268c02af..5c35ef03e0 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "SmovT7N61GTtr3uW", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json index 122e86ce1e..e36b26b6cd 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "VR7n9vmGIprNfKnO", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json index 2c4141f242..b2e899b5a6 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "eY8kXZlD7W4BjSyx", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json index bf37bc358b..80a602b159 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "3ZkSsl3zkwcYHQ3z", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json index 4ec0632d30..050ff90dc2 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "zWkRrz184BXVRtih", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json index e92b1be4aa..0538eb1d4d 100644 --- a/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.06mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "UqRnMFZdp8Y5pTlU", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json index 242bef4fc1..93be914bd5 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP025", "name": "0.08mm Extra Fine @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "9aEE4QRwpA84OcRn", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json index 069fb122bb..499d8ad5cb 100644 --- a/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.08mm Extra Fine @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP004", "name": "0.08mm Extra Fine @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "669lYZL76CKm2XKo", + "instantiation": "true", "bottom_color_penetration_layers": "7", "bottom_shell_layers": "7", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 1b976d5e5b..67bafe3c23 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "wHapyxEK3bmRU3bE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json index 3da461f14c..4bebf536ff 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "kOCn8EeGy5wWz3yG", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json index d51e654318..279002721b 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "6d0dGb8V3ss1mpBd", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json index 583915c6b9..4b465055ba 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "L5T0e98ytPDI8cCg", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json index 4a7e8162ab..4af731ee24 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "DTEDUVqCaAuWk4Ji", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json index be2e10c673..ef4dc141a6 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "FaI488g48s1TLag2", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json index 579598901b..c48ee650bc 100644 --- a/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.08mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "dI5YH4wbuDaeeG2q", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 9dfd9cb350..d2115db8e6 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "JGdcHQOH8Wfu0dIi", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json index 465c6d2cb0..b2c96c5c6f 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "IJg7bDEPK77J9gMj", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json index 68946b3d01..a13f722753 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "pEbk09LwnOBuDNzw", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json index 6ddf49b292..c2b3264ef5 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "2QtHMFZFhYWo6OHB", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json index 6fa804a64d..beac90a69f 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "RjnFaTzedJN9ebW4", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json index 741251c812..2925bc7b6d 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "gUQwgsr0iCET0r8j", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json index 52e9f92486..932ef6e587 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "R3IAf2iEa4OkqlIJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json index eeebe263c6..2f49cb3ba1 100644 --- a/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.10mm Standard @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP007", "name": "0.10mm Standard @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "ABeYedxpPRk7Mv4k", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json index f763f83e5e..70d97f84ab 100644 --- a/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Balanced Quality @X-Max 4 0.2 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP026", "name": "0.12mm Balanced Quality @X-Max 4 0.2 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "CcdlmUxcXQuw5HGG", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "5", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json index 85d49263ee..fcafc435ad 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q1 Pro", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "TBlCRTd2wMm7TPvA", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json index dcc449dcf5..82d3b35c56 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q2", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "ZeVPKnsvp6XqllNV", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json index 27f0bab701..27094ac576 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi Q2C", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "qo9ZoXKCpbUaCp1w", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json index 856c04af32..7bafb22f06 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.12mm Fine @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json index aab6b90d00..993afe4898 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "iQXhsvqnRSjNDxK1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json index 30f8b1e2d7..897fdb4504 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ls6f3OYdkl6qG2i2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json index 9cdba45865..f7585d90b6 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XMax3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "u5bf5vU7uc7kbez0", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json index 2438a54632..ab371384d3 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4Gy3FqymogmRSeVq", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json index 8ffe084aa3..f6d510b7f6 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "6roOwkuwwPHUq4DC", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json index a279d62cf6..5e4f92b30b 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XPlus4", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "4lB0gsFHO5ptCI9b", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json index 9fe870ab7d..b5f6d7de6f 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Qidi XSmart3", "inherits": "0.12mm Fine @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "GpIwZD9OVYk5sTYx", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json index 0084fbf27d..932a708742 100644 --- a/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.12mm Fine @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP004", "name": "0.12mm Fine @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "LwuGo5RPFaXOdGOP", + "instantiation": "true", "bottom_color_penetration_layers": "5", "bottom_shell_layers": "7", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 63aa0013d4..09bae764bd 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "OSy7OCG3mULyeT1h", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json index e6b16d32c4..4a6308700f 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "EYyWGulCi3yWgUFW", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json index 4dc6b4fa8b..81f86a2fc1 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "EgZaVmXhDmE3Bhfe", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json index 2c58a795dc..dfa4313387 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "CxlV3UafOjSdk3N2", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json index b29ffc5c3f..5c096ce6b4 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "dLaVho8pgyKa0sMN", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json index 98a3a5b822..85562375b6 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "LxzmB4U9M8HJWbF1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json index 6ddd321938..eb0421845a 100644 --- a/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.12mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "MfNFXPmS475vvVnJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json index 5e90185efe..0d5a1ef945 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q1 Pro 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q1 Pro 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "An9GlUfXRQjDEDju", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json index 6ef0f84489..9936bc2624 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q2 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "tEfG0Hv0ZMrrEiY4", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json index 9775e87a99..bdac128d30 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi Q2C 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi Q2C 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "3RD9kvNB5bxCa72A", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json index 72711d4586..80126e883a 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XMax3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XMax3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "URZtguJUTJLbttZG", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json index a650e063b3..b5c17e8699 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XPlus3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "Eji80JJWYpQnRvc0", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json index 25c6e91986..12af9a72e1 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XPlus4 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XPlus4 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "7Bmj1f4J8Di3ZgFJ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json index f56ae57f5a..59584cb982 100644 --- a/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json +++ b/resources/profiles/Qidi/process/0.14mm Standard @Qidi XSmart3 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Standard @Qidi XSmart3 0.2 nozzle", "inherits": "fdm_process_QIDI_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "65oF4hgVr03zD4wt", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.2 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json index e35a6d0fc5..d734a14634 100644 --- a/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Balanced Quality @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP004", "name": "0.16mm Balanced Quality @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "AhcbXuW6Py1OlLEz", + "instantiation": "true", "bottom_color_penetration_layers": "4", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json index 02041a2582..c5dfec5cfa 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q1 Pro", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "tjUELNlfeeNj2m4o", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json index 085ce572b6..bd68715311 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q2", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "DqWxBnPfKbDVm5xk", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json index 0298437063..8d175d3d68 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi Q2C", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "HSsR88yRyghWJ1TH", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json index 1de2e53487..4b5aa16e59 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.16mm Optimal @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json index f48d5ed26f..3f0504ddb3 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "HLcracgY90tIkYwN", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json index 61070ce4e1..7e058d924d 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "6Be5iq2K9VppN5gE", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json index e6c480d5dd..78ae96f169 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XMax3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "EYOQSrbzc4s8nVf1", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json index ee81050de7..7cb52d8cbc 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "R1lqL3bMvvg6NMgD", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json index 96d9121e79..1ebac67ec5 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "yU6LdytjdYq3zLxp", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json index b9c5ab7f20..9608c37cb7 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XPlus4", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "9RfqD5EIb2qDEHwG", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json index 6667c5a3c2..daea662010 100644 --- a/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.16mm Optimal @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Qidi XSmart3", "inherits": "0.16mm Optimal @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "jsi0bTk7zKsHGZ7l", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json index bfdbdba8d0..91d939fec5 100644 --- a/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.16mm Standard @X-Max 4.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP004", "name": "0.16mm Standard @X-Max 4", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "JpZoDa8jLalawI6Q", + "instantiation": "true", "bottom_color_penetration_layers": "4", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json index f76b501cd1..8d281627ea 100644 --- a/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Balanced Quality @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP028", "name": "0.18mm Balanced Quality @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "VRTEmrje8hig7qJc", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 295d6abfba..9fee7b4772 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "hCD4Z5xNnglT9ZwO", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json index faa1178fb5..15eff9c448 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "gaWYHzyVu6g7DthH", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json index 8610039cf5..8cb6ca202a 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "WeCeAciTwyvaEZ2i", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json index 1e83692631..61e4a73759 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "rfKLRQIbqmmr9VuY", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json index 3ef69dbf78..ab8a97e60f 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "AstTwAhJWB1RNAtD", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json index 6b1a27daab..6b571d87c7 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "nByRfDx5kPDEsxHR", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json index b245764627..1791268da3 100644 --- a/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.18mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "LZP68vcJ3ior6fu8", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json index 1bf7a8d7ae..5c879d83ab 100644 --- a/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Balanced Strength @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "GP004", "name": "0.20mm Balanced Strength @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "oM72sw3mW85qL45A", "instantiation": "true", "bottom_shell_layers": "4", "bridge_flow": "1", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json index e866275aad..f54045892d 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q1 Pro", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "GqQo8WvzL7PTNnrE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json index 83ba4866ee..352980fb04 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q2", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "Q175N1utLZoyzIIQ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json index c678eddaed..cefd2ebce9 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi Q2C", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "SeoFcLaGzOCqGth4", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json index 838c7785fb..1d64f53814 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.20mm Standard @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "layer_height": "0.2", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json index cae0bca0c0..2866bac399 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WqYCTn83Ln11dpYC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json index 73d92a8aad..74cc5c814f 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "2lJE6tuEIL22NBc2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json index e03be2291f..1acbfc7a28 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XMax3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "sIfFEkAzwFYJgKNl", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json index 25d0f427ad..4dd2935975 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MDu610revkMyZze1", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json index 12017df6ba..601b464ce3 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "6ynTOo1btrjCKmZs", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json index e665238e96..7c5b4a78f7 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XPlus4", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "kH75l7UIdcAxOOgA", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json index a0a695758e..d8f2f9d5d9 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Qidi XSmart3", "inherits": "0.20mm Standard @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "21X0CiLS1BXhYWMX", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json index 676e27178a..4bbea2ec6d 100644 --- a/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.20mm Standard @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "GP004", "name": "0.20mm Standard @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "2TsaNedKJlTmULOi", "instantiation": "true", "bridge_flow": "1", "default_acceleration": [ diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json index a97468dd08..53429a10d1 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Quality @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP032", "name": "0.24mm Balanced Quality @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "kye0mwcHVzDEfide", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json index 14f011a0da..646cf814e4 100644 --- a/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Balanced Strength @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP029", "name": "0.24mm Balanced Strength @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "FjwVknjxJnYTs3uo", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json index 8f95753b1d..368162ecd2 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q1 Pro", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "MLP8z9FkcBZAhPwx", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json index 29693297b0..0c7e031dae 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q2", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "TlZRosXmpNb1uKfA", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json index f93a750a33..58bfb81b3c 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi Q2C", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "41f12jYvpuuNfNDJ", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json index c4319985ce..787113e6c6 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.24mm Draft @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json index 532c24f53f..7224f0046f 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XMax3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "Et2lexPQDsBSlENk", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json index 1e357604ae..ee8af3d38f 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XPlus3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "mjVabwzJ6PEHO6ED", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json index f8da8dbba6..e6a84ed205 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XPlus4", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "MzfWh23yUvJtOIQd", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json index 3a21c504b7..d1d86da64b 100644 --- a/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.24mm Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Qidi XSmart3", "inherits": "0.24mm Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "AV4bqi6Ker7yn25c", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 7270a07810..6b7f99124a 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "csR0CenJRS43wpdB", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json index d1d569c45a..7f55f9f2bd 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "8z3aXCOy8e3oC3QE", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json index d3c0e2b287..d1fd30b9a9 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "H478oP0v8bM1t9Q7", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json index 915136ff22..0429a50926 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "N7qQBwcpoAiZReXs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json index bcabe35ae0..bee7e5e53e 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "alx5Qam4AuBl5DG9", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json index a819f0287d..3ff9d89888 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "dYgWEx444tswebB1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json index 3dc2b027d1..a577144149 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "0Mm3kiTwXUFtqqTL", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json index 9a8cf03346..baa7992c68 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "146sFuMkzi2r8fw0", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json index 1b33a5db95..c72510c336 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "Qga4PB8UZbs0Jc8X", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json index 44db923117..a4570f0f83 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "gCM4UXwKTScpWbyJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json index b313c11c8a..5ca56aa6b7 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "Dm5lhbr5ZQj4i9FL", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json index 959dd722bf..8ba8e79cf8 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "onACg8ns5ye1Hhzo", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json index 3ad46687e6..905d5e0e8e 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "1TsEJ5RSU3NR5bDA", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json index e309211e0a..f87f6cf296 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "in5mDmZ6CLNJYDkY", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json index 83c43af55d..3aeb4203e4 100644 --- a/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json +++ b/resources/profiles/Qidi/process/0.24mm Standard @X-Max 4.json @@ -1,9 +1,9 @@ { "type": "process", - "setting_id": "GP004", "name": "0.24mm Standard @X-Max 4", - "from": "system", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "fJge4LaVkm7mmi3g", "instantiation": "true", "bridge_flow": "1", "default_acceleration": [ diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json index 752802d615..c6e0b75c76 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q1 Pro", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "o9SQqZdG3BoviCAx", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json index 1cf2127af9..1aa6974b57 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q2", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QyCGFIxjMVprexDS", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json index 0c12c542e1..7a5d9d09aa 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi Q2C", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "e0Mbd6kjHG3Tc7Zm", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json index 2a4a1939d7..f29ef5d037 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QfqK00Ymn3ss9qtU", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json index 779e51ce5c..1eca5fc51b 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YomLQtTbuHeQfrip", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json index 16f0898e67..529864b872 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XMax3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "M8F4v1shW7h3QyzC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json index 35163be785..a9026d4c86 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "g73f1lIj9eH0MZjW", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json index 22314df1d6..7767956bb8 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tAV9akzom1NHWPNJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json index eea82f1af6..75bf45cef6 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XPlus4", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QvbM5h9XXrvsmdX6", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json index e1cd57fe1e..4990f0d9f0 100644 --- a/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.25mm Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Qidi XSmart3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "lag9UwMZ0uLbg6P2", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json index cf6472d86e..1261f59a8d 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q1 Pro", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "SW988y6xTwSW831g", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json index 0964ac574c..bcf38a1c04 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q2", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "IRMypwv4rf2Zjcrs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json index 97068a080b..c7baf2750d 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi Q2C", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "DtkwJnXBbuO4SjLE", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json index e455467d5d..555f8f19d0 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi X3.json @@ -3,7 +3,6 @@ "name": "0.28mm Extra Draft @Qidi X3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", "instantiation": "false", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json index 08177a08bb..bf1b2ef2dc 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XMax3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "hqByZ3REsEhyRfwW", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json index c19fab5739..a7af9c56b6 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XPlus3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "rSubfL83h5MExIUO", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json index 4f94c6f1f3..d2a14fc70e 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XPlus4", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "IxyD9ZcdowyAXi8X", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json index b18e9625ef..b9bc34751f 100644 --- a/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.28mm Extra Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Qidi XSmart3", "inherits": "0.28mm Extra Draft @Qidi X3", "from": "system", - "setting_id": "GP004", + "setting_id": "VLb2IzAOIpbM6wuW", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.4 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json index abebe5a095..aa4f96eb58 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q1 Pro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q1 Pro", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D5MjSxw3jZYf2Nja", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json index f9371fd9bc..d9ea812425 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q2", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xV59wYWbrstGW5c5", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json index b8dd180907..cc97b6c1b8 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi Q2C.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi Q2C", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "96u0HvMr7kqleKBl", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json index 1e9e0b2206..d5237c4d37 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XCFPro.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XCFPro", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gR2HeEDYyNSjL2K7", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json index 186f136f67..a0dba6c233 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XMax", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UA6RvPAtMfb2ryBL", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json index 70acdbf026..d4abe3eeb6 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XMax3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XMax3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "QECWa3aznaYRN11W", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json index c7ce549965..72754c9145 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus", "inherits": "fdm_process_qidi_common", "from": "system", - "setting_id": "GP004", + "setting_id": "jjrl5R7LpUXnxA8d", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json index fa9c82940b..732f5aa155 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "TPJTTWCWFbrVv0bx", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json index ef03cf5818..9825272cce 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XPlus4.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XPlus4", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PypLIvy1do9mp98q", "instantiation": "true", "adaptive_layer_height": "1", "enable_arc_fitting": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json index cc645f7de0..4e5d2e235c 100644 --- a/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json +++ b/resources/profiles/Qidi/process/0.30mm Extra Draft @Qidi XSmart3.json @@ -3,7 +3,7 @@ "name": "0.30mm Extra Draft @Qidi XSmart3", "inherits": "fdm_process_qidi_x3_common", "from": "system", - "setting_id": "GP004", + "setting_id": "gzZakw9J3bzbD5D8", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 657bbbfe7c..eb8d3e72ad 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "zquvywFmiOGOI17T", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json index bd9ee71567..54ef98e96f 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "FSHTvNeoKVlPnziL", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json index 5dd12327e2..389540eaa1 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "b2spm8zaLXU6dgfr", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json index b43696adb4..32ce87cee4 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "fpTfhEAfkYksV8lc", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json index da3e50c178..ab211ba7d3 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "YTP7FTiKvCNeipFr", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json index 1edbff6128..f975074236 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "GhRs59zOs2E1pzag", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json index 6821bf30d1..afb310ec41 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "VvE1m2qOpvBdJPCF", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json index 40d4f263c6..7622dd4325 100644 --- a/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.30mm Standard @X-Max 4 0.6 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP010", "name": "0.30mm Standard @X-Max 4 0.6 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "TOsqMoGa5GvywEWI", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json index b633301ece..052f88bb4a 100644 --- a/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Balanced Strength @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP033", "name": "0.32mm Balanced Strength @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "U4yjBHhJwsHTIDHc", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "50" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json index e1fedb6a52..a96a689c56 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "TlseLAEYdLZPwov8", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json index 18b4140901..f013efc4c6 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "ah90wdTj814SHn9P", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json index 7e88f2ffcc..e04d0315c0 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "TMAmqLzfSzEP81Bs", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json index 7ded79cd7f..130df08422 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "dx9RAldsGOusV2mF", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json index 46735d3608..440fb6633c 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "YI2UHfwzoQPCBMVY", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json index 65c7e6afe5..26e6916d47 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "NLxo3f8QKWKBCvnm", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json index 4edf7093ef..429632509f 100644 --- a/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.32mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "ulFw76eRXbwTKdlH", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json index bb7f42d0e7..bac2c2e1de 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "rKEmZfckeM0dvoaT", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json index 08d81ac0d0..02ac4f719f 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "CUY6FJ2v3E4zfJUh", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json index dee6aa3264..b9e785fa40 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "3KNn8FQt2UXdU72U", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json index 8b5e11d4de..8573104a48 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "9qiHoI8IcQnS7rC3", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json index ce9c779269..3163012ff0 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "qKo2vmYRg6Q2spTN", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json index ae58405ac3..e15e63783f 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "A5KuXOdX0zNp8dRO", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json index 10fae7d9b0..728c392d5b 100644 --- a/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.36mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "ZaDJ1ztIamvZV5yJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json index e70aa11e3b..cf3b8725ac 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "MJWRjYowI85IBd00", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json index 6fa20e8bd2..5605e3d6b0 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "cJ7om61RCJGxCy24", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json index 37774a4066..2883581dfa 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "CV9g1mNus68OKZc3", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json index 6c01403a33..086792a522 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "bYMWDwFr9J94kGYw", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json index c019eda98d..6ee4b61e95 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "Ka6m8i4j0e2gDOse", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json index 6270b04007..b7295fb5b3 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "uVymBJgWqIqOfd6A", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json index e7b67e6fb6..7499fe5214 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "Riv86lzC8OxN8OfY", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json index 5c88771ffe..4aa16d0e45 100644 --- a/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.40mm Standard @X-Max 4 0.8 nozzle.json @@ -1,10 +1,10 @@ { "type": "process", - "setting_id": "GP009", "name": "0.40mm Standard @X-Max 4 0.8 nozzle", - "from": "system", - "instantiation": "true", "inherits": "fdm_process_n_common", + "from": "system", + "setting_id": "qT32mSKhstIeb8R2", + "instantiation": "true", "bridge_flow": "1", "bridge_speed": [ "30" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json index 2b8b6a68d2..3908e3a47f 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q1 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q1 Pro 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "dj2uawVn2Hpsp2XH", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json index fc8a5bb982..01af474724 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q2 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "1C9tqsJaScQr4ry1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json index 1925f97754..003c4602a3 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi Q2C 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi Q2C 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "MVF9jg2lGipnPD2S", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json index fe2bd3a422..761988fc41 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XMax3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XMax3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "iG7Y0wLegu5jEkuI", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json index 3d9fca3501..a659004253 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XPlus3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "jr6cb1mLJQs3MirG", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json index 5f656841a6..be9ebc4738 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XPlus4 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XPlus4 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "pwWTe4QnGQO792jP", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json index c6769277e1..c242bdbe48 100644 --- a/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json +++ b/resources/profiles/Qidi/process/0.42mm Standard @Qidi XSmart3 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Qidi XSmart3 0.6 nozzle", "inherits": "fdm_process_QIDI_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "0A780mPAY5fBh6qi", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.6 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json index d2cd0fa8ee..2283ef8e9d 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "EtK4hyAHmcleF3wC", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json index 4330cde086..d5c36c1d40 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "xeZk3fiBagmXMryi", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json index dbda2989d7..308e0d7690 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "BEO2NBgrDUkGExg0", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json index 20000be1d8..20bde18f84 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "NXT7JIAxOtF1zkNJ", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json index 01f55479ec..4ecbf08e72 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "rKeC1SaKQ2TEESsE", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json index b4e0b096e9..269e33d9fd 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "0djEc8TnuAUhIFD5", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json index 68e453d344..72d0e17761 100644 --- a/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.48mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "90Hs1AMDGlJJxbTl", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json index 184a3943d5..0fc92f63ef 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q1 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q1 Pro 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "ylEXwLNVsM1wcLLc", "instantiation": "true", "compatible_printers": [ "Qidi Q1 Pro 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json index 49f4a13199..6f2645f031 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q2 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "KIB3JhygERFQzV6J", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json index e55b71b02d..5e0ff53696 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi Q2C 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi Q2C 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "yoOgRHYtYal4vBl1", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json index 8246eeb7d9..b77395d80d 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XMax3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XMax3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "y2YD74ZXEnlo5HBH", "instantiation": "true", "compatible_printers": [ "Qidi X-Max 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json index 21d92dea68..b4eb582e15 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XPlus3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Pki6rGX3YtiCeaWW", "instantiation": "true", "compatible_printers": [ "Qidi X-Plus 3 0.8 nozzle" diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json index e1597efacb..4939a36033 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XPlus4 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XPlus4 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Qe5Adl1Z9ijqbBF5", "instantiation": "true", "enable_arc_fitting": "0", "compatible_printers": [ diff --git a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json index 2ff39af3b4..fc801e4176 100644 --- a/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json +++ b/resources/profiles/Qidi/process/0.56mm Standard @Qidi XSmart3 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Qidi XSmart3 0.8 nozzle", "inherits": "fdm_process_QIDI_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "Um59bZdJjlPWqc1u", "instantiation": "true", "compatible_printers": [ "Qidi X-Smart 3 0.8 nozzle" diff --git a/resources/profiles/RH3D.json b/resources/profiles/RH3D.json index bb36f17f39..fc8aa57484 100644 --- a/resources/profiles/RH3D.json +++ b/resources/profiles/RH3D.json @@ -1,6 +1,6 @@ { "name": "RH3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "RH3D - printer profiles", "machine_model_list": [ diff --git a/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json index c5be301992..1c9cf63e43 100644 --- a/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic ABS @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic ABS @E3NG v1.2S", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "", + "setting_id": "VNx6rdTN7OIIXVpC", "filament_id": "Generic ABS @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json index a1e0f47203..329de9f04d 100644 --- a/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic ASA @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic ASA @E3NG v1.2S", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "", + "setting_id": "LK5M8q58HY86k9aX", "filament_id": "Generic ASA @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json index 764dcbc56a..49cff221dd 100644 --- a/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PCCF @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PCCF @E3NG v1.2S", "inherits": "fdm_filament_pccf", "from": "system", - "setting_id": "", + "setting_id": "fnnja8VlKHWpuOjG", "filament_id": "Generic PCCF @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json index 1ec0ab6e0b..6bd5e940fe 100644 --- a/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PETG @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PETG @E3NG v1.2S", "inherits": "fdm_filament_petg", "from": "system", - "setting_id": "", + "setting_id": "IS3z7f5wnjsvv8vC", "filament_id": "Generic PETG @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json index 1a05dd45eb..86e514521c 100644 --- a/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic PLA @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic PLA @E3NG v1.2S", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "", + "setting_id": "b1tuMVA0Hh27wYQH", "filament_id": "Generic PLA @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json b/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json index 9d8f4e5806..7c308efd71 100644 --- a/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json +++ b/resources/profiles/RH3D/filament/Generic TPU @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "Generic TPU @E3NG v1.2S", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "", + "setting_id": "kaTatels2H01rgeJ", "filament_id": "Generic TPU @E3NG v1.2S", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json index 1188233e41..cc2c23cfd2 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.2 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "gPm0noz1896R4GyO", "instantiation": "true", "default_print_profile": "0.10mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json index db7cf06ff7..7c3e5e837f 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.3 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "UQ67wIWTbJiUiPoy", "instantiation": "true", "default_print_profile": "0.15mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json index 75ca1cc024..a0ee4cae85 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.4 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "Ngr03MsSBAkmFnld", "instantiation": "true", "default_print_profile": "0.20mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json index 20fe8ff321..12131e5f84 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.5 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "GSUiav9EILSf8XF4", "instantiation": "true", "default_print_profile": "0.20mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json index 79c634b0e2..c8288a67bf 100644 --- a/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json +++ b/resources/profiles/RH3D/machine/E3NG v1.2S - 0.6 nozzle.json @@ -4,6 +4,7 @@ "printer_model": "E3NG v1.2S", "inherits": "fdm_common_E3NG v1.2S", "from": "system", + "setting_id": "jVNTcmQwQIwJMfFd", "instantiation": "true", "default_print_profile": "0.25mm Standard @E3NG v1.2S", "nozzle_diameter": [ diff --git a/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json index 1ef660d7bc..dcaecb6b0b 100644 --- a/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.10mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2010", + "setting_id": "YhKounYUzB4FB9Em", "instantiation": "true", "layer_height": "0.1", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json index f86b5dc672..deaded91ab 100644 --- a/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.15mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2015", + "setting_id": "jYPd3BedSG1oG6S3", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json index 3ee578666d..bca60006c4 100644 --- a/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Fast @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Fast @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG3020", + "setting_id": "S7z7EwSYYbjVWRK0", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json index fff6c6f917..45be150670 100644 --- a/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Slow @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Slow @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG1020", + "setting_id": "JH4jITLGT8tbtnu1", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json index e500e5a579..92ddcd9109 100644 --- a/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.20mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2020", + "setting_id": "XgaEHNWBsBQoPjbP", "instantiation": "true", "compatible_printers": [ "E3NG v1.2S - 0.3 nozzle", diff --git a/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json index 0494e6b334..bf910f676a 100644 --- a/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.25mm Fast @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.25mm Fast @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG3025", + "setting_id": "QqkHiZPjk3QWyKKN", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json b/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json index ea583d86e8..5ebe88f3fe 100644 --- a/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json +++ b/resources/profiles/RH3D/process/0.25mm Standard @E3NG v1.2S.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard @E3NG v1.2S", "inherits": "process_common_E3NG v1.2S", "from": "system", - "setting_id": "NG2025", + "setting_id": "2dPD9ljxZ8hknXZu", "instantiation": "true", "layer_height": "0.25", "initial_layer_print_height": "0.25", diff --git a/resources/profiles/Raise3D.json b/resources/profiles/Raise3D.json index 0dcae032af..b224025f6d 100644 --- a/resources/profiles/Raise3D.json +++ b/resources/profiles/Raise3D.json @@ -1,7 +1,7 @@ { "name": "Raise3D", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Raise3D configurations", "machine_model_list": [ diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json index e5422620ba..660abd55d4 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Dual).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Dual)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oY7vk6130jo4CbGr", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json index e4b5f94ea1..433dddfff7 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Left).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Left)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GkEfeB8achuLpp8c", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json index 4359978cc8..2cbbe2fc49 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 0.4 nozzle (Right).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 0.4 nozzle (Right)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "t9qyWnYRI4gCffnM", "instantiation": "true", "printer_model": "Raise3D Pro3", "default_print_profile": "0.20mm Standard @Raise3D Pro3", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json index 38d3057a6b..566911b4c6 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Dual).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Dual)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EaDsMQaW3zwoD8am", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json index 30fc384658..daaef6abdb 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Left).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Left)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "os4fCVfJmKYPG02M", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json index 9fd75dd37b..1e842a07ae 100644 --- a/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json +++ b/resources/profiles/Raise3D/machine/Raise3D Pro3 Plus 0.4 nozzle (Right).json @@ -3,7 +3,7 @@ "name": "Raise3D Pro3 Plus 0.4 nozzle (Right)", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "jYxNL8Vdara9s74e", "instantiation": "true", "printer_model": "Raise3D Pro3 Plus", "default_print_profile": "0.20mm Standard @Raise3D Pro3Plus", diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json index d872351399..30d3f1cc61 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mlb2242fJxu26dnV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json index 78c2c45a3a..35e21d67e7 100644 --- a/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.10mm Fine @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.10mm Fine @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "u9vhB9uigwzA2mli", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json index 4370978fa7..bdcccf16fb 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ADqZgpU4D612lSnf", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json index ca6f4533e6..7f88195b88 100644 --- a/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.20mm Standard @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "GhwsrGu8tZexCrOy", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json index 8bfb9faa68..91e24b6ebf 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Raise3D Pro3", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "p0KdJttce5WMx30N", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json index 53cacd33a4..d2d299ca64 100644 --- a/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json +++ b/resources/profiles/Raise3D/process/0.25mm Draft @Raise3D Pro3Plus.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @Raise3D Pro3Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tgWE9Ph7i1F7OweA", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Ratrig.json b/resources/profiles/Ratrig.json index e725cfa5f0..ce68226513 100644 --- a/resources/profiles/Ratrig.json +++ b/resources/profiles/Ratrig.json @@ -1,6 +1,6 @@ { "name": "RatRig", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "RatRig configurations", "machine_model_list": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json index b32b24d08e..8f601dba61 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle ABS.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oE39mwr3PCpeBxZN", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json index 5a76fd6449..a99d58ae34 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle ASA.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GGkbwdd79jAXnwuf", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json index c04d6a9bad..38db026fe4 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PCTG.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PCTG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "uCKZhFAPvEa2wKnA", "filament_id": "GFC99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json index 32669ad140..e1cf036ece 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PETG.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "bf3YMNVRSE1i1E8N", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json index fe1aa92d9a..d734dce4b7 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle PLA.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dyG3zLuhX2qe8XJP", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json b/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json index 209267d6be..11dae068e0 100644 --- a/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json +++ b/resources/profiles/Ratrig/filament/RatRig BigNozzle TPU.json @@ -3,7 +3,7 @@ "name": "RatRig BigNozzle TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wLJ3X05Jnz1EqeOI", "filament_id": "GFL99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic ABS.json b/resources/profiles/Ratrig/filament/RatRig Generic ABS.json index b68d945a54..b55a944e54 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic ABS.json @@ -3,7 +3,7 @@ "name": "RatRig Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ovLAzbygn6JHqGk0", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic ASA.json b/resources/profiles/Ratrig/filament/RatRig Generic ASA.json index a3ccedf348..5cee3f262c 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic ASA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic ASA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "pmxazFQdx5Oa7Pke", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json b/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json index 367ca886e6..31c95abede 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZRrsXKPk8pY4yrwd", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PA.json b/resources/profiles/Ratrig/filament/RatRig Generic PA.json index 1f809a9cbe..52bfb6ea3c 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "fVGEV9t4w06LODgD", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PC.json b/resources/profiles/Ratrig/filament/RatRig Generic PC.json index d75dbe364d..9f9cab8e38 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PC.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PC.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XQ5VEJXu5X0L3Lbn", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json b/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json index d22ccc6855..89031567bf 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PCTG.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PCTG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFCA04", + "setting_id": "SG4Gt87iS1ql3s8S", "filament_id": "GFC99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PETG.json b/resources/profiles/Ratrig/filament/RatRig Generic PETG.json index a04d8b79d4..e64dfbe2f4 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PETG.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "u6diBMbHW2nnKKTm", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json b/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json index 9b353cb6c8..2ce8c792e9 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Vwn22LQBChxWysmU", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PLA.json b/resources/profiles/Ratrig/filament/RatRig Generic PLA.json index 33e7bf244b..91bc503ed8 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PLA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PLA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IY6qXVoQqhsKuMzP", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic PVA.json b/resources/profiles/Ratrig/filament/RatRig Generic PVA.json index d4cb42f12b..69fa53a0f5 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic PVA.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic PVA.json @@ -3,7 +3,7 @@ "name": "RatRig Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9uJ3Rr6kn9jZZxPO", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig Generic TPU.json b/resources/profiles/Ratrig/filament/RatRig Generic TPU.json index 06313b3883..3e1594501d 100644 --- a/resources/profiles/Ratrig/filament/RatRig Generic TPU.json +++ b/resources/profiles/Ratrig/filament/RatRig Generic TPU.json @@ -3,7 +3,7 @@ "name": "RatRig Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "zWOn983v5s2ujssj", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json b/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json index c176c9ecc4..5fa20b8246 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil ABS.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AzjpmeEXD6enWOG6", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json index 1ec0328c7f..73a5920ee8 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG CF.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil PETG CF", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "o2dP6EwooarikQ8R", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json index 083714acc7..170b1e0c99 100644 --- a/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json +++ b/resources/profiles/Ratrig/filament/RatRig PunkFil PETG.json @@ -3,7 +3,7 @@ "name": "RatRig PunkFil PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "e1QXBJqpkhHxXor1", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json index 2bf9f1d0c8..4b8763e94b 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Cast 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM006", + "setting_id": "zw1aJTiQagqE7y8t", "instantiation": "true", "printer_model": "RatRig V-Cast", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json index 185bfac3bc..d5d949aa23 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Cast 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Cast 0.6 nozzle", "inherits": "RatRig V-Cast 0.4 nozzle", "from": "system", - "setting_id": "GM007", + "setting_id": "fl0b82S0kojy84FO", "instantiation": "true", "printer_model": "RatRig V-Cast", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json index c8c2fa70cb..a78ec92600 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 200 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 200 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dRoCwCRQlESZEBHP", "instantiation": "true", "printer_model": "RatRig V-Core 3 200", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json index 26c0ef78f2..513e11c40b 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "afAHM28k1WelCmhS", "instantiation": "true", "printer_model": "RatRig V-Core 3 300", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json index 9ede863b9e..8fd4961f77 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "RlOSy5hWiFV0JBoI", "instantiation": "true", "printer_model": "RatRig V-Core 3 400", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json index 03e929b9b1..ea30ded4fe 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 3 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 3 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "vEKAbNmYuiN6TIoY", "instantiation": "true", "printer_model": "RatRig V-Core 3 500", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json index e906bb727f..d0582dbb37 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jZZeImztqtZ2beVR", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json index ee9eca9348..5d7eb0f671 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "EIMR9Lg3FR2WCYZt", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json index 3c351f93c1..685e993137 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "zAWVjiIWDCpIbfQh", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json index 910d48227a..b6ef786ec4 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "feTeGuFkLzWFFSC4", "instantiation": "true", "printer_model": "RatRig V-Core 4 300", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json index c8fab315c2..49b5493614 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Zt57FD6LclrHhmIl", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json index 695041620b..d008905900 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "gVT9DS5ubrpidL8s", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json index 229d82b793..c41f2b583d 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "oTOJ5ZwBIx5DzSws", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json index fb810dde7a..f80890c099 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DQ7Lzsuk87A4qtav", "instantiation": "true", "printer_model": "RatRig V-Core 4 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json index 09c787aa5f..21e946fa09 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "JonAECdElNUFk8kY", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json index 22cabbbcd1..f1d3d68e10 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ojiLFY6VE2q7XFyj", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json index 28db595bb6..c46162faae 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "rbcdthpkuZJjegBG", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json index f33e87b627..d6d1efa7e6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "VMKIyofeEpPvUvkY", "instantiation": "true", "printer_model": "RatRig V-Core 4 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json index a7de48d6a8..cc4b18e0a0 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Fm7vQtx26w3gQasV", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json index 9fadbb9887..30f0b9a2b5 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "kYSU7lS52QnLsENZ", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json index d4e11cf124..c1e457efaf 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "YeFrZxf0ViFX9Cev", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json index cb22577944..83afbf0276 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "koeU6C6OZgt564Vh", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 300", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json index 2890c0484a..209001647a 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U1GzZ1xEJoKikV2M", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json index 2ed978b121..a54260bfe6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "2YkExWLDiNgfaQ42", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json index 771b90aa09..7fcb7732fe 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "nyUAHhq0xzj895Tz", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json index 7f6369b50f..7383d39b4e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "chIhXvlrxHRC4iYX", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json index 889bbaf7a1..3a66f4e0a1 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "cYzjo0wbUrsP36B6", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.4", 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 2419a4eab4..3755b80f9a 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 @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jEVBZyA3q76qtGlN", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json index 798b52e4c9..3fa6761033 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 HYBRID 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "qafEhxcKOuqwCAnS", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.6", 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 a613589bd7..cce0908909 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 @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 HYBRID 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "mAkZY3zGttPx2rJC", "instantiation": "true", "printer_model": "RatRig V-Core 4 HYBRID 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json index 00706db281..9e3f45189c 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "XC0EEeT3bHfdESU5", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json index 2ba6ec41c5..51856c4305 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ozXdsIH12aO1R2cE", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json index 8740934a6e..f255b58824 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DU30ls7PdOGk4gfV", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json index 7e9a54e7bb..cca40b5979 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "3aUYRFyizH5L4bi1", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json index 05b6e64b15..4b49fc36a7 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "RBNnLdbAos83EoOO", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json index 75233bd7db..5e9a55e6e6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ySg7OYQ47ymqGI7C", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json index b1a64821bf..69848e1743 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "hpSvqmwqi0WcB1Lw", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json index 6395e73548..0018a5d250 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "6Io49wsqhx5KveJL", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json index 51fd3b4505..902ba9a044 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "K4SzXXbr9IiAaZTn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json index 1071ff2b3d..873385c476 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "tgimQgUMlhc2Rovn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json index fdb613739d..b9ba5860ea 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "iCfPSdhM5ssOAm8j", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json index 440c97fe70..83cac78c49 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 300 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "0Jj892NbeUdQdo5w", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 300 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json index 843f3e4352..8d4683eeed 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "SkfTLkSJIas3vGto", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json index cf520b3870..cc30cfd0dc 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "i1m3uzI8y5JVVqGj", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json index c203e2ad84..e960f29742 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "HnNyKaPvBwZyhnyd", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json index 7918b98de2..568f9ab12f 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "1AgUp0jMuaAaL5No", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json index ba45e0e189..8837dd0937 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "JHZZbE0dzrFuFPq5", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json index 1bc3a6ed97..be7c731a19 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "P1IiiDu0cOwWsc8x", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json index e6c29f8aa6..f0af89ed75 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Q0wK0lWrnKOkzRJd", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json index 637407c1d6..2079c3f39e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "TrB5VRyh9Kv4cfNy", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json index 62003a335b..034fbc4477 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "L5yxjGCk5pXyfZvG", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json index e69449de79..2e5d00ff9f 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "HuG8WIefsXSaPWBT", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json index ad25fc39ff..00c1a3d339 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U4ORSoWyw8RvMl4j", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json index 523d2cc31a..668450c706 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 400 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "qSQ40QfTz3nB0CHy", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 400 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json index 2440cbe513..e117439353 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "KTlvpdLBX4Xk36IV", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json index d417d4a15d..87096aa4e7 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "cnn3LX6k2Zwc1BPb", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json index 48302d67af..61903d2dc6 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "10Sz1NAc8XXVecWn", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json index 782a1bb263..275241f8bf 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "eHLp63bQMbXPzFud", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json index 204e0526c9..1ecc8bb035 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "U9BkUclxugXR3Rjl", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json index 6d930b2a84..08ca62e3bb 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jM0hc88CGvWdXN0E", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json index bd5e1c5cb1..3f7c43607e 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "xJu7SZVyLYi8NqiC", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json index be6fd1ab3a..ab1a259368 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 COPY MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "XIn3qGyk3FuTbrI6", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 COPY MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json index 25d8a1de91..f4d6d57d1b 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "GBrf7SJAuv8wVd3Q", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.4", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json index 69a738ce1b..5c89275a42 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "SarxN1BGqgLWh7eA", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.5", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json index 40690e9d94..1b8edc1400 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ulJpVpVNE5e7GkAa", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.6", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json index 17ad1b490c..12ca6a0a2a 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Core 4 IDEX 500 MIRROR MODE 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "lM7NsVIUaeGItP3p", "instantiation": "true", "printer_model": "RatRig V-Core 4 IDEX 500 MIRROR MODE", "printer_variant": "0.8", diff --git a/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json b/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json index 22157691c2..55ed3a5c29 100644 --- a/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json +++ b/resources/profiles/Ratrig/machine/RatRig V-Minion 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "RatRig V-Minion 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM005", + "setting_id": "mgAo9e4ATAbrc501", "instantiation": "true", "printer_model": "RatRig V-Minion", "nozzle_diameter": [ diff --git a/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json b/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json index bd132e8238..1b23ea6fce 100644 --- a/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json +++ b/resources/profiles/Ratrig/process/0.08mm Extra Fine @RatRig.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP001", + "setting_id": "pFYVim163lsFSX0D", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json b/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json index 17428a52ea..b028ff81f3 100644 --- a/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json +++ b/resources/profiles/Ratrig/process/0.12mm Fine @RatRig.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP002", + "setting_id": "UANYUNR1YOP2pEuf", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json b/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json index c4ed4c0f3e..023eb76d27 100644 --- a/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json +++ b/resources/profiles/Ratrig/process/0.15mm Optimal @RatRig.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP003", + "setting_id": "YgZV4bv6TCuFhWtu", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json index c96d05eb0d..ea9f77ac0d 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Pdf4f97hGijZXuas", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json index 5119fdfea4..6aba341a96 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "SEzbMHHEV1x08xMy", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json index 1a92bdd6b8..c118ca89f2 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "fqWtveKgqxZmrGSJ", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json index 0e91af7f0b..65eeee97df 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "YA8LczRpsriOk9Mx", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json index 6591aab474..eb6b244106 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Utt26igxK6y0mr6n", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json index cc392aa6fe..5fdd6a58d2 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "iJlDMQYfiYwFRVjb", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json index 9b3671e28b..b15e9b55e5 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "ELxmcKk3ZheIjH7w", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json index 046c60a0da..1866217023 100644 --- a/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.20mm Quality @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.20mm Quality @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "ZrdpzkEsWzdoempj", "instantiation": "true", "layer_height": "0.2", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json b/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json index e80f832a0a..aff2aee558 100644 --- a/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json +++ b/resources/profiles/Ratrig/process/0.20mm Standard @RatRig.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP005", + "setting_id": "yY0DqowupfGG1k09", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json b/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json index 9c723ed44c..84759ac313 100644 --- a/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json +++ b/resources/profiles/Ratrig/process/0.24mm Draft @RatRig.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Dk8mFWH72xFDVr4y", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json index aecc2aed2d..dec0a39ac6 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "OwAt7QA6sIIV6JlY", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json index 1bffc46e51..d7ce908119 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "CthLcwlUTaDqashr", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json index d3f090580a..37be04b259 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "Pynt8qNEfnOwT6kl", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json index 7389463279..fd56723838 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5IdYaGV4wf1jFyak", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json index 38d99e3266..e321700703 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "rdBtU5RO5D6pzhge", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json index 5131e3178f..4cea4aa814 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6CTXZj8xTvollGn5", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json index dd2b95f782..adabc148b1 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "1wbCE5pyd4026pF6", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json index 1d8dd9f3a4..83e4732e31 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "QewPLFguHFvRj1zZ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json index f1f65dffb8..aabaff04c1 100644 --- a/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Quality Speed @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "CetGK2sff2XEL8nG", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json index 45292feeae..ccdc9bc4d7 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6B8a2M21GJTOdf0I", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json index 180630376f..9b840d38d7 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "CV4E5Hq4euoxH3JU", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json index 33860ab257..0ee1bb2be0 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "9o13tW7GmiwcpFhJ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json index b8aa13387c..522a6f7064 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.4", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "e1jJGcI4fKQlASlj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json index 53b2fb6eb9..a313fb4312 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.5", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "6pi2wcqVWOpChaTj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json index 4c28e400d8..c142faf989 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "ACjty1HYFLvec9iJ", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json index de712a1df9..4a3ff2331d 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "H184xduBA87wa2nV", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json index 45dcaacf18..2de7ddd670 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.4.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.4", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "rLwSHQ6THenRlPGE", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json index 438f77a9a9..d759205a39 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.5.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.5", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "qKvzk6lxGtkyh8xj", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json index 1a1b18730a..26ff611a39 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "XeK5xWih29TGjbaB", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json index 44788c9261..7b4b61541e 100644 --- a/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.25mm Speed @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.25mm Speed @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "JOEKYofmYCZwOEsb", "instantiation": "true", "layer_height": "0.25", "inital_layer_height": "0.3", diff --git a/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json b/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json index b53e75abeb..550d8def7a 100644 --- a/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json +++ b/resources/profiles/Ratrig/process/0.28mm Extra Draft @RatRig.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @RatRig", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP007", + "setting_id": "ZlZYOPn2xevDhqqX", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json index e95000f7f6..5c458598e2 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "oN6C4F2VigA8N7VJ", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json index fd8d43999a..8afc99c376 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.6", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "DIl1kpyNUwkRH5p7", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json index 3fb5483a39..c95853e12b 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "mhx9g5KuXHny7lq1", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json index 94c3ea26e4..61aaf2ceb0 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.6.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 IDEX 0.6", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "79QFiwaJoX9xyvY3", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json index 64aa2220ba..8264c57498 100644 --- a/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.30mm Big @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.30mm Big @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "wIugsFoqjKZYg8xt", "instantiation": "true", "layer_height": "0.3", "inital_layer_height": "0.35", diff --git a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json index ff26f97fe7..19b33bdd03 100644 --- a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json +++ b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Big @RatRig V-Core 4 HYBRID 0.8", "inherits": "fdm_process_ratrig_common", "from": "system", - "setting_id": "GP006", + "setting_id": "mfVelgueIks2dvOe", "instantiation": "true", "layer_height": "0.35", "inital_layer_height": "0.4", diff --git a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json index 194ddbb106..bcf5430d59 100644 --- a/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json +++ b/resources/profiles/Ratrig/process/0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Big @RatRig V-Core 4 IDEX 0.8", "inherits": "fdm_process_ratrig_idex", "from": "system", - "setting_id": "GP006", + "setting_id": "s9huigsf4EhjTLlI", "instantiation": "true", "layer_height": "0.35", "inital_layer_height": "0.4", diff --git a/resources/profiles/RolohaunDesign.json b/resources/profiles/RolohaunDesign.json index facbdebda4..398937c127 100644 --- a/resources/profiles/RolohaunDesign.json +++ b/resources/profiles/RolohaunDesign.json @@ -1,6 +1,6 @@ { "name": "RolohaunDesign", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "RolohaunDesign Printer Profiles", "machine_model_list": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json index 6ecb0aa953..f5c095918f 100644 --- a/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rolohaun Delta Flyer Refit 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "fdm_common_Rook MK1 LDO", "from": "system", "instantiation": "true", - "setting_id": "RDFR_01", + "setting_id": "xRvK2POOU8rx7dLH", "bed_custom_model": "", "printer_structure": "delta", "deretraction_speed": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json index 92b53a7b6c..4d8236f145 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.2 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m002", + "setting_id": "K8SXHwlgTJueqpJW", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json index 73d0ca8e24..3d6fdae5fb 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.4 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m001", + "setting_id": "Cjk1sVs9DlCj0cPn", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json index 0be51f76be..b06f15a0f1 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.6 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m003", + "setting_id": "oNrdJlECRezgEBHo", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json index b2746011d5..6ce0a24146 100644 --- a/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json +++ b/resources/profiles/RolohaunDesign/machine/Rook MK1 LDO 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Rook MK1 LDO 0.8 nozzle", "inherits": "fdm_common_Rook MK1 LDO", "from": "system", - "setting_id": "RKMK1_m004", + "setting_id": "lZbTSRsqG3kyxuPk", "instantiation": "true", "printer_model": "Rook MK1 LDO", "nozzle_diameter": [ diff --git a/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json index a8dde6db15..0d5d674ba7 100644 --- a/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.08mm Extra Fine @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p001", + "setting_id": "psVsJD9Jnpd0RnBs", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json index 055fb71c52..2c1aa53de1 100644 --- a/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.08mm Super Fine @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.08mm Super Fine @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "qo9LXYSjv6tWk6S0", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json index 18674953bc..705475590e 100644 --- a/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.10mm Fine @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.10mm Fine @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "hTj8I2VII6MjoFbi", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json index a9bd4113a0..74ceacdba1 100644 --- a/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.12mm Fine @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p002", + "setting_id": "uKLOmFBVxZVJ4GKa", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json index 1fc9986bd9..ed27b2ccaf 100644 --- a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "STHJGWZhEnlKlUDJ", "instantiation": "true", "initial_layer_infill_speed": "100", "initial_layer_speed": "80", diff --git a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json index fe5c1bfba8..63a79ee125 100644 --- a/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.16mm Optimal @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p003", + "setting_id": "wwBqYpuVeGfUCVI1", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json index 6f3f3ace62..dffe6ede58 100644 --- a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "6s26EDFbCGrKKXR1", "instantiation": "true", "initial_layer_infill_speed": "100", "initial_layer_speed": "80", diff --git a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json index f4f082e287..4e924db0a3 100644 --- a/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.20mm Standard @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p004", + "setting_id": "lHNZvPBX9GpKHQbP", "instantiation": "true", "layer_height": "0.2", "compatible_printers": [ diff --git a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json index de29e2f8db..a84a1b3ecd 100644 --- a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "R6nBYX14zgFazfcX", "instantiation": "true", "bottom_shell_layers": "2", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json index b2809808f8..59c596f9ba 100644 --- a/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.24mm Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p005", + "setting_id": "LLPz2SPlOyjn2lFe", "instantiation": "true", "support_top_z_distance": "0.2", "support_bottom_z_distance": "0.2", diff --git a/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json index c9eb785a69..4f47a023d7 100644 --- a/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.28mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p006", + "setting_id": "0bTLmQwpois4ep9l", "instantiation": "true", "layer_height": "0.28", "initial_layer_print_height": "0.2", diff --git a/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json index 2e6fce9374..73ac6fc90b 100644 --- a/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.28mm Rough Draft @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.28mm Rough Draft @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "NuhxjJV8xicvogSR", "instantiation": "true", "bottom_shell_layers": "2", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json b/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json index 898226fca5..ec53914336 100644 --- a/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json +++ b/resources/profiles/RolohaunDesign/process/0.2mm Vase Mode @Rolohaun Delta Flyer Refit.json @@ -3,6 +3,7 @@ "name": "0.2mm Vase Mode @Delta Flyer Refit", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", + "setting_id": "V5m4C9uPTfM2RE32", "instantiation": "true", "bottom_shell_layers": "4", "initial_layer_infill_speed": "100", diff --git a/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json index ea24185186..588b9ea5ea 100644 --- a/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.32mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p007", + "setting_id": "zVWxuoXKwagdUGAg", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json index bcbe142922..e0041034f5 100644 --- a/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.40mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p008", + "setting_id": "Nc1bu4Ak29leE5lW", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json b/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json index 7fae44fa93..b9cc308c59 100644 --- a/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json +++ b/resources/profiles/RolohaunDesign/process/0.56mm Extra Draft @Rook MK1 LDO.json @@ -3,7 +3,7 @@ "name": "0.56mm Standard @Rook MK1 LDO", "inherits": "fdm_process_Rook MK1 LDO_common", "from": "system", - "setting_id": "RKMK1_p009", + "setting_id": "ef6UadpqZIEFat9y", "instantiation": "true", "support_top_z_distance": "0.24", "support_bottom_z_distance": "0.24", diff --git a/resources/profiles/SecKit.json b/resources/profiles/SecKit.json index 700b063359..85d373fbc9 100644 --- a/resources/profiles/SecKit.json +++ b/resources/profiles/SecKit.json @@ -1,6 +1,6 @@ { "name": "SecKit", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "SecKit configurations", "machine_model_list": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic ABS.json b/resources/profiles/SecKit/filament/SecKit Generic ABS.json index c735e6b99e..bac9887f55 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic ABS.json +++ b/resources/profiles/SecKit/filament/SecKit Generic ABS.json @@ -3,7 +3,7 @@ "name": "SecKit Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "gUrHIkj9GExYWVjh", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic ASA.json b/resources/profiles/SecKit/filament/SecKit Generic ASA.json index d322fa0c4b..c9fdf2bcfd 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic ASA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic ASA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "UwVF6VlxRg0IW9hB", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json b/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json index 7c2353e0a2..569b174f1b 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "0K4eQ2fbaasNdvsP", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PA.json b/resources/profiles/SecKit/filament/SecKit Generic PA.json index a71bb34c5a..bf70f90120 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "GlgeZsK719DDjaPo", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PC.json b/resources/profiles/SecKit/filament/SecKit Generic PC.json index 1fe8e39aec..c76b39ec41 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PC.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PC.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "8DHToBaqE7g5VNvN", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PETG.json b/resources/profiles/SecKit/filament/SecKit Generic PETG.json index e89e7aac7f..af3bd585ab 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PETG.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PETG.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "mx45AbmzGkqYMSsW", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json b/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json index 76d44e8c1d..6767fdc897 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "dPLE2CXMpmdtyiZK", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PLA.json b/resources/profiles/SecKit/filament/SecKit Generic PLA.json index f99afbb24d..62e073f2f2 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PLA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PLA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "7cpNIx6GWUp95tLN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic PVA.json b/resources/profiles/SecKit/filament/SecKit Generic PVA.json index 0576871a83..6060d85690 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic PVA.json +++ b/resources/profiles/SecKit/filament/SecKit Generic PVA.json @@ -3,7 +3,7 @@ "name": "SecKit Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "jiHEC4uCmPQLINlO", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/SecKit/filament/SecKit Generic TPU.json b/resources/profiles/SecKit/filament/SecKit Generic TPU.json index c8a96e9ac9..25befa8256 100644 --- a/resources/profiles/SecKit/filament/SecKit Generic TPU.json +++ b/resources/profiles/SecKit/filament/SecKit Generic TPU.json @@ -3,7 +3,7 @@ "name": "SecKit Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "b5GGHwZlR5oOx4eH", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json b/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json index 91daf82af5..a3ed82bebd 100644 --- a/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json +++ b/resources/profiles/SecKit/machine/SecKit Go3 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "SecKit Go3 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "hViFP3EQalfD5Y5t", "instantiation": "true", "printer_model": "Seckit Go3", "nozzle_diameter": [ diff --git a/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json b/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json index ee18ca2765..7ed2890596 100644 --- a/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json +++ b/resources/profiles/SecKit/machine/SecKit SK-Tank 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "SecKit SK-Tank 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qfCyVyaTuCJ4gkr3", "instantiation": "true", "printer_model": "SecKit SK-Tank", "nozzle_diameter": [ diff --git a/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json b/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json index 1c7095ea83..8608d5b854 100644 --- a/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json +++ b/resources/profiles/SecKit/process/0.08mm Extra Fine @SecKit.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP001", + "setting_id": "VfCCYbSSzln0oSff", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json b/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json index 9436e87dc4..3b1517d59a 100644 --- a/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json +++ b/resources/profiles/SecKit/process/0.12mm Fine @SecKit.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP002", + "setting_id": "Zi0gBMjF2KAsaCba", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json b/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json index a0a84cf9ef..cc895a050b 100644 --- a/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json +++ b/resources/profiles/SecKit/process/0.15mm Optimal @SecKit.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP003", + "setting_id": "vmlaA0Yl7JdiHglT", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json b/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json index 29ceeda8af..ccefdc5874 100644 --- a/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json +++ b/resources/profiles/SecKit/process/0.20mm Standard @SecKit.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP005", + "setting_id": "Swsol0Fii1Io8I6P", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json b/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json index 6f622da3cd..c753aaba59 100644 --- a/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json +++ b/resources/profiles/SecKit/process/0.24mm Draft @SecKit.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5ga86b5bk6nh508d", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json b/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json index a081190a6d..0b18cd116c 100644 --- a/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json +++ b/resources/profiles/SecKit/process/0.28mm Extra Draft @SecKit.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP007", + "setting_id": "1wYO0wik3Wk2o6sV", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json b/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json index ede91c6f8b..0a11a3c64f 100644 --- a/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json +++ b/resources/profiles/SecKit/process/0.30mm Fast @SecKit.json @@ -3,7 +3,7 @@ "name": "0.30mm Fast @SecKit", "inherits": "fdm_process_seckit_common", "from": "system", - "setting_id": "GP008", + "setting_id": "rQBlAmuWJckqJJPS", "instantiation": "true", "layer_height": "0.3", "top_surface_line_width": "0.5", diff --git a/resources/profiles/SeeMeCNC.json b/resources/profiles/SeeMeCNC.json index f6ab729c56..e3674f8709 100644 --- a/resources/profiles/SeeMeCNC.json +++ b/resources/profiles/SeeMeCNC.json @@ -1,6 +1,6 @@ { "name": "SeeMeCNC", - "version": "2.4.0.01", + "version": "2.4.0.02", "force_update": "1", "description": "SeeMeCNC configurations - Full profile set for Artemis, BOSSdelta, and RostockMAX printers", "machine_model_list": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json index 4d5632808e..f00df71cfd 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC ABS", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "jvmDQqgLy8vboFHw", "filament_id": "SMCFB001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json index fc18902f8c..d5df31d0aa 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "FOSiDadyHyp8WKTb", "filament_id": "SMCFB00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json index c5282e22ac..6cdf1850d4 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "XzvEoqhK0cx7JieM", "filament_id": "SMCFB00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json index a846adb3ea..8bdd0003fc 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "RbmLGSWPaVvl0NNr", "filament_id": "SMCFB00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json index 0a67bf1a70..0d060b85f3 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_ABS_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "DTcAxACOOtdvD43R", "filament_id": "SMCFB00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json index 9339556f57..25b2f84b7a 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA-CF.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PA-CF", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "xaySfHS4rdZcWsqA", "filament_id": "SMCFN001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json index c3a5468f3b..fcde530598 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "jf0puhp8kCuwL3jt", "filament_id": "SMCFN00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json index 10b6af9709..0439f58952 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "c3gXbtFjJn4aK7pL", "filament_id": "SMCFN00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json index 3e76407687..d14e219656 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "7sDIfUAs3Ftv7uUD", "filament_id": "SMCFN00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json index feba74446b..aa760ceef2 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PA_CF_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "nr7CBE99WoHXy4Dw", "filament_id": "SMCFN00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json index 70d3e5c421..f9cc79bcfd 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG-CF.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PETG-CF", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "UDoa6miFYGnCLiHc", "filament_id": "SMCFG002", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json index 5d8e43e8a4..a186501902 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC PETG", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "wf9uGLhJeqRDZVR7", "filament_id": "SMCFG001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json index c1839d39a3..bb37dfdbd4 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "kqCiusj7FAzbmnro", "filament_id": "SMCFG00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json index d61dbfce4f..a0dab684b8 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "85J1rc8KxOc7v2cF", "filament_id": "SMCFG00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json index ddf7d5b3d5..3285e22d73 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "QI1p2Hi76cWlfRwC", "filament_id": "SMCFG00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json index b02bb4f641..ac5455210d 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "Njx1ZHccqqJzQ7AQ", "filament_id": "SMCFG00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json index 8d3e4fe368..01ef0f3562 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "ulVlpkQVbvkSpmli", "filament_id": "SMCFG00204" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json index 4cbca3867d..0b3d526c6b 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "jK9Gr2VDAnOKrkPW", "filament_id": "SMCFG00205" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json index c85fdc196e..e2172b6707 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "Gn57oqh6nMBO651i", "filament_id": "SMCFG00207" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json index 07d11ec271..1fabd765d4 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PETG_CF_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "nzRT23S6xk1bxbDJ", "filament_id": "SMCFG00210" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json index 58d3c485c2..8e9cc3c8d3 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA.json @@ -2,6 +2,7 @@ "type": "filament", "name": "SeeMeCNC PLA", "from": "System", + "setting_id": "hdn5fZars58kvjwQ", "filament_id": "SMCFL001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json index fa7a453816..9d216c2e7c 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_4mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "k3oaCcJHHyAuRi6J", "filament_id": "SMCFL00104" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json index 66ae6ee1ec..1f8a314c20 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_5mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "CcINW4WttiNsKvjf", "filament_id": "SMCFL00105" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json index eba11caedc..ea51621992 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_0_7mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "pOuc1eXMLLOBqHuz", "filament_id": "SMCFL00107" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json index 0e7f9484a2..b720b87de2 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_PLA_1_0mm.json @@ -60,5 +60,6 @@ "filament_deretraction_speed": [ "35" ], + "setting_id": "jSvqBk6R6HAaTRxk", "filament_id": "SMCFL00110" } diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json index 357073d7f2..791da98e23 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU.json @@ -3,6 +3,7 @@ "name": "SeeMeCNC TPU", "inherits": "SeeMeCNC filament base", "from": "System", + "setting_id": "vsEH0aZOKiLat0hH", "filament_id": "SMCFU001", "instantiation": "true", "filament_settings_id": [ diff --git a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json index 4dfd27f7f2..dea7bb7820 100644 --- a/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json +++ b/resources/profiles/SeeMeCNC/filament/SeeMeCNC_TPU_0_7mm.json @@ -46,5 +46,6 @@ "filament_deretraction_speed": [ "30" ], + "setting_id": "4LUkyKiKFb96OeC0", "filament_id": "SMCFU00107" } diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json index e5522c8d6a..4230dbffa0 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.4 nozzle", "from": "System", + "setting_id": "sHym4CslP0KOSKI1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json index a6433b74a7..4ed8e34f2a 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.5 nozzle", "from": "System", + "setting_id": "T7UbsCeU4Spvljh1", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json index 9694739ef7..7e457fd6d4 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 0.7 nozzle", "from": "System", + "setting_id": "H2RRgI7dIfsMQ3rs", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json index f75c2fe3e3..e6beab9437 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_Artemis_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC Artemis 1.0 nozzle", "from": "System", + "setting_id": "cIMj4tl0mO4HaWLx", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json index df8a2e67fc..b3c0d66457 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.4 nozzle", "from": "System", + "setting_id": "bKDY3mKmFHGblw2f", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json index 8e90d45e20..3171ed1d16 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.5 nozzle", "from": "System", + "setting_id": "bbCgpQrgYeNm7xmM", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json index ee0d003dc1..60aea06e56 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 0.7 nozzle", "from": "System", + "setting_id": "wOVFwA2YO9lmLsUl", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json index 30ae87529e..52131a4df3 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0505_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0505 1.0 nozzle", "from": "System", + "setting_id": "VntbaD5J3Z2V53xT", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json index d4a71c9235..d9bbabfd46 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.4 nozzle", "from": "System", + "setting_id": "4HquBCNYnIarQDsn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json index dd273e580c..48054cbc25 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.5 nozzle", "from": "System", + "setting_id": "dqRikHfYjnYGOwny", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json index 3af4be169f..60653bd138 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 0.7 nozzle", "from": "System", + "setting_id": "UnxDqeIJHopmYKe7", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json index 8afd2fadb0..29aab8351f 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0510_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0510 1.0 nozzle", "from": "System", + "setting_id": "Ej8fGYSyvxZhotWJ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json index f6902620ff..ca0c54be9b 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.4 nozzle", "from": "System", + "setting_id": "5yqhnwvAafqWtWsv", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json index 7f560fa01e..e66ebbb170 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.5 nozzle", "from": "System", + "setting_id": "axWBBdCAXW5CXaKr", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json index 6bdd076593..33db8f630d 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 0.7 nozzle", "from": "System", + "setting_id": "Tb8laqV8TCI1qx9w", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json index 4be11a95c3..2b9d48d170 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta500_0521_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 500 0521 1.0 nozzle", "from": "System", + "setting_id": "IB6YBnzQFlrlk4LO", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json index c4bb9d2b50..765cbd623f 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.4 nozzle", "from": "System", + "setting_id": "bBNCF2OJnObaQjUG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json index 4b8857cf6c..20c6446d2e 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.5 nozzle", "from": "System", + "setting_id": "KBZADRGFxUw1Eid7", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json index 83ecea436a..fc91f14b28 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 0.7 nozzle", "from": "System", + "setting_id": "I8EEuRh2zT6CFuqG", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json index 30697c7a47..01ab5d5a2a 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_BOSSdelta_300_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC BOSSdelta 300 1.0 nozzle", "from": "System", + "setting_id": "yxOpcVyr6daKB02x", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json index 4b31e617d3..2b0a6a71ae 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.4 nozzle", "from": "System", + "setting_id": "bUvbKp9xiJEdV37g", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json index 6b4228c6e2..b2ba2a38aa 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.5 nozzle", "from": "System", + "setting_id": "YKAdnr8IlQPpfIBg", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json index e1978066c4..fae10fc27c 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 0.7 nozzle", "from": "System", + "setting_id": "7hwa9LgYIF4lNiRe", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json index 9f960a72bf..f65c62f6fe 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v3.2_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v3.2 1.0 nozzle", "from": "System", + "setting_id": "tN9vDLuDGWY20khZ", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json index 58f7047482..38c29c2462 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_4mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.4 nozzle", "from": "System", + "setting_id": "yFgIq1rgfud4b25W", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json index 1fcca5dcaa..f54bc1bcb6 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_5mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.5 nozzle", "from": "System", + "setting_id": "bqOjdOdOT50Z95OU", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json index 82b83a92ab..51cef23180 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_0_7mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 0.7 nozzle", "from": "System", + "setting_id": "7mKOD4UYFgtVkZkp", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", diff --git a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json index 97437e4db9..0342bbae65 100644 --- a/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json +++ b/resources/profiles/SeeMeCNC/machine/SeeMeCNC_RostockMAX_v4_1_0mm.json @@ -2,6 +2,7 @@ "type": "machine", "name": "SeeMeCNC RostockMAX v4 1.0 nozzle", "from": "System", + "setting_id": "Rpn6GMVVSAtHh1pn", "instantiation": "true", "adaptive_bed_mesh_margin": "0", "auxiliary_fan": "0", 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 59fdf8b4d4..9413f61c24 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "lRLSXXlhvBZiym5H", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC Artemis 0.4", "compatible_printers": [ 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 54ff8c4cfc..103821afc4 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "8UHWj45Ju6DBVEiz", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ 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 f6ff1e0eaa..6997d3190f 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "kfgfYC8P7YLjle7s", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ 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 0e9b78fec8..ac67c6ae12 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "aw8wmD40IkOSueRa", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ 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 0fb934b173..2ab3b76c56 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "FNKsLPBbllfHM9OH", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ 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 722900d15a..4b0214b224 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "czhxhpUVrpbh9uYm", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ 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 d5ff363f41..b595a2940c 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 @@ -3,6 +3,7 @@ "name": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "cmDo2eFA1dkBt2rp", "instantiation": "true", "print_settings_id": "0.16mm Fine @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ 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 e9ba63d758..c135345133 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 @@ -3,6 +3,7 @@ "name": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "EBAqFfGspXHLfMUV", "instantiation": "true", "print_settings_id": "0.20mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ 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 9a994b34e9..bffdc9c8a9 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "avw7c6fWePolMUGA", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC Artemis 0.5", "compatible_printers": [ 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 29ec2fcccc..322b92686b 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "5QBBUO1BqVF62Jg8", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ 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 7a06648b70..3b04e790b1 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "Ot7AHQURVsF6ctIN", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ 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 1cccbb0879..2d59ae3097 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "2mSgDRrq6sDUArv5", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ 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 8caf4662a5..ddda1c6d38 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "sAyOY3I8dnPUgm1g", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ 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 bfd219cafe..b9d33423d3 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "DLMnI7xqZA6QqcDm", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ 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 72c3c03d3c..2095755f50 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 @@ -3,6 +3,7 @@ "name": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "9bMl35ZRi15DTNsC", "instantiation": "true", "print_settings_id": "0.20mm Fine @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ 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 58a956afb0..db63d4961e 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "oTTigiCvxuoOIApc", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC Artemis 0.4", "compatible_printers": [ 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 2b5ec0b981..87489547f8 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "fGlhxiOPIFvrAml1", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ 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 dea9f97a0a..2c3c268489 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "g13rqAKvHJWuyxhW", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ 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 839798606f..3e8978893e 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "hFfaMeYJVbSeK9zH", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ 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 39d43802aa..d90d718495 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "ph4qAa2OnN4uJxjg", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ 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 beae714df1..1ae6836f4e 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "MTzWLsGAZh4y17OV", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ 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 89121d0b22..3c0d1505d1 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 @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "sFyuuCdsPp69Ckxr", "instantiation": "true", "print_settings_id": "0.20mm Standard @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ 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 45d2cf9bc4..d6765879a2 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "YDcjk60OSZ86WXWs", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC Artemis 0.4", "compatible_printers": [ 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 54ab031eb6..085e35b56a 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "5dRFKTUmDsicB6ek", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ 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 726548fa59..27e9936d82 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "4bOED9gJAdzFTfSb", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ 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 08bfb0718c..1f32217404 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "xO0f101uzAnECqVQ", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ 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 84062b27b2..bb8e223e66 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "Rstm9vPtFdjlUezr", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ 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 1122bd434d..85314020c6 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "b8BV2HBygyauaGAR", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ 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 0957883565..04800e469f 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 @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "G7GmikRbpBSBtboj", "instantiation": "true", "print_settings_id": "0.24mm Draft @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ 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 9cde389a76..006296c695 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "PeixFPMtrsaC0onY", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC Artemis 0.5", "compatible_printers": [ 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 4ee43fa848..1f1acdb9be 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "jLL0riqC6Gm2f7Wa", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ 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 3e45e8c135..7d4e8f9dd6 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "XfNO1L7o79z8xoAC", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ 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 2a452cf12d..3abf8bb14d 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "WDKnhKF4EiGxrPL8", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ 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 1c6f27066e..44bddcdbf8 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "KMoZ75aJMurX3w5V", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ 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 9db35caeeb..0244948291 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "EqQ3HoUv2VJcqAGs", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ 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 43b89a1f0f..f7712b36eb 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 @@ -3,6 +3,7 @@ "name": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "cCJnuaFLDmJlbtlp", "instantiation": "true", "print_settings_id": "0.25mm Standard @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ 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 9b7f5faab3..fde74a7075 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "yf6fjsV00krs4DQd", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC Artemis 0.4", "compatible_printers": [ 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 a32fd76251..5510864bca 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "5VtgzliNcaaA2kSJ", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 300 0.4", "compatible_printers": [ 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 3953a3cf0b..19771e8b55 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "iiAwvfKyNKF8uFON", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.4", "compatible_printers": [ 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 520339a468..96ca8ec908 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "sy4g8XWhOIsHvLpn", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.4", "compatible_printers": [ 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 45f511d8d2..221971cabb 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "8xHOYf0qy8Cau01u", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.4", "compatible_printers": [ 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 6d98c33ecf..027850a195 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "skqqooGjamGLj1X1", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.4", "compatible_printers": [ 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 060c6f53dc..e5dea3cafd 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 @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4", "inherits": "SeeMeCNC process base 0.4mm", "from": "System", + "setting_id": "ZbwYCmTlpEepEuz2", "instantiation": "true", "print_settings_id": "0.28mm Extra Draft @SeeMeCNC RostockMAX v4 0.4", "compatible_printers": [ 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 a1b19f5ea1..b5a3f30182 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "tojtxbX9V7VxvOn1", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 300b7f937a..98633a37a5 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "YRGRvsR9WmgB9h3N", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 2ecb7a3c62..4d28f64120 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "i1bM8P559vdpd0g0", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 2258d81780..da5310b47e 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "TjryxLkkSbWW7rqU", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 5274340a76..6ee106705d 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "yWbwiqm0yQ5gdevX", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 8013c5c078..c693935409 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "FAFPoZQrA52dqNHq", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 c3891193e1..e5203bbd60 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 @@ -3,6 +3,7 @@ "name": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "MIu8Co2r9dteb7fv", "instantiation": "true", "print_settings_id": "0.28mm Fine @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 d4cd38e4ba..5d1aa574e0 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "q9eeA1z91Z91b54C", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC Artemis 0.5", "compatible_printers": [ 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 5298c5b562..3dd84f94be 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "GRwydwat29NtvJcu", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ 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 48951ffd35..087a8b7975 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "bObPc9LZ6KaY2Lq6", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ 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 b3ef8ce53c..2c6e2b6523 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "xk5POWitsMpdwSFh", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ 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 ced2c2d066..8a67697ae3 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "sUoAYJbwCQd1QXwy", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ 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 22bb5f6c84..67c048daef 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "MrPIaywnOzzVkJ7P", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ 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 53315ac757..43126a8a97 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 @@ -3,6 +3,7 @@ "name": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "XF7cEpiYnb531NqB", "instantiation": "true", "print_settings_id": "0.30mm Draft @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ 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 b9c9206ecc..57bab57335 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "w5A5ehucWjJ9o3SK", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 c4c7d4dbac..673dc45673 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "BToZhSD6RhGOPgbx", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 20be7c24c3..52a941f497 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "atr8n8cHRTqQAMAe", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 755203a633..baf0abf3a7 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "IJA8xHZRAKeLW35l", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 3b7968e49c..4bec206a73 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "Y6VWHulWl2zAA1sD", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 475fc95f8d..dc38aeba16 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "FkyXJNtuOfbwGdnR", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 48f2ba89e9..9348fd7fd1 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 @@ -3,6 +3,7 @@ "name": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "UKalc41QhG1Zf2X6", "instantiation": "true", "print_settings_id": "0.30mm TPU Solid @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 3bc587bd08..7c2229dce4 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "lTkiTMhZVZHzVFcb", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC Artemis 0.5", "compatible_printers": [ 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 b1e84f5ca0..38ffe80feb 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "GtPC4hbdXRgtXxUB", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 300 0.5", "compatible_printers": [ 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 87b691b8e3..6feeb3b43b 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "bqF8NBit2Aelrndm", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.5", "compatible_printers": [ 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 668fcc58a9..47b742bb13 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "Vco2tMdFZVqumrkA", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.5", "compatible_printers": [ 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 151c6f482a..9c85abfe1d 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "tOmxG1mhMOMzTw9a", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.5", "compatible_printers": [ 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 963c5b89a8..2864c9dff4 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "eH08c6L1xoWQoaGr", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.5", "compatible_printers": [ 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 9c3352c9ea..4711158b57 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 @@ -3,6 +3,7 @@ "name": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5", "inherits": "SeeMeCNC process base 0.5mm", "from": "System", + "setting_id": "kiupe9B4drddQqk8", "instantiation": "true", "print_settings_id": "0.35mm Extra Draft @SeeMeCNC RostockMAX v4 0.5", "compatible_printers": [ 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 fb085c8314..dbc50110f5 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "DpyLLAbWQymvvT5P", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 7a94c51526..142f7f3cb0 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "3IhpOE5Jo5dJ82q0", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 cda46e438a..aebc95b138 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "MetQljvblaFIHRJd", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 c65ba4b197..005c4dac51 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "UyddOAaUgKZenOpe", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 526f477689..ebf46efb41 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "ZHGpnfU58MEVHq0g", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 573966e17b..e458a682de 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "x7Rg9G0ekgzdMnpb", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 e7ef24194a..01cdd6dce3 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 @@ -3,6 +3,7 @@ "name": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "XDyJkOluUr0WHjAy", "instantiation": "true", "print_settings_id": "0.35mm Standard @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 cbbf727ebe..fb9edfee10 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "N7o0ht4DUa8YxoS6", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 af09ff2681..4c707623e5 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "xgUD4rbF36CnDrAO", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 3b24d99f23..a4d7d8ad68 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "OZhwKr8pXgWz9PL1", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 88295592e7..3f095d049d 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "kAkHtpml2l4gxVct", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 9879b7b58e..3caf0f29fd 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "g1AtO4Y3Xum0iU1W", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 6e779f5904..1b13cf0196 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "h1QHjkEgu2BXzQEi", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 d6ead603e4..c5618ce1dd 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 @@ -3,6 +3,7 @@ "name": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "lv1TOoKBJd8IXOcn", "instantiation": "true", "print_settings_id": "0.35mm TPU Vase @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 601c3ddf27..1b65437ff9 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YJKpEFLYxvRBNTgU", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC Artemis 1.0", "compatible_printers": [ 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 6a51846314..45414997ed 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "HZdhBvqPEdnL4Jof", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ 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 31ac8dc185..3330a2e691 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "TstwR2YBEGdv7Whj", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ 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 4c8a07a5f9..b5076aa76d 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "CmhA2uTWBdmFM3Ys", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ 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 33df01ede1..cb2486c3b6 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "KuEnCO4QuCUYTC9t", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ 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 cfdab21c54..71a91555f7 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "fiDNKleOEbaU06pC", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ 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 0866523aff..7ce75f1b67 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 @@ -3,6 +3,7 @@ "name": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "KJMSmNaHrlABrYXn", "instantiation": "true", "print_settings_id": "0.40mm Fine @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ 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 6b4c7487d3..613f35534b 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "gwCRbJvfWBwEjuQd", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 32f5ca5eb3..11f04a419d 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "eizIT85Ctm1vcl3t", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 03a65b02f6..5545bed85f 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "4GsQlNdTzC5XxgSr", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 c39fb7cc70..53f662ac8d 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "cXLAvi5mQLtAG8mg", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 5dfa88747d..152c0f1dbe 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "9igKaGRFQwBn5CYd", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 c0613ea490..2f129b3f0c 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "uBmYaKfx2HN7EIfK", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 7cdd3db724..eacfdc41af 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 @@ -3,6 +3,7 @@ "name": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "okgOf4UuGjHJO7i3", "instantiation": "true", "print_settings_id": "0.42mm Draft @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 8dcf440a73..a021dc25aa 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "Hz4Q1qmAFopHf7XT", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC Artemis 0.7", "compatible_printers": [ 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 88f6b9856a..1d35e1c045 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "KgSjm5pHk9pt5PB3", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 300 0.7", "compatible_printers": [ 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 60a20ed836..50008ff189 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "DGx3oNHCYzAoOnlr", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 0.7", "compatible_printers": [ 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 fe2e885407..634630f952 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "508Qh53En6FYoeHC", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 0.7", "compatible_printers": [ 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 b15a96c3ff..76c969c24a 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "qJO8OkHQMAzDEw0V", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 0.7", "compatible_printers": [ 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 876d20fd61..e5db9b2b54 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "6tnfj4EPzdL6IN2l", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v3.2 0.7", "compatible_printers": [ 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 a9eae140b2..824d408a56 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 @@ -3,6 +3,7 @@ "name": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7", "inherits": "SeeMeCNC process base 0.7mm", "from": "System", + "setting_id": "inMStEcd01OhwiZ5", "instantiation": "true", "print_settings_id": "0.49mm Extra Draft @SeeMeCNC RostockMAX v4 0.7", "compatible_printers": [ 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 1c0e61e421..4cfee8f39a 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "JWsU3ZnahCagqfF4", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC Artemis 1.0", "compatible_printers": [ 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 1d175529b4..e2c9aa8cce 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "SqEcFBRvXuwStPbH", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ 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 d033503330..7b0a1b8103 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "IyAqbCly9ytdcVeD", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ 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 13a2873034..ecba4f8f4c 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "9SohbZ8vNYoSYeXP", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ 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 6618e78d76..0f59f8aba8 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "7pr3leoFJIjdcgmi", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ 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 b79ed41d43..b3a112441a 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "J2qJC7GJoWtapiaV", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ 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 fd2a751703..9250e9533a 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 @@ -3,6 +3,7 @@ "name": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "AHDI7n7hM8GACYLJ", "instantiation": "true", "print_settings_id": "0.50mm Standard @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ 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 48043b9758..9f08362508 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "XqJlhk1DOHQSKYNR", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC Artemis 1.0", "compatible_printers": [ 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 a9e0cc6c2d..33b66288c9 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "xnAcORG3cHp41ukk", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ 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 0ceb3c72e8..3fb6e4ec4c 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "GSPgVC00A0L70UWT", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ 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 3a5b8a69d4..34ed97aca2 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "g6LungtSNBtDRWzE", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ 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 0ecca141ff..a0ecbc7f53 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "rJSlAvO8JawXO1qb", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ 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 39ea6501c7..5c64726321 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "vd8ObV6haBsCRyZM", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ 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 2a1081169f..a9f27c392b 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 @@ -3,6 +3,7 @@ "name": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "jfHMqNVeo05C0emy", "instantiation": "true", "print_settings_id": "0.60mm Draft @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ 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 675d6cebda..1063b0311f 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YIYrIOleRALscWBA", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC Artemis 1.0", "compatible_printers": [ 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 239b341192..4307e40685 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "NeAgKpsbmeYD07ml", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 300 1.0", "compatible_printers": [ 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 8fc587206d..01b105931d 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "eSwnN8wuLGD9fr8u", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0505 1.0", "compatible_printers": [ 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 119ceef4a8..198c801ec3 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "VfZCLYGX0RArTFl5", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0510 1.0", "compatible_printers": [ 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 70a9fdab95..32e37abf0e 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "HHdMe5WelZb0QYd1", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC BOSSdelta 500 0521 1.0", "compatible_printers": [ 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 3398c82c5c..9f34bed0f6 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "uL6XkfSSo52U4Vo8", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v3.2 1.0", "compatible_printers": [ 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 b557778350..66d0a7aae0 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 @@ -3,6 +3,7 @@ "name": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0", "inherits": "SeeMeCNC process base 1.0mm", "from": "System", + "setting_id": "YFJ4ITw3ZAhBccQX", "instantiation": "true", "print_settings_id": "0.70mm Extra Draft @SeeMeCNC RostockMAX v4 1.0", "compatible_printers": [ diff --git a/resources/profiles/Snapmaker.json b/resources/profiles/Snapmaker.json index 6545b26f4b..cdc7f0fe81 100644 --- a/resources/profiles/Snapmaker.json +++ b/resources/profiles/Snapmaker.json @@ -1,6 +1,6 @@ { "name": "Snapmaker", - "version": "02.04.00.03", + "version": "02.04.00.07", "force_update": "0", "description": "Snapmaker configurations", "machine_model_list": [ @@ -477,6 +477,90 @@ { "name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)", "sub_path": "process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json" + }, + { + "name": "fdm_process_U1_0.2_common", + "sub_path": "process/fdm_process_U1_0.2_common.json" + }, + { + "name": "fdm_process_U1_0.8_common", + "sub_path": "process/fdm_process_U1_0.8_common.json" + }, + { + "name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)", + "sub_path": "process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)", + "sub_path": "process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json" + }, + { + "name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)", + "sub_path": "process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json" + }, + { + "name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)", + "sub_path": "process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json" + }, + { + "name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)", + "sub_path": "process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json" + }, + { + "name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)", + "sub_path": "process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json" + }, + { + "name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)", + "sub_path": "process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json" } ], "filament_list": [ @@ -1985,6 +2069,14 @@ { "name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)", "sub_path": "machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json" + }, + { + "name": "Snapmaker U1 (0.2 nozzle)", + "sub_path": "machine/Snapmaker U1 (0.2 nozzle).json" + }, + { + "name": "Snapmaker U1 (0.8 nozzle)", + "sub_path": "machine/Snapmaker U1 (0.8 nozzle).json" } ] } diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json index b627ee798d..31799163c6 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon ASA-CF08 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon ASA-CF08 @Snapmaker U1", "inherits": "Fiberon ASA-CF08 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL71_00", + "setting_id": "CdgDze2g0J4T7FEP", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json index fa7f298e1b..fd99eee105 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA12-CF10 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA12-CF10 @Snapmaker U1", "inherits": "Fiberon PA12-CF10 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL56_00", + "setting_id": "x3irDyMqwMgklHKg", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json index ffbdfdd8c0..1b227b2fd0 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA6-CF20 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA6-CF20 @Snapmaker U1", "inherits": "Fiberon PA6-CF20 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL57_00", + "setting_id": "AMQyOXYNdWpVXmvK", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json index 2ddc92605e..660f4e9ef2 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PA612-ESD @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PA612-ESD @Snapmaker U1", "inherits": "Fiberon PA612-ESD @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL72_00", + "setting_id": "hUvnA3XmuC3bGLsi", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json index f357b62272..cfe6890a80 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PETG-ESD @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PETG-ESD @Snapmaker U1", "inherits": "Fiberon PETG-ESD @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL06_00", + "setting_id": "AUr4Bm6UMW8S9TBh", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json index ade0333b56..4f1a9fdc10 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Fiberon PPS-GF20 @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Fiberon PPS-GF20 @Snapmaker U1", "inherits": "Fiberon PPS-GF20 @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL73_00", + "setting_id": "7IpyPFHEAOmFlINJ", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json index e2fcea837e..1ad0f0d820 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma CoPE @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma CoPE @U1", "inherits": "Panchroma CoPE @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM016_00", + "setting_id": "gI7fRuITm0XhElnG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json index 333d625917..dcd84aeba9 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA @U1", "inherits": "Panchroma PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM001_00", + "setting_id": "ayBhax9ELaiKfGFt", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json index 203dd24b91..561c748be3 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Celestial @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Celestial @U1", "inherits": "Panchroma PLA Celestial @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM008_00", + "setting_id": "OVmWNHpQnLZ67Bxd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json index cd80f7c940..fee27dc997 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Galaxy @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Galaxy @U1", "inherits": "Panchroma PLA Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM007_00", + "setting_id": "FLECN8LIZ5RLgQGi", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json index 6b0e8a7736..2f1135de61 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Glow @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Glow @U1", "inherits": "Panchroma PLA Glow @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM010_00", + "setting_id": "YEf4HFNPNtoFoLJd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json index 89bacd40d3..fd701bf8c3 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Luminous @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Luminous @U1", "inherits": "Panchroma PLA Luminous @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM011_00", + "setting_id": "bxbXVqsMWWNfWcAn", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json index fe034fabdc..2a1dbab936 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Marble @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Marble @U1", "inherits": "Panchroma PLA Marble @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM003_00", + "setting_id": "P9wE2kZSR2Coq1K7", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json index 412825477f..7652606816 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Matte @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Matte @U1", "inherits": "Panchroma PLA Matte @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM002_00", + "setting_id": "0oJUzBq7iYJgJxZ7", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json index 12dc18fae0..fe8e68081c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Metallic @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Metallic @U1", "inherits": "Panchroma PLA Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM012_00", + "setting_id": "pAQGZzMH04kst11B", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json index 63c1e4f410..cf16cb95c9 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Neon @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Neon @U1", "inherits": "Panchroma PLA Neon @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM013_00", + "setting_id": "qVG9q2ci7Cj4pM5c", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json index 4fc8a85ce5..eff77a2aa9 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Satin @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Satin @U1", "inherits": "Panchroma PLA Satin @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM005_00", + "setting_id": "EHMn3LsbZlfuR7hD", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json index 6a6ed14fa2..1020a48f0a 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Silk @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Silk @U1", "inherits": "Panchroma PLA Silk @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM004_00", + "setting_id": "JfIg6ZkVFA0CKLFI", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json index 7c2e1ab3c6..114391b517 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Starlight @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Starlight @U1", "inherits": "Panchroma PLA Starlight @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM009_00", + "setting_id": "pgcdQlQmPFSaduVr", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json index cbe8096274..ca50194577 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Temp Shift @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Temp Shift @U1", "inherits": "Panchroma PLA Temp Shift @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM015_00", + "setting_id": "SJq26RGx7OoZB4uH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json index fed2fcd2bd..cff9ec2011 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA Translucent @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA Translucent @U1", "inherits": "Panchroma PLA Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM006_00", + "setting_id": "CBt541HVuOa7GGb9", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json index df6a376077..1d4a6a0bbe 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Panchroma PLA UV Shift @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Panchroma PLA UV Shift @U1", "inherits": "Panchroma PLA UV Shift @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM014_00", + "setting_id": "vfVlN8IokcNnixsV", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json index 4f3d7bb398..836723cf7a 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite CosPLA @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite CosPLA @Snapmaker U1", "inherits": "PolyLite CosPLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL62_00", + "setting_id": "KwD7WDyJNa4hWfZ8", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json index 9b14cb226f..707d5ae54b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite Dual PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite Dual PLA @0.2 nozzle", - "setting_id": "490991920", + "setting_id": "jhmy4YHi9MuL0DWu", "inherits": "PolyLite PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json index 5570f4b792..1a4422472c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite J1 PLA @0.2 nozzle", - "setting_id": "431382384", + "setting_id": "jFlRSxx0KvN3BOUu", "inherits": "PolyLite PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json index e026b675c9..6c5017d0a8 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite J1 PLA.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite J1 PLA", - "setting_id": "116125055", + "setting_id": "wcpOTTMyZNPFKyXr", "inherits": "PolyLite PLA @base", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json index eda129418d..47cf37385d 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG @Snapmaker U1", "inherits": "PolyLite PETG @Snapmaker U1 base", "from": "system", - "setting_id": "GFSG60_00", + "setting_id": "U9U4YmaRxgIdxQOc", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json index 9007bf7507..6089dd66c4 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PETG Translucent @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PETG Translucent @Snapmaker U1", "inherits": "PolyLite PETG Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL74_00", + "setting_id": "NBQOZiQQ8MpcDnLM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json index dc5eb1d506..c3897e63c2 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyLite PLA @0.2 nozzle", - "setting_id": "1592803578", + "setting_id": "s9mdMaFca8SHfji9", "inherits": "PolyLite PLA @base", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json index 62eb0798cc..715d8060e4 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite PLA @U1", "inherits": "PolyLite PLA @Snapmaker U1 base", "from": "system", - "setting_id": "6486836500", + "setting_id": "RtK3uYFG0OKtnLkP", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json index adc7cb12d3..e096b1b9b3 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Galaxy @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Galaxy @Snapmaker U1", "inherits": "PolyLite PLA Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL63_00", + "setting_id": "mNMTe346QAgo61NH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json index 7bb103ab7e..a36d2b9de5 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Glow @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Glow @Snapmaker U1", "inherits": "PolyLite PLA Glow @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL64_00", + "setting_id": "xYjGzOzWWE2PBfNd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json index e9642afc2d..874004e6ea 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Luminous @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Luminous @Snapmaker U1", "inherits": "PolyLite PLA Luminous @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL65_00", + "setting_id": "pcPG6yUSO8F0e4gM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json index f40bfd290f..fbbb2a4585 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Neon @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Neon @Snapmaker U1", "inherits": "PolyLite PLA Neon @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL66_00", + "setting_id": "WMoh0mKVmVsdP5rc", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json index acd8c7ff72..47163a788c 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyLite PLA Pro @U1", "inherits": "PolyLite PLA Pro @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM019_00", + "setting_id": "GxuEzTdHffrvh2q6", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json index e02ed22fac..b1611b961d 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Pro Metallic @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Pro Metallic @Snapmaker U1", "inherits": "PolyLite PLA Pro Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL75_00", + "setting_id": "21wjCLo6hOb9p38K", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json index ffdfc293fb..56108cfed2 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Starlight @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Starlight @Snapmaker U1", "inherits": "PolyLite PLA Starlight @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL67_00", + "setting_id": "geXEuSvWTJD0rK7F", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json index b4c83fcb94..799e272fab 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyLite PLA Translucent @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyLite PLA Translucent @Snapmaker U1", "inherits": "PolyLite PLA Translucent @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL68_00", + "setting_id": "YpMLpguxd61Bs16O", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json index 549c1cef85..b45068dd52 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra Dual PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra Dual PLA @0.2 nozzle", - "setting_id": "1258531391", + "setting_id": "UQYgjH1uVxf3d2Nv", "inherits": "PolyTerra PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json index 1abf0ff3a7..dd4f969f62 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra J1 PLA @0.2 nozzle", - "setting_id": "1072374370", + "setting_id": "mxKHxGmBZzPLS82O", "inherits": "PolyTerra PLA @0.2 nozzle", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json index 39eab72d3b..7b66438058 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra J1 PLA.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra J1 PLA", - "setting_id": "3958200796", + "setting_id": "4MZWZX7QPBzxdEGj", "inherits": "PolyTerra PLA @base", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json index 11307b21f4..07d45a7633 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @0.2 nozzle.json @@ -3,7 +3,7 @@ "from": "system", "instantiation": "true", "name": "PolyTerra PLA @0.2 nozzle", - "setting_id": "409934824", + "setting_id": "6W1ygT08NordBdIW", "inherits": "PolyTerra PLA @base", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json index 1ab5d59bec..244cf91471 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "PolyTerra PLA @U1", "inherits": "PolyTerra PLA @Snapmaker U1 base", "from": "system", - "setting_id": "12580059400", + "setting_id": "kyxayLqRGrKKBwqp", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json index 90261c8d46..19e419ca36 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA Marble @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA Marble @Snapmaker U1", "inherits": "PolyTerra PLA Marble @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL69_00", + "setting_id": "VjVt04nDFS9l9Rl9", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json index ad807f99e1..c3dd9d5537 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/PolyTerra PLA+ @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "PolyTerra PLA+ @Snapmaker U1", "inherits": "PolyTerra PLA+ @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL70_00", + "setting_id": "5L213op8PhcYpqiF", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json index 1dc9da3491..ef631e550b 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Polymaker HT-PLA @U1", "inherits": "Polymaker HT-PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM017_00", + "setting_id": "0A5ETOrUTF0P3HS4", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json index 5ef9570687..ac49e4f7ac 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker HT-PLA-GF @Snapmaker U1.json @@ -4,7 +4,7 @@ "renamed_from": "Polymaker HT-PLA-GF @U1", "inherits": "Polymaker HT-PLA-GF @Snapmaker U1 base", "from": "system", - "setting_id": "GFSPM018_00", + "setting_id": "i0LA17aaWvgLG7xd", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json index 4b8ff8daf2..a3e11c2cd2 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PETG @Snapmaker U1", "inherits": "Polymaker PETG @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL76_00", + "setting_id": "kS4t66kFCXtambwx", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json index 47b67bb9ed..ecac971c5e 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PETG Galaxy @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PETG Galaxy @Snapmaker U1", "inherits": "Polymaker PETG Galaxy @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL77_00", + "setting_id": "a5yZ1QlqIGEAW1sU", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json index d20e23922f..ff614bc79f 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA @Snapmaker U1", "inherits": "Polymaker PLA @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL78_00", + "setting_id": "NSuD5f5eVr8SHA4n", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json index 2cb55a8ee5..d5823b53a6 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro @Snapmaker U1", "inherits": "Polymaker PLA Pro @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL79_00", + "setting_id": "0iJ5qjVvmrkRzpZD", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json index 463c0f2e81..a26fb437e7 100644 --- a/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json +++ b/resources/profiles/Snapmaker/filament/Polymaker/Polymaker PLA Pro Metallic @Snapmaker U1.json @@ -3,7 +3,7 @@ "name": "Polymaker PLA Pro Metallic @Snapmaker U1", "inherits": "Polymaker PLA Pro Metallic @Snapmaker U1 base", "from": "system", - "setting_id": "GFSL80_00", + "setting_id": "s4F24JmyDykNvtAV", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json index 247b5bcdfe..70a02af9bf 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS @0.2 nozzle", "inherits": "Snapmaker ABS @base", "from": "system", - "setting_id": "363717724", + "setting_id": "88w5Iio3zGVLylQg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json index c5afc96a66..083432ebd5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS @U1", "inherits": "Snapmaker ABS @U1 base", "from": "system", - "setting_id": "937533070", + "setting_id": "UFMRgwmOOQhOa3kB", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json index d7b7ca6784..db8dea187b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS Benchy @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS Benchy @U1", "inherits": "Snapmaker ABS @U1 base", "from": "system", - "setting_id": "35407544770", + "setting_id": "xszx4XRGrp88OdP8", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker ABS.json index a4e9fc0ad4..3339ca3846 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker ABS", "inherits": "Snapmaker ABS @base", "from": "system", - "setting_id": "536148164", + "setting_id": "Tffujmgvo69Lyww9", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json index 58e1f8bcda..28bba6a5b8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA @0.2 nozzle", "inherits": "Snapmaker ASA @base", "from": "system", - "setting_id": "978004695", + "setting_id": "YUN1yip2jUYlb6IQ", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json index 674c8e6c84..0c5d22723a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA @U1", "inherits": "Snapmaker ASA @U1 base", "from": "system", - "setting_id": "25418661980", + "setting_id": "XlbCMKY8EvV0vM88", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker ASA.json index 564c1ca4fc..9ac7e0bf40 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker ASA", "inherits": "Snapmaker ASA @base", "from": "system", - "setting_id": "3214191260", + "setting_id": "nLolpk6Jfp8wJdRF", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json index 6040d033a2..97b2f8b07f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Breakaway Support For PLA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker Breakaway Support For PLA @U1", "inherits": "Snapmaker Breakaway Support @base", "from": "system", - "setting_id": "41460000000", + "setting_id": "5DqT3CYUgp1oJD1V", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json index 67582804be..f421f08c94 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS @0.2 nozzle", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "2402717089", + "setting_id": "VFWVufeS8WVUzrCA", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json index 67b6ecb3f9..5035a7c360 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS @0.8 nozzle", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "519475561", + "setting_id": "dp69VGFZgouXWjCx", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json index 6cc182150f..e42e9efc4a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS Benchy.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS Benchy", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "3540754477", + "setting_id": "YMUFsOzEISsMqCLe", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json index 6b9d2b2412..4033e091ee 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ABS", "inherits": "Snapmaker Dual ABS @base", "from": "system", - "setting_id": "937533070", + "setting_id": "I9YYKJlzyMUoSJUe", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json index f4b6b1bc28..5f1f1bd74f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ASA @0.2 nozzle", "inherits": "Snapmaker Dual ASA @base", "from": "system", - "setting_id": "2698003242", + "setting_id": "1fA5vB9naAlNtiQe", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json index a256ba12c3..66e2897b99 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual ASA", "inherits": "Snapmaker Dual ASA @base", "from": "system", - "setting_id": "2541866198", + "setting_id": "Dgt6iMltl4BH3UJb", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json index 0446260e02..c0e2a8f8f3 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual Breakaway @0.2 nozzle", "inherits": "Snapmaker Dual Breakaway @base", "from": "system", - "setting_id": "98433967", + "setting_id": "AnOsn06GmBxyP7WO", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json index b84e277fd0..4ddc8bae34 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual Breakaway.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual Breakaway", "inherits": "Snapmaker Dual Breakaway @base", "from": "system", - "setting_id": "1762361484", + "setting_id": "WuooE38yyXAL7VPi", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json index dfdc98f649..97ee539318 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PA-CF", "inherits": "Snapmaker Dual PA-CF @base", "from": "system", - "setting_id": "2799665789", + "setting_id": "xIzJJ3xIBSw4nubb", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json index 1885595c6c..fb34c0f56c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PET", "inherits": "Snapmaker Dual PET @base", "from": "system", - "setting_id": "4213200045", + "setting_id": "dqhn1QWeelEzjcfx", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json index 5c7e453c06..de3e027896 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG @0.2 nozzle", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "2935726097", + "setting_id": "5AdvwvAu0meLNL1N", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json index 1076fab082..7073f9c0c3 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG @0.8 nozzle", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "1060879577", + "setting_id": "cFiDWj5Jb8XOP2Ew", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json index 0e373266f0..1cde77872c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG-CF", "inherits": "Snapmaker Dual PETG-CF @base", "from": "system", - "setting_id": "950459082", + "setting_id": "jbK61bqOzFY2NOHi", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json index bd77fe3647..5cc01b0e16 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PETG", "inherits": "Snapmaker Dual PETG @base", "from": "system", - "setting_id": "2452014271", + "setting_id": "bz5vw9byO2QkHFUp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json index 3e1bd81a4e..d44fc902f1 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco @0.2 nozzle", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "3529576452", + "setting_id": "NNdLn8FKlbXiUwmD", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json index c91b4e7f6d..595086e1ec 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco @0.8 nozzle", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "1134628044", + "setting_id": "KqbrkVJgKkbNG6hq", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json index 83efe7df1e..93b664c42b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Eco", "inherits": "Snapmaker Dual PLA Eco @base", "from": "system", - "setting_id": "2158656028", + "setting_id": "XvwU33usTieYj2fI", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json index 437274224a..8e5bdbab44 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte @0.2 nozzle", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "2269792171", + "setting_id": "iu55TJPRbKmtdm7m", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json index 57aee2f399..c4786cd716 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte @0.8 nozzle", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "378166115", + "setting_id": "Nv5KZFXYXnkSejib", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json index 2d4e893d77..ad00bde89f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Matte.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Matte", "inherits": "Snapmaker Dual PLA Matte @base", "from": "system", - "setting_id": "3959402964", + "setting_id": "9PvQCorbNAdcMOkL", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json index 1e9fc3eb27..c7398d230a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Metal @0.2 nozzle", "inherits": "Snapmaker Dual PLA Metal @base", "from": "system", - "setting_id": "922702789", + "setting_id": "p46s1KawnX4yvyzp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json index 35b5c3c4c3..6e22306d82 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Metal.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Metal", "inherits": "Snapmaker Dual PLA Metal @base", "from": "system", - "setting_id": "720664627", + "setting_id": "cOn4ldWazMClstBg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json index b5126b074d..3c07408c1d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Silk @0.2 nozzle", "inherits": "Snapmaker Dual PLA Silk @base", "from": "system", - "setting_id": "965040007", + "setting_id": "tHZclIHbTPFyIxhL", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json index d7aab444b9..3356d8a0c8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA Silk", "inherits": "Snapmaker Dual PLA Silk @base", "from": "system", - "setting_id": "1328250686", + "setting_id": "l8GJDtbp5DYRxjqB", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json index 0bfd7ca3fb..d87a40ec78 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA-CF @0.8 nozzle", "inherits": "Snapmaker Dual PLA-CF @base", "from": "system", - "setting_id": "154056642", + "setting_id": "a64GVqogvOT5t2Pp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json index 8a8224ad4c..e327bc491f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA-CF", "inherits": "Snapmaker Dual PLA-CF @base", "from": "system", - "setting_id": "3589359438", + "setting_id": "kCv4Ep98EMdgmfSB", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json index e4daa72e67..f5742c64bc 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PLA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PLA", "inherits": "Snapmaker Dual PLA @base", "from": "system", - "setting_id": "1195313935", + "setting_id": "YeA7hMgPr5YQujhc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json index 68f49669db..e0c082dca9 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PVA @0.2 nozzle", "inherits": "Snapmaker Dual PVA @base", "from": "system", - "setting_id": "3656018400", + "setting_id": "Oob2d8rZXyi6AAVG", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json index 9f811e19ac..e78f3c5cb4 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual PVA", "inherits": "Snapmaker Dual PVA @base", "from": "system", - "setting_id": "4145213908", + "setting_id": "WXKMhNyhS80QvkVp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json index 0513a9765a..f29f3f2189 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPE", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "2704030359", + "setting_id": "KoZqZ4l1tYZ99JYz", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json index 6487855fcd..7db3a84d21 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU High-Flow.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPU High-Flow", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "1072918854", + "setting_id": "D1vA7cdI5kghtrxf", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json index 434bf47b37..0fe5a86031 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker Dual TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker Dual TPU", "inherits": "Snapmaker Dual TPU @base", "from": "system", - "setting_id": "3164285683", + "setting_id": "Y04ObY17n2wfTYha", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json index 9778d01cda..4cf2952b6c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS @0.2 nozzle", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "418980201", + "setting_id": "zN3PLfqO6Rs1sq18", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json index e6076e8255..0301135eef 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS @0.8 nozzle", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "2302229921", + "setting_id": "PTMkAq7JwTuAJjMu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json index 8913059631..4b3dcc5e2f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS Benchy.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS Benchy", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "356879727", + "setting_id": "b1Z94AhG8viXuDsq", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json index 06725680e2..6006f8436a 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ABS.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ABS", "inherits": "Snapmaker J1 ABS @base", "from": "system", - "setting_id": "3810006449", + "setting_id": "J8Md52F4hQL8happ", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json index dbc69d83d7..1e8309ea9f 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ASA @0.2 nozzle", "inherits": "Snapmaker J1 ASA @base", "from": "system", - "setting_id": "924839906", + "setting_id": "HzGtluQgjCEMWRCH", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json index 8638fd6091..fb886344e5 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 ASA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 ASA", "inherits": "Snapmaker J1 ASA @base", "from": "system", - "setting_id": "1131956201", + "setting_id": "tIBO5PTJGqFuwnEC", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json index 02c5da2472..b1c6efb47d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 Breakaway @0.2 nozzle", "inherits": "Snapmaker J1 Breakaway @base", "from": "system", - "setting_id": "2613265860", + "setting_id": "RBdI8nzPDRhKJX96", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json index 5fe2745e13..c451bc4f43 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 Breakaway.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 Breakaway", "inherits": "Snapmaker J1 Breakaway @base", "from": "system", - "setting_id": "738160822", + "setting_id": "PKDfOM3QE8vuUcuw", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json index 017cf6e07c..84dc5829f4 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PA-CF", "inherits": "Snapmaker J1 PA-CF @base", "from": "system", - "setting_id": "2221614608", + "setting_id": "l5iTXM2sfxkvgC7I", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json index d9afd0e544..22b4167936 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PET", "inherits": "Snapmaker J1 PET @base", "from": "system", - "setting_id": "802807698", + "setting_id": "32QTwV2fbiWv5lHs", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json index 07263b9834..019c3f604e 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG @0.2 nozzle", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "1003693375", + "setting_id": "LkY5PsZG6UNeeOp1", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json index 497feaf1e7..e686cffc15 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG @0.8 nozzle", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "2853386743", + "setting_id": "0cLSinbAkVb5k965", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json index acb485cd2f..d39a6a3796 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG-CF", "inherits": "Snapmaker J1 PETG-CF @base", "from": "system", - "setting_id": "961448549", + "setting_id": "DSb6vKfFivUJobU0", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json index fe2548e0ec..5ad7f09efb 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PETG", "inherits": "Snapmaker J1 PETG @base", "from": "system", - "setting_id": "613683209", + "setting_id": "JFd9sxv6Uv95fhrs", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json index e83cd1b55e..99b34d4b3c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco @0.2 nozzle", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "2482225039", + "setting_id": "7NJHAS5uQWoQ3U0U", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json index 66e1be723f..e63a7b1ac2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco @0.8 nozzle", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "36938567", + "setting_id": "OUUR4zsDpABcMuzU", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json index e34d6c61a3..868412ca16 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Eco", "inherits": "Snapmaker J1 PLA Eco @base", "from": "system", - "setting_id": "2168597171", + "setting_id": "myGZjfB7691BOHCE", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json index e01ad0334a..a1e0ad2d71 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte @0.2 nozzle", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "424999360", + "setting_id": "gyvsh0lMqSHxAmiv", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json index e379c8a0fa..4dfb2f1324 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte @0.8 nozzle", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "2291459336", + "setting_id": "fSyuoDgf78rjNb7K", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json index 382a4c4f83..4cab1eccab 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Matte.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Matte", "inherits": "Snapmaker J1 PLA Matte @base", "from": "system", - "setting_id": "2836087278", + "setting_id": "6moYOMaqt0ZNkR1A", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json index dfb8cf5156..e25df5fcb0 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Metal @0.2 nozzle", "inherits": "Snapmaker J1 PLA Metal @base", "from": "system", - "setting_id": "2833378734", + "setting_id": "LlaMn0Bb6dX4aKyV", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json index 43660474b7..c3c8618998 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Metal.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Metal", "inherits": "Snapmaker J1 PLA Metal @base", "from": "system", - "setting_id": "1744865289", + "setting_id": "vMgabwKr8G7tdFBe", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json index 5b1b3f03eb..dab42bbe85 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Silk @0.2 nozzle", "inherits": "Snapmaker J1 PLA Silk @base", "from": "system", - "setting_id": "1135517568", + "setting_id": "Juvh8sY4FKg07QBT", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json index 57a2b0cc79..0a334eb4e8 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA Silk", "inherits": "Snapmaker J1 PLA Silk @base", "from": "system", - "setting_id": "155396375", + "setting_id": "e4jJUefBCpPwXdxv", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json index 0eba62c7f5..0c83300247 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF @0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA-CF @0.8 nozzle", "inherits": "Snapmaker J1 PLA-CF @base", "from": "system", - "setting_id": "2684050537", + "setting_id": "ziN1Ya3XrA7x81jh", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json index 87dbc13ade..bea07ac47d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA-CF", "inherits": "Snapmaker J1 PLA-CF @base", "from": "system", - "setting_id": "3872452111", + "setting_id": "ZMdlRbIIJz20jG6d", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json index 41f7139f64..a677dbb3d2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PLA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PLA", "inherits": "Snapmaker J1 PLA @base", "from": "system", - "setting_id": "2479259696", + "setting_id": "s8hTuPODyPfcbY8k", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json index 456f9a5f26..232c11c02c 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PVA @0.2 nozzle", "inherits": "Snapmaker J1 PVA @base", "from": "system", - "setting_id": "1311098152", + "setting_id": "NZbfoArhgh81kmKO", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json index b58522a556..de42c3cee3 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 PVA", "inherits": "Snapmaker J1 PVA @base", "from": "system", - "setting_id": "602634987", + "setting_id": "6ak8VhN88lh6Ob1p", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json index fbeabbcd10..b3c6a49434 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPE", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "1976938920", + "setting_id": "6N7VB3mKAShGVYL3", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json index 06d5bdc46f..4186cea511 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU High-Flow.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPU High-Flow", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "4255325782", + "setting_id": "wdN8j0Zv2bJ29XHA", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json index a3f5b2b6b5..207fc195de 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker J1 TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 TPU", "inherits": "Snapmaker J1 TPU @base", "from": "system", - "setting_id": "1751294412", + "setting_id": "kTLxR8PWhWPbMvij", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json index 61fdec5267..402b5785dd 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PA-CF @U1", "inherits": "Snapmaker PA-CF @U1 base", "from": "system", - "setting_id": "27996657890", + "setting_id": "8aP6ye4aeOS7qKpG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json index 3b96fb3128..8a49b5fc88 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PA-CF", "inherits": "Snapmaker PA-CF @base", "from": "system", - "setting_id": "144230794", + "setting_id": "bQJVOpJTPWoAtDCk", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json b/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json index b75f4a22dc..4bf208ea44 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET @Dual.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET @Dual", "inherits": "Snapmaker Dual PET @base", "from": "system", - "setting_id": "145337790", + "setting_id": "3xJOWlbt2feyRKTV", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 Dual (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json index b7f2257724..e4dd0d2035 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET @U1", "inherits": "Snapmaker PET @U1 base", "from": "system", - "setting_id": "42132000450", + "setting_id": "sIijFVd50jJB1sK0", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PET.json b/resources/profiles/Snapmaker/filament/Snapmaker PET.json index f2648fd0af..c173d17ca6 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PET.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PET.json @@ -3,7 +3,7 @@ "name": "Snapmaker PET", "inherits": "Snapmaker PET @base", "from": "system", - "setting_id": "3543479015", + "setting_id": "9IKYHi3po9jS33Yd", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json index 586c585db3..23cc35b8cf 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG @0.2 nozzle", "inherits": "Snapmaker PETG @base", "from": "system", - "setting_id": "1835906521", + "setting_id": "wcnWpeWWBjJdkjUF", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json index bb99464fc7..5df9952064 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG @U1", "inherits": "Snapmaker PETG @U1 base", "from": "system", - "setting_id": "24520142710", + "setting_id": "r7KJB0EPpsknK5iH", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json index 9fb0aefa77..f0bae32788 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG-CF @U1", "inherits": "Snapmaker PETG-CF @U1 base", "from": "system", - "setting_id": "9504590820", + "setting_id": "i982wlNMSJujh6Vs", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json index bab977241c..0f5bbcdf75 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG-CF", "inherits": "Snapmaker PETG-CF @base", "from": "system", - "setting_id": "2186648559", + "setting_id": "nAJKOCA9Aq4v9d5e", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PETG.json b/resources/profiles/Snapmaker/filament/Snapmaker PETG.json index 855fd6c1b5..89760d0c7b 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PETG.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PETG.json @@ -3,7 +3,7 @@ "name": "Snapmaker PETG", "inherits": "Snapmaker PETG @base", "from": "system", - "setting_id": "67598679", + "setting_id": "jydZq50EfeLLSVUk", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json index f33f03456d..1a2f9e3ff3 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA @U1", "inherits": "Snapmaker PLA @U1 base", "from": "system", - "setting_id": "11953139350", + "setting_id": "upBaAiQ4fqmefjo6", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json index 2012fe5e0c..fadf7e59d2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Eco @U1", "inherits": "Snapmaker PLA Eco @U1 base", "from": "system", - "setting_id": "21586560280", + "setting_id": "mF73rtMhQQJz1bjt", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json index ada230c402..bdba5c59d2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Eco.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Eco", "inherits": "Snapmaker PLA Eco @base", "from": "system", - "setting_id": "978926393", + "setting_id": "mU6t2gc3SmStj2sN", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json index d5bb451ce7..fab081d5d7 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Lite @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Lite @U1", "inherits": "Snapmaker PLA Lite @U1 base", "from": "system", - "setting_id": "1195313935011", + "setting_id": "ZZyxuKUboYttCqgM", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json index f787f078bd..fcb1d74c92 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Matte @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Matte @U1", "inherits": "Snapmaker PLA @U1 base", "from": "system", - "setting_id": "119531393501", + "setting_id": "uAhykL5ap1DAKacf", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json index 603fab93df..538158a155 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Metal @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Metal @U1", "inherits": "Snapmaker PLA Metal @U1 base", "from": "system", - "setting_id": "7206646270", + "setting_id": "lPmCxsx9EpoLoNEk", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json index 91e7a30c80..44b25b48e2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk @0.2 nozzle", "inherits": "Snapmaker PLA Silk @base", "from": "system", - "setting_id": "3051834979", + "setting_id": "JqSeIMFPLG63Ages", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json index 7682ec6919..7fdf44e792 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk @U1", "inherits": "Snapmaker PLA Silk @U1 base", "from": "system", - "setting_id": "13282506860", + "setting_id": "9PkHSwtXFM0zPWth", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json index e4e64025cb..299d66e689 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA Silk.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA Silk", "inherits": "Snapmaker PLA Silk @base", "from": "system", - "setting_id": "76896312", + "setting_id": "huBPyGifPs5s3FTU", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json index 3bcee2b43f..96d86d2a81 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA SnapSpeed @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA SnapSpeed @U1", "inherits": "Snapmaker PLA SnapSpeed @U1 base", "from": "system", - "setting_id": "119531393501", + "setting_id": "en6Pvvbc1P9TKm8I", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json index 32a05e3ec2..ec04c8108d 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA-CF @U1", "inherits": "Snapmaker PLA-CF @U1 base", "from": "system", - "setting_id": "35893594380", + "setting_id": "eyNYjz24xQYyAQcv", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json index 3e56a9652e..f07e0d98be 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA-CF.json @@ -3,7 +3,7 @@ "name": "Snapmaker PLA-CF", "inherits": "Snapmaker PLA-CF @base", "from": "system", - "setting_id": "4136003514", + "setting_id": "PPZJnn6fvmewcHNP", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json index 7eba07ce74..b9d21e3bf2 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PLA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PLA.json @@ -1,9 +1,10 @@ { "type": "filament", "name": "Snapmaker PLA", + "renamed_from": "PolyLite PLA", "inherits": "Snapmaker PLA @base", "from": "system", - "setting_id": "1865051461", + "setting_id": "cW1b4nGxE9yXIXJP", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json index a838bf2936..ba23502fa4 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA @0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA @0.2 nozzle", "inherits": "Snapmaker PVA @base", "from": "system", - "setting_id": "1131479069", + "setting_id": "UfQ3YguFzJpN2Ewc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json index 9e0e5fc3c6..f9a33d7bcb 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA @U1", "inherits": "Snapmaker PVA @U1 base", "from": "system", - "setting_id": "41452139080", + "setting_id": "A9gyeySGTtUrTPeG", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker PVA.json b/resources/profiles/Snapmaker/filament/Snapmaker PVA.json index 0b3461ce5c..fae29055dd 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker PVA.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker PVA.json @@ -3,7 +3,7 @@ "name": "Snapmaker PVA", "inherits": "Snapmaker PVA @base", "from": "system", - "setting_id": "3741816734", + "setting_id": "nPLHnAptDPHutpMg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json index 93597399d8..846f7acff9 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPE @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPE @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "27040303590", + "setting_id": "aqE9IR6dFd2MQLXR", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPE.json b/resources/profiles/Snapmaker/filament/Snapmaker TPE.json index ea148317d7..861f11ff09 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPE.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPE.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPE", "inherits": "Snapmaker TPU @base", "from": "system", - "setting_id": "2302237917", + "setting_id": "pFGj8sxkPmk10bP4", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json index d3af4f17fe..9cc40e8552 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU 95A @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU 95A @U1", "inherits": "Snapmaker TPU 95A @U1 base", "from": "system", - "setting_id": "316428530", + "setting_id": "XdvEzjOGtQKamDRC", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json index 83504394e3..ba393bed17 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "31642856830", + "setting_id": "QLO4hkw6Agd3gSyR", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json index 3097562fae..d338d8e4b9 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU High-Flow @U1.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU High-Flow @U1", "inherits": "Snapmaker TPU @U1 base", "from": "system", - "setting_id": "10729188540", + "setting_id": "5AXIg8WCdcd74S5v", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/filament/Snapmaker TPU.json b/resources/profiles/Snapmaker/filament/Snapmaker TPU.json index 9a808c03f0..844de7ae01 100644 --- a/resources/profiles/Snapmaker/filament/Snapmaker TPU.json +++ b/resources/profiles/Snapmaker/filament/Snapmaker TPU.json @@ -3,7 +3,7 @@ "name": "Snapmaker TPU", "inherits": "Snapmaker TPU @base", "from": "system", - "setting_id": "2492353721", + "setting_id": "VeUwcJ6jFwrFOksc", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json index af01799e3f..398f8640d0 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.2 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "2273571854", + "setting_id": "DJ09UcLozkRpW3KX", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json index 32c3529c14..80fba49023 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.4 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "4103703940", + "setting_id": "2dgLIRAThEy26WDm", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json index b26476636d..4e1e60e4bf 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.6 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "3664749826", + "setting_id": "aOEXlZVStLZyH2xc", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json index db648fbdda..d611297155 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 (0.8 nozzle)", "inherits": "fdm_a250", "from": "system", - "setting_id": "313360016", + "setting_id": "rOvHCQBJUjuLOBKC", "instantiation": "true", "printer_model": "Snapmaker A250", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json index c995d342fb..dc2a68e8f9 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.2 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "601809056", + "setting_id": "lQoQ0V1k2PJsBUgL", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json index 39ffec7392..dd275cbe68 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.4 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "1355061546", + "setting_id": "Dj4aDPjkTRP9lSSt", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json index 6201411b47..8e3d3eba3c 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.6 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "2117251500", + "setting_id": "FQmRTrZByRpoLVQV", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json index e82079980a..e4b9b67552 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 BKit (0.8 nozzle)", "inherits": "fdm_a250_bk", "from": "system", - "setting_id": "3069209150", + "setting_id": "iZbTMn65miC6Oxv1", "instantiation": "true", "printer_model": "Snapmaker A250 BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json index 456a92243d..37362fff64 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.2 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "3474065981", + "setting_id": "pxIZA3QyeBwNM5rC", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json index 936b2c0219..38a3a83bdb 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.4 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "3154670519", + "setting_id": "vT5Xkm8c2pX4tP1o", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json index 5f541aeb72..d72b9cf76d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.6 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "2466143025", + "setting_id": "UeSwt1KPqw4JnKwT", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json index 25f31a169f..3d7724207a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual (0.8 nozzle)", "inherits": "fdm_a250_dual", "from": "system", - "setting_id": "1513914531", + "setting_id": "sxLHo9IXqwRJgtHO", "instantiation": "true", "printer_model": "Snapmaker A250 Dual", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json index daa1fcc242..f1522db2af 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.2 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "1737970856", + "setting_id": "m877ANqIOswwumnU", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json index 058c2def49..5a30638744 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.4 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "344796450", + "setting_id": "1TjUcrFp0yvYqGIu", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json index 14969d24bd..9eeb953d17 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.6 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "981140900", + "setting_id": "M2Gapi937LXIhmUx", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json index 5a64866f66..cc2a4de55f 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual BKit (0.8 nozzle)", "inherits": "fdm_a250_dual_bk", "from": "system", - "setting_id": "4072267318", + "setting_id": "auZub0JnDR1qMcYp", "instantiation": "true", "printer_model": "Snapmaker A250 Dual BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json index 968aba5b63..3d62b24e02 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.2 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "1173309402", + "setting_id": "4UhrgxofVvD8MfdX", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json index 6fd17c321f..4813b460ac 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.4 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "922041936", + "setting_id": "uqKqBsdgD8J2LqIT", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json index c4a6b2a025..d1ea16aa1a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.6 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "402855638", + "setting_id": "DIInslBLiZAGWW5M", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json index 405def6450..49e291b8cb 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QS+B Kit (0.8 nozzle)", "inherits": "fdm_a250_dual_qs_bk", "from": "system", - "setting_id": "3502361924", + "setting_id": "MBsCQULjnLAKo7W3", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json index f92fa6bebb..fb2f34e27a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.2 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "2546842776", + "setting_id": "JVtuYqZt51KeV5Bz", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json index 178149496b..01bd45a7af 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.4 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "3839345938", + "setting_id": "CuYdmbMAxfR2brMw", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json index 2db0949a3e..ea28b98c3d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.6 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "3391221140", + "setting_id": "bWVXrgABVGcrAFJS", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json index 57cdc008d8..854b376c7b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 Dual QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 Dual QSKit (0.8 nozzle)", "inherits": "fdm_a250_dual_qs", "from": "system", - "setting_id": "48444934", + "setting_id": "pmqnfIeEBaQhDIQu", "instantiation": "true", "printer_model": "Snapmaker A250 Dual QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json index 70d2f03b82..428e7bb062 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.2 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "302401596", + "setting_id": "MGjEO5DBBevjRQwH", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json index 82780a21e4..122a4d075b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.4 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "1629237686", + "setting_id": "Vi3R1trX1ZmS3fI6", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json index c23fb7ec08..80a70a6292 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.6 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "1340741936", + "setting_id": "rF9QdbSq2zbLBHFw", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json index e61bf5bf70..76187a7016 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QS+B Kit (0.8 nozzle)", "inherits": "fdm_a250_qs_bk", "from": "system", - "setting_id": "2267595426", + "setting_id": "im5WjUqSLWVNykKy", "instantiation": "true", "printer_model": "Snapmaker A250 QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json index e2a92fe4a6..4b8471af2d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.2 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "2572320030", + "setting_id": "duQKvh70aERr9BB4", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json index 0ab9cdcd18..5f39becfeb 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.4 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "3930588308", + "setting_id": "HCBONTkI6OhQIVhn", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json index b5c7467582..e404221b26 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.6 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "3300797458", + "setting_id": "X0LAYZQNEKhAzxK4", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json index 0b7e2beb69..a626cda323 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A250 QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A250 QSKit (0.8 nozzle)", "inherits": "fdm_a250_qs", "from": "system", - "setting_id": "209516416", + "setting_id": "lwqKEofjjoqZLZCI", "instantiation": "true", "printer_model": "Snapmaker A250 QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json index a6709293b0..6e6196e06f 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.2 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "703292831", + "setting_id": "Z7qruZh1Gr84sxvQ", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json index 60dab693da..44f6b20b63 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.4 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "1525750805", + "setting_id": "r07yYNCBFwuqVEEX", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json index 62e8a76524..7617b4dbcf 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.6 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "1946629267", + "setting_id": "SdeIEjpfRFhTlz6k", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json index f84058a052..597ce6038d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 (0.8 nozzle)", "inherits": "fdm_a350", "from": "system", - "setting_id": "3167088385", + "setting_id": "a6OxhjcNKg2iHakM", "instantiation": "true", "printer_model": "Snapmaker A350", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json index 53ea8f0893..9446a30536 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.2 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3154404158", + "setting_id": "r26gWBcWXg0rciD3", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json index 4b2fdf8e00..73f11388b4 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.4 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3474856628", + "setting_id": "kg4QUY7MHcxYK0pL", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json index 7e4366e6c3..d132566114 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.6 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "3790090802", + "setting_id": "1cdj4ecU2hMz10cV", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json index ad222da676..f7d0748349 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 BKit (0.8 nozzle)", "inherits": "fdm_a350_bk", "from": "system", - "setting_id": "690678176", + "setting_id": "nijBAflM0GIU40mo", "instantiation": "true", "printer_model": "Snapmaker A350 BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json index 59f852e8a8..7847734781 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.2 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "1355319715", + "setting_id": "M4FATIDz4SxEaOvg", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json index cc2469c6a1..cb06d61344 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.4 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "601026601", + "setting_id": "VynOLPB6xzqj0vYr", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json index 582aad770c..612a957892 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.6 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "220518575", + "setting_id": "VcEUmOUxsaHP4t2T", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json index 1b416df116..ddd527ce05 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual (0.8 nozzle)", "inherits": "fdm_a350_dual", "from": "system", - "setting_id": "3320185661", + "setting_id": "c5atJ33cVquOKbsk", "instantiation": "true", "printer_model": "Snapmaker A350 Dual", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json index 12de82a625..cd090c9438 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.2 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "2156589631", + "setting_id": "mpfg3VPrsibhVOra", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json index 7e82b6c74c..388584fc4b 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.4 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "4086336437", + "setting_id": "Cs60CuwL9el3drPS", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json index bbf4c822bf..0c81a68728 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.6 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "3714491187", + "setting_id": "m0bJpyrn5Vw6dbiG", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json index 79380c0c69..22fb6f0c25 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual BKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual BKit (0.8 nozzle)", "inherits": "fdm_a350_dual_bk", "from": "system", - "setting_id": "363100321", + "setting_id": "SPQy09DwTrFV3ejK", "instantiation": "true", "printer_model": "Snapmaker A350 Dual BKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json index 0d70d787c4..6ec3a98acc 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.2 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "2039456978", + "setting_id": "x6LEUt6UURTMxhwE", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json index c6117e439c..be3ce68def 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.4 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "177593688", + "setting_id": "YOuyptsamVgcHUfQ", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json index ab4a9285ed..bac095bf69 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.6 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "610530782", + "setting_id": "q5bDNpy8bZszU7IS", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json index 4b6a97f3c3..899c264b4e 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QS+B Kit (0.8 nozzle)", "inherits": "fdm_a350_dual_qs_bk", "from": "system", - "setting_id": "3969986124", + "setting_id": "TeSH3MFBvrsiuYAT", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json index 9c6cbf68e1..5499e35fe3 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.2 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "4181829593", + "setting_id": "ILpRG1HZYQmvjbed", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json index 62c44482ef..2bc4aa6510 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.4 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "2321276499", + "setting_id": "Voj1513Z7uMVxFPk", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json index ee91555253..909ea27252 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.6 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "2762864341", + "setting_id": "H9R98bxxrF7rS7lx", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json index 6f3eaa7204..0d68d988f7 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 Dual QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 Dual QSKit (0.8 nozzle)", "inherits": "fdm_a350_dual_qs", "from": "system", - "setting_id": "1819225415", + "setting_id": "3quIbrOSRJWy1nPV", "instantiation": "true", "printer_model": "Snapmaker A350 Dual QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json index 180654ed57..3db71f509e 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.2 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3079526450", + "setting_id": "CMHGxrv6AbWs7al6", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json index 27a8893e5d..81fff4994c 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.4 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3298271672", + "setting_id": "konwrScbAqnMxhAX", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json index d0953d40ba..0fcd96a992 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.6 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "3932260670", + "setting_id": "sgctHamO4KlhYWVK", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json index cae243dd90..e5d3c6689a 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QS+B Kit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QS+B Kit (0.8 nozzle)", "inherits": "fdm_a350_qs_bk", "from": "system", - "setting_id": "581128876", + "setting_id": "qnpjfHLatrAyk64w", "instantiation": "true", "printer_model": "Snapmaker A350 QS+B Kit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json index c631ddb17b..e13d99fe5c 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.2 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "2390366686", + "setting_id": "naYY6sxU8jQWSGdj", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.14 Standard @Snapmaker (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json index f7ad571862..280fccf1e2 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.4 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "4250951764", + "setting_id": "lCXbcswUfEpgw1eA", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.16 Optimal @Snapmaker (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json index 0356528a22..fc9eea96d7 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.6 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "3549841618", + "setting_id": "Ckk8dvqEGjYSUSuu", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.18 Standard @Snapmaker (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json index c3592367a8..397d2ac3fe 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker A350 QSKit (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker A350 QSKit (0.8 nozzle)", "inherits": "fdm_a350_qs", "from": "system", - "setting_id": "458527552", + "setting_id": "oB7dYfgdRYiJd6u4", "instantiation": "true", "printer_model": "Snapmaker A350 QSKit", "default_print_profile": "0.24 Standard @Snapmaker (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json index 26fa2dbb73..e2d6405557 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "767951383", + "setting_id": "1fDVPeDoI2utiUnt", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.14 Standard @Snapmaker Artisan (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json index e6ff2099ac..4023a08ed4 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "1591507869", + "setting_id": "0ludJexq9QGmPOGC", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.16 Optimal @Snapmaker Artisan (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json index 610707282e..c08e4f5eed 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "1881821979", + "setting_id": "Y46QcENxUZvULOKt", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.18 Standard @Snapmaker Artisan (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json index 28bf714dc1..db353e269c 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_a400", "from": "system", - "setting_id": "3102247049", + "setting_id": "jraBroO6GPe2qjlV", "instantiation": "true", "printer_model": "Snapmaker Artisan", "default_print_profile": "0.24 Standard @Snapmaker Artisan (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json index 0d74a99a4f..82dd213dad 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "773945936", + "setting_id": "uGHn9W0kiUbFqZpm", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.14 Standard @Snapmaker J1 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json index ea3ebd087c..cd38cb4465 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "1564148698", + "setting_id": "c1KqJtKJyfrGzJJA", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.16 Optimal @Snapmaker J1 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json index 5fecd853f2..d121a9b6ea 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "1942825820", + "setting_id": "Dm1xvkg08FfW34xL", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.18 Standard @Snapmaker J1 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json index 9cd48de3af..8ef6f9f2e1 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_idex", "from": "system", - "setting_id": "3138384078", + "setting_id": "yF8EGxKTcrWFFmIk", "instantiation": "true", "printer_model": "Snapmaker J1", "default_print_profile": "0.24 Standard @Snapmaker J1 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..8a5cbc56d8 --- /dev/null +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "setting_id": "CwJeuh1rxZcjvkXh", + "name": "Snapmaker U1 (0.2 nozzle)", + "from": "system", + "instantiation": "true", + "inherits": "fdm_U1", + "printer_model": "Snapmaker U1", + "printer_variant": "0.2", + "default_print_profile": "0.10 Standard @Snapmaker U1 (0.2 nozzle)", + "max_layer_height": [ + "0.14", + "0.14", + "0.14", + "0.14" + ], + "min_layer_height": [ + "0.04", + "0.04", + "0.04", + "0.04" + ], + "nozzle_diameter": [ + "0.2", + "0.2", + "0.2", + "0.2" + ], + "nozzle_type": "hardened_steel" +} 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 96dd135805..1105a7ec1d 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1", + "setting_id": "UeTP4RqAd7xAMHVE", "name": "Snapmaker U1 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json index e3f6e0cad2..f637b2a592 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.4+0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_04_06", + "setting_id": "O6AMxX1Ptbtv4zCK", "name": "Snapmaker U1 (0.4+0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json index 33022e3b3b..60e699d108 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "SM_U1_06", + "setting_id": "1OseO7RSPgE4CRKO", "name": "Snapmaker U1 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..b775c2c964 --- /dev/null +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,30 @@ +{ + "type": "machine", + "setting_id": "WTkhQtyDO06YY6AG", + "name": "Snapmaker U1 (0.8 nozzle)", + "from": "system", + "instantiation": "true", + "inherits": "fdm_U1", + "printer_model": "Snapmaker U1", + "printer_variant": "0.8", + "default_print_profile": "0.40 Standard @Snapmaker U1 (0.8 nozzle)", + "max_layer_height": [ + "0.56", + "0.56", + "0.56", + "0.56" + ], + "min_layer_height": [ + "0.16", + "0.16", + "0.16", + "0.16" + ], + "nozzle_diameter": [ + "0.8", + "0.8", + "0.8", + "0.8" + ], + "nozzle_type": "hardened_steel" +} diff --git a/resources/profiles/Snapmaker/machine/Snapmaker U1.json b/resources/profiles/Snapmaker/machine/Snapmaker U1.json index f9c3f98893..fb703f2e75 100644 --- a/resources/profiles/Snapmaker/machine/Snapmaker U1.json +++ b/resources/profiles/Snapmaker/machine/Snapmaker U1.json @@ -7,5 +7,5 @@ "model_id": "797581801", "bed_model": "Snapmaker U1_bed.stl", "bed_texture": "Snapmaker U1_texture.svg", - "nozzle_diameter": "0.4;0.4+0.6;0.6" + "nozzle_diameter": "0.2;0.4;0.4+0.6;0.6;0.8" } diff --git a/resources/profiles/Snapmaker/machine/fdm_U1.json b/resources/profiles/Snapmaker/machine/fdm_U1.json index 00f0161b7b..73fe5b74ef 100644 --- a/resources/profiles/Snapmaker/machine/fdm_U1.json +++ b/resources/profiles/Snapmaker/machine/fdm_U1.json @@ -186,5 +186,12 @@ "nozzle_type": "undefine", "auxiliary_fan": "0", "default_bed_type": "Textured PEI Plate", - "printer_agent": "snapmaker" + "printer_agent": "snapmaker", + "printable_area": [ + "0.5x1", + "270.5x1", + "270.5x271", + "0.5x271" + ], + "printable_height": "270.05" } diff --git a/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..996b127b77 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.06 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.06 High Quality @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.06", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.06", + "support_bottom_z_distance": "0.06", + "setting_id": "3SCofR6VrVyo3vJp", + "description": "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. So, it results in minimal layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "elefant_foot_compensation": "0.15", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "13.5", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json index 7aeb2b548b..f9c88f0fd6 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.06 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1495708454", + "setting_id": "R1p6eK25DdWRTjtn", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json index 1e8df62498..2f9d2d3d04 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -2,7 +2,7 @@ "type": "process", "name": "0.06 Standard @Snapmaker Artisan (0.2 nozzle)", "from": "system", - "setting_id": "3200425436", + "setting_id": "Fqyv4se6T1PKBpXJ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json index 5b2a989121..11e667b0f1 100644 --- a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.06 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4149563988", + "setting_id": "seDKvMzBpotwIPgr", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..85e50ec87f --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.06 Standard @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,39 @@ +{ + "type": "process", + "name": "0.06 Standard @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.06", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.06", + "support_bottom_z_distance": "0.06", + "setting_id": "997RaiNHd2YhpaRB", + "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "13.5", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json index d7be6b8a25..1158054b03 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3124178337", + "setting_id": "RqnQhbxHIBGGb18o", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json index 391483ef8c..adf8ae30d1 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "723238605", + "setting_id": "pBTnfw8bL4m3gmwZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json index ee92378122..890b8a4dad 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "175768766", + "setting_id": "79xRHqb7P2V8W7kt", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json index 35b00038e8..aeffe99f2a 100644 --- a/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 Extra Fine @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 Extra Fine @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "Tayg0K1WRyJMLoke", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..fe0fc0e87d --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.08 High Quality @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.08", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.08", + "support_bottom_z_distance": "0.08", + "setting_id": "6ExpMU3Wq4J1R7wy", + "description": "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. So, it results in almost invisible layer lines and much higher printing quality, but much longer printing time.", + "default_acceleration": "4000", + "elefant_foot_compensation": "0.15", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "18", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json index 499fd7c96c..b86156d841 100644 --- a/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.08 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.08 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.08", "from": "system", - "setting_id": "GP099", + "setting_id": "Bld9ulv0wFza7OCb", "instantiation": "true", "description": "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. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..472176ff40 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.08 Standard @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,39 @@ +{ + "type": "process", + "name": "0.08 Standard @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.08", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.08", + "support_bottom_z_distance": "0.08", + "setting_id": "loFrCYH9ux2L5JpZ", + "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "18", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..0f15ce7c5f --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.10 High Quality @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.10 High Quality @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.1", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.1", + "support_bottom_z_distance": "0.1", + "setting_id": "BfLpmnJnSBYBFInR", + "description": "Compared with the default profile of a 0.2 mm nozzle, it has lower speeds and acceleration, and the sparse infill pattern is Gyroid. So, it results in much higher printing quality, but a much longer printing time.", + "default_acceleration": "4000", + "elefant_foot_compensation": "0.15", + "outer_wall_acceleration": "2000", + "outer_wall_speed": "60", + "sparse_infill_pattern": "gyroid", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "28", + "prime_volume": "25", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json index 6637b9d8bc..581909f3a7 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1303724634", + "setting_id": "lQPTbtyWsLBlzhhu", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json index cc7e78dd97..4664301284 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2309389761", + "setting_id": "GU5JJudPaiVQj9MZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json index 987f409837..050a0d217d 100644 --- a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.10 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "3458191734", + "setting_id": "IbypFju9QyDwlZTZ", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..460bf8b6fd --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.10 Standard @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,41 @@ +{ + "type": "process", + "name": "0.10 Standard @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.1", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.1", + "support_bottom_z_distance": "0.1", + "setting_id": "SOq962UWv1ml1Mk0", + "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "preheat_time": "31", + "prime_tower_brim_width": "6", + "prime_tower_width": "28", + "prime_volume": "25", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "slowdown_for_curled_perimeters": "0" +} diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json index 0ecb1bcfad..0096cf3d9f 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "659326512", + "setting_id": "NeGwX60F3EGKDeqW", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json index dc1ff4a16d..855369306e 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3320746901", + "setting_id": "pwH7fMWirYSLpbak", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json index 94688a0689..c0a6a4d0e5 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2089753458", + "setting_id": "blXkiX39xoI1q4KO", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json index 295bae445d..42823b3f0b 100644 --- a/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 Fine @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 Fine @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "xBU1j8ldOefYfosp", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json index 57bb9d687e..8564a41b24 100644 --- a/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.12 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.12 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.12", "from": "system", - "setting_id": "GP103", + "setting_id": "WNWFsx5DJtCRAlFl", "instantiation": "true", "description": "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. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..de68cc0dd0 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.12 Standard @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,39 @@ +{ + "type": "process", + "name": "0.12 Standard @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.12", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.12", + "support_bottom_z_distance": "0.12", + "setting_id": "KHC1zpxpuvaUEzvf", + "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "28", + "prime_volume": "27", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json index 151a1ac3e1..b07c8f4758 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker (0.2 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3753641602", + "setting_id": "d3hM4vX8GYrPLFXM", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.2 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json index 661bba8010..e63fd634d4 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker Artisan (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker Artisan (0.2 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1624466618", + "setting_id": "iI5ngHi86nvZCCx8", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json index 39dd370bac..c9c285e7e2 100644 --- a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker J1 (0.2 nozzle).json @@ -3,7 +3,7 @@ "name": "0.14 Standard @Snapmaker J1 (0.2 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2689370057", + "setting_id": "r3eh6MCwv9tWC2yd", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.2 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json new file mode 100644 index 0000000000..c265d55e67 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.14 Standard @Snapmaker U1 (0.2 nozzle).json @@ -0,0 +1,39 @@ +{ + "type": "process", + "name": "0.14 Standard @Snapmaker U1 (0.2 nozzle)", + "inherits": "fdm_process_U1_0.2_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.14", + "initial_layer_print_height": "0.1", + "wall_loops": "4", + "bottom_shell_layers": "5", + "top_shell_layers": "7", + "bridge_flow": "1", + "initial_layer_speed": "40", + "initial_layer_infill_speed": "70", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "support_top_z_distance": "0.14", + "support_bottom_z_distance": "0.14", + "setting_id": "NGJoV0n6T510y9wM", + "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.2 nozzle)" + ], + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "32", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib" +} diff --git a/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json index ef5d90abc8..e66f9f3beb 100644 --- a/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 High Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 High Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.16", "from": "system", - "setting_id": "GP107", + "setting_id": "Ofe17WrGQ3MOrqNe", "instantiation": "true", "description": "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. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json index db0234404b..c77a8dbfb6 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "719207749", + "setting_id": "gBjmgWarREVw7caM", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json index c25196675d..67fc4c5c17 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2870109378", + "setting_id": "2wZvQq0qNv4WfhdZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json index 4c7d9e1a12..983fdfc1f2 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "931476703", + "setting_id": "aYABRtB6CLWpFLg8", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json index 5bc8f1e60d..2817871fad 100644 --- a/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.16 Optimal @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.16 Optimal @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "ERcgRLp5bQo1hgz8", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json index 7e38088653..58ba1f433e 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "4013595815", + "setting_id": "QqMgdUexSxZGr7hg", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json index 42260b4334..571da9803b 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3721468026", + "setting_id": "WRCJjHoFE6ONTjtd", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json index 8759921c7c..65113d6de1 100644 --- a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.18 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1330982148", + "setting_id": "Geu18odz6ObfsTRu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..e68cf86d75 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.18 Standard @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,42 @@ +{ + "type": "process", + "name": "0.18 Standard @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.25", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "support_top_z_distance": "0.18", + "support_bottom_z_distance": "0.18", + "setting_id": "XGSrVgnsUFv6uCRs", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "41", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json index 43fc48b4e7..5de608c68d 100644 --- a/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Bambu Support W @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "8OkVMuElKExBdftG", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", diff --git a/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json index 84d516815e..ac7fc102bc 100644 --- a/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Quality @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Quality @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "BBXxXQCXCme2Mvy0", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json index 3c60151192..8f007e2a34 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3044804041", + "setting_id": "Fv6j7xDQkyiKZjIJ", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json index c268e38e7b..1b40cd1f2a 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "864558918", + "setting_id": "T7h4X48nUSLv0Vt2", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json index 78e761c7cc..f81b4247e3 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4042107035", + "setting_id": "dvKD5OVLO2xU1lOV", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json index 54ae187a48..243718507b 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "XR5r9SuWmSag5Qjo", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json index e02eabc023..52e1aa9349 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.4+0.6 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP004_0406_020", + "setting_id": "RDaUoAylHaD0M0F1", "instantiation": "true", "description": "Standard profile for the Snapmaker U1 mixed-nozzle configuration (T0/T1 = 0.4 mm, T2/T3 = 0.6 mm). Line widths are expressed as percentages of nozzle diameter so they scale correctly per tool. Use T0/T1 for detail work and outer walls; use T2/T3 for fast infill or large structural features.", "compatible_printers": [ diff --git a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json index 4f97d4ca31..f5ab699928 100644 --- a/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Standard @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Standard @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_020", + "setting_id": "6VM4QhgvHUmyf2um", "instantiation": "true", "description": "Standard 0.2 mm layer height profile for the Snapmaker U1 with 0.6 mm nozzles. Balances print speed and surface quality for everyday prints.", "layer_height": "0.20", diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json index 37cd0501b1..453c35a65c 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3490773493", + "setting_id": "9cy25w7W7ESIKVpf", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json index bcc9a67e37..4098850307 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1825586885", + "setting_id": "mFyhre472uYu5he3", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json index 66798155d6..d6349b8dec 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "563165128", + "setting_id": "3vunOdQ6JRC3hEGF", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json index 6c20f1fd9a..4defa45a16 100644 --- a/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Strength @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Strength @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP013", + "setting_id": "bYnMOZxTq83EwIyd", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "outer_wall_speed": "60", diff --git a/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json index d709476713..36a3172b48 100644 --- a/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Support @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Support @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP0040", + "setting_id": "4whjHJVCN44w8SPE", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json index a991e399a8..37ba596b63 100644 --- a/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.20 Support W @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.20 Support W @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.20", "from": "system", - "setting_id": "GP008", + "setting_id": "M9JhI2roLcP4jYks", "instantiation": "true", "enable_support": "1", "support_interface_top_layers": "3", diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json index e7cdb41df1..25abfea922 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1966563644", + "setting_id": "FV2YB1tapUrW85Jj", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json index 9f904a0f09..17fe35c5d6 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2003861482", + "setting_id": "f4Rl07LdVMSEfoVZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json index ca3e75b12d..5f5199f7ec 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2742890459", + "setting_id": "oarYhYk2ITkRzZwf", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json index bab4205384..a4c10a8ad1 100644 --- a/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Draft @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Draft @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "MYRo7jTenu7F0Zv4", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json index f3627018cb..3fa8e9b3db 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "159607191", + "setting_id": "RtyAfues7SSb8ja5", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json index 31921d580b..9fdeff863a 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3242308101", + "setting_id": "gflLPQ66EUDCMsV0", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json index 7346225a7d..e90dd34c1d 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "4094373563", + "setting_id": "RSYYODWQ92DEvxzo", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json index d68d78b227..4615647a66 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1019868457", + "setting_id": "4SkOxLyTu2fJtXwZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json index ba3ca4d9ac..c3c6d46268 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2957563554", + "setting_id": "1Wb3EUbk5YY8wMM3", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json index 626608bc6b..8aa8de9223 100644 --- a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.24 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2022313264", + "setting_id": "3wD7GbvxroMwdPcT", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..b8a8427baf --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,41 @@ +{ + "type": "process", + "name": "0.24 Standard @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.24", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "setting_id": "BziJYuA5U5gWm6FM", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "55", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..1b13e745d2 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.24 Standard @Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.24 Standard @Snapmaker U1 (0.8 nozzle)", + "inherits": "fdm_process_U1_0.8_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.24", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5", + "setting_id": "QcJ5p9h0eYUb91ak", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.8 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "min_width_top_surface": "90", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "54", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json index 54df855ea6..2a0f1ae009 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2853588009", + "setting_id": "u2Me8HPHOGuwYh4H", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json index 6246957798..a38c31b2fd 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "4247211099", + "setting_id": "dQn9kx2krDE0pl9N", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json index f423fd8862..2dcf03d540 100644 --- a/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.25 Benchy @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.25 Benchy @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1", "from": "system", - "setting_id": "2853588009", + "setting_id": "deA4Xg6QxFTKOYZy", "instantiation": "true", "compatible_printers": [ "Snapmaker U1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json index 2d2e7cf809..f8d31d6c3d 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker (0.4 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3717021337", + "setting_id": "MwuZ1zOqyZjq7Xn3", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.4 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json index 3baeea0c4a..e89e5148ee 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker Artisan (0.4 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3141987096", + "setting_id": "Ew6LNTqyLEv99qoA", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json index 5424fa5fec..b472f8b73c 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker J1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker J1 (0.4 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1784261617", + "setting_id": "SamjgSZ3VtqlZLlq", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.4 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json index 3e41dc2cb8..4adf06f100 100644 --- a/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.28 Extra Draft @Snapmaker U1 (0.4 nozzle).json @@ -3,7 +3,7 @@ "name": "0.28 Extra Draft @Snapmaker U1 (0.4 nozzle)", "inherits": "fdm_process_U1_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "0fSeyAIS6z75A1r3", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json index 22e3aa161d..8f8e6a1d15 100644 --- a/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Draft @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Draft @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_030", + "setting_id": "Tk3tG3RGJ8dwXFKf", "instantiation": "true", "description": "Fast draft profile for the Snapmaker U1 with 0.6 mm nozzles. 0.3 mm layer height for quick prototypes and functional parts.", "layer_height": "0.30", diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json index 59a09ec865..71ca1a7364 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1410611847", + "setting_id": "fp0W4NRR2rSw9Ya4", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json index 51a40210b1..740b764a6b 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1517142331", + "setting_id": "Ugiz4d5OlsDqjoaI", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json index 476b4b0b03..82e876cd59 100644 --- a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1402174975", + "setting_id": "zKZEAPhMInWurQ3h", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..3ed454a7d5 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.30 Standard @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,40 @@ +{ + "type": "process", + "name": "0.30 Standard @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.3", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "setting_id": "TWxp6qgz1DJa8Ngo", + "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "68", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json index 402c734aa5..69c56f442d 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "829998779", + "setting_id": "tRLlH8ypDj0ifqo8", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json index 9158a185ae..6cd6ab07e6 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "87417016", + "setting_id": "3lZfTFO6s03AUH8m", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json index 81f6e23923..27945ce986 100644 --- a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.30 Strength @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2196759212", + "setting_id": "VEugI1UKcKds8E1A", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..ce6563d960 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.30 Strength @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,42 @@ +{ + "type": "process", + "name": "0.30 Strength @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.3", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "setting_id": "CBaL0vgwtgsd6Snj", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", + "elefant_foot_compensation": "0.15", + "sparse_infill_density": "25%", + "wall_loops": "4", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_width": "30", + "prime_volume": "68", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "prime_tower_brim_width": "5", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_type": "tree(auto)", + "wipe_tower_extra_spacing": "120%" +} diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json index 6aba88f111..ce2b7b3f83 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3587326841", + "setting_id": "CAhYrvimykZy7iSs", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json index e823be4cc2..b599d87fc9 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "195892532", + "setting_id": "LlNd3YLkajoYsKC0", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json index 5747e3d059..986296cbd6 100644 --- a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.32 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1103138322", + "setting_id": "XiV24WQ6hnqEVMPr", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..47ac276acc --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.32 Standard @Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,44 @@ +{ + "type": "process", + "name": "0.32 Standard @Snapmaker U1 (0.8 nozzle)", + "inherits": "fdm_process_U1_0.8_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.32", + "initial_layer_print_height": "0.4", + "bridge_flow": "0.7", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5", + "setting_id": "iVRz2B0VBIBL1xVd", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.8 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "72", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "bridge_density": "70%", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json index cc6da28812..5c4ad7a5d5 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3323821663", + "setting_id": "STgfVV6KZwuNAJTp", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json index c72bbcd72f..352f0b751f 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3004749888", + "setting_id": "DBXZw70yr42NPFBZ", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json index 91eb286bd2..8686fac739 100644 --- a/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.34 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.34 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "1036004160", + "setting_id": "s06qimkxiUBykIsi", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json index ffe6096664..9e9cb83680 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "1205536673", + "setting_id": "8mwvBLOeeXiUA35z", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json index 4e0f02547c..4357e58d05 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "3805809743", + "setting_id": "N7vC6kYJqp40LY7W", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json index 4f76da75b5..bedb42aed1 100644 --- a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.36 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "798218413", + "setting_id": "2OSmY8NEZvC4o2va", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..ddd97a76c3 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.36 Standard @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,41 @@ +{ + "type": "process", + "name": "0.36 Standard @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.36", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "setting_id": "C0PiCFd3P222knX9", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "81", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json index 9f5610a363..79d8086f1a 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2876749174", + "setting_id": "1PxsyiR4zEgwqAvG", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json index 1b256cee49..e65f9dd631 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1408693644", + "setting_id": "453isxBtQ278tqPl", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json index 89e6e92534..198a83b1fd 100644 --- a/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.38 Standard @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.38 Standard @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2402668673", + "setting_id": "O5DAosMnkQZlKLZu", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json index c64c5d203f..265c91eb35 100644 --- a/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Extra Draft @Snapmaker U1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Extra Draft @Snapmaker U1 (0.6 nozzle)", "inherits": "fdm_process_U1_0.6_common", "from": "system", - "setting_id": "GP004_06_040", + "setting_id": "rAUffOThYmj9FVTw", "instantiation": "true", "description": "Maximum-speed profile for the Snapmaker U1 with 0.6 mm nozzles. 0.4 mm layer height for rapid prototyping where surface finish is not critical.", "layer_height": "0.40", diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json index 3995f0f1d5..05205f3a8e 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2678033582", + "setting_id": "2aC1Z3pm0mC2DSNW", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json index 959660e636..d90fa0aaad 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "2628115465", + "setting_id": "U0mILMuJdZ2LNYsm", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json index 90996a903d..cb3557bc22 100644 --- a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.40 Standard @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2366200641", + "setting_id": "hLro9SIf4GzbYg45", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..24edfabf6d --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.40 Standard @Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,45 @@ +{ + "type": "process", + "name": "0.40 Standard @Snapmaker U1 (0.8 nozzle)", + "inherits": "fdm_process_U1_0.8_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.4", + "initial_layer_print_height": "0.4", + "bridge_flow": "0.8", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5", + "setting_id": "VqkPgUtZi159BKpJ", + "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.8 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "90", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "bridge_density": "60%", + "enable_arc_fitting": "0", + "min_width_top_surface": "200%", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "40", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json index e5f1c086f7..64c0394ee6 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker (0.6 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "886975587", + "setting_id": "gnM4lNsbX2S3wonD", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.6 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json index 92ec5f0d03..372be18eb8 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker Artisan (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker Artisan (0.6 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1891109323", + "setting_id": "grvHQBpHTT1BdbTa", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json index 03b3a0961f..4b8949cc9e 100644 --- a/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.42 Draft @Snapmaker J1 (0.6 nozzle).json @@ -3,7 +3,7 @@ "name": "0.42 Draft @Snapmaker J1 (0.6 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "2589039514", + "setting_id": "RMq3xKjrn0ptO9co", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.6 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json b/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json new file mode 100644 index 0000000000..d65ba8e688 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.42 Standard @Snapmaker U1 (0.6 nozzle).json @@ -0,0 +1,41 @@ +{ + "type": "process", + "name": "0.42 Standard @Snapmaker U1 (0.6 nozzle)", + "inherits": "fdm_process_U1_0.6_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.42", + "initial_layer_print_height": "0.3", + "bridge_flow": "1", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "15", + "setting_id": "SVJzhQA3KQetRZmo", + "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.6 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "precise_z_height": "0", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "95", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json index c9c85b2a1e..9407cacd15 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker (0.8 nozzle)", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2532073691", + "setting_id": "HhDt2cb9e752wPxu", "instantiation": "true", "compatible_printers": [ "Snapmaker A250 (0.8 nozzle)", diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json index c9e3af9d21..55a73e7e6c 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker Artisan (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker Artisan (0.8 nozzle)", "inherits": "fdm_process_a400", "from": "system", - "setting_id": "1018401408", + "setting_id": "NIQBjakw2NTMRlWv", "instantiation": "true", "compatible_printers": [ "Snapmaker Artisan (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json index f0d6a1747d..7eb2426f70 100644 --- a/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json +++ b/resources/profiles/Snapmaker/process/0.48 Draft @Snapmaker J1 (0.8 nozzle).json @@ -3,7 +3,7 @@ "name": "0.48 Draft @Snapmaker J1 (0.8 nozzle)", "inherits": "fdm_process_idex", "from": "system", - "setting_id": "3841224085", + "setting_id": "FdCZuPw2ndJ5Eu3M", "instantiation": "true", "compatible_printers": [ "Snapmaker J1 (0.8 nozzle)" diff --git a/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..08e054619e --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.48 Standard @Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,43 @@ +{ + "type": "process", + "name": "0.48 Standard @Snapmaker U1 (0.8 nozzle)", + "inherits": "fdm_process_U1_0.8_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.48", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5", + "setting_id": "5H6JWChFEo3zqoHQ", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.8 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "internal_bridge_speed": "100%", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "108", + "seam_gap": "15%", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json b/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json new file mode 100644 index 0000000000..86b571d1f5 --- /dev/null +++ b/resources/profiles/Snapmaker/process/0.56 Standard @Snapmaker U1 (0.8 nozzle).json @@ -0,0 +1,41 @@ +{ + "type": "process", + "name": "0.56 Standard @Snapmaker U1 (0.8 nozzle)", + "inherits": "fdm_process_U1_0.8_common", + "from": "system", + "instantiation": "true", + "layer_height": "0.56", + "initial_layer_print_height": "0.4", + "bridge_flow": "1", + "top_surface_pattern": "monotonic", + "initial_layer_speed": "35", + "initial_layer_infill_speed": "55", + "sparse_infill_speed": "100", + "top_surface_speed": "150", + "bridge_speed": "30", + "overhang_3_4_speed": "25", + "overhang_4_4_speed": "5", + "setting_id": "JZEIXOUT33c7MrZj", + "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", + "elefant_foot_compensation": "0.15", + "smooth_coefficient": "150", + "overhang_totally_speed": "50", + "compatible_printers": [ + "Snapmaker U1 (0.8 nozzle)" + ], + "filter_out_gap_fill": "1", + "gap_fill_target": "topbottom", + "prime_tower_brim_width": "5", + "prime_tower_width": "30", + "prime_volume": "126", + "wipe_tower_extra_rib_length": "8", + "wipe_tower_extra_spacing": "120%", + "wipe_tower_wall_type": "rib", + "enable_arc_fitting": "0", + "ooze_prevention": "1", + "precise_outer_wall": "0", + "slowdown_for_curled_perimeters": "0", + "standby_temperature_delta": "-150", + "support_threshold_angle": "35", + "support_type": "tree(auto)" +} diff --git a/resources/profiles/Snapmaker/process/fdm_process_U1_0.2_common.json b/resources/profiles/Snapmaker/process/fdm_process_U1_0.2_common.json new file mode 100644 index 0000000000..713b7ea625 --- /dev/null +++ b/resources/profiles/Snapmaker/process/fdm_process_U1_0.2_common.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "fdm_process_U1_0.2_common", + "inherits": "fdm_process_U1_common", + "from": "system", + "instantiation": "false", + "line_width": "0.22", + "outer_wall_line_width": "0.22", + "inner_wall_line_width": "0.22", + "initial_layer_line_width": "0.25", + "sparse_infill_line_width": "0.22", + "internal_solid_infill_line_width": "0.22", + "support_line_width": "0.22", + "top_surface_line_width": "0.22", + "compatible_printers": [] +} diff --git a/resources/profiles/Snapmaker/process/fdm_process_U1_0.8_common.json b/resources/profiles/Snapmaker/process/fdm_process_U1_0.8_common.json new file mode 100644 index 0000000000..838bfed324 --- /dev/null +++ b/resources/profiles/Snapmaker/process/fdm_process_U1_0.8_common.json @@ -0,0 +1,16 @@ +{ + "type": "process", + "name": "fdm_process_U1_0.8_common", + "inherits": "fdm_process_U1_common", + "from": "system", + "instantiation": "false", + "line_width": "0.82", + "outer_wall_line_width": "0.82", + "inner_wall_line_width": "0.82", + "initial_layer_line_width": "0.82", + "sparse_infill_line_width": "0.82", + "internal_solid_infill_line_width": "0.82", + "support_line_width": "0.82", + "top_surface_line_width": "0.82", + "compatible_printers": [] +} diff --git a/resources/profiles/Snapmaker/process/fdm_process_a400.json b/resources/profiles/Snapmaker/process/fdm_process_a400.json index 38248aa812..39e7565f0b 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_a400.json +++ b/resources/profiles/Snapmaker/process/fdm_process_a400.json @@ -3,7 +3,6 @@ "name": "fdm_process_a400", "inherits": "fdm_process_common", "from": "system", - "setting_id": "3085664947", "instantiation": "false", "initial_layer_print_height": "0.2", "enable_arc_fitting": "1", diff --git a/resources/profiles/Snapmaker/process/fdm_process_common.json b/resources/profiles/Snapmaker/process/fdm_process_common.json index 8e2ea83da8..6fb4fa2de4 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_common.json +++ b/resources/profiles/Snapmaker/process/fdm_process_common.json @@ -2,7 +2,6 @@ "type": "process", "name": "fdm_process_common", "from": "system", - "setting_id": "2598417433", "instantiation": "false", "adaptive_layer_height": "0", "layer_height": "0.2", diff --git a/resources/profiles/Snapmaker/process/fdm_process_idex.json b/resources/profiles/Snapmaker/process/fdm_process_idex.json index 15c8155745..7e04710bd3 100644 --- a/resources/profiles/Snapmaker/process/fdm_process_idex.json +++ b/resources/profiles/Snapmaker/process/fdm_process_idex.json @@ -3,7 +3,6 @@ "name": "fdm_process_idex", "inherits": "fdm_process_common", "from": "system", - "setting_id": "2703811679", "instantiation": "false", "initial_layer_print_height": "0.2", "enable_arc_fitting": "1", diff --git a/resources/profiles/Sovol.json b/resources/profiles/Sovol.json index a12a336457..770ca55c95 100644 --- a/resources/profiles/Sovol.json +++ b/resources/profiles/Sovol.json @@ -1,7 +1,7 @@ { "name": "Sovol", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Sovol configurations", "machine_model_list": [ diff --git a/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json index 1ea1faf7f8..8e043a5a48 100644 --- a/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic ABS @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "7julgReKEcp5tg0d", "name": "Generic ABS @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json index e83b91dc8f..ec1fefce99 100644 --- a/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PC @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "UPoqjanrvN173sVS", "name": "Generic PC @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json index 824d400a85..d23224b8f9 100644 --- a/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "ib7AtR3tQ2dSrFNP", "name": "Generic PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json index 1f3973041a..7ef7748ec1 100644 --- a/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PLA @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "kcFykpuuxMy7KwNu", "name": "Generic PLA @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json index f767c5309c..40f10eb1ed 100644 --- a/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic PLA Silk @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "WAHQZmwHoS4WjoTx", "name": "Generic PLA Silk @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json index 56b27f16b4..1c115fe8aa 100644 --- a/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Generic TPU @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "hQByQ7FIhAiytli8", "name": "Generic TPU @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json index cb27ef5d8e..02b335f910 100644 --- a/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/Polymaker PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "JBFKMaFtd7kO8Ksq", "name": "Polymaker PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json b/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json index 34b1b57d4b..35ee5bcd03 100644 --- a/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json +++ b/resources/profiles/Sovol/filament/SUNLU PETG @Sovol SV08 MAX.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSA04", + "setting_id": "x68SPQCqVacBSGd5", "name": "SUNLU PETG @Sovol SV08 MAX", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json index cfcbbdae3b..c77c7812b6 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "okqqqm0P8ehlQuDY", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json index 7b24efc390..b8151d47f4 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "5mtng0PM8CMglpD7", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json index 61de1fa8cc..da10d948ab 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "kgtcANsbfwSbdgOh", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json b/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json index 7984e95717..3d560d9905 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 ACE TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ERN0ozxmPhIMze0i", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json index c68023d389..42652117ef 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "Me1iSJmocW35ClmN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json index 65af99db45..483d28af10 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZrAm6Nm4FI7p4PgC", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json index 5f6ae18784..ef249ea17f 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YEEOGJYm4Z8W4vGV", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json index 6c8c97cc7c..2589b13e37 100644 --- a/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV06 Plus ACE TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "oNucKLcIdxwBPpUN", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV07 PLA.json b/resources/profiles/Sovol/filament/Sovol SV07 PLA.json index 8db730c64b..47fe781fcc 100644 --- a/resources/profiles/Sovol/filament/Sovol SV07 PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV07 PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "IHicmU5gzVf6G4F1", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 ABS.json b/resources/profiles/Sovol/filament/Sovol SV08 ABS.json index 05b10bbb7e..0bb16950d3 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 ABS.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 ABS.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nq4vvrWqKjWKELEz", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PETG.json b/resources/profiles/Sovol/filament/Sovol SV08 PETG.json index 9b1ea161f0..4fe3cc866f 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PETG.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PETG.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "CWd7KULbXvJeTTEy", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json b/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json index 2e5d769f10..046d787dc5 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PLA @SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PLA @SV08 0.2 nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "qmnuve3FgzrXgjPA", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 PLA.json b/resources/profiles/Sovol/filament/Sovol SV08 PLA.json index 81e89e0590..2132557b68 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 PLA.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 PLA.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 PLA", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nnU0222BS0F1c5ki", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol SV08 TPU.json b/resources/profiles/Sovol/filament/Sovol SV08 TPU.json index 1d077be597..a1d0cb0fdc 100644 --- a/resources/profiles/Sovol/filament/Sovol SV08 TPU.json +++ b/resources/profiles/Sovol/filament/Sovol SV08 TPU.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "tpBbCQhcSJsBesnG", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero ABS.json b/resources/profiles/Sovol/filament/Sovol Zero ABS.json index f928254d82..ecd862970a 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero ABS.json +++ b/resources/profiles/Sovol/filament/Sovol Zero ABS.json @@ -3,7 +3,7 @@ "name": "Sovol Zero ABS", "inherits": "Generic ABS @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "9pI7op6U4azpfNfb", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PC.json b/resources/profiles/Sovol/filament/Sovol Zero PC.json index 9d04032a97..ac866620dd 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PC.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PC.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PC", "inherits": "Generic PC @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "vuuZXnlrMgUKtSI0", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json index e4988a5a5b..a458307c64 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PETG HS Nozzle", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AfxHmpdOkMDJa2fk", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PETG.json b/resources/profiles/Sovol/filament/Sovol Zero PETG.json index b3931072e6..e7b328ac6f 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PETG.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PETG.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PETG", "inherits": "Generic PETG @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "75OJvkXlmbcaHQfW", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json index f3d581aece..f7e634386c 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Basic HS Nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "i9wDnSEIrOBPbOZl", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json index c5dc9ac61f..b7fb7f63e8 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Basic.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Basic", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "ZVvOaMwZ7noevsYf", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json index d17c79ca82..d6b31b283d 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk HS Nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Silk HS Nozzle", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "XxEJBNFLRltR2Xwn", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json index 30eea0cff2..64c8b8a465 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json +++ b/resources/profiles/Sovol/filament/Sovol Zero PLA Silk.json @@ -3,7 +3,7 @@ "name": "Sovol Zero PLA Silk", "inherits": "Generic PLA @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "QowhGzqSwGQoAp1a", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/filament/Sovol Zero TPU.json b/resources/profiles/Sovol/filament/Sovol Zero TPU.json index 9f779e5bb0..307a58ff01 100644 --- a/resources/profiles/Sovol/filament/Sovol Zero TPU.json +++ b/resources/profiles/Sovol/filament/Sovol Zero TPU.json @@ -3,7 +3,7 @@ "name": "Sovol Zero TPU", "inherits": "Generic TPU @System", "from": "system", - "setting_id": "GFSA04", + "setting_id": "iZHXx0RyRO096L0z", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json index 66e4ba3155..fe6d0dcd96 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV01 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "OrYBz2bwPIXQ0QZa", "name": "Sovol SV01 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json index 1e11b05a34..b06d237650 100644 --- a/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV01 Pro 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV01 Pro 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xJdpEJLw5JmUlPBH", "instantiation": "true", "printer_model": "Sovol SV01 Pro", "default_print_profile": "0.20mm Standard @Sovol SV01Pro", diff --git a/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json index 1bf2a4834e..65f382b90e 100644 --- a/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV02 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV02 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "e07wzF8K9ePoSPUD", "instantiation": "true", "printer_model": "Sovol SV02", "default_print_profile": "0.20mm Standard @Sovol SV02", diff --git a/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json index c19872c053..c6ed4efb9d 100644 --- a/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV05 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV05 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ljpHARdxa4iYSUPI", "instantiation": "true", "printer_model": "Sovol SV05", "default_print_profile": "0.20mm Standard @Sovol SV05", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json index cfde94c572..32726c753f 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 0.4 High-Speed nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 0.4 High-Speed nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ShWzWhKWa9JASGUz", "instantiation": "true", "printer_model": "Sovol SV06", "default_print_profile": "0.20mm High-Speed @Sovol SV06", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json index 95320561c8..47adaf0762 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QxUTprTCpyEEp30y", "instantiation": "true", "printer_model": "Sovol SV06", "default_print_profile": "0.20mm Standard @Sovol SV06", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json index a8a3eefeb9..45030c23ac 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "FCFa3jKKO1E8tCDd", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.12mm Standard @Sovol SV06 ACE 0.2 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json index 09610ba88d..9128747e51 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "CEDYgg6mNzFCH7bK", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.20mm Standard @Sovol SV06 ACE", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json index 85c434a57b..a1433ec914 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bsROify59RvHQlk8", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.30mm Standard @Sovol SV06 ACE 0.6 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json index e53e7915d7..5415c845e2 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 ACE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 ACE 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wAwlBwcsKelYq7wZ", "instantiation": "true", "printer_model": "Sovol SV06 ACE", "default_print_profile": "0.40mm Standard @Sovol SV06 ACE 0.8 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json index 2343452c81..cd6d2de6bd 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "fHfyr9rrVMqu1ruq", "instantiation": "true", "printer_model": "Sovol SV06 Plus", "default_print_profile": "0.20mm Standard @Sovol SV06Plus", diff --git a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json index 3f2eb87612..440ff3c88f 100644 --- a/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV06 Plus ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV06 Plus ACE 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "OPYo1a3aIyXMdlI7", "instantiation": "true", "printer_model": "Sovol SV06 Plus ACE", "default_print_profile": "0.20mm Standard @Sovol SV06 Plus ACE", diff --git a/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json index 6d981d160a..513c7a3bca 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV07 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nqHcOb6QQy4kM8nO", "instantiation": "true", "printer_model": "Sovol SV07", "default_print_profile": "0.20mm Standard @Sovol SV07", diff --git a/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json index 6941a3d6d1..ef7b6f4986 100644 --- a/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV07 Plus 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV07 Plus 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "RBpom11PPlgYlQl2", "instantiation": "true", "printer_model": "Sovol SV07 Plus", "default_print_profile": "0.20mm Standard @Sovol SV07 Plus", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json index 99e2e81386..c81d26c959 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.2 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "h3WmQz2a0dOCXHbH", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.10mm Standard @Sovol SV08 0.2 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json index d5b289945a..5aa5e4f14b 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ogyad4pXAoqy9915", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.20mm Standard @Sovol SV08", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json index f60670b3f3..2825fb9a83 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.6 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "geB9aMk6xmyTpmj4", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.30mm Standard @Sovol SV08 0.6 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json index 232dea8ae5..6510857d6f 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol SV08 0.8 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Isk4WSQ4RH23P3Wy", "instantiation": "true", "printer_model": "Sovol SV08", "default_print_profile": "0.20mm Standard @Sovol SV08 0.8 nozzle", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json index fb9cdd0444..d71e6b448b 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "MIHp3VCfT1e6gMjs", "name": "Sovol SV08 MAX 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json index 2ef88c40b3..4972eee589 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "HR1xTYrAmc07KHs0", "name": "Sovol SV08 MAX 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json index 4f2dadd644..32511e52ca 100644 --- a/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol SV08 MAX 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "8WhF31wX3mBoOqpx", "name": "Sovol SV08 MAX 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json index b9ee87a55c..f4ae49b7cb 100644 --- a/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json +++ b/resources/profiles/Sovol/machine/Sovol Zero 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Sovol Zero 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "QclEa2nmpBiii6Y0", "instantiation": "true", "printer_model": "Sovol Zero", "default_print_profile": "0.20mm Standard @Sovol Zero 0.4 nozzle", diff --git a/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json index d859ce1626..9d44b2f112 100644 --- a/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.08mm High Quality @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm High Quality @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "WQqoRN1avqbX8Pgd", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json b/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json index 8f8a95bf31..8ab14fe775 100644 --- a/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json +++ b/resources/profiles/Sovol/process/0.10mm Standard @Sovol SV08 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Sovol SV08 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sTiNnwPQInBM8oMT", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json index 0bea786309..f95e107e59 100644 --- a/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.12mm Quality @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Quality @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EGRlZsIz0TvybH5a", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json b/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json index 13d6004995..27723eb6fb 100644 --- a/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json +++ b/resources/profiles/Sovol/process/0.12mm Standard @Sovol SV06 ACE 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Standard @Sovol SV06 ACE 0.2 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "1nAnGTBSg9NbEjRl", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json index 1a62425fc1..5a9ceee897 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV01Pro.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV01Pro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "C5l9Xp7PFZJ8EUuI", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json index 4719b5d14c..b86f3c50ab 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV02.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV02", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "XGwpYXpDBGmz3IST", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json index 029e91547b..3f5b032956 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV05.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV05", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hx4TRRO93eAhKRlo", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json index 9099cc6d96..3c7bc35311 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rDtPKzMhHP85acXh", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json index 113adeb9eb..ab14ae1852 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV06Plus.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV06Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "L1YTQWBe8jGxUG5n", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json index 27a1580c8e..ca8fffec79 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV07", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "CCj4nI9LPvB6tBwv", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json index a99c1ff4a7..0f1251d22d 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV07Plus.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV07 Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Y7BQqmsJc3sCg5M4", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json index 8e2f206c92..a36b67382e 100644 --- a/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json +++ b/resources/profiles/Sovol/process/0.18mm Optimal @Sovol SV08.json @@ -3,7 +3,7 @@ "name": "0.18mm Optimal @Sovol SV08", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dtNZVowJXglP0ygk", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json b/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json index d37bf37355..d4102b9521 100644 --- a/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.20mm High-Speed @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.20mm High-Speed @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "S1iAf6JiKSas9AMw", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json index 88ea7f449d..a830bec966 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CFwXlxanOmqsdA48", "name": "0.20mm Standard @Sovol SV01", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json index 58da482ccf..4d7be1276a 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV01Pro.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV01Pro", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "i3AkK2cR13YkyVrJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json index 02b5564d88..65a6f16806 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV02.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV02", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ASEHMkWIP3Z7M6Eg", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json index 4b29346977..529ffbc648 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV05.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV05", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qz3ogX30ClF0lLRt", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json index 1e943aec92..22efbbb514 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 ACE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vJmKSRBaoZ7y02CV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json index 87f95181c8..39f9f21d9c 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06 Plus ACE.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06 Plus ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "7qkFiEhE4BGMZrDJ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json index 737a2757df..45d822eb85 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "cremVs4Sj00nBWtu", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json index f6ca60c51f..700232a310 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV06Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV06Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "bku5PsptBdjUrbQ6", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json index 042b06b343..4781a94d88 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV07", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "D6GOAXI1isGTNnfb", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json index 4ede35e947..5e8957e16c 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV07Plus.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV07 Plus", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "88ExWsak5lVw9qYZ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json index 6db5e19b33..7178632118 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV08 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "v0m5eV5ZVA813MVP", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json index 3cc925920e..32cbc84429 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08 MAX 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sPSDTG9mKjIOuy4m", "name": "0.20mm Standard @Sovol SV08 MAX 0.4 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json index ed142add8f..3411f92dab 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol SV08.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol SV08", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "vYejAtfzNoeBDq00", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json index 208fc2bf87..6b1ea0db9a 100644 --- a/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.20mm Standard @Sovol Zero 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Sovol Zero 0.4 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ShJTVnJ492No1j2j", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "1", diff --git a/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json b/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json index 287e67a643..19862486c1 100644 --- a/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json +++ b/resources/profiles/Sovol/process/0.28mm Fast @Sovol SV06 ACE 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Fast @Sovol SV06 ACE", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Ydon9OsrFa7A8L1F", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json index 7889591b43..0b4210b7f3 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV06 ACE 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Sovol SV06 ACE 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "n7KDWYlaTDObslGp", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json index 891f51fd5a..aa4c3fb129 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Sovol SV08 0.6 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VGWhB6OKWJrzkfrC", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json index ec11ce4d75..be242638fa 100644 --- a/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json +++ b/resources/profiles/Sovol/process/0.30mm Standard @Sovol SV08 MAX 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "EhJl99Rdzr3bYnjW", "name": "0.30mm Standard @Sovol SV08 MAX 0.6 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json index 396ff14664..165d9817f9 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV06 ACE 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Sovol SV06 ACE 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hkA5BT13eWBp5BKQ", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json index 51c453aea5..ccb9e95529 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Sovol SV08 0.8 nozzle", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "THLtL3Q597dBsUgK", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json index 9142a28b2b..e56135a018 100644 --- a/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json +++ b/resources/profiles/Sovol/process/0.40mm Standard @Sovol SV08 MAX 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5UL3y12LS7RXWO0d", "name": "0.40mm Standard @Sovol SV08 MAX 0.8 nozzle", "from": "system", "inherits": "fdm_process_common", diff --git a/resources/profiles/Tiertime.json b/resources/profiles/Tiertime.json index 73f8575b98..0742e8bce6 100644 --- a/resources/profiles/Tiertime.json +++ b/resources/profiles/Tiertime.json @@ -1,6 +1,6 @@ { "name": "Tiertime", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Tiertime configurations", "machine_model_list": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS.json b/resources/profiles/Tiertime/filament/Tiertime ABS.json index c42075e554..58b1849335 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ABS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ABS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00", - "setting_id": "GFSB00", + "setting_id": "uAtyf2jCQEcv7D2r", "name": "Tiertime ABS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json index bd2bc3f95f..1d716a957d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ABS@300HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB00_01", - "setting_id": "GFSB00", + "setting_id": "x1XBGyOHIgrD7PVs", "name": "Tiertime ABS@300HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA.json b/resources/profiles/Tiertime/filament/Tiertime ASA.json index 13767de68e..397f8084a9 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ASA.json +++ b/resources/profiles/Tiertime/filament/Tiertime ASA.json @@ -3,6 +3,7 @@ "name": "Tiertime ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "6rwe3zrsvad1oq4C", "filament_id": "GFB01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json index fee5cd9e1d..165590114d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime ASA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime ASA@300HS", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "FreBeBZ1r1VF4ouQ", "filament_id": "GFB01_01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json index 50b6ccdcfa..4319a9cd58 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "ImJ3Urgk3VVtwceI", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json index 3517416c74..6e3d41f5fc 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ABS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ABS@300HS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "tCw1f7MxFjxPr7Ci", "filament_id": "GFB99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json index 0ce348096e..4280c28c4d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "T1AzUXSewNk5Bj3x", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json index 50789c335d..062cf8e345 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic ASA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic ASA@300HS", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "7C5PjCg1vmTQFXWO", "filament_id": "GFB98_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json index ad0db3608a..a02176c07d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic BVOH", "inherits": "fdm_filament_bvoh", "from": "system", + "setting_id": "dhrpnirMnet0hJZl", "filament_id": "GFS97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json index baf8317406..abe8d42643 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic BVOH@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic BVOH@300HS", "inherits": "fdm_filament_bvoh", "from": "system", + "setting_id": "xfFXVyGfmXiu508N", "filament_id": "GFS97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json index eaefa2581b..e0683c378d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic EVA", "inherits": "fdm_filament_eva", "from": "system", + "setting_id": "ev5w69eBuTCYXB2d", "filament_id": "GFR99", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json index 4bed33d9c3..14ea1b88d1 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic EVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic EVA@300HS", "inherits": "fdm_filament_eva", "from": "system", + "setting_id": "pXuh92Zf1zPiaDXg", "filament_id": "GFR99_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json index 924765d59b..213181630b 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic HIPS", "inherits": "fdm_filament_hips", "from": "system", + "setting_id": "sFY2AyXFzAFuj6sv", "filament_id": "GFS98", "instantiation": "true", "filament_is_support": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json index 3adc038ba7..234412a67d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic HIPS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic HIPS@300HS", "inherits": "fdm_filament_hips", "from": "system", + "setting_id": "9epHDviPNHRB5bPD", "filament_id": "GFS98_01", "instantiation": "true", "filament_is_support": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json index 0d9a1570ae..4e04b050cf 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN98", - "setting_id": "GFSN99", + "setting_id": "DOWYicvaXaTMfzBU", "instantiation": "true", "fan_cooling_layer_time": [ "5" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json index d106e6b121..bd618a1f83 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA-CF@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN98_02", - "setting_id": "GFSN99", + "setting_id": "nRxvUKo1YXE8daoX", "instantiation": "true", "fan_cooling_layer_time": [ "5" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json index c2d2c2c88b..b5fbdf1bcc 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "DmP33sDwKcBDRmDK", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json index 5cf5228b01..131ea71f3c 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PA@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_pa", "from": "system", "filament_id": "GFN99_01", - "setting_id": "GFSN98", + "setting_id": "ERn1WYMiSjs6a82N", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json index df4edd5407..4044d45fe3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PC.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PC", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "5wzlA0sFj2xElixU", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json index bf1b45a4b3..6b919af688 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PC@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PC@300HS", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "i2ShskYbiq61UJ1B", "filament_id": "GFC99_01", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json index ee8a7ae442..2e4dc2d036 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PCTG", "inherits": "fdm_filament_pctg", "from": "system", + "setting_id": "UDqS8gFlHvPIysFk", "filament_id": "GFG97", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json index 8dff3b50d6..10b87ef227 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PCTG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PCTG@300HS", "inherits": "fdm_filament_pctg", "from": "system", + "setting_id": "2Qbbi90zWBoo9dBl", "filament_id": "GFG97-01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json index aa6db8e883..1cd9a569e6 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE-CF", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "jzT1pay155tbaY9M", "filament_id": "GFP98", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json index 0a7932200d..81b096e4b2 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE-CF@300HS", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "5ChSjqNjRn8QArJP", "filament_id": "GFP98_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json index 4d24e8c4c0..16b9244f12 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "bYC8MPsm3VIgwaSt", "filament_id": "GFP99", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json index b87b39a399..7ebf4377fe 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PE@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PE@300HS", "inherits": "fdm_filament_pe", "from": "system", + "setting_id": "ZbU3Ov0P5wtbudQ0", "filament_id": "GFP99_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json index 05e7c29567..c3907360a9 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "zA6nHgNkxBxGKw0w", "filament_id": "GFG98", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json index a2126d3250..04f803a53e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG-CF@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "jBUy8xUDg53e51kz", "filament_id": "GFG98_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json index 5bcc2544f1..e261373c3d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "UevLlG43knAdcET2", "filament_id": "GFG99", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json index 0f141b3a66..cfec6ee335 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PETG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PETG@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "ZZmmVicb1p0wb5r1", "filament_id": "GFG99_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json index 8acd782af3..f2be140f37 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PHA", "inherits": "fdm_filament_pha", "from": "system", + "setting_id": "tFuE7IEbeGEhCNnz", "filament_id": "GFR98", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json index 3d6c0181c9..e6e0475805 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PHA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PHA@300HS", "inherits": "fdm_filament_pha", "from": "system", + "setting_id": "de5eveMr3bI3OCtF", "filament_id": "GFR98_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json index ba10655ea3..a77cb529ea 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA High Speed", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "Ms3c6DePE0cjBeQ4", "filament_id": "GFL95", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json index dc23cb169a..d36f12715b 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA High Speed@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA High Speed@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "e0vVCCT6Tw4061is", "filament_id": "GFL95_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json index 9841fc95fe..f2ba37e0eb 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA Silk", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "RgKM4PxtAasidTe5", "filament_id": "GFL96", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json index 7ee1c089c3..b1911a7e9f 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA Silk@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA Silk@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "yV358AeiALOn6xVr", "filament_id": "GFL96_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json index 3d83ed8927..a78f6e0438 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "maM4lXic0F10faAb", "filament_id": "GFL98", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json index 7016d6f79a..3cc2f855f1 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA-CF@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "3QSGv6pAz9ihFVuD", "filament_id": "GFL98_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json index cc40a5c0c7..768f0e293a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "q9W1goEbw6UUrNY3", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json index cb3db3f1d4..6ba33d8004 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PLA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PLA@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "jTSVVOuHuQqETOpe", "filament_id": "GFL99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json index 1cb460698a..0c1ae8cae1 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-CF", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "O5VvyfY5CV6IfMPQ", "filament_id": "GFP96", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json index 96f10c25dc..5874361c2a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-CF@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "3TZu7e58qrjP4F4u", "filament_id": "GFP96_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json index c8319c0624..bde8189b36 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-GF", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "ZQnzXtnTMVMVMNaS", "filament_id": "GFP95", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json index 82515c1635..b8a677999a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP-GF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP-GF@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "WKwUmsEhhYFyGAP5", "filament_id": "GFP95_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json index c152b24b5e..895dd36cee 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "3ZYx92CbNBiocyXx", "filament_id": "GFP97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json index 578c118b0e..473e1b6643 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PP@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PP@300HS", "inherits": "fdm_filament_pp", "from": "system", + "setting_id": "lx9zoOh3ALDlLasf", "filament_id": "GFP97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json index a77ad3f070..9dba1d2e8a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-CF", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "2zYiuKYR7bESaCnd", "filament_id": "GFN97", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json index be06b59846..866d9981bb 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-CF@300HS", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "wLH8aGr4ZNiHazwA", "filament_id": "GFN97_01", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json index 0575dee63d..88d413d976 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-GF", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "hYkZEmk1B8X9EcF8", "filament_id": "GFN96", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json index c11639f54a..120bbce3c1 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPA-GF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPA-GF@300HS", "inherits": "fdm_filament_ppa", "from": "system", + "setting_id": "1zAhSxsuv3wxgBtQ", "filament_id": "GFN96_01", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json index 7822300608..d55bfb7557 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS-CF", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "E0gbADj0OHkGSOxt", "filament_id": "GFT98", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json index 6928fb1c0d..b4feee2599 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS-CF@300HS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "6UHEejfZvhQGA4vB", "filament_id": "GFT98_01", "instantiation": "true", "fan_max_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json index a1bd677135..8fcf9ee41a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "2L1eOtxSeCJxW3RV", "filament_id": "GFT97", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json index c0c465a6b4..853646bf08 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PPS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PPS@300HS", "inherits": "fdm_filament_pps", "from": "system", + "setting_id": "5TZhbLxtLq6kSJJY", "filament_id": "GFT97_01", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json index fc3939ca91..a77791002e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "bTkxwDd1TU8TUqVC", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json index 3641bfc1d5..f075f81a59 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic PVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic PVA@300HS", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "BQ6G75c9eLQQ7ULg", "filament_id": "GFS99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json index 44bd01bb93..353838867a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic SBS", "inherits": "fdm_filament_sbs", "from": "system", + "setting_id": "tHfCQJdD7qiIF4uT", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json index b0e3060ee0..429f1bd78a 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic SBS@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime Generic SBS@300HS", "inherits": "fdm_filament_sbs", "from": "system", + "setting_id": "neqjohDEPRiOa6ut", "filament_id": "GFL99_01", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json index 2b310d64ce..8a9e07a22f 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_tpu", "from": "system", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "Viy3kUE0cTV2rMiC", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json index 31975c0c82..456acc8a4e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime Generic TPU@300HS.json @@ -4,7 +4,7 @@ "inherits": "fdm_filament_tpu", "from": "system", "filament_id": "GFU99_01", - "setting_id": "GFSR99", + "setting_id": "wgOtq6REuUQmNe5R", "instantiation": "true", "filament_max_volumetric_speed": [ "3.2" diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json index 3e75f92650..8c165a210d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PA6-CF", "inherits": "fdm_filament_pa", "from": "system", + "setting_id": "HuOPyruYQNhxsjYW", "filament_id": "GFN05", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json index 061836edae..9d84f62383 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PA6-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PA6-CF@300HS", "inherits": "fdm_filament_pa", "from": "system", + "setting_id": "XniESd6DwW58wgYU", "filament_id": "GFN05_01", "instantiation": "true", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PC.json b/resources/profiles/Tiertime/filament/Tiertime PC.json index ecfc6a9041..4d0ce8c9fa 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PC.json +++ b/resources/profiles/Tiertime/filament/Tiertime PC.json @@ -3,6 +3,7 @@ "name": "Tiertime PC", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "ImTbFOOUrv2pQbCu", "filament_id": "GFC00", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json index ee6d532bea..fb3f03b63d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PC@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PC@300HS", "inherits": "fdm_filament_pc", "from": "system", + "setting_id": "nktjGLDy0Gjl0dO8", "filament_id": "GFC00_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json index 480bb2fd68..60a91bd937 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PET-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PET-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "WjpnXYqwyoeHdaC9", "filament_id": "GFT01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json index 9c5a82ae08..d844b97bf4 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PET-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PET-CF@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "kHWlt3zl53mXcEGp", "filament_id": "GFT01_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG.json b/resources/profiles/Tiertime/filament/Tiertime PETG.json index 0a31e66799..e4b5313393 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PETG.json +++ b/resources/profiles/Tiertime/filament/Tiertime PETG.json @@ -3,6 +3,7 @@ "name": "Tiertime PETG", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "lw6WCNgazXfTwS4z", "filament_id": "GFG00", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json index ffee7a62e2..822d39d12d 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PETG@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PETG@300HS", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "bSujcskPkCuGi3At", "filament_id": "GFG00_01", "instantiation": "true", "cool_plate_temp": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json index 01c0f21892..86a1895caa 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF.json @@ -3,6 +3,7 @@ "name": "Tiertime PLA-CF", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "AN8Ptxqrd3fAfsAk", "filament_id": "GFA50", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json index 4ab1abc22a..9a2dccc6cb 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA-CF@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PLA-CF@300HS", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "S7OJaqjGSnkaPyDQ", "filament_id": "GFA50_01", "instantiation": "true", "additional_cooling_fan_speed": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA.json b/resources/profiles/Tiertime/filament/Tiertime PLA.json index 3bee7048ad..22729a9776 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00", - "setting_id": "GFSA00", + "setting_id": "dlXQZNrJfvkJ3kWs", "name": "Tiertime PLA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json index 6e28f5955f..b12f813f3e 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PLA@300HS.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFA00_01", - "setting_id": "GFSA00", + "setting_id": "bqWrzfz6CXHohbpL", "name": "Tiertime PLA@300HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA.json b/resources/profiles/Tiertime/filament/Tiertime PVA.json index 2e5cad40a0..7adba03ec3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PVA.json +++ b/resources/profiles/Tiertime/filament/Tiertime PVA.json @@ -3,6 +3,7 @@ "name": "Tiertime PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "9Z1HdjB3dx1Rlyng", "filament_id": "GFS04", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json index 2a725aa17d..722e3efd60 100644 --- a/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime PVA@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime PVA@300HS", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "1CwFwvd5cNbZwY95", "filament_id": "GFS04_01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json index 9168f676b4..6feff32639 100644 --- a/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A.json @@ -3,6 +3,7 @@ "name": "Tiertime TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "aeeRALQ6vydj2vbR", "filament_id": "GFU01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json index 55d7409f7c..f4340bfed3 100644 --- a/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json +++ b/resources/profiles/Tiertime/filament/Tiertime TPU 95A@300HS.json @@ -3,6 +3,7 @@ "name": "Tiertime TPU 95A@300HS", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "6ee2z5F26fqKny4n", "filament_id": "GFU01_01", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json index bf9c3d41c4..63c5e51e50 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP300 HS 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "lgltuIatOQ6w6QbU", "name": "Tiertime UP300 HS 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json index ca8e29cb1d..8baee541a6 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP310 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "HMZ8IXHF9SCYY794", "name": "Tiertime UP310 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json index 4e8e1b8cfd..ce65946a41 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "92AYB3s93gFz7ZPX", "name": "Tiertime UP400 Pro 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json index 25b45f9ee0..272017038f 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM007", + "setting_id": "6NLuMd5QTEV7Dz7y", "name": "Tiertime UP400 Pro 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json index 6ceabf07ef..f43bda57a8 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP400 Pro 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM008", + "setting_id": "MieJsq4OcDXSPeYE", "name": "Tiertime UP400 Pro 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json index b407fe190c..a18c2a938f 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.4 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM006", + "setting_id": "6aAsuPmotiaU41L4", "name": "Tiertime UP600 HS 0.4 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json index 0dd5b63381..ea706dede8 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.6 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM009", + "setting_id": "4xd2mlCoTuJoXmOf", "name": "Tiertime UP600 HS 0.6 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json index 2e72d1c291..d114741fb9 100644 --- a/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/machine/Tiertime UP600 HS 0.8 nozzle.json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM010", + "setting_id": "tqKPATsUnwQWjXso", "name": "Tiertime UP600 HS 0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json index 701ef0a2bb..68d60b1e2c 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "kJslDhHisZSqoNLu", "name": "0.12mm Fine @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json index 04933f3961..0b3375f656 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "u1Hfo84e0ffI39MP", "name": "0.12mm Fine @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json index 00fb18a561..019d4617af 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "LiT2jc5HHSsxdPOY", "name": "0.12mm Fine @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json index 0761223af8..63f7b269d1 100644 --- a/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.12mm Fine @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP026", + "setting_id": "LwKN2IKIgniQAUbc", "name": "0.12mm Fine @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json index 8712c3b726..ed678b16bd 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "deEyVahMnJBIUh5W", "name": "0.16mm Optimal @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json index 0b6d9a21cf..189ac439e2 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "89hv0us5IMmhpDol", "name": "0.16mm Optimal @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json index d1a95afc07..7a4b5943a5 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "yZBSB83IptM1eMzO", "name": "0.16mm Optimal @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json index 40454a58ed..b172f23ca4 100644 --- a/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.16mm Optimal @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP025", + "setting_id": "BfOJljkGUCnVJ0zM", "name": "0.16mm Optimal @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json index fe136a59b1..d9ef9fe332 100644 --- a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP015", + "setting_id": "RhyeKvmwkRZhOQwa", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json index f268d70e32..241b319114 100644 --- a/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.18mm Fine @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.18_nozzle_0.6_HS", "from": "system", - "setting_id": "GP021", + "setting_id": "MgQfZdkafqp9eRQO", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json index 3e31cd360a..8d9947736b 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4a1IpFohcCPCxI1I", "name": "0.20mm Standard @Tiertime UP300 HS", "from": "system", "inherits": "fdm_process_tiertime_HS_common", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json index a8eaa3230d..834b645e2e 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "48QrtoSmDHWLbuck", "name": "0.20mm Standard @Tiertime UP310 Pro", "from": "system", "inherits": "fdm_process_tiertime_common", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json index 66724f13bc..d196edc5ca 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP001", + "setting_id": "QotYAumKUh7h5cBH", "name": "0.20mm Standard @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json index b820bb7bf0..3db84cce38 100644 --- a/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.20mm Standard @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP024", + "setting_id": "FKDS8Ql5ApZdlsH8", "name": "0.20mm Standard @Tiertime UP600 HS", "from": "system", "inherits": "fdm_process_tiertime_HS_common", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json index 1ed3dfeadf..a209d85d93 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "clvHKafqg81lxC4s", "name": "0.24mm Draft @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json index a2361a56b4..bb2d11bcf5 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "zr1zPgeqxJog1iO6", "name": "0.24mm Draft @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json index 1ce4b1d4bd..8ad2181ba3 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "L84Tpur6DqX0WI9U", "name": "0.24mm Draft @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json index 7647b0ba17..730b3fdb91 100644 --- a/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.24mm Draft @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP027", + "setting_id": "D7fl6dZLCLa5n8Es", "name": "0.24mm Draft @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json index f326ab2e89..c45c24b84a 100644 --- a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP027", + "setting_id": "aIJRdPXiyB5yUtVg", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json index 3ce977b8a0..0eadac356d 100644 --- a/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Fine @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.8_HS", "from": "system", - "setting_id": "GP032", + "setting_id": "elPtw7ApN0MhXk3e", "instantiation": "true", "description": "It has a smaller layer height and results in smoother surface and higher printing quality.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json index 6250ed17e9..abccc0329b 100644 --- a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP016", + "setting_id": "ZepNPFY7I5atXJhT", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json index f887fdca0a..9e04a6e6b5 100644 --- a/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.24mm Standard @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.24_nozzle_0.6_HS", "from": "system", - "setting_id": "GP022", + "setting_id": "KqXbGOmER4LTCJyR", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json index ed4d4ffb86..34f7f7221a 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP300 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CBOtpFjUICGttrgV", "name": "0.28mm Extra Draft @Tiertime UP300 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json index 86c8ed3abb..0b6617941f 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP310 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ODXIraViN4sdzaKe", "name": "0.28mm Extra Draft @Tiertime UP310 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json index 36d2211959..5c11562a22 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP400 Pro.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "bfRd7zHG5JoOWdXb", "name": "0.28mm Extra Draft @Tiertime UP400 Pro", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json index 51b651f8f5..60b1b484ee 100644 --- a/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json +++ b/resources/profiles/Tiertime/process/0.28mm Extra Draft @Tiertime UP600 HS.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP028", + "setting_id": "gl1nKSyprhumL6ci", "name": "0.28mm Extra Draft @Tiertime UP600 HS", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json index 1a4c677265..34d74cb1ad 100644 --- a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "doqZXTwqsRl0Xbbo", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json index 2203f6aebb..747872499e 100644 --- a/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Standard @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP023", + "setting_id": "feDmukIZ41HO21a6", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json index 67943c0afb..82e011345f 100644 --- a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "7XmclqpJEKUMRkAi", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json index 0ed196b597..03d21e34d1 100644 --- a/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.30mm Strength @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.30_nozzle_0.6_HS", "from": "system", - "setting_id": "GP024", + "setting_id": "1iJkZeHaeVc8S4GX", "instantiation": "true", "description": "It has a big layer height with optimized settings for stronger parts.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json index 868c5d27ab..ff33334f90 100644 --- a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP028", + "setting_id": "UUbjeI3ZdP1eyTr7", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json index 164d69fe77..8eaeb571af 100644 --- a/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.32mm Standard @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.32_nozzle_0.8_HS", "from": "system", - "setting_id": "GP033", + "setting_id": "UfghPlQt1E1jSveG", "instantiation": "true", "description": "It has a balanced layer height for good quality and reasonable printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json index 4e2227c4f5..71090fa613 100644 --- a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP019", + "setting_id": "pbY5WSAxRGZxbkHK", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json index d482527d8f..5e192e28ee 100644 --- a/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.36mm Draft @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.36_nozzle_0.6_HS", "from": "system", - "setting_id": "GP025", + "setting_id": "JvkM4CnQkKrxFCHj", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json index 62b34c4464..d3518d81d5 100644 --- a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP029", + "setting_id": "W3KtcxitNy5O6vIb", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json index a647dab7f1..ef0ee0040d 100644 --- a/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.40mm Standard @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.40_nozzle_0.8_HS", "from": "system", - "setting_id": "GP034", + "setting_id": "3IWyC5P6fXDLIawx", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json index bd0a9cedce..1e850801ca 100644 --- a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Tiertime UP400 Pro 0.6 nozzle", "inherits": "fdm_process_tiertime_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "joW9WCRXYDNyiypH", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json index c6751fdb22..7d2afaea09 100644 --- a/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json +++ b/resources/profiles/Tiertime/process/0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @Tiertime UP600 HS 0.6 nozzle", "inherits": "fdm_process_tiertime_0.42_nozzle_0.6_HS", "from": "system", - "setting_id": "GP026", + "setting_id": "Ho8RblejrdOKug8S", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json index 042470a1a6..f48c94c1b1 100644 --- a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP030", + "setting_id": "LA7i7oOBcbm5n7bO", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json index ea3de94137..c09e4c24e8 100644 --- a/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.48mm Draft @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.48_nozzle_0.8_HS", "from": "system", - "setting_id": "GP035", + "setting_id": "sRvgc2kM55MRUvGY", "instantiation": "true", "description": "It has a bigger layer height for faster printing but with more visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json index 7c3a639f8d..4ba7a7af61 100644 --- a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Tiertime UP400 Pro 0.8 nozzle", "inherits": "fdm_process_tiertime_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP031", + "setting_id": "XAuIJcY4WL1KQyO4", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json index 5aaca8aad6..dab79b259d 100644 --- a/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json +++ b/resources/profiles/Tiertime/process/0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @Tiertime UP600 HS 0.8 nozzle", "inherits": "fdm_process_tiertime_0.56_nozzle_0.8_HS", "from": "system", - "setting_id": "GP036", + "setting_id": "dDorcGm5vvUGQjaj", "instantiation": "true", "description": "It has the biggest layer height for fastest printing but with very visible layer lines.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Tronxy.json b/resources/profiles/Tronxy.json index 1d5bef89ce..32cf5ffa69 100644 --- a/resources/profiles/Tronxy.json +++ b/resources/profiles/Tronxy.json @@ -1,6 +1,6 @@ { "name": "Tronxy", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Tronxy configurations", "machine_model_list": [ diff --git a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json index 9bcfaa7e1e..188faf7f11 100644 --- a/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json +++ b/resources/profiles/Tronxy/machine/Tronxy X5SA 400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Tronxy X5SA 400 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "t8KY1zhDKOtHo3I4", "instantiation": "true", "printer_model": "Tronxy X5SA 400 Marlin Firmware", "default_filament_profile": "Generic PLA @System", diff --git a/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json b/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json index effec25cbb..0859dc495c 100644 --- a/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.08mm Extra Fine @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "cFjWVB09EyPfSptT", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json b/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json index 7324ef4ad6..5bc53bf662 100644 --- a/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.12mm Fine @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP002", + "setting_id": "CfBTVOD882EmgOn8", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json b/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json index 3f02572628..3bd4373f7d 100644 --- a/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.15mm Optimal @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP003", + "setting_id": "hjWWhN2a3XsVsqcg", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json b/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json index 368aeea79c..c685f72470 100644 --- a/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.20mm Standard @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "kZ09yTsbcxBl8Cys", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json b/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json index 28030db4aa..d47266661f 100644 --- a/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.24mm Draft @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "62VlhpUi9oCuCl6Q", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json b/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json index cc9b0a2eba..3b859618ff 100644 --- a/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json +++ b/resources/profiles/Tronxy/process/0.28mm Extra Draft @Tronxy.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Tronxy", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP006", + "setting_id": "5CPWfaMEp9YVl1ZD", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/TwoTrees.json b/resources/profiles/TwoTrees.json index 5063bbce79..7484f27416 100644 --- a/resources/profiles/TwoTrees.json +++ b/resources/profiles/TwoTrees.json @@ -1,6 +1,6 @@ { "name": "TwoTrees", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "TwoTrees configurations", "machine_model_list": [ diff --git a/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json b/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json index 3d37360bae..b430674cd7 100644 --- a/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json +++ b/resources/profiles/TwoTrees/filament/TwoTrees Generic 95A TPU @SK1.json @@ -3,7 +3,7 @@ "name": "TwoTrees Generic 95A TPU @SK1", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSU99", + "setting_id": "YqQSUrG195dCz67L", "filament_id": "GFU99", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json b/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json index 0de99e1423..b713bc31f4 100644 --- a/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json +++ b/resources/profiles/TwoTrees/filament/TwoTrees Generic HS PLA @SK1.json @@ -3,7 +3,7 @@ "name": "TwoTrees Generic HS PLA @SK1", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSL100", + "setting_id": "k7bLC5us9mGJzznW", "filament_id": "GFL100", "instantiation": "true", "compatible_printers": [ diff --git a/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json b/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json index 3ac1c9075c..1a27cf186b 100644 --- a/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json +++ b/resources/profiles/TwoTrees/machine/TwoTrees SK1 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "TwoTrees SK1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "oYYnPwOmTTN2p6y2", "instantiation": "true", "printer_model": "TwoTrees SK1", "nozzle_diameter": [ diff --git a/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json b/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json index 29f5a3b570..2b075ca6c8 100644 --- a/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json +++ b/resources/profiles/TwoTrees/machine/TwoTrees SP-5 Klipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "TwoTrees SP-5 Klipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "mLsl3PZrcD5XnV7j", "instantiation": "true", "printer_model": "TwoTrees SP-5 Klipper", "nozzle_diameter": [ diff --git a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json index a5fe0ec2ea..89cd8da68e 100644 --- a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @SK1.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "e67blfdblJpU4mPC", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json index f092236a89..743069d461 100644 --- a/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.08mm Extra Fine @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP001", + "setting_id": "RsV0aGJKSXIq0F2G", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json index 413c2b29e1..d0d5bb6bd3 100644 --- a/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json +++ b/resources/profiles/TwoTrees/process/0.12mm Fine @SK1.json @@ -3,6 +3,7 @@ "name": "0.12mm Fine @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "XAitwEqNgKkN3h6e", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json b/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json index cbb524c75c..b3af2be446 100644 --- a/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.12mm Fine @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP002", + "setting_id": "sjHTI0M9xPisplrH", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json b/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json index 91241c59c9..65909475be 100644 --- a/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.15mm Optimal @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP003", + "setting_id": "KViBpFjvYqMyhXOw", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json index 1f6816065b..39ed8b2220 100644 --- a/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json +++ b/resources/profiles/TwoTrees/process/0.16mm Optimal @SK1.json @@ -3,6 +3,7 @@ "name": "0.16mm Optimal @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "16Msz8goqH2Q8nVo", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json index d5d5cb4dcf..1c4f5422cc 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Quality @SK1.json @@ -3,6 +3,7 @@ "name": "0.20mm Quality @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "p2c8ePTvQGBCzOKY", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json index edec0cba75..7a0ddb35be 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json +++ b/resources/profiles/TwoTrees/process/0.20mm Standard @SK1.json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "6GMPTKxYdUYCknMo", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json b/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json index 85e9608dff..05415ef15b 100644 --- a/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.20mm Standard @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PvNYVe6TN12Y5rok", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json index 1bf6bd5e1d..d13fd4e031 100644 --- a/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm Draft @SK1.json @@ -3,6 +3,7 @@ "name": "0.24mm Draft @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "7FnZjrt1ElRBxo08", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json b/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json index 9b563b33d2..29d6be55bc 100644 --- a/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.24mm Draft @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP005", + "setting_id": "BNUMnQUb18fMkCQa", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json index 6c2c3bb6e1..709852316d 100644 --- a/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json +++ b/resources/profiles/TwoTrees/process/0.24mm HSpeed @SK1.json @@ -3,6 +3,7 @@ "name": "0.24mm HSpeed @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "5HcSLSgKd1ARPpfP", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json index 8a8266b805..0ac9e32254 100644 --- a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json +++ b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @SK1.json @@ -3,6 +3,7 @@ "name": "0.28mm Extra Draft @SK1", "inherits": "fdm_process_common", "from": "system", + "setting_id": "QA20KPjLCAJHPgbJ", "instantiation": "true", "compatible_printers": [ "TwoTrees SK1 0.4 nozzle" diff --git a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json index 2e2d6e59cc..6b8bd117a2 100644 --- a/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json +++ b/resources/profiles/TwoTrees/process/0.28mm Extra Draft @TwoTrees.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @TwoTrees", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP006", + "setting_id": "rDxzD80EyHaAek9W", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/UltiMaker.json b/resources/profiles/UltiMaker.json index 01e3c68ecc..da2b5442a1 100644 --- a/resources/profiles/UltiMaker.json +++ b/resources/profiles/UltiMaker.json @@ -1,7 +1,7 @@ { "name": "UltiMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "UltiMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json b/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json index 2ac6e69576..b02da9ca09 100644 --- a/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json +++ b/resources/profiles/UltiMaker/machine/UltiMaker 2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "UltiMaker 2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "Jl8sUeuACVyrnrst", "instantiation": "true", "printer_model": "UltiMaker 2", "default_print_profile": "0.18mm Standard @UltiMaker 2", diff --git a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json index 62b86e517f..02e0127bef 100644 --- a/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.12mm Fine @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "4iVomDxutraufw6B", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json index c0aa65d243..8c5596cfab 100644 --- a/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.18mm Standard @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.18mm Standard @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Mo2NUdUehA5y4OwV", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json index e17cc140ef..7df1292a9d 100644 --- a/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json +++ b/resources/profiles/UltiMaker/process/0.25mm Darft @UltiMaker 2.json @@ -3,7 +3,7 @@ "name": "0.25mm Draft @UltiMaker 2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dBum79P8qUSRgT90", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Vivedino.json b/resources/profiles/Vivedino.json index 5ccb1958d0..bd7228a295 100644 --- a/resources/profiles/Vivedino.json +++ b/resources/profiles/Vivedino.json @@ -1,6 +1,6 @@ { "name": "Vivedino", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Vivedino configurations", "machine_model_list": [ diff --git a/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json b/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json index 05253ee880..a7a82bcf68 100644 --- a/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json +++ b/resources/profiles/Vivedino/machine/Troodon 2.0 Klipper 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Troodon 2.0 Klipper 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "pYurHO2KNiqIhjHR", "instantiation": "true", "printer_model": "Troodon 2.0 - Klipper", "nozzle_diameter": [ diff --git a/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json b/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json index 3ecf6a6b27..0bb542922b 100644 --- a/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json +++ b/resources/profiles/Vivedino/machine/Troodon 2.0 RRF 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Troodon 2.0 RRF 0.4 nozzle", "inherits": "fdm_rrf_common", "from": "system", - "setting_id": "GM002", + "setting_id": "VxgWxIfWfPwBX4R6", "instantiation": "true", "printer_model": "Troodon 2.0 - RRF", "nozzle_diameter": [ diff --git a/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json b/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json index 58fa335382..64888a93c8 100644 --- a/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.08mm Extra Fine @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "tj4oiV47yMZQR0Ix", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json b/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json index e199af9314..02de3e80eb 100644 --- a/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.12mm Fine @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "PYPvyaYS2DKua3mo", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json b/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json index 89a8e0cc77..3172f9e500 100644 --- a/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.15mm Optimal @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZXJ5Y1pWmqPqTnsf", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json b/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json index 15940f5230..71715d340b 100644 --- a/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.20mm Standard @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O03LARAyZSDtAOw6", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json b/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json index bf1d931c38..d96acec08b 100644 --- a/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.24mm Draft @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "Z7oqAzkDg8hcl8uG", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json b/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json index e5a15e8d51..ec5ca299ab 100644 --- a/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json +++ b/resources/profiles/Vivedino/process/0.28mm Extra Draft @Troodon2.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Troodon2", "inherits": "fdm_process_klipper_common", "from": "system", - "setting_id": "GP004", + "setting_id": "GThcqEB89IuBQ7v2", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Volumic.json b/resources/profiles/Volumic.json index 9a6751c628..08a313b008 100644 --- a/resources/profiles/Volumic.json +++ b/resources/profiles/Volumic.json @@ -1,6 +1,6 @@ { "name": "Volumic", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "VOLUMIC configurations", "machine_model_list": [ diff --git a/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json b/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json index d87cb3b138..362b3b3720 100644 --- a/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json +++ b/resources/profiles/Volumic/filament/PA6 CF20 (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "wuZ0EvlbcJ8GxajY", "name": "PA6 CF20 (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/PETG ESD (Performance).json b/resources/profiles/Volumic/filament/PETG ESD (Performance).json index 09d6764aef..ba8e94a875 100644 --- a/resources/profiles/Volumic/filament/PETG ESD (Performance).json +++ b/resources/profiles/Volumic/filament/PETG ESD (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "May8rNEMOOs1qtae", "name": "PETG ESD (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/PPS Carbone (Performance).json b/resources/profiles/Volumic/filament/PPS Carbone (Performance).json index 969b3ab324..996494cc43 100644 --- a/resources/profiles/Volumic/filament/PPS Carbone (Performance).json +++ b/resources/profiles/Volumic/filament/PPS Carbone (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "HE0yILdkhbiXbH1j", "name": "PPS Carbone (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json index d9535dea36..8b48f0995c 100644 --- a/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic ABS Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "466ggy6ydgaZOrSx", "name": "Volumic ABS Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ABS Ultra.json b/resources/profiles/Volumic/filament/Volumic ABS Ultra.json index 373087f4e2..cab927e925 100644 --- a/resources/profiles/Volumic/filament/Volumic ABS Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic ABS Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "omHiTINFPThooUqk", "name": "Volumic ABS Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json index 560b6150a0..ea3f078ce4 100644 --- a/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic ASA Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "uE5jxeOBISvO5o7L", "name": "Volumic ASA Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic ASA Ultra.json b/resources/profiles/Volumic/filament/Volumic ASA Ultra.json index 9ee48f983c..62de93ee24 100644 --- a/resources/profiles/Volumic/filament/Volumic ASA Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic ASA Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "LOAp2zgQWqg1lQQ4", "name": "Volumic ASA Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json index 7cb5b5687e..54049ab145 100644 --- a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "k5V3bjZrtr7t8zl0", "name": "Volumic FLEX93 Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json index c5697e1749..16f143b405 100644 --- a/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic FLEX93 Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFU99", - "setting_id": "GFSR99", + "setting_id": "DXZ4Gp5XP5VCJTXY", "name": "Volumic FLEX93 Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json index d1e3cd37db..44ab540de1 100644 --- a/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic NYLON Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "RC5gFyIejXWDJuHH", "name": "Volumic NYLON Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json b/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json index fa59ae1cd9..9b7cbd0602 100644 --- a/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic NYLON Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFN99", - "setting_id": "GFSN98", + "setting_id": "AL4xDgN8EIYb3UrL", "name": "Volumic NYLON Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PC Performance.json b/resources/profiles/Volumic/filament/Volumic PC Performance.json index c4ea8f9f47..d239419ccf 100644 --- a/resources/profiles/Volumic/filament/Volumic PC Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PC Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFC99", - "setting_id": "GFSC99", + "setting_id": "ht6Ar3ilCkPT7geN", "name": "Volumic PC (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PC.json b/resources/profiles/Volumic/filament/Volumic PC.json index b2632b9eec..5ffe6cd415 100644 --- a/resources/profiles/Volumic/filament/Volumic PC.json +++ b/resources/profiles/Volumic/filament/Volumic PC.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFC99", - "setting_id": "GFSC99", + "setting_id": "3pUnwXise3J77Qmc", "name": "Volumic PC", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json b/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json index 70e6553bde..d28d3732ed 100644 --- a/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json +++ b/resources/profiles/Volumic/filament/Volumic PCTG Ultra (Performance).json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "NdegYSDVrQ4Rawtp", "name": "Volumic PCTG Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json index 47fdc984cb..3a3d240a4e 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "bNcC5kGe9jOm7Ltu", "name": "Volumic PETG Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json index 48a5fccf4c..adf3a8fc45 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG98", - "setting_id": "GFSG50", + "setting_id": "IIFtCkVvHoLtxPxj", "name": "Volumic PETG Ultra carbone (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json index 3cf6c6125a..4ee0a68464 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra carbone.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG98", - "setting_id": "GFSG50", + "setting_id": "nOKT0adoQi3O7Tge", "name": "Volumic PETG Ultra carbone", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PETG Ultra.json b/resources/profiles/Volumic/filament/Volumic PETG Ultra.json index 70fb1ab744..25162f2d94 100644 --- a/resources/profiles/Volumic/filament/Volumic PETG Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PETG Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG99", - "setting_id": "GFSG99", + "setting_id": "CuBXW7SqUeJOcxPP", "name": "Volumic PETG Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json index adf77a54fa..741d2eab82 100644 --- a/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PLA Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "8J2ZIz8ByFNEB9PC", "name": "Volumic PLA Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PLA Ultra.json b/resources/profiles/Volumic/filament/Volumic PLA Ultra.json index 5291e6344d..67d33d3b52 100644 --- a/resources/profiles/Volumic/filament/Volumic PLA Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PLA Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "3BeQ60i4cOs3BfZn", "name": "Volumic PLA Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json index 70c7649942..91bfcf197d 100644 --- a/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PP Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "nsiOJ8ExySR1RksQ", "name": "Volumic PP Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PP Ultra.json b/resources/profiles/Volumic/filament/Volumic PP Ultra.json index ca64eccb40..895c9ed467 100644 --- a/resources/profiles/Volumic/filament/Volumic PP Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic PP Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFB99", - "setting_id": "GFSA04", + "setting_id": "UA91pv54dzbBRkFe", "name": "Volumic PP Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PVA Performance.json b/resources/profiles/Volumic/filament/Volumic PVA Performance.json index ab192d88d0..92a94ac5c1 100644 --- a/resources/profiles/Volumic/filament/Volumic PVA Performance.json +++ b/resources/profiles/Volumic/filament/Volumic PVA Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFS99", - "setting_id": "GFSS99", + "setting_id": "L9ZTGhwNpVWT6E5j", "name": "Volumic PVA-BVOH (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic PVA.json b/resources/profiles/Volumic/filament/Volumic PVA.json index 8b73e70775..5d9892417c 100644 --- a/resources/profiles/Volumic/filament/Volumic PVA.json +++ b/resources/profiles/Volumic/filament/Volumic PVA.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFS99", - "setting_id": "GFSS99", + "setting_id": "rw4bB5gYM6YF8v9e", "name": "Volumic PVA", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json index 68b3b9b2ba..e20e88ed67 100644 --- a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json +++ b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra Performance.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "rxVkBvMZYgHOoFW6", "name": "Volumic UNIVERSAL Ultra (Performance)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json index 87e6fc5f1e..568b3a5beb 100644 --- a/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json +++ b/resources/profiles/Volumic/filament/Volumic UNIVERSAL Ultra.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFL99", - "setting_id": "GFSL99", + "setting_id": "6iOFERN4x6xBbtuT", "name": "Volumic UNIVERSAL Ultra", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/filament/desactive.json b/resources/profiles/Volumic/filament/desactive.json index f90f31547c..6485f044f0 100644 --- a/resources/profiles/Volumic/filament/desactive.json +++ b/resources/profiles/Volumic/filament/desactive.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "DFL99", - "setting_id": "DFSL99", + "setting_id": "Sphn4hoDMpH2uy86", "name": "Désactivé", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json index 3697565b31..2a9fad874e 100644 --- a/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "38SnDDmFg2mCRcFt", "name": "EXO42 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json index f74344e89f..e1b362df83 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "15K6j1YDiO2ubyZq", "name": "EXO42 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json index c146634f23..0f6303fd19 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "cNF164YBrD1xcG2h", "name": "EXO42 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json index c4c59fd533..1c5f5d1700 100644 --- a/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "OMdv9AS4d4HDXYB7", "name": "EXO42 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json index 3fadec9990..fbece162b5 100644 --- a/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "uSgdeLwfwMCIF8jJ", "name": "EXO42 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json index c31a427034..978af519f6 100644 --- a/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO42 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "nFLSTPErGjQw6XnS", "name": "EXO42 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json index f34f92b6f1..8ca2438da9 100644 --- a/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "N5hPPEyrF6WFPO8r", "name": "EXO65 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json index f5f6ab0e91..8d67f7fa06 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "eInlnTPT9RXNQe0H", "name": "EXO65 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json index 10be82ab06..6609ff57cc 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "qTCFDCqFaq5Cr2MK", "name": "EXO65 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json index 0e74020483..e331184117 100644 --- a/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "CRmhnf8ONHFpDZ9p", "name": "EXO65 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json index 71102cfc1e..54c15d80b0 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "Iokq2oBwJVaEwT9A", "name": "EXO65 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json index 4f28a57bfb..8bbc66ef38 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "WWrVx8eGg8rm1saw", "name": "EXO65 Performance (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json index 152761cb5f..cb2b91161b 100644 --- a/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Performance (0.8 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "4LGJDuCA7yAKGml3", "name": "EXO65 Performance (0.8 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json b/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json index 3394ffdf94..735e1843bc 100644 --- a/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json +++ b/resources/profiles/Volumic/machine/EXO65 Stage 2 (0.6 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "jsBm1DhY7qw63SSI", "name": "EXO65 Stage 2 (0.6 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json index 15ac1d0375..a49591a421 100644 --- a/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "EeJsStZPNfCT7WkW", "name": "SH65 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json index ef6cc817a7..a316163582 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "aKBeUSXzBU2qQIEE", "name": "SH65 IDRE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json index 7615eb9e0e..bcd01d002f 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE COPY MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "abcf94SvavkMYyFU", "name": "SH65 IDRE COPY MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json index 548a80d039..72c8ab938d 100644 --- a/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 IDRE MIRROR MODE (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "xBbVrJNCzJO4egUE", "name": "SH65 IDRE MIRROR MODE (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json index 09765eddec..0163a27d65 100644 --- a/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "lmlG4rGxYKYkydUM", "name": "SH65 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json index 8c6bfa8ba6..09c3802d10 100644 --- a/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/SH65 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "e3rpbhqZmSzuW5kA", "name": "SH65 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json index c77a02299b..18f800df15 100644 --- a/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS20MK2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "xV2JznZ0imfZku62", "name": "VS20MK2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json index e78d41167e..e0c5195a1d 100644 --- a/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "MnCC2SAgstB2WR50", "name": "VS30MK2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json index 449312bab6..72924347a3 100644 --- a/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK3 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "KFPbLwO3vQqIuJ34", "name": "VS30MK3 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json index 8f94e05a2b..d45f2a6b6b 100644 --- a/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30MK3 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "XW58eNI9Y25FmAMR", "name": "VS30MK3 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json index d90d893ef3..af49da615d 100644 --- a/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "8HxzSP6HW9nOPphc", "name": "VS30SC (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json index 94ac661bbb..2e67106b5c 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "D9xXWUeeAAWmesfa", "name": "VS30SC2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json index ff43e99a0c..b2e9318337 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 Performance (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "PKKfRBEEc0CGbh45", "name": "VS30SC2 Performance (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json index 666be445a5..4d5fe68f1d 100644 --- a/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30SC2 Stage 2 (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "2RWMRzJILLpB2W3V", "name": "VS30SC2 Stage 2 (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json b/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json index 9489576bd7..a7ed6be9ac 100644 --- a/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json +++ b/resources/profiles/Volumic/machine/VS30ULTRA (0.4 nozzle).json @@ -1,6 +1,6 @@ { "type": "machine", - "setting_id": "GM001", + "setting_id": "IZzmiYZXK5UBri4z", "name": "VS30ULTRA (0.4 nozzle)", "from": "system", "instantiation": "true", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json index 385c13513a..0dfce3935f 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "0Gwgv9G1arp0ufdp", "name": "Compatible speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json index 3bc27343fe..e8745de20f 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Tp9t0BQZKkxCA8qZ", "name": "Compatible speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json index 1df25234a5..0e8644aa73 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "z3fSJ5Y0JuhRQhOU", "name": "Compatible speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json index 1a600e0ba5..28f94dda2c 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "hfNxq9KnwJlS0gcr", "name": "Compatible speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json b/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json index a057eb33c1..9f6d1ecb48 100644 --- a/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Compatible speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Pdg0wxAaJS0SR8AF", "name": "Compatible speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.10mm.json b/resources/profiles/Volumic/process/Full performance - 0.10mm.json index 09ad280a54..e672435e53 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BdckjC9G0PLHCMgf", "name": "Full performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.15mm.json b/resources/profiles/Volumic/process/Full performance - 0.15mm.json index b880abc98b..71ca39fbab 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fx3iCV7mYY4FYrci", "name": "Full performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.20mm.json b/resources/profiles/Volumic/process/Full performance - 0.20mm.json index 192c7a8614..8834a822f0 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "vjm5CwY9lx6DOJZy", "name": "Full performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.25mm.json b/resources/profiles/Volumic/process/Full performance - 0.25mm.json index 1477983a18..e977f22c25 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "q3EqyOZ87HZpBzvO", "name": "Full performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance - 0.30mm.json b/resources/profiles/Volumic/process/Full performance - 0.30mm.json index eb80c40206..8df0793a6a 100644 --- a/resources/profiles/Volumic/process/Full performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "EG1g0ef96ojgMo8K", "name": "Full performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json index 2c511fb223..f58e4f6d66 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "WtBzcQwLoYPoNDbM", "name": "Full performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json index bbd37d952b..90eceadcdb 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "QwgTvSeq1hLKGILo", "name": "Full performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json index f26f3d60be..8d674fa854 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "BKpizWAIMDwwSaTu", "name": "Full performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json index a2c5aae762..586bc7220c 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Oua2iEIMKavdJVHY", "name": "Full performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json index 85307bfeed..915ac0527e 100644 --- a/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "W8bDRq0EMAasHC0C", "name": "Full performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json index c608c62e3d..4d6bba2889 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "n3LCfOd6MlXqSaFM", "name": "Full performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json index 70c2a249b0..f745a7d476 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "WJxmd7QtAlD99oWO", "name": "Full performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json index 5ce44c155c..9f6e156e04 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6O8V3laqfmS31DpL", "name": "Full performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json index 02b50be71f..a10387ee11 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "q5Df9Zk0bBsl6tgn", "name": "Full performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json index a5cf457015..b642805e57 100644 --- a/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/Full performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4xhjCaz0oSdj4dmz", "name": "Full performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.10mm.json b/resources/profiles/Volumic/process/High performance - 0.10mm.json index 427c75808e..5897a066ec 100644 --- a/resources/profiles/Volumic/process/High performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "gkRJ4aBb8nYiWWkQ", "name": "High performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.15mm.json b/resources/profiles/Volumic/process/High performance - 0.15mm.json index 39cfbe1836..a0d2b72904 100644 --- a/resources/profiles/Volumic/process/High performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tZ9EVpNMRCnEh4QD", "name": "High performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.20mm.json b/resources/profiles/Volumic/process/High performance - 0.20mm.json index d42c55b11e..d021e40286 100644 --- a/resources/profiles/Volumic/process/High performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "yCDzVcIWjVgIyIRH", "name": "High performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.25mm.json b/resources/profiles/Volumic/process/High performance - 0.25mm.json index 7bc0d82df2..87b210962c 100644 --- a/resources/profiles/Volumic/process/High performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "x0Q3hHsXoY33V4Df", "name": "High performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance - 0.30mm.json b/resources/profiles/Volumic/process/High performance - 0.30mm.json index 50719eda4a..2a9f73d564 100644 --- a/resources/profiles/Volumic/process/High performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "wtWZKy5RUZxBEKiA", "name": "High performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json index eec2d63314..b8615a5a79 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "AQxzb91WKNnqyR4m", "name": "High performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json index 33141e9b2c..aac928ed9e 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "L4Ok3bi0ZUYayKei", "name": "High performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json index 25ed6ca323..820c72f251 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VzveNihkhzpEd8YX", "name": "High performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json index b44e974504..48f0784784 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "SH11Eth4ecxaSafR", "name": "High performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json index 47e7de8e0f..9129a45457 100644 --- a/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Rheh3fgJfFugxKZL", "name": "High performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json index 5a2f55795c..3b458847e5 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "nfaAKkhQ6yt2AC7o", "name": "High performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json index db85b5c9c9..fd5e05ef6f 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Eb3wJrmzg2nzEwAm", "name": "High performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json index efc52a5373..34369239bc 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qWEOT65KoPG51AJW", "name": "High performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json index 352aeccce8..969f1daa28 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Co6sQp00KLUD50WN", "name": "High performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json index a414d66bf2..147e0cd217 100644 --- a/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/High performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3qVuLHagvoHBu2yP", "name": "High performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json index f67067aee4..3fbe07956d 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "3vksM99YF7pwEP3G", "name": "High speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json index 9f3abbff36..7a4313160a 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "9k0mROwMyk1hxZm1", "name": "High speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json index 98cf95019d..91d998c170 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "s7GVelf1PDb0Qy9g", "name": "High speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json index 6a33cd7ce8..a3277f67a7 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Kxk9C4GtJ5tiwqes", "name": "High speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json index 634ac6afc3..76bfe21286 100644 --- a/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/High speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ireCZVAGHWDUN03m", "name": "High speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.10mm.json b/resources/profiles/Volumic/process/High speed - 0.10mm.json index c342c037e0..c86d7535c0 100644 --- a/resources/profiles/Volumic/process/High speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ClExqnoYEdZmnnOX", "name": "High speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.15mm.json b/resources/profiles/Volumic/process/High speed - 0.15mm.json index 9c42ccd175..0e3da3a700 100644 --- a/resources/profiles/Volumic/process/High speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Wk6UnqxF8mQm9sE6", "name": "High speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.20mm.json b/resources/profiles/Volumic/process/High speed - 0.20mm.json index 5c8e3462a9..c37503c724 100644 --- a/resources/profiles/Volumic/process/High speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "72tWDDDqVKtRwBFH", "name": "High speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.25mm.json b/resources/profiles/Volumic/process/High speed - 0.25mm.json index 7e573a3d6e..10286f7196 100644 --- a/resources/profiles/Volumic/process/High speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Qx4TTWaVVzXqRCJ4", "name": "High speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/High speed - 0.30mm.json b/resources/profiles/Volumic/process/High speed - 0.30mm.json index 9f46ed717d..abc18e3fc1 100644 --- a/resources/profiles/Volumic/process/High speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/High speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6h7mK5XKws51vPov", "name": "High speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance - 0.10mm.json index cbf9027ed2..7bc3240b5e 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "FTqjZjQPPR7L9pO1", "name": "Normal performance - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance - 0.15mm.json index ca33855445..a274e1263a 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "JY670KAkuqNKq1pD", "name": "Normal performance - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance - 0.20mm.json index 37cedf03c1..e03c5bdafd 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "6xUkj1ATyvZ9n69E", "name": "Normal performance - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance - 0.25mm.json index 014c093048..3b1db4b002 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "J2ZwCE8TcdUDJy9u", "name": "Normal performance - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance - 0.30mm.json index c9bffc5cc5..b75c0433c3 100644 --- a/resources/profiles/Volumic/process/Normal performance - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "TikIASel3dJuzlIC", "name": "Normal performance - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json index 01a5fc717e..2fdfb80a54 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "CPvAoewpDOyAUZzz", "name": "Normal performance DUAL - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json index 6bbe8fd325..b231cbe91b 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "lxzarnB1H22cOqIl", "name": "Normal performance DUAL - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json index 3006b559ba..bed3e748ab 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "GNPkW4cAsenc06Qj", "name": "Normal performance DUAL - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json index 44142dd68c..87596fc890 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VvM6yKMGis2PyNHn", "name": "Normal performance DUAL - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json index f64e3e2926..a389180199 100644 --- a/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance DUAL - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ouPv4ZnFRqBIZTUQ", "name": "Normal performance DUAL - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json index 078b4cbb00..fb120c03a5 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A1MeH5DTrbaapIvs", "name": "Normal performance VS30 - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json index f556ca2764..b95abd904f 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "RN31YrQ3X4sAgRji", "name": "Normal performance VS30 - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json index 1b4dd1116f..0657825c7b 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "pW9nom8pyi48XeOB", "name": "Normal performance VS30 - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json index bf0688719c..0197bc775d 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "O4mCyYEDLcYs9ksp", "name": "Normal performance VS30 - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json b/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json index 0a8d5556da..5f8a81f236 100644 --- a/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal performance VS30 - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Wl53R1wiaRjXyP4m", "name": "Normal performance VS30 - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json index 259d9840ce..7a4cca2086 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "tc9ZLzQlKlARHNGw", "name": "Normal speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json index 0975b88701..1b3bdfd473 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "SIjHUj1PwWkFFffa", "name": "Normal speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json index f470b388e4..789a59c8e7 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "M0E4QeWLUVdWUHfJ", "name": "Normal speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json index e5a426e5ca..6b1a0c5fe3 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "7RRVQg0tShBy6Xuj", "name": "Normal speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json index c6178c480b..0243eff1b9 100644 --- a/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "VeLRxlpx80B0fAVO", "name": "Normal speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.10mm.json b/resources/profiles/Volumic/process/Normal speed - 0.10mm.json index f06e980fd9..475b8436ca 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "KYuX2erMe0Qnjqig", "name": "Normal speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.15mm.json b/resources/profiles/Volumic/process/Normal speed - 0.15mm.json index 6ed23bafeb..5ee0b65a91 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ulLTG505AlCQyOVT", "name": "Normal speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.20mm.json b/resources/profiles/Volumic/process/Normal speed - 0.20mm.json index f4a320f9dd..18f07ba295 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "5VK09EV5nZFZ8tDX", "name": "Normal speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.25mm.json b/resources/profiles/Volumic/process/Normal speed - 0.25mm.json index a1be98fb0f..a0400b22e5 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "sKsaHEmeYNos7Ap3", "name": "Normal speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Normal speed - 0.30mm.json b/resources/profiles/Volumic/process/Normal speed - 0.30mm.json index 40b64dd152..227cda5c1e 100644 --- a/resources/profiles/Volumic/process/Normal speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Normal speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "fLtovREOpasPunPM", "name": "Normal speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json index 92dd3cf0b7..d80d3230e4 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "v29Kc1X5AEVhYRk8", "name": "Very high speed (Stage 2) - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json index a9905cc449..fea250b867 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "IFk4SdxdsDe9XHA7", "name": "Very high speed (Stage 2) - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json index 69fc204243..b308dbbf7e 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "rnRfy0wN7TWGyq6y", "name": "Very high speed (Stage 2) - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json index 146ca87f28..004cc14719 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Trb33VeRJfEhjvyw", "name": "Very high speed (Stage 2) - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json index 041a717c82..b5225c859e 100644 --- a/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json +++ b/resources/profiles/Volumic/process/Very high speed (Stage 2) - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "A7yh9LBPEQ0kX3w4", "name": "Very high speed (Stage 2) - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.10mm.json b/resources/profiles/Volumic/process/Very high speed - 0.10mm.json index b2fc073dab..1b1e9c9108 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.10mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.10mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "ZqsUCKAhvogcqdcv", "name": "Very high speed - 0.10mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.15mm.json b/resources/profiles/Volumic/process/Very high speed - 0.15mm.json index 144f5a9a63..7e657c6498 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.15mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.15mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "Ept7P07GPaZjDkH1", "name": "Very high speed - 0.15mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.20mm.json b/resources/profiles/Volumic/process/Very high speed - 0.20mm.json index ddc1c1e961..5f12b90d5e 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.20mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.20mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "1I77SBl6Oe7z8QVf", "name": "Very high speed - 0.20mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.25mm.json b/resources/profiles/Volumic/process/Very high speed - 0.25mm.json index 1ed29fc015..eede1a2bf3 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.25mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.25mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "qy4K1ha3a6cbW0sw", "name": "Very high speed - 0.25mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Volumic/process/Very high speed - 0.30mm.json b/resources/profiles/Volumic/process/Very high speed - 0.30mm.json index c253c26748..b6148c6aa6 100644 --- a/resources/profiles/Volumic/process/Very high speed - 0.30mm.json +++ b/resources/profiles/Volumic/process/Very high speed - 0.30mm.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "GP004", + "setting_id": "4up2FChqWIEn6vYl", "name": "Very high speed - 0.30mm", "from": "system", "inherits": "fdm_process_volumic_common", diff --git a/resources/profiles/Voron.json b/resources/profiles/Voron.json index 7f29a3c168..74df754a9d 100644 --- a/resources/profiles/Voron.json +++ b/resources/profiles/Voron.json @@ -1,6 +1,6 @@ { "name": "Voron", - "version": "02.04.00.01", + "version": "02.04.00.02", "force_update": "0", "description": "Voron configurations", "machine_model_list": [ @@ -206,6 +206,10 @@ "name": "0.24mm Fine 0.8 nozzle @Voron", "sub_path": "process/0.24mm Fine 0.8 nozzle @Voron.json" }, + { + "name": "0.32mm Optimal 0.8 nozzle @Voron", + "sub_path": "process/0.32mm Optimal 0.8 nozzle @Voron.json" + }, { "name": "0.40mm Standard 0.8 nozzle @Voron", "sub_path": "process/0.40mm Standard 0.8 nozzle @Voron.json" diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json index 3d10f36985..a9317c97a6 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "RSadcTHDZHjlbsFd", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json index 73929290f4..6b9a3b64e8 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "lXEF4z0hdwdok2CH", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json index 4d0212861c..4cf75cc87e 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "DULWJ8Zec8HTWxDh", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 f29e941c41..60481ed375 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 @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kquY5Lc3pSREFhza", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json index 38fdf744f7..a5da931cf2 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "8Hrb0gBmZRg4MYLw", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json index 3997aa1d01..fcea5f03a2 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "AJChFdhvFWxwNMK1", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json index 6015daae3a..1015d1f686 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "FpfWQS6wD4qoFBkN", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json index 0acbee1a3e..916ad177d2 100644 --- a/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 0.1 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 0.1 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Gqs2KG5OmxJX9yfu", "instantiation": "true", "printer_model": "Voron 0.1", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json index 7fc137332a..6a7f20f7e9 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "4aoiMkcZca9kJxZ4", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json index 46839a8fd6..62ab018cd4 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "bHcmiRMYYjUq5Oe7", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json index a26c15d04e..5c7370a9ff 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "gAbA9vQO1wiTx4th", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 af7da735f5..f76a823e19 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 @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "tMneqFiYEOQmrtnj", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json index 342cf8a2d4..a8029cbb55 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "jO3B7JrN7mIqU22S", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json index cdb35f39d2..dfd021b4ef 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "KmcPeB3UBN3BMqbG", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json index 547459096a..7dfa9d918f 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "0dQZ44P3Z4rZLZQA", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json index b71c5a10d9..fb866ae71b 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "mGio5zVg50VkXuTo", "instantiation": "true", "printer_model": "Voron 2.4 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json index 61f463af88..41a8d12b34 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "4F4ECwZM6CQVuLu3", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json index 2cc6b3ac42..aab646ee6a 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "w6cGdRGVU2mdjr0r", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json index 18a93975c2..0c2f78920d 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FMR2ykre2vRYivO8", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 243acb3ffe..a79fa8c109 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 @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "G4jBDBTV7TnKVT6X", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json index fca5002737..3eba77278f 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "zJGon17g9uaa0mf7", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json index 457544c804..2061569b31 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "u3IP8AwH0qXQAUE3", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json index 0e98d9d566..e1d2ec2b47 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Ftd0fJWg866zYxbu", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json index 60748755f1..8a16caabbd 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 300 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 300 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "jjWXQhWT6SRqBPZt", "instantiation": "true", "printer_model": "Voron 2.4 300", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json index d0a8bd7261..803fcabbfe 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "5MsTnvkKhQAASF8b", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json index d1b22d5fcc..ff983a832a 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "jVj5pL1eUnxUPpOQ", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json index 045e5863e2..aaa8d918b5 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "kV1zjevI1NpgmiYj", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 2cc0009589..fca4468a98 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 @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "b1Bu76BOqWx9hn8u", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json index 5288a71f1c..4ed1a19dfc 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "HjdBfGnZlWzMuvk0", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json index f2721bacf6..3305fda862 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "IVcldSYpQ7o8uT8k", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json index bdb55f9141..13f738f4ca 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "isxCbzE9ASACVOPu", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json index 84626a6a97..c17f6937c4 100644 --- a/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron 2.4 350 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron 2.4 350 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "KVAdqy6C35LGB00e", "instantiation": "true", "printer_model": "Voron 2.4 350", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json index 32d135cdbc..ce7bce26b1 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "brA0Ou6CDFH7GF4S", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json index 5a0e2b9d92..751d7207df 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "Suf28dYToJTjqiKh", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json index 9515026c05..68e7dbc5bb 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "PuziiatkDvJkuuJZ", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 ba7af518f1..6d3ce37960 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 @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "WHYEf0YqJXNgIUnP", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json index 4f6fab8af3..f51cc5e5c6 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "tjek5U0AkXTYI7cn", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json index 2be7de3cea..93daaf224a 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "OSw8n6yRCHZHdOgM", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json index a5f89f92ff..7a2e6b729f 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "wNEUMNpyafB7yN8O", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json index d1cc07734a..a93767551d 100644 --- a/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Switchwire 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Switchwire 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "OUj0nzRwlGD2YBo6", "instantiation": "true", "printer_model": "Voron Switchwire 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json index db98eeb881..baf3be8066 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "F8GJR6YZE10TMA0y", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json index 719793b535..257c06c983 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "WOmexnmUoHkptByc", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json index f093d4abf5..ef3693f828 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "rkurdiS4CTaa3fKW", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 2a4dd28b5a..cd5a4ed082 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 @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "cdWYMr2HnBtUUZP4", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json index 6d37561e7b..74bd61b403 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "opNpG2tiXcDqfAgo", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json index d4f1cee363..ac62b0dc9b 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "DOssK38zCrPwJUw3", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json index 8a1d89ac33..b7032fc2a7 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "8jCRycJ89FUcjJdj", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json index 0a2663cd82..a2717eeab7 100644 --- a/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 250 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 250 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "YeTSXmrG716Vcm2s", "instantiation": "true", "printer_model": "Voron Trident 250", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json index 27fe60cdd5..2e209ccd74 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "UDVgTVcLwqVXusSB", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json index c4cdf62d92..447c152207 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ZGoJujNIvqSxBVx5", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json index 98f934c314..d206bef37c 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "ENL4Gb8oNlIiAsuT", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 15fbd11ec2..967240ebaf 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 @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "movln7KnLdZZVJSJ", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json index d57aee7e50..2749dc72e4 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "38iO66jPbRLabAkg", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.25mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json index 9f037c7edc..171ebb4640 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "Ux02b7O2cluT1g2x", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json index b7915c0213..44b7de8ea8 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "r56Tg2wgsAbHx0zC", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json index 6f321c4300..f6eda70ca5 100644 --- a/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 300 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 300 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "Ei7VU82mjgq6MrVA", "instantiation": "true", "printer_model": "Voron Trident 300", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json index 2d4c437efc..72e211390e 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.15 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.15 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "h5BoablHRKcPWsoi", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.09mm Standard 0.15 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json index 0528006190..dfba8a1b50 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.2 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "FupNz3FYotUKztVb", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.10mm Standard 0.2 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json index 169bed3741..c72b2c1a3f 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.25 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.25 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM002", + "setting_id": "NWxG5NRD7OxyDeLJ", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.10mm Standard 0.25 nozzle @Voron", 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 2c99b6088b..090e779399 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 @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "kd6Dylwaz7A8A1LB", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.20mm Standard @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json index ee9554f8b9..f537284179 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.5 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "DS558fFGRIbNmoxv", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.30mm Standard 0.5 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json index 44a2f45e66..4141421686 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.6 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM003", + "setting_id": "P5IwnHyq6cqZvO1T", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.30mm Standard 0.6 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json index 65fba9e34f..b2050e97d8 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 0.8 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "hnbh3EUedehyohuh", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.40mm Standard 0.8 nozzle @Voron", diff --git a/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json b/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json index 0e8155b9a7..d761c0876c 100644 --- a/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json +++ b/resources/profiles/Voron/machine/Voron Trident 350 1.0 nozzle.json @@ -3,7 +3,7 @@ "name": "Voron Trident 350 1.0 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM004", + "setting_id": "z3usdYqkNXICQWZA", "instantiation": "true", "printer_model": "Voron Trident 350", "default_print_profile": "0.50mm Standard 1.0 nozzle @Voron", diff --git a/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json index d8b2940f7b..bbed1070e3 100644 --- a/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.05mm Fine 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.05mm Fine 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "jtt0gO87jzVyOD6s", "instantiation": "true", "layer_height": "0.05", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json index c10f9cec5a..3df87527a2 100644 --- a/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.06mm Fine 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "1HlVm6T9mIu2OAA6", "instantiation": "true", "layer_height": "0.06", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json index 414a1a295b..f568a0a67a 100644 --- a/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.06mm Fine 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "vOfL5uyHjmcRPcXO", "instantiation": "true", "layer_height": "0.06", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json index b93fddb62e..c7861069aa 100644 --- a/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.07mm Optimal 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.07mm Optimal 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "b01TGllB1v9Z64WK", "instantiation": "true", "layer_height": "0.07", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json b/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json index 62a91d2701..4cb9415d59 100644 --- a/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Extra Fine @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "eFPB6RHFWXA8mbJf", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json index 8c8e4ca2eb..625460d27a 100644 --- a/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Optimal 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "L4l0DFuqhk0sisSh", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json index 4f7d3af548..8701c01fcf 100644 --- a/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.08mm Optimal 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "6lIv5g030ozyUvUj", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json index 2bb6750cfa..0af7a7e9d6 100644 --- a/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.09mm Standard 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.09mm Standard 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "SAL9phdxeRYwE6e0", "instantiation": "true", "layer_height": "0.09", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json index 5864af07d6..652f2381a5 100644 --- a/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Extra Fine 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Extra Fine 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "3Vv5tGKJguczYF1R", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "6", diff --git a/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json index 4830606a4a..6c9e758b28 100644 --- a/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Standard 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "l8jKZEaxjGcnkqw4", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json index 892e68506b..1c860fe5d2 100644 --- a/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.10mm Standard 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "hRS807y4Y7Ur9cJV", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json index 3d61b78200..50b93dfc11 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.15 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.15 nozzle @Voron", "inherits": "fdm_process_voron_common_0_1_5", "from": "system", - "setting_id": "GP004", + "setting_id": "DAzzkVWIVurPT7Fj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json index bfb52190e2..b6bf3ebada 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "qaROJcuKAF42scUc", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json index 90e978415c..928861ca31 100644 --- a/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Draft 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "RZ1d77nOCvPHWZcR", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.12mm Fine @Voron.json b/resources/profiles/Voron/process/0.12mm Fine @Voron.json index b33ce07312..9ded0fced7 100644 --- a/resources/profiles/Voron/process/0.12mm Fine @Voron.json +++ b/resources/profiles/Voron/process/0.12mm Fine @Voron.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dsfcyBIJOMl6SPZ7", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json index f41a3fcbaa..ca443a5cdc 100644 --- a/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.14mm Extra Draft 0.2 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft 0.2 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2", "from": "system", - "setting_id": "GP004", + "setting_id": "0Xwso4SmnLzUa1I7", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json b/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json index 7bed3d098c..803db110de 100644 --- a/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.14mm Extra Draft 0.25 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft 0.25 nozzle @Voron", "inherits": "fdm_process_voron_common_0_2_5", "from": "system", - "setting_id": "GP004", + "setting_id": "2MQb1n0alSr64cVm", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json index e0ecc54eb8..b6342b41f9 100644 --- a/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.15mm Fine 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.15mm Fine 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "S7wMy6FGpi2O5hYv", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.15mm Optimal @Voron.json b/resources/profiles/Voron/process/0.15mm Optimal @Voron.json index bafdb8523d..75843a03d2 100644 --- a/resources/profiles/Voron/process/0.15mm Optimal @Voron.json +++ b/resources/profiles/Voron/process/0.15mm Optimal @Voron.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "JYeXOs4NWhpFBNwj", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json index dec7ef8674..3c2ead71dc 100644 --- a/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.18mm Fine 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "kGptY816CvOINz31", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json index 0ea60a25e4..67a4bbf0be 100644 --- a/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.20mm Optimal 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.20mm Optimal 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "LGTKjeVVwtXYQoMF", "instantiation": "true", "layer_height": "0.20", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.20mm Standard @Voron.json b/resources/profiles/Voron/process/0.20mm Standard @Voron.json index dfd1eb82b9..0f95db44f9 100644 --- a/resources/profiles/Voron/process/0.20mm Standard @Voron.json +++ b/resources/profiles/Voron/process/0.20mm Standard @Voron.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "woKQ9fsFs3B9vQCS", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.24mm Draft @Voron.json b/resources/profiles/Voron/process/0.24mm Draft @Voron.json index 6c33cb8402..05b641c6d2 100644 --- a/resources/profiles/Voron/process/0.24mm Draft @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Draft @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "hGqnR2CSdJ0vbzA5", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json index 9237a363be..0c9f75d207 100644 --- a/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Fine 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "mEpo3myfJtsFdBpf", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json index dd0cf59d04..6a13f3ff46 100644 --- a/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.24mm Optimal 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "9zDra43Gi9Uf58Bz", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json index 5b8b899070..deb90ebc63 100644 --- a/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.25mm Standard 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.25mm Standard 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "Z2vpBftpFjvLR7zM", "instantiation": "true", "layer_height": "0.25", "bottom_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json b/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json index 6657bff1f8..3a61d4147c 100644 --- a/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json +++ b/resources/profiles/Voron/process/0.28mm Extra Draft @Voron.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Voron", "inherits": "fdm_process_voron_common", "from": "system", - "setting_id": "GP004", + "setting_id": "UDB3DygiAKMYmAU3", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json index e74b9f90d3..4fb7434248 100644 --- a/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Draft 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Draft 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "wdFabSuzOsdbtpj0", "instantiation": "true", "layer_height": "0.30", "top_surface_line_width": "0.55", diff --git a/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json index 65426eb969..4a2a982028 100644 --- a/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Fine 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Fine 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "qGIEkSUhwWx1TR12", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json index 78e9d50a02..9d675a8b2c 100644 --- a/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.30mm Standard 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "nBqIcIolrCqGeBUq", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json index c7b17fecf0..442155d2e8 100644 --- a/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.32mm Optimal 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "I0th0trvF3qNf03w", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json new file mode 100644 index 0000000000..d354153c14 --- /dev/null +++ b/resources/profiles/Voron/process/0.32mm Optimal 0.8 nozzle @Voron.json @@ -0,0 +1,11 @@ +{ + "type": "process", + "name": "0.32mm Optimal 0.8 nozzle @Voron", + "inherits": "fdm_process_voron_common_0_8", + "from": "system", + "setting_id": "ivS6U4AuIoj1cJhZ", + "instantiation": "true", + "bottom_shell_layers": "3", + "top_shell_layers": "3", + "layer_height": "0.32" +} diff --git a/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json b/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json index 7fed261d79..52747718c0 100644 --- a/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.35mm Extra Draft 0.5 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.35mm Extra Draft 0.5 nozzle @Voron", "inherits": "fdm_process_voron_common_0_5", "from": "system", - "setting_id": "GP004", + "setting_id": "XFRqwwIkRITwt2WL", "instantiation": "true", "layer_height": "0.35", "top_surface_line_width": "0.55", diff --git a/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json index 14564bec0b..5c2f2f4170 100644 --- a/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.36mm Draft 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "DuK2ANqZkCTaCu7Z", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json index afde3bc9e0..687511027c 100644 --- a/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.40mm Standard 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "uADnKEy08W0cVHqM", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json index cfdecaecb2..355e738527 100644 --- a/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.42mm Extra Draft 0.6 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft 0.6 nozzle @Voron", "inherits": "fdm_process_voron_common_0_6", "from": "system", - "setting_id": "GP004", + "setting_id": "LTgJgK9n8kXOO0yt", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json index 6ee603f56d..3e24950615 100644 --- a/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.48mm Draft 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "dp3sfAZ99AA20Pa1", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json index 170832f8c7..0f8eeb483e 100644 --- a/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.50mm Standard 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.50mm Standard 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "VhNkP4FxrHEoubZQ", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json index cd53766a99..5e6b077ccd 100644 --- a/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.56mm Extra Draft 0.8 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft 0.8 nozzle @Voron", "inherits": "fdm_process_voron_common_0_8", "from": "system", - "setting_id": "GP004", + "setting_id": "ZETvf18e3WD5QXI5", "instantiation": "true", "bottom_shell_layers": "3", "top_shell_layers": "4", diff --git a/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json index 1c33d078aa..a0091a9e29 100644 --- a/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.60mm Draft 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.60mm Draft 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "wq1Qf5Onp0KUGeJE", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json b/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json index e214562baf..9ad822995a 100644 --- a/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json +++ b/resources/profiles/Voron/process/0.80mm Extra Draft 1.0 nozzle @Voron.json @@ -3,7 +3,7 @@ "name": "0.80mm Extra Draft 1.0 nozzle @Voron", "inherits": "fdm_process_voron_common_1_0", "from": "system", - "setting_id": "GP004", + "setting_id": "6VRaJ7Ns2zncUUfz", "instantiation": "true", "bottom_shell_layers": "2", "top_shell_layers": "3", diff --git a/resources/profiles/Voxelab.json b/resources/profiles/Voxelab.json index e2da594a74..758b9d0cd3 100644 --- a/resources/profiles/Voxelab.json +++ b/resources/profiles/Voxelab.json @@ -1,7 +1,7 @@ { "name": "Voxelab", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Voxelab configurations", "machine_model_list": [ diff --git a/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json b/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json index 4f74451d1b..3944195180 100644 --- a/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json +++ b/resources/profiles/Voxelab/machine/Voxelab Aquila X2 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Voxelab Aquila X2 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "7ODLRyfsqCsC3PID", "instantiation": "true", "printer_model": "Voxelab Aquila X2", "default_print_profile": "0.20mm Standard @Voxelab AquilaX2", diff --git a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json index 4abebe479c..f595e8b16b 100644 --- a/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.16mm Optimal @Voxelab AquilaX2.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @Voxelab AquilaX2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "xCSbqEmBX0IB51ZS", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json index fce226e4d9..97d049eb14 100644 --- a/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json +++ b/resources/profiles/Voxelab/process/0.20mm Standard @Voxelab AquilaX2.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Voxelab AquilaX2", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "DbIfKn2knpsOQT7H", "instantiation": "true", "adaptive_layer_height": "1", "reduce_crossing_wall": "0", diff --git a/resources/profiles/Vzbot.json b/resources/profiles/Vzbot.json index e30720f737..12ec13402b 100644 --- a/resources/profiles/Vzbot.json +++ b/resources/profiles/Vzbot.json @@ -1,6 +1,6 @@ { "name": "Vzbot", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Vzbot configurations", "machine_model_list": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json b/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json index 743ae45409..831670240c 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic ABS.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic ABS", "inherits": "fdm_filament_abs", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nRFPlbSKRMb0UpSI", "filament_id": "GFB99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json b/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json index 357f84697d..0996b8cd18 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic ASA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic ASA", "inherits": "fdm_filament_asa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "rP4Qul9OY7lUhPgO", "filament_id": "GFB98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json b/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json index c7468a1f98..f51cda8ed9 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PA-CF.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PA-CF", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "AKO1twNgFO67N5GK", "filament_id": "GFN98", "instantiation": "true", "filament_type": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PA.json index ea26751643..815969c712 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PA", "inherits": "fdm_filament_pa", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4CBO5MnUk8Smhs3q", "filament_id": "GFN99", "instantiation": "true", "nozzle_temperature_initial_layer": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PC.json b/resources/profiles/Vzbot/filament/Vzbot Generic PC.json index 6afb4180fa..ebb44e627a 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PC.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PC.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PC", "inherits": "fdm_filament_pc", "from": "system", - "setting_id": "GFSA04", + "setting_id": "wUe99Mr4HqzSNxgO", "filament_id": "GFC99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json b/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json index f5a9d039eb..cc48d69299 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PETG.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", + "setting_id": "C8LMRvN350POVqC2", "filament_id": "GFG99", "instantiation": "true", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json b/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json index 33acc1967f..33ab4f69a3 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PLA-CF.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PLA-CF", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "nt1egZD1dQEVXp0v", "filament_id": "GFL98", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json index 044416df58..48a8aefecc 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PLA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", + "setting_id": "4JMiuJbl1gNrBipT", "filament_id": "GFL99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json b/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json index 104dccf1f2..0d0bd62a3e 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic PVA.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic PVA", "inherits": "fdm_filament_pva", "from": "system", - "setting_id": "GFSA04", + "setting_id": "DX4eZb2tlNVqeUrn", "filament_id": "GFS99", "instantiation": "true", "filament_flow_ratio": [ diff --git a/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json b/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json index 138e74a10f..f5ca392779 100644 --- a/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json +++ b/resources/profiles/Vzbot/filament/Vzbot Generic TPU.json @@ -3,7 +3,7 @@ "name": "Vzbot Generic TPU", "inherits": "fdm_filament_tpu", "from": "system", - "setting_id": "GFSA04", + "setting_id": "YlhTF1F3OA2qj6o2", "filament_id": "GFU99", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json index ec48989ae1..d2712138dc 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "EZf1lYKG9h7c8gKn", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json index e283ce7831..e2df37a020 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.5 nozzle", "inherits": "Vzbot 235 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "RxA0Pu5VwOqEKrov", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json index 1877a98da8..78abc22676 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 235 AWD 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 235 AWD 0.6 nozzle", "inherits": "Vzbot 235 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "bb7maLXPfrMcxn8p", "instantiation": "true", "printer_model": "Vzbot 235 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json index 6000a95412..d27f1681d7 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "vxwG1SY30m0B6XTp", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json index 1cf5daa6c8..a234c97df7 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.5 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.5 nozzle", "inherits": "Vzbot 330 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "a6ccTGhce7Lv2QHs", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json index b7d4e9d4b1..1f19e7bc5c 100644 --- a/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json +++ b/resources/profiles/Vzbot/machine/Vzbot 330 AWD 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Vzbot 330 AWD 0.6 nozzle", "inherits": "Vzbot 330 AWD 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "o56K7oCaMvsfo8BT", "instantiation": "true", "printer_model": "Vzbot 330 AWD", "nozzle_diameter": [ diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json index 9994391c44..92d5df5782 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "VZ004", + "setting_id": "sXYnaha5Rf3X27WC", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json index c7c5cc3808..ec4a43288b 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "VZ004", + "setting_id": "Jb7iDPMXUzlD0paU", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json index d4315c3f1e..3453e07b86 100644 --- a/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.08mm Extra Fine @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "VZ004", + "setting_id": "nH8Qe9FH8KAyug2D", "instantiation": "true", "layer_height": "0.08", "bottom_shell_layers": "7", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json index 96429c3485..d7bb7051e0 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rIolBnxPDz0JZ1y3", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json index 120ea3c42b..cf95df6ea3 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "vBKmguJfN2ksgQIj", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json index 64be6c3ec0..9e94082572 100644 --- a/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.12mm Fine @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "C8BcidoYg7hz6pZR", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json index 5d9e1b8a2a..9ef0460f5f 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "EJM4jDs5VAoDZ2Ck", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json index b3c7ebb6e1..30882e8b8e 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "DthzVPCYv8NTUSVz", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json index cb1c035dbb..9ae89f95f9 100644 --- a/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.15mm Optimal @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "JQKOfoNtaaLXMDfL", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json index 7400ea036e..3ad1d22f9c 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "aufrk8Rt9qtJksVX", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json index 0f45024462..dbc5b4e2d1 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "6Mc2gE5998yaaxw1", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json index 58ef60a677..144f8b1fb3 100644 --- a/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.20mm Standard @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "94SjpnI8J6WQ62OI", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json index c7288585bf..d3176f67f1 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "R3eBcc7rUY7oh5Vh", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json index ebd54291c5..f7aac43ece 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common_0.5_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "u5viOOkhCR3nFs8B", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json index fabcbc142b..8ab6c96128 100644 --- a/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.24mm Draft @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common_0.6_nozzle", "from": "system", - "setting_id": "GP004", + "setting_id": "j24GeRgrodJlPD18", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "3", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json index 5005938a09..efadd4a9be 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "YKDq6PIKg8dcn3vr", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.45", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json index 547bf12e2c..c10e0af6a8 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.5_nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot 0.5nozzle", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "5ZGKXsobBGrbtETB", "instantiation": "true", "layer_height": "0.28", "top_surface_line_width": "0.52", diff --git a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json index f8b83cdba6..430bab9497 100644 --- a/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json +++ b/resources/profiles/Vzbot/process/0.28mm Extra Draft @Vzbot_0.6_nozzle.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @Vzbot 0.6nozzle", "inherits": "fdm_process_Vzbot_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZBf4g6Ez56En1SmA", "instantiation": "true", "layer_height": "0.28", "bottom_shell_layers": "3", diff --git a/resources/profiles/WEMAKE3D.json b/resources/profiles/WEMAKE3D.json index 18a91722db..399d342641 100644 --- a/resources/profiles/WEMAKE3D.json +++ b/resources/profiles/WEMAKE3D.json @@ -1,6 +1,6 @@ { "name": "WEMAKE3D", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "WEMAKE3D configurations", "machine_model_list": [ @@ -32,7 +32,7 @@ }, { "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "sub_path": "process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json" + "sub_path": "process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json" }, { "name": "0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle", diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json index 1111559057..c83afd8d4b 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -4,7 +4,7 @@ "inherits": "fdm_machine_phoenixprov1_common", "from": "system", "instantiation": "true", - "setting_id": "GM001", + "setting_id": "XHK731uBkstR3hRp", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ "0.2" diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json index cd18eff66f..f9535d4114 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "nRofRzkgAke3Bvj3", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json index a39c89511d..525328632b 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "XJntkwRAhQqQVQ7k", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json index d57eb48855..dc68c2513f 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_machine_phoenixprov1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KZEPfgrYGYHmnRSl", "instantiation": "true", "printer_model": "WEMAKE3D PhoenixProV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json index fc745254ec..3ffd9859a7 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "peKdjRumdiusZYeD", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json index eb6fa29b46..b5fac96720 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "wjb507santoIgEgu", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json index 3c6bf75ea4..e922a08b20 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "yNLzZW7IYBbiVENM", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json index ed91c95168..833b415824 100644 --- a/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/machine/WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -3,7 +3,7 @@ "name": "WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_machine_tinybotv1_common", "from": "system", - "setting_id": "GM001", + "setting_id": "dxguOcKUGzTHj76q", "instantiation": "true", "printer_model": "WEMAKE3D TinyBotV1", "nozzle_diameter": [ diff --git a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 39a2c8f13a..6b2e6971aa 100644 --- a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.06mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "P4I2dGs9mdGxK7bX", "instantiation": "true", "layer_height": "0.06", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 44cb7164f2..b2e7903822 100644 --- a/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.06mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "lKRhksHIcW8U9nlN", "instantiation": "true", "layer_height": "0.06", "initial_layer_print_height": "0.15", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index a191b238c8..d0e54983ac 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "wwivWw7JD0tDe0ar", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 43bb0df444..bfccefe24c 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Extra Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "oeUMFiVN3C19a8lI", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json deleted file mode 100644 index a191b238c8..0000000000 --- a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "process", - "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "inherits": "fdm_process_phoenixProV1_common", - "from": "system", - "instantiation": "true", - "bottom_shell_layers": "4", - "counterbore_hole_bridging": "partiallybridge", - "default_acceleration": "3000", - "gap_infill_speed": "200", - "layer_height": "0.08", - "initial_layer_acceleration": "1000", - "initial_layer_infill_speed": "80", - "initial_layer_line_width": "0.38", - "initial_layer_speed": "80", - "inner_wall_acceleration": "2500", - "inner_wall_speed": "200", - "internal_solid_infill_line_width": "0.32", - "internal_solid_infill_speed": "200", - "line_width": "0.32", - "outer_wall_acceleration": "2000", - "outer_wall_line_width": "0.32", - "outer_wall_speed": "150", - "print_settings_id": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "slow_down_layers": "2", - "sparse_infill_pattern": "rectilinear", - "sparse_infill_speed": "200", - "support_line_width": "0.32", - "thick_bridges": "1", - "top_shell_layers": "4", - "top_surface_acceleration": "2000", - "top_surface_line_width": "0.32", - "top_surface_speed": "150", - "travel_acceleration": "3000", - "travel_speed": "250", - "wall_sequence": "inner-outer-inner wall", - "compatible_printers": [ - "WEMAKE3D PhoenixProV1 0.3mm nozzle" - ] -} diff --git a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json deleted file mode 100644 index f813eef18c..0000000000 --- a/resources/profiles/WEMAKE3D/process/0.08mm ExtraFine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "type": "process", - "name": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "inherits": "fdm_process_phoenixProV1_common", - "from": "system", - "instantiation": "true", - "bottom_shell_layers": "4", - "counterbore_hole_bridging": "partiallybridge", - "default_acceleration": "3000", - "gap_infill_speed": "200", - "layer_height": "0.08", - "initial_layer_acceleration": "1000", - "initial_layer_infill_speed": "80", - "initial_layer_line_width": "0.38", - "initial_layer_speed": "80", - "inner_wall_acceleration": "2500", - "inner_wall_speed": "200", - "internal_solid_infill_line_width": "0.32", - "internal_solid_infill_speed": "200", - "line_width": "0.32", - "outer_wall_acceleration": "2000", - "outer_wall_line_width": "0.32", - "outer_wall_speed": "150", - "print_settings_id": "0.08mm Extra Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", - "slow_down_layers": "2", - "sparse_infill_pattern": "rectilinear", - "sparse_infill_speed": "200", - "support_line_width": "0.32", - "thick_bridges": "1", - "top_shell_layers": "4", - "top_surface_acceleration": "2000", - "top_surface_line_width": "0.32", - "top_surface_speed": "150", - "travel_acceleration": "3000", - "travel_speed": "250", - "wall_sequence": "inner-outer-inner wall", - "compatible_printers": [ - "WEMAKE3D TinyBotV1 0.3mm nozzle" - ] -} diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index 26980fced7..ed85612e02 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Fine @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "vm9IE4XjJPo8RphS", "instantiation": "true", "layer_height": "0.08", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json index c75cedb3af..e3265dd901 100644 --- a/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.08mm Fine @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "KJHOVcfIXsr31KvN", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index be35502885..e1f88ea7d7 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "wmpXPDudntnom6Kx", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 64027f5c95..79fc6f603f 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "2VQgdFkpCRMTA03y", "instantiation": "true", "print_settings_id": "0.12mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.12", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 26281f82bd..d0dbe92746 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "xvCH51xkv0PvTkqf", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json index deac2803ed..3f7381affa 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Extra Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "icBFwkQJxqVsDSUH", "instantiation": "true", "print_settings_id": "0.12mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.12", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index c4ba30bed6..b4f7e2b5b4 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "wAsOQFNNDiluP4fB", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 65668633c9..1f933649a1 100644 --- a/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.12mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "HbmbIKLbAqm1rPok", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index c52e23ecaf..890fd826fd 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.15mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "q67HwK2lQ2ImXhQ9", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json index 54c51f0db7..d974bd4401 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.15mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "VF0y0eQfT0BZ7iPk", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 7a5b9d9c70..adf0661503 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.15mm Standard @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "oSkFgMyUPhIqmcee", "instantiation": "true", "layer_height": "0.15", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 389f9570b0..3a1696ac73 100644 --- a/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.15mm Standard @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "u7Bh8Hf5vOB1MvSl", "instantiation": "true", "layer_height": "0.12", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json index c363971869..29d3075124 100644 --- a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.16mm Draft @WEMAKE3D PhoenixProV1 0.2mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "puR7xyQKQioFauQk", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json index 9000cd66ea..3da6f111e8 100644 --- a/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.16mm Draft @WEMAKE3D TinyBotV1 0.2mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "2JQ1plV6wu1puqxi", "instantiation": "true", "layer_height": "0.16", "initial_layer_print_height": "0.16", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index 6b01f4e4a5..5de336b880 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Extra Fine @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "cwITGBAP2HYzhu0i", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json index c849e5b386..f6659c3ceb 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Extra Fine @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "EYwYFmo7JV2eyNwY", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index ea12e477a7..5384a59a23 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Fine @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "T3dqJHhfcmP3k6DQ", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 604023f802..023e3005c7 100644 --- a/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.1mm Fine @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "dCweNZzyr6sqDHtt", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index fbf18a90b1..04255607e7 100644 --- a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "QHMAReprYaHKSMO7", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 2941bc1cae..723ffcd8ff 100644 --- a/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.24mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "yEeTta1SiYsHzwiq", "instantiation": "true", "layer_height": "0.24", "initial_layer_print_height": "0.24", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json index 4d337061f4..2ee6f14fbc 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Draft @WEMAKE3D PhoenixProV1 0.3mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "TFl8vBOxyNLPiX1a", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json index 240946ec1a..6bb9b99d15 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.25mm Draft @WEMAKE3D TinyBotV1 0.3mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "keLrcV1Yh3HhZNAJ", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 46b5554881..aba823b367 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "5m612Xzx3KRvVWrt", "instantiation": "true", "print_settings_id": "0.25mm Fine @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.25", diff --git a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 417eb123e0..158fab90ce 100644 --- a/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "FOWYsBb6XtGRR2Up", "instantiation": "true", "print_settings_id": "0.25mm Fine @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.25", diff --git a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index af3199de28..87b04d834e 100644 --- a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.2mm Standard @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "DmlEv80SRpa9pYNt", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 2e85557956..bdf0ae7620 100644 --- a/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.2mm Standard @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "Pt0aOqxcVy8GTRXM", "instantiation": "true", "layer_height": "0.2", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index e43d86398d..2dbb8c25b3 100644 --- a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.32mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "aQzgJDz6SgKP22qD", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json index bfe167ac92..fe36c4ab67 100644 --- a/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.32mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "qjNZ2kkEVuDxyIPG", "instantiation": "true", "layer_height": "0.32", "initial_layer_print_height": "0.32", diff --git a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json index 604eb37052..65d3d3815b 100644 --- a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Draft @WEMAKE3D PhoenixProV1 0.4mm nozzle", "inherits": "fdm_process_phoenixProV1_common", "from": "system", + "setting_id": "UMMyrxw5h5Xf2g4Q", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json index 243fc14ca5..c9a7abce94 100644 --- a/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.3mm Draft @WEMAKE3D TinyBotV1 0.4mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "JszyAEXCkx9Fy65G", "instantiation": "true", "bottom_shell_layers": "4", "counterbore_hole_bridging": "partiallybridge", diff --git a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 61f277c107..dddce27132 100644 --- a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "MelYbFwaIqcTgRmR", "instantiation": "true", "print_settings_id": "0.48mm Extra Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.48", diff --git a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 1be263bfab..47c7d14c50 100644 --- a/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -3,6 +3,7 @@ "name": "0.48mm Extra Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", "from": "system", + "setting_id": "QKSZ5T6peyXMfqZE", "instantiation": "true", "layer_height": "0.48", "initial_layer_print_height": "0.48", diff --git a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json index 4f8c90c979..cf9888c55c 100644 --- a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "inherits": "fdm_process_phoenixProV1_common", + "setting_id": "5JXwah0qXXmMA89e", "instantiation": "true", "print_settings_id": "0.4mm Draft @WEMAKE3D PhoenixProV1 0.6mm nozzle", "layer_height": "0.4", diff --git a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json index 7f70911954..8a7bb1f3ea 100644 --- a/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json +++ b/resources/profiles/WEMAKE3D/process/0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle.json @@ -2,6 +2,7 @@ "type": "process", "name": "0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "inherits": "fdm_process_tinyBotV1_common", + "setting_id": "hqBED1cY7X1cXHk2", "instantiation": "true", "print_settings_id": "0.4mm Draft @WEMAKE3D TinyBotV1 0.6mm nozzle", "layer_height": "0.4", diff --git a/resources/profiles/Wanhao France.json b/resources/profiles/Wanhao France.json index 3b957e5f83..92694fe476 100644 --- a/resources/profiles/Wanhao France.json +++ b/resources/profiles/Wanhao France.json @@ -1,6 +1,6 @@ { "name": "Wanhao France", - "version": "02.04.00.00", + "version": "02.04.00.02", "force_update": "0", "description": "Wanhao France D12 configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PETG.json b/resources/profiles/Wanhao France/filament/YUMI PETG.json index e1fa245088..ca5eb1b5c9 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PETG.json +++ b/resources/profiles/Wanhao France/filament/YUMI PETG.json @@ -3,7 +3,7 @@ "name": "YUMI PETG", "inherits": "Yumi Generic PETG", "from": "system", - "setting_id": "GFSA04", + "setting_id": "PFFm20QNgwqyuglH", "filament_id": "GFG99", "instantiation": "true", "filament_vendor": [ @@ -263,11 +263,11 @@ "D12 500 PRO M2 DIRECT 0.4 nozzle", "D12 500 PRO SMARTPAD DIRECT 0.4 nozzle", "D12 230 PRO M2 MONO DUAL 0.4 nozzle", - "D12 230 PRO M2 MONO DUAL PoopTool 0.4 nozzle", + "D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool", "D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle", - "D12 230 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", + "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool", "D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "D12 300 PRO M2 MONO DUAL 0.4 nozzle", diff --git a/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json b/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json index 0eb11d2395..d6a5d6dcc6 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json +++ b/resources/profiles/Wanhao France/filament/YUMI PLA Bowden.json @@ -3,7 +3,7 @@ "name": "YUMI PLA Bowden", "inherits": "Yumi Generic PLA", "from": "system", - "setting_id": "GFSR99", + "setting_id": "zQSSA2QZi27ESyQK", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json b/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json index c39ccbe8bf..be13517ab5 100644 --- a/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json +++ b/resources/profiles/Wanhao France/filament/YUMI PLA Direct Drive.json @@ -3,7 +3,7 @@ "name": "YUMI PLA Direct Drive", "inherits": "Yumi Generic PLA", "from": "system", - "setting_id": "GFSR99", + "setting_id": "v2p0ooSxHnvVkn57", "filament_id": "GFU99", "instantiation": "true", "filament_vendor": [ diff --git a/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json b/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json index be868610fa..83d505ac6f 100644 --- a/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json +++ b/resources/profiles/Wanhao France/filament/Yumi Generic PETG.json @@ -3,7 +3,6 @@ "name": "Yumi Generic PETG", "inherits": "fdm_filament_pet", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFG99", "instantiation": "false", "reduce_fan_stop_start_freq": [ diff --git a/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json b/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json index a9a540f181..bbace09129 100644 --- a/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json +++ b/resources/profiles/Wanhao France/filament/Yumi Generic PLA.json @@ -3,7 +3,6 @@ "name": "Yumi Generic PLA", "inherits": "fdm_filament_pla", "from": "system", - "setting_id": "GFSA04", "filament_id": "GFL99", "instantiation": "false", "filament_flow_ratio": [ diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json index a41a6a1204..865bad7e88 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM003", + "setting_id": "R46FVqdQJNceXFVB", "instantiation": "true", "printer_model": "D12 230 PRO M2 DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json index 95d2b52a4a..4f89e83c22 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 MONO DUAL 0.4 nozzle PoopTool", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "IJJla2ZJTEj5O83J", "instantiation": "true", "printer_model": "D12 230 PRO M2 MONO DUAL PoopTool", "default_print_profile": "0.20mm Standard @Wanhao-D12-230 PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json index a6ffc48c4f..6f3cdc3ee9 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "KLLikpspEn2p4hr0", "instantiation": "true", "printer_model": "D12 230 PRO M2 MONO DUAL", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json index bdff855c1a..b15cecc588 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "erVlXIi9IMKGHJXV", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD DIRECT", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json index beab95b51a..80934434bb 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle PoopTool", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PubqaINvB4L3UeWp", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD MONO DUAL PoopTool", "default_print_profile": "0.20mm Standard @Wanhao-D12-230 PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 4857363296..a5dd04837c 100644 --- a/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 230 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "GRFdNsjZaVMOtgwS", "instantiation": "true", "printer_model": "D12 230 PRO SMARTPAD MONO DUAL", "default_print_profile": "0.20mm Standard @Wanhao-D12-230", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json index f0f8e22664..88fc2fa519 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "P6RfuPrBZJa2BR3J", "instantiation": "true", "printer_model": "D12 300 PRO M2 DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json index 1941d06d22..e431c6ee24 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "bTbd37YEZf43Pkw2", "instantiation": "true", "printer_model": "D12 300 PRO M2 MONO DUAL", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json index a1a190f1ab..fe00d9421b 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "5gVOdIblVA5gfKeN", "instantiation": "true", "printer_settings_id": "Wanhao France D12 300 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 300 PRO M2 MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json index 05f24f68fb..5795ec87f1 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8zR3DwyC6BsiJwzO", "instantiation": "true", "printer_model": "D12 300 PRO SMARTPAD DIRECT", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 6fda93a234..fb189c1c70 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "N49lBIWv5z1cvRqn", "instantiation": "true", "printer_model": "D12 300 PRO SMARTPAD MONO DUAL", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json index c78b0daba8..694ea29dc1 100644 --- a/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "ADwIpXgme0LgZuMR", "instantiation": "true", "printer_settings_id": "Wanhao France D12 300 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 300 PRO SMARTPAD MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json index b6f7349d78..d49638c216 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "T1TovgQ0zwad2e0j", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD DIRECT", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json index 3c3fb30500..f168fa5fe5 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "PBCiIJd64Had3Zta", "instantiation": "true", "printer_model": "D12 500 PRO M2 MONO DUAL", "gcode_flavor": "marlin2", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json index 0de474ad57..6b0c3af76c 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "POogfMI53cHIGZi7", "instantiation": "true", "printer_settings_id": "Wanhao France D12 500 PRO M2 MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 500 PRO M2 MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json index bd2377e730..4b41bbee33 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD DIRECT 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD DIRECT 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "qMwpt4V1DsowPbn1", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD DIRECT", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json index 0905568aed..931c88e897 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD MONO DUAL 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "xya7tlhSORyjAw4O", "instantiation": "true", "printer_model": "D12 500 PRO SMARTPAD MONO DUAL", "gcode_flavor": "klipper", diff --git a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json index e1a64fcd33..6f6bea0067 100644 --- a/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json +++ b/resources/profiles/Wanhao France/machine/D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "inherits": "fdm_machine_common", "from": "system", - "setting_id": "GM001", + "setting_id": "q9PXG348AwKyVpkS", "instantiation": "true", "printer_settings_id": "Wanhao France D12 500 PRO SMARTPAD MONO DUAL PoopTool 0.4 nozzle", "printer_model": "D12 500 PRO SMARTPAD MONO DUAL PoopTool", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json index 53da19fa04..43ea7b540a 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "sCx9qFYlRGVUhZxC", "instantiation": "true", "layer_height": "0.10", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json index 2ede04d2d4..cc676b1a9f 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "oUVvy6gnxH9PGmj2", "instantiation": "true", "layer_height": "0.1", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json index f7a9fcb727..19f59d1b14 100644 --- a/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.10mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "ZEiHmWvYEm8bydE2", "instantiation": "true", "layer_height": "0.1", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json index 7e6ebc0447..f29dab795c 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wZtQZ12wbfpFcCc7", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json index 48b4db4b75..62929a9439 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "yFtxcvmgj7PVB3hx", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json index 7d6966b593..3adfffbc90 100644 --- a/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.15mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.15mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "U6FXLvf6cRw4Xi5C", "instantiation": "true", "layer_height": "0.15", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json index 70e145680c..be29fe52f0 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-230 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "mm5XTn07Si47K9JF", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json index 51e7449598..3891d3b2d0 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "htDDsczZsT3Fazvs", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json index 672f0d1930..24f3ff20ef 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-300 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "nkw0oVHu8xPoWe8i", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json index e65b8a2d4a..5e90c8526b 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "dlmECZWMRSs0BGgu", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json index d05e521cbd..8f207457f0 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500 PoopTool.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-500 PoopTool", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "MMBQTbhLBqb6byXv", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json index 5685fc107a..8c0d3b7f09 100644 --- a/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.20mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LSUl3D8OxCncxnMc", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json index 38c4656254..52c14a5979 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-230.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-230", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LAZpKTjIQwDI4BTx", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json index 290f84e715..71aa2e96cd 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-300.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-300", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "LmOMl2jQ5G66qCo9", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json index 90fc9acf1c..4dbec41ea4 100644 --- a/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json +++ b/resources/profiles/Wanhao France/process/0.24mm Standard @Wanhao-D12-500.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Wanhao-D12-500", "inherits": "fdm_process_common", "from": "system", - "setting_id": "GP004", + "setting_id": "O6OfxmRxpZPOmU50", "instantiation": "true", "layer_height": "0.24", "bottom_shell_layers": "4", diff --git a/resources/profiles/Wanhao.json b/resources/profiles/Wanhao.json index fbd1b366ad..d534a75d8b 100644 --- a/resources/profiles/Wanhao.json +++ b/resources/profiles/Wanhao.json @@ -1,6 +1,6 @@ { "name": "Wanhao", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Wanhao configurations", "machine_model_list": [ diff --git a/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json b/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json index fffd1969c9..b96b3ce2d6 100644 --- a/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json +++ b/resources/profiles/Wanhao/machine/Wanhao D12-300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Wanhao D12-300 0.4 nozzle", "inherits": "fdm_wanhao_common", "from": "system", - "setting_id": "GM001", + "setting_id": "zEkUAK1KsoEiqC11", "instantiation": "true", "printer_model": "Wanhao D12-300", "nozzle_diameter": [ diff --git a/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json index 8c51766acd..12cded493b 100644 --- a/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.12mm Fine @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @Wanhao D12-400", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "qlj7Yq7lzsuAM9Yx", "instantiation": "true", "layer_height": "0.12", "bottom_shell_layers": "5", diff --git a/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json index c695b77d0f..f664617cfc 100644 --- a/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.15mm Optimal @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.15mm Optimal @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "rS2XLUYO7QV9sLuZ", "instantiation": "true", "bottom_shell_layers": "4", "top_shell_layers": "5", diff --git a/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json index 1dffa0802b..11965aac84 100644 --- a/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.20mm Standard @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "VTYPPf9wyj43tPrU", "instantiation": "true", "layer_height": "0.2", "bottom_shell_layers": "3", diff --git a/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json b/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json index 2e6987cf49..a574e0851b 100644 --- a/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json +++ b/resources/profiles/Wanhao/process/0.24mm Draft @Wanhao D12-300.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @Wanhao D12-300", "inherits": "fdm_process_wanhao_common", "from": "system", - "setting_id": "GP004", + "setting_id": "wJ1rmnyK4uPv168Y", "instantiation": "true", "layer_height": "0.24", "top_surface_line_width": "0.45", diff --git a/resources/profiles/WonderMaker.json b/resources/profiles/WonderMaker.json index 2ecb6d2323..c65bc82729 100755 --- a/resources/profiles/WonderMaker.json +++ b/resources/profiles/WonderMaker.json @@ -1,7 +1,7 @@ { "name": "WonderMaker", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "WonderMaker configurations", "machine_model_list": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json index fb5895fa0d..40d78fad99 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ABS @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker ABS @WonderMaker ZR Ultra S", "inherits": "WonderMaker ABS", "from": "system", - "setting_id": "GFSB01_07", + "setting_id": "uDsaIAQaCZJNxUcR", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ABS.json b/resources/profiles/WonderMaker/filament/WonderMaker ABS.json index d6553b0382..ab6833cb04 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ABS.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ABS.json @@ -3,6 +3,7 @@ "name": "WonderMaker ABS", "inherits": "fdm_filament_abs", "from": "system", + "setting_id": "cyLAXg9zBIDNkYNx", "filament_id": "GFB00", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json index b7d80bd104..5202e4d4d3 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ASA @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker ASA @WonderMaker ZR Ultra S", "inherits": "WonderMaker ASA", "from": "system", - "setting_id": "GFSB01_07", + "setting_id": "UFAjAywKaIFE8fh4", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker ASA.json b/resources/profiles/WonderMaker/filament/WonderMaker ASA.json index 090fdafb98..b73a974ea9 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker ASA.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker ASA.json @@ -3,6 +3,7 @@ "name": "WonderMaker ASA", "inherits": "fdm_filament_asa", "from": "system", + "setting_id": "Wu70ukKHBqIa4TDv", "filament_id": "GFB01", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json index c898293a7b..9fb8526891 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF @WonderMaker ZR Ultra S.json @@ -3,7 +3,7 @@ "name": "WonderMaker PET-CF @WonderMaker ZR Ultra S", "inherits": "WonderMaker PET-CF", "from": "system", - "setting_id": "GFST01_00", + "setting_id": "StweV7VENDenJpre", "instantiation": "true", "chamber_temperatures": [ "60" diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json index f74de5e962..79d0a85a77 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PET-CF.json @@ -3,6 +3,7 @@ "name": "WonderMaker PET-CF", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "Rnm03E1ifi5A2vrQ", "filament_id": "GFT01", "instantiation": "true", "description": "When printing this filament, there's a risk of nozzle clogging, oozing, warping and low layer adhesion strength. To get better results, please refer to this wiki: Printing Tips for High Temp / Engineering materials.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json b/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json index 3e534406f9..434c0f9fca 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PETG Basic.json @@ -3,6 +3,7 @@ "name": "WonderMaker PETG Basic", "inherits": "fdm_filament_pet", "from": "system", + "setting_id": "ZtPZlMNIqq3Gaavc", "filament_id": "GFG00", "instantiation": "true", "description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json index 81bd0fd51d..7440eae0ee 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Basic.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Basic", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "HRFI81hKAaT1LwjF", "filament_id": "GFA00", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json index 84cff80828..7c641e69b0 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Marble.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Marble", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "eudiDwK2EVLlGnha", "filament_id": "GFA07", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json index 578ef8787d..a935c96157 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Matte.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Matte", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "YufHNkKBRBBxucHO", "filament_id": "GFA01", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json index 6e5fc98b6e..222fcbce1a 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Metal.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Metal", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "4B7gD5YwPbUCvLAh", "filament_id": "GFA02", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json index a92d7d4127..6738e2802e 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Silk.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Silk", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "8kSWEkCpitdwX11c", "filament_id": "GFA05", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json b/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json index ec69495ce9..d4b51f4b0d 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PLA Wood.json @@ -3,6 +3,7 @@ "name": "WonderMaker PLA Wood", "inherits": "fdm_filament_pla", "from": "system", + "setting_id": "KxnOjANQuyO10zzH", "filament_id": "GFA16", "instantiation": "true", "filament_cost": [ diff --git a/resources/profiles/WonderMaker/filament/WonderMaker PVA.json b/resources/profiles/WonderMaker/filament/WonderMaker PVA.json index ab2ff4fdea..65f504da95 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker PVA.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker PVA.json @@ -3,6 +3,7 @@ "name": "WonderMaker PVA", "inherits": "fdm_filament_pva", "from": "system", + "setting_id": "PRdEoagTzltjzJCQ", "filament_id": "GFS04", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json b/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json index 0e5012f740..3b617e15ab 100755 --- a/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json +++ b/resources/profiles/WonderMaker/filament/WonderMaker TPU 95A.json @@ -3,6 +3,7 @@ "name": "WonderMaker TPU 95A", "inherits": "fdm_filament_tpu", "from": "system", + "setting_id": "eUyRprcb22IdYNv3", "filament_id": "GFU01", "instantiation": "true", "description": "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.", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json index 1317f1a41f..a4f1ea74e0 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.2 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "G1FnwNbE7wHLzxxb", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.10mm Standard @WonderMaker ZR 0.2 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json index d49c9de2d4..f15e38bc14 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM001", + "setting_id": "c1cVpgV1r1CphIJV", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.20mm Standard @WonderMaker ZR", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json index c6f98d7a15..1a44e35d9f 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.6 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "oad2AQ17RRqjtgrk", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.30mm Standard @WonderMaker ZR 0.6 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json index 0db573afca..27db3da379 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR 0.8 nozzle", "inherits": "WonderMaker ZR 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "RS3RvOaBqXvjPRl9", "instantiation": "true", "printer_model": "WonderMaker ZR", "default_print_profile": "0.40mm Standard @WonderMaker ZR 0.8 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json index 4a22af38b0..927ab9d44b 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.2 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM010", + "setting_id": "AX42zNj8YsJ94ilv", "instantiation": "true", "nozzle_diameter": [ "0.2", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json index 9eb5868be6..0a30108052 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM013", + "setting_id": "xJBdCljSZVDINXnP", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra", "default_print_profile": "0.20mm Standard @WonderMaker ZR Ultra", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json index 9b8539b457..fc851ff348 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.6 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM011", + "setting_id": "6OWxZLFn3RD54QfX", "instantiation": "true", "nozzle_diameter": [ "0.6", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json index ef3cc9cc3d..eefaab3431 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra 0.8 nozzle", "inherits": "WonderMaker ZR Ultra 0.4 nozzle", "from": "system", - "setting_id": "GM012", + "setting_id": "SY9snlsMkurhEYWP", "instantiation": "true", "nozzle_diameter": [ "0.8", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json index 5140de1a3c..26ad5e21d7 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.2 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM015", + "setting_id": "ZNAx3f7tX3DatiK1", "instantiation": "true", "nozzle_diameter": [ "0.2", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json index 0243d9a2a6..df1dbbb9a8 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.4 nozzle", "inherits": "fdm_klipper_common", "from": "system", - "setting_id": "GM014", + "setting_id": "8xoZ6vYv9ws0J97u", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.20mm Standard @WonderMaker ZR Ultra", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json index d44ff34d68..9f2bd6f069 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.6 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM016", + "setting_id": "xuJnOPTmSW1BMo6p", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle", diff --git a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json index 9d04d4e3d4..2137855fe0 100755 --- a/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/machine/WonderMaker ZR Ultra S 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "WonderMaker ZR Ultra S 0.8 nozzle", "inherits": "WonderMaker ZR Ultra S 0.4 nozzle", "from": "system", - "setting_id": "GM017", + "setting_id": "0BPLKMspArilfkGT", "instantiation": "true", "printer_model": "WonderMaker ZR Ultra S", "default_print_profile": "0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle", diff --git a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json index e98bf38ff1..0b113f9f01 100755 --- a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP024", + "setting_id": "u12WUH0jDnm5Rn3x", "instantiation": "true", "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json index fe24ad5c75..27b1b48eca 100755 --- a/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.06mm Fine @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.06_nozzle_0.2", "from": "system", - "setting_id": "GP063", + "setting_id": "lq88Zo3JjwDLKgiq", "instantiation": "true", "description": "Compared with the default profile of 0.2 mm nozzle, it has a smaller layer height, and results in minimal layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json index bfd9c86a22..7b393336df 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.08", "from": "system", - "setting_id": "GP018", + "setting_id": "S9bZmEeAYQKyQW6v", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json index f73c709e14..1f4a7fed3b 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.08mm Extra Fine @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.08mm Extra Fine @WonderMaker ZR", "inherits": "fdm_process_wm_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "MDzBBVuT9evcSDUx", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json index 0706c2a640..4713c9c6ef 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP025", + "setting_id": "sRvGwME6QEtqFE4R", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json index fde240d0c0..422b17646b 100755 --- a/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.08mm Optimal @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.08_nozzle_0.2", "from": "system", - "setting_id": "GP064", + "setting_id": "stHCWih7tHvZJdIz", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a smaller layer height, and results in almost invisible layer lines and higher printing quality, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json index 517a29b98e..1c298bcab0 100755 --- a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP007", + "setting_id": "9fkqViiWCOVJQB6M", "instantiation": "true", "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json index 6b9b30c214..eeddb0e9f8 100755 --- a/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.10mm Standard @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.10_nozzle_0.2", "from": "system", - "setting_id": "GP014", + "setting_id": "k1hGxsywYldN81jM", "instantiation": "true", "description": "It has a small layer height, and results in almost negligible layer lines and high printing quality. It is suitable for most general printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json index 14a67bcab1..a1275857de 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP026", + "setting_id": "kI8JZdjGYo0TzG37", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json index a586bd6e02..f9a1aedca2 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.12mm Draft @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.12_nozzle_0.2", "from": "system", - "setting_id": "GP065", + "setting_id": "8Ubs9u8uMI3Rsg7p", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a slightly bigger layer height, and results in almost negligible layer lines, and slightly shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json index 0e97315eb9..f270e60327 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.12", "from": "system", - "setting_id": "GP019", + "setting_id": "bSzDzVfhYbOfsvrm", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json index c470dd7aff..1e0fd84bfd 100755 --- a/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.12mm Fine @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.12mm Fine @WonderMaker ZR", "inherits": "fdm_process_wm_0.12", "from": "system", - "setting_id": "GP002", + "setting_id": "RNjDYmMvSgIjaGUB", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json index 8f0f4925b4..5c24551f11 100755 --- a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @WonderMaker ZR 0.2 nozzle", "inherits": "fdm_process_wm_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP027", + "setting_id": "pc5c2rBdvGc0Qpjr", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json index 0eb57bc857..d10132d333 100755 --- a/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle.json @@ -3,7 +3,7 @@ "name": "0.14mm Extra Draft @WonderMaker ZR Ultra 0.2 nozzle", "inherits": "fdm_process_wm_0.14_nozzle_0.2", "from": "system", - "setting_id": "GP066", + "setting_id": "C9hqtsamnyeX5OMB", "instantiation": "true", "description": "Compared with the default profile of a 0.2 mm nozzle, it has a bigger layer height, and results in slightly visible layer lines, but shorter printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json index a4cb68000a..49e6dee9e5 100755 --- a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.16", "from": "system", - "setting_id": "GP020", + "setting_id": "CJRH0KVoqMhAKf7b", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json index 514e2b8f4a..d6837e19f2 100755 --- a/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.16mm Optimal @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.16mm Optimal @WonderMaker ZR", "inherits": "fdm_process_wm_0.16", "from": "system", - "setting_id": "GP003", + "setting_id": "Gq8p7VLck61epJRQ", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json index 6541c66dec..5ac88d7e8c 100755 --- a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP028", + "setting_id": "YrxhXDkyXhyTQQ0H", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json index 7a0e7bec8d..b3c7bc33da 100755 --- a/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.18mm Fine @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.18_nozzle_0.6", "from": "system", - "setting_id": "GP072", + "setting_id": "0y9QaQRP3vLt7QYx", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json index 698640dbd3..88320865b2 100755 --- a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.20", "from": "system", - "setting_id": "GP015", + "setting_id": "5UnvGUSJUfxiX3Oh", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json index 6a4b91a30b..da46084462 100755 --- a/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.20mm Standard @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @WonderMaker ZR", "inherits": "fdm_process_wm_0.20", "from": "system", - "setting_id": "GP004", + "setting_id": "nalI7H3j0Qhs6qig", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json index ca3de49b4d..0c33e1a7f1 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.24", "from": "system", - "setting_id": "GP022", + "setting_id": "hSxtB6qUwhhTkAtv", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json index 2442e90e91..f0b4ba5369 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.24mm Draft @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.24mm Draft @WonderMaker ZR", "inherits": "fdm_process_wm_0.24", "from": "system", - "setting_id": "GP005", + "setting_id": "ptoXhTDH4PGy8H4w", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json index 4b667a2491..0808b7056e 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP032", + "setting_id": "fPc2zm5gAaMeZ6jN", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json index af0d99d716..433cc33740 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Fine @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP068", + "setting_id": "6wVSTX0lBUuYzTrD", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json index 65200360f3..ec5029b95a 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP029", + "setting_id": "qshwcVTD0Jn7qAD1", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json index 99d4ba0636..e31b67eb36 100755 --- a/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Optimal @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP069", + "setting_id": "9oDBk1n6TuwyrHFJ", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json index 5efb81148c..52b01c70c4 100755 --- a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json +++ b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR Ultra.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @WonderMaker ZR Ultra", "inherits": "fdm_process_wm_0.28", "from": "system", - "setting_id": "GP023", + "setting_id": "sGfFFynEl5ot8fzq", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json index 17b5c663b4..3c61b187bf 100755 --- a/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json +++ b/resources/profiles/WonderMaker/process/0.28mm Extra Draft @WonderMaker ZR.json @@ -3,7 +3,7 @@ "name": "0.28mm Extra Draft @WonderMaker ZR", "inherits": "fdm_process_wm_0.28", "from": "system", - "setting_id": "GP006", + "setting_id": "cns9NtEbZzQRnUOq", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json index 05419e7b8c..3818aa0c7f 100755 --- a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "YGC1wctF6IMnms22", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json index 02420b1cce..35257448ee 100755 --- a/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP016", + "setting_id": "VjbvTVLXEiXjDCKe", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json index fe0b66086f..01040bc97d 100755 --- a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP033", + "setting_id": "2gXa2N36jKPE7Z1n", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json index 6b985c7ca6..9387e0bd31 100755 --- a/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Optimal @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP075", + "setting_id": "10tgvfIXdID8MQZG", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json index 0be0445e2a..32e8d231a0 100755 --- a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP030", + "setting_id": "wHkpL94vCq5iAtub", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json index 8b65409655..aec25c67cd 100755 --- a/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Draft @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP070", + "setting_id": "lrsmSmfq3ytqV38a", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json index 0c1a7aed74..9e040a39f7 100755 --- a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP009", + "setting_id": "fFeU1UUieMxYsNI3", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json index d3de87a8f7..1e5fbadf5a 100755 --- a/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP017", + "setting_id": "aaR3LNHYDQLU1bbk", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json index f441d8aa30..23b41cff0f 100755 --- a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @WonderMaker ZR 0.6 nozzle", "inherits": "fdm_process_wm_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP031", + "setting_id": "NDPYJ3cBbpVzXUHd", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json index 3408f11249..0499dd48ff 100755 --- a/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Extra Draft @WonderMaker ZR Ultra 0.6 nozzle", "inherits": "fdm_process_wm_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP073", + "setting_id": "b4zjQB9iBj3QS7hk", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json index ae22cde198..b2d1696c4f 100755 --- a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP034", + "setting_id": "h56TM3cdab29ggGJ", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json index 7d2dc149a8..526dd3db7d 100755 --- a/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Draft @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP074", + "setting_id": "lBfQjmLtGNXxUxOb", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json index 261c170927..399b583429 100755 --- a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @WonderMaker ZR 0.8 nozzle", "inherits": "fdm_process_wm_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP035", + "setting_id": "ZwvDNVZGXWq0LjCE", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json index 542fbe4877..4708bbfed9 100755 --- a/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json +++ b/resources/profiles/WonderMaker/process/0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.56mm Extra Draft @WonderMaker ZR Ultra 0.8 nozzle", "inherits": "fdm_process_wm_0.56_nozzle_0.8", "from": "system", - "setting_id": "GP071", + "setting_id": "myIHBiZX88X6p44O", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a much bigger layer height, and results in extremely apparent layer lines and much lower printing quality, but much shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt.json b/resources/profiles/Z-Bolt.json index 0c9d52be1f..8e3d3a0cd5 100644 --- a/resources/profiles/Z-Bolt.json +++ b/resources/profiles/Z-Bolt.json @@ -1,7 +1,7 @@ { "name": "Z-Bolt", "url": "", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "0", "description": "Z-Bolt configurations", "machine_model_list": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json index b664f07ab2..5f505d80da 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS;Generic ABS @Z-Bolt;Z-Bolt ABS @0.4 nozzle", "from": "system", - "setting_id": "GFSL204", + "setting_id": "p97bQCnVyGgwMn2y", "filament_id": "GFL204", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json index 6c4ee60de0..641fff9a6b 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS @0.6 nozzle", "from": "system", - "setting_id": "GFSL206", + "setting_id": "BQdgCL8lvVW7I8Dw", "filament_id": "GFL206", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json index 586c520060..1b55d4460b 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS @0.8 nozzle", "from": "system", - "setting_id": "GFSL208", + "setting_id": "Xn2L7IBp26Bb6G2K", "filament_id": "GFL208", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json index 6b2c8e89f9..bdef07fbb7 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_abs", "renamed_from": "Z-Bolt ABS;Generic ABS @Z-Bolt", "from": "system", - "setting_id": "GFSL200", "filament_id": "GFL200", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json index bf3019b67f..a933deaf74 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT;Generic ABS HT @Z-Bolt;Z-Bolt ABS HT @0.4 nozzle", "from": "system", - "setting_id": "GFSL504", + "setting_id": "TDGj84iuRAL9R1d4", "filament_id": "GFL504", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json index 588e4b37c4..701a2e6b7f 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT @0.6 nozzle", "from": "system", - "setting_id": "GFSL506", + "setting_id": "2AKxm2VhVlL2vMM1", "filament_id": "GFL506", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json index 94bd6ae8bb..6c73a3d99f 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic ABS HT @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT @0.8 nozzle", "from": "system", - "setting_id": "GFSL508", + "setting_id": "ztusMudd96Ns3Ip0", "filament_id": "GFL508", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json index 677046a909..431d4dc7c2 100644 --- a/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic ABS HT @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "Generic ABS @Z-Bolt Base", "renamed_from": "Z-Bolt ABS HT;Generic ABS HT @Z-Bolt", "from": "system", - "setting_id": "GFSL500", "filament_id": "GFL500", "instantiation": "false", "description": "Use this filament profile to print big ABS models with chamber heating", diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json index 898a727533..e9b01c547c 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA;Generic PA @Z-Bolt;Z-Bolt PA @0.4 nozzle", "from": "system", - "setting_id": "GFSL404", + "setting_id": "zuvJBWxHOiPMyExQ", "filament_id": "GFL404", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json index 84da8ad404..d74fcf8470 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA @0.6 nozzle", "from": "system", - "setting_id": "GFSL406", + "setting_id": "MB0n4BeDFEI25yTe", "filament_id": "GFL406", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json index da2b1d8da8..42d675d826 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PA @Z-Bolt Base", "renamed_from": "Z-Bolt PA @0.8 nozzle", "from": "system", - "setting_id": "GFSL408", + "setting_id": "WZc4C1f6cPG8HZR3", "filament_id": "GFL408", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json index 04a78f56a6..73459bf326 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PA @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pa", "renamed_from": "Z-Bolt PA;Generic PA @Z-Bolt", "from": "system", - "setting_id": "GFSL400", "filament_id": "GFL400", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json index 8577825333..476ece5d3b 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG;Generic PETG @Z-Bolt;Z-Bolt PETG @0.4 nozzle", "from": "system", - "setting_id": "GFSL304", + "setting_id": "LWwbNXs8bf1iGELi", "filament_id": "GFL304", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json index 3f46a7b70e..8bd7ff1efa 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG @0.6 nozzle", "from": "system", - "setting_id": "GFSL306", + "setting_id": "w4HVBbunzssG9j3s", "filament_id": "GFL306", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json index 9e2bd0a7f5..3bce1def13 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PETG @Z-Bolt Base", "renamed_from": "Z-Bolt PETG @0.8 nozzle", "from": "system", - "setting_id": "GFSL308", + "setting_id": "TnLZ0vOVjIjng3u0", "filament_id": "GFL308", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json index a2b16dd28a..8e64cc6200 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PETG @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pet", "renamed_from": "Z-Bolt PETG;Generic PETG @Z-Bolt", "from": "system", - "setting_id": "GFSL300", "filament_id": "GFL300", "instantiation": "false", "fan_cooling_layer_time": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json index e2e0193b4f..943d57d6c1 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA;Generic PLA @Z-Bolt;Z-Bolt PLA @0.4 nozzle", "from": "system", - "setting_id": "GFSL100", + "setting_id": "0MfamDPH1L6sMRff", "filament_id": "GFL100", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json index 659cc8dfdb..a87f145129 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA @0.6 nozzle", "from": "system", - "setting_id": "GFSL106", + "setting_id": "tdq9Ye9GLpZXlak6", "filament_id": "GFL106", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json index a444c45a3d..283951b1a2 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "inherits": "Generic PLA @Z-Bolt Base", "renamed_from": "Z-Bolt PLA @0.8 nozzle", "from": "system", - "setting_id": "GFSL108", + "setting_id": "GKtc9mJusUZJD6kx", "filament_id": "GFL108", "instantiation": "true", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json index 28763f236e..4b946c44cd 100644 --- a/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json +++ b/resources/profiles/Z-Bolt/filament/Generic PLA @Z-Bolt Base.json @@ -4,7 +4,6 @@ "inherits": "fdm_filament_pla", "renamed_from": "Z-Bolt PLA;Generic PLA @Z-Bolt", "from": "system", - "setting_id": "GFSL100", "filament_id": "GFL100", "instantiation": "false", "filament_max_volumetric_speed": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json index 70fed7cb57..1ac60a5d78 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM030", + "setting_id": "teptDuAWtxJygEmK", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json index c08a1d571d..ec0f7006b1 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.6 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM031", + "setting_id": "24PaKKVYhLmrDWHU", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json index 2bf984384b..effb2a2e23 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 0.8 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM032", + "setting_id": "rV9bipfXnmsrhOLP", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json index 7c989b2b8f..da04d25c6c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.4 nozzle", "inherits": "Z-Bolt S1000 0.4 nozzle", "from": "system", - "setting_id": "GM033", + "setting_id": "t3buunOXSlncNI1F", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json index d238ff4a74..309b3292d8 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.6 nozzle", "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM034", + "setting_id": "RUhTCO93peC0F9qB", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json index cdb92d7d38..83f7fa507a 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S1000 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S1000 Dual 0.8 nozzle", "inherits": "Z-Bolt S1000 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM035", + "setting_id": "9OzS2xKymzssMiIc", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json index c5e00dd1a7..e39d6bd530 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM001", + "setting_id": "8Bi7z6ZxVlWnf4Va", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json index 13a87042e9..6410f96b64 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.6 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM002", + "setting_id": "bv3xhNCXPQEch67E", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json index 0debe4be4b..11cd86fe3b 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 0.8 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM003", + "setting_id": "taVWWULjpGHAu2ET", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json index ff660e57fe..c461088460 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.4 nozzle", "inherits": "Z-Bolt S300 0.4 nozzle", "from": "system", - "setting_id": "GM004", + "setting_id": "F6Mu65zXaazaah92", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json index 1237a4e451..8e8cc70b43 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.6 nozzle", "inherits": "Z-Bolt S300 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM005", + "setting_id": "SK1eQRjXAv4jHCBe", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json index 03b2353be4..506b51678b 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S300 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S300 Dual 0.8 nozzle", "inherits": "Z-Bolt S300 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM006", + "setting_id": "T9HkAOHMH4od12Qm", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json index b1d528acda..b1e7c81474 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM011", + "setting_id": "SXJc7HlZGXJ02MOQ", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json index 271f90580d..908459ccf9 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.6 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM012", + "setting_id": "zVeQRpjQjZCSBVgz", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json index b03c87eab4..fe81c2f745 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 0.8 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM013", + "setting_id": "k66cWXAmc3hLsvn5", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json index c05732fdda..d42c0e90f6 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.4 nozzle", "inherits": "Z-Bolt S400 0.4 nozzle", "from": "system", - "setting_id": "GM014", + "setting_id": "aCsQtmoIIBiyxrh4", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json index aed97c1609..6664864f65 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.6 nozzle", "inherits": "Z-Bolt S400 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM015", + "setting_id": "hSnOgkPOy9NtKJK2", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json index 58b4f4efd4..005c177fcf 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S400 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S400 Dual 0.8 nozzle", "inherits": "Z-Bolt S400 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM016", + "setting_id": "mHCjknijcVhtMmIB", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json index 27e8010403..15d56b4bff 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM021", + "setting_id": "nEeGm6lrMgJ9s7QX", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json index 632484744b..8c0ce9fb6a 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.6 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM022", + "setting_id": "r5DRM0XlqXNWBJWF", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json index d0f2e669cb..8e8643c701 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 0.8 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM023", + "setting_id": "L4FzsKQqiLfRqodo", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json index b3a89d22ce..5c2e417534 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.4 nozzle", "inherits": "Z-Bolt S600 0.4 nozzle", "from": "system", - "setting_id": "GM024", + "setting_id": "T3y6YCpaoHLujWU7", "instantiation": "true", "printer_settings_id": "Z-Bolt", "manual_filament_change": "0", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json index 38fee1f408..c15bf491f1 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.6 nozzle", "inherits": "Z-Bolt S600 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM025", + "setting_id": "UznPK75y7HFfNtvQ", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json index 555f4be064..f51e1af0d8 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S600 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S600 Dual 0.8 nozzle", "inherits": "Z-Bolt S600 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM026", + "setting_id": "XAnYOqbzFATWmL1N", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json index 4738add826..1e204e9f5c 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.4 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.4 nozzle", "inherits": "fdm_zbolt_common", "from": "system", - "setting_id": "GM027", + "setting_id": "D7vDL0C4LzflAtPs", "instantiation": "true", "printer_settings_id": "Z-Bolt", "printer_structure": "corexy", diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json index 43bde623c7..5c4fc79417 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.6 nozzle", "inherits": "Z-Bolt S800 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM028", + "setting_id": "OQLW5tKVfAKnILs9", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json index c910a92bb6..83fc5abc56 100644 --- a/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/machine/Z-Bolt S800 Dual 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "Z-Bolt S800 Dual 0.8 nozzle", "inherits": "Z-Bolt S800 Dual 0.4 nozzle", "from": "system", - "setting_id": "GM029", + "setting_id": "pCByNIozAYMfCW3T", "instantiation": "true", "printer_settings_id": "Z-Bolt", "nozzle_diameter": [ diff --git a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json index cc3d3fd7d2..52e9dae00d 100644 --- a/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.08mm Extra Fine @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.08mm Extra Fine @Z-Bolt S300;0.08mm Extra Fine @Z-Bolt S400", "inherits": "fdm_process_zbolt_0.08", "from": "system", - "setting_id": "GP001", + "setting_id": "aQbSyiYUXanu2sjX", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json index 6449a944d3..c71a6ae5ef 100644 --- a/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.08mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.08mm High Quality @Z-Bolt S300;0.08mm High Quality @Z-Bolt S400", "inherits": "fdm_process_zbolt_0.08", "from": "system", - "setting_id": "GP003", + "setting_id": "MP6HTVlWkZ8xa9QD", "instantiation": "true", "description": "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. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json index e371b19972..74108d7eb6 100644 --- a/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.12mm Fine @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.12mm Fine @Z-Bolt S300;0.12mm Fine @Z-Bolt S400;0.12mm Fine @Z-Bolt S600;0.12mm Fine @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.12", "from": "system", - "setting_id": "GP005", + "setting_id": "FXUuYzz6QKb2B8NO", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in almost negligible layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json index 40501e6872..b7faeba25f 100644 --- a/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.12mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.12mm High Quality @Z-Bolt S300;0.12mm High Quality @Z-Bolt S400;0.12mm High Quality @Z-Bolt S600;0.12mm High Quality @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.12", "from": "system", - "setting_id": "GP006", + "setting_id": "qsrMniHC8vspHFyM", "instantiation": "true", "description": "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. So, it results in almost negligible layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json index 8a40e3b9f6..06b6c23e34 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm High Quality @Z-Bolt S300;0.16mm High Quality @Z-Bolt S400;0.16mm High Quality @Z-Bolt S600;0.16mm High Quality @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.16", "from": "system", - "setting_id": "GP008", + "setting_id": "c3EwAGKFJchwWGzt", "instantiation": "true", "description": "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. So, it results in less apparent layer lines and much higher printing quality, but much longer printing time.", "default_acceleration": "4000", diff --git a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json index e6540c8d47..e826d762af 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm High Quality @Z-Bolt 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm High Quality @Z-Bolt 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010H", + "setting_id": "AAJa8VuKqBMn2qlt", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "outer_wall_speed": "40", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json index a1ef4018b8..ccd2dbcd33 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Optimal @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm Optimal @Z-Bolt S300;0.16mm Optimal @Z-Bolt S400;0.16mm Optimal @Z-Bolt S600;0.16mm Optimal @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.16", "from": "system", - "setting_id": "GP009", + "setting_id": "TrwuaRthXrp9Aqc2", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json index a3aae00ffd..62e3e30a66 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.16mm Standard @Z-Bolt S300 0.6 nozzle;0.16mm Standard @Z-Bolt S400 0.6 nozzle;0.16mm Standard @Z-Bolt S600 0.6 nozzle;0.16mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "0SCq38hvD9Qc2qEM", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json index 4d6f6a2df1..a2651b61b8 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP010", + "setting_id": "2RxXv1nZQz9czrdj", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json index 15207c34b5..7dceacb4d0 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP110", + "setting_id": "2OURPHmPHYOYKSXV", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json index 8f290efc52..db42d946e5 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP210", + "setting_id": "SZPyQZpFP1OoKwjU", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json index ba6c4613f5..053a3b9593 100644 --- a/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.16mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.16mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.16_nozzle_0.6", "from": "system", - "setting_id": "GP310", + "setting_id": "YRK4yyqj2mKB3Yas", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json index a4b1496468..d926fede96 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm High Quality @Z-Bolt 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm High Quality @Z-Bolt 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024H", + "setting_id": "6kKt7MQNZiERohDf", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json index 78c0e1c54e..e10958dbfe 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Standard @Z-Bolt S300;0.20mm Standard @Z-Bolt S400;0.20mm Standard @Z-Bolt S600;0.20mm Standard @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.20", "from": "system", - "setting_id": "GP011", + "setting_id": "jSA9QDV6RfL4eb5X", "instantiation": "true", "description": "It has a general layer height, and results in general layer lines and printing quality. It is suitable for most general printing cases.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json index af2348534b..92e55765eb 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Standard @Z-Bolt S300 0.6 nozzle;0.20mm Standard @Z-Bolt S400 0.6 nozzle;0.20mm Standard @Z-Bolt S600 0.6 nozzle;0.20mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024", + "setting_id": "NDWJp1Shr9glm0Pz", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json index e6c2224c10..97f40201d2 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP024", + "setting_id": "ESOOiuQrreUN5wjl", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json index ce59d29270..6366647a6f 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP124", + "setting_id": "ceEDWf14ChMEAKeL", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json index 15e7d6cd32..7b31b4afbb 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP224", + "setting_id": "xuDGD4zohFJ5W0fQ", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json index ac6117273c..27808d012c 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.20mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.20_nozzle_0.6", "from": "system", - "setting_id": "GP324", + "setting_id": "eNTV0x3etSjM8VC8", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json index 3dc9952361..177a7d1f87 100644 --- a/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.20mm Strength @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.20mm Strength @Z-Bolt S300;0.20mm Strength @Z-Bolt S400;0.20mm Strength @Z-Bolt S600;0.20mm Strength @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.20", "from": "system", - "setting_id": "GP012", + "setting_id": "42rvcJiQF05SDsGM", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "outer_wall_speed": "60", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json index be9194ab11..358ae59e06 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Draft @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Draft @Z-Bolt S300;0.24mm Draft @Z-Bolt S400;0.24mm Draft @Z-Bolt S600;0.24mm Draft @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.24", "from": "system", - "setting_id": "GP013", + "setting_id": "L1bdHzIO1OKLDT3Q", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but slightly shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json index 96c2e7ae09..5ef55f74f5 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Standard @Z-Bolt S300 0.6 nozzle;0.24mm Standard @Z-Bolt S400 0.6 nozzle;0.24mm Standard @Z-Bolt S600 0.6 nozzle;0.24mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP014", + "setting_id": "R2ymo1GdwtRhkIoT", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json index d61f160f9c..dad1890533 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.24mm Standard @Z-Bolt S300 0.8 nozzle;0.24mm Standard @Z-Bolt S400 0.8 nozzle;0.24mm Standard @Z-Bolt S600 0.8 nozzle;0.24mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP015", + "setting_id": "AGLwvCuJJX93NNJh", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json index 26608c0ca2..fce0f0dc27 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP014", + "setting_id": "TAbgYTebJ8fJfoGv", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json index ed8590d61a..1f84b54785 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP015", + "setting_id": "aZbWDLIaBHyxpLB1", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json index 3eca2c47c1..fe57ad2149 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP114", + "setting_id": "HfdhuDWXbB1hgPST", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json index 1c75f83397..c1a1f9d3ba 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP115", + "setting_id": "d1RSgT1SCZvEW2VE", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json index a684461f4f..e12643bd2a 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP214", + "setting_id": "XdM0HtHqwCxHWMh8", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json index 068bec19bb..962ba3a32a 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP215", + "setting_id": "z763KCvFxiSuIa3Q", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json index 9e6c1ce075..8ba32b08b9 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.6", "from": "system", - "setting_id": "GP314", + "setting_id": "hrBhcyAFEynEpWLS", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a smaller layer height, and results in less apparent layer lines and slight higher printing quality, but longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json index 6a6d5d8404..7ff2da7c2d 100644 --- a/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.24mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.24mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.24_nozzle_0.8", "from": "system", - "setting_id": "GP315", + "setting_id": "MKNqN7HXWUkC0YlP", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a smaller layer height, and results in less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json index 84596844ce..f442650a69 100644 --- a/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.28mm Extra Draft @Z-Bolt 0.4 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.28mm Extra Draft @Z-Bolt S300;0.28mm Extra Draft @Z-Bolt S400;0.28mm Extra Draft @Z-Bolt S600;0.28mm Extra Draft @Z-Bolt S800", "inherits": "fdm_process_zbolt_0.28", "from": "system", - "setting_id": "GP016", + "setting_id": "U6WOuHSZoT8XksE5", "instantiation": "true", "description": "Compared with the default profile of a 0.4 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time.", "smooth_coefficient": "150", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json index ee3b207eb1..006f1c4d0a 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.30mm Standard @Z-Bolt S300 0.6 nozzle;0.30mm Standard @Z-Bolt S400 0.6 nozzle;0.30mm Standard @Z-Bolt S600 0.6 nozzle;0.30mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "mHxycjW2eGEiIUSO", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json index 4fa8039e60..5bc3a498b3 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP017", + "setting_id": "6iyFuqK8Y0ioSZuP", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json index 05dfb6a3c7..6984af380f 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP117", + "setting_id": "9M43aMN5dnqhoP87", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json index 866cf5a88f..6df85166a4 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP217", + "setting_id": "txwrrb1yo7nMfBMG", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json index 5db6712d52..5add162efc 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP317", + "setting_id": "VJ5D0Y1GlaGNRVK2", "instantiation": "true", "description": "It has a big layer height, and results in apparent layer lines and ordinary printing quality and printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json index a119221510..8fea281789 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.30mm Strength @Z-Bolt S300 0.6 nozzle;0.30mm Strength @Z-Bolt S400 0.6 nozzle;0.30mm Strength @Z-Bolt S600 0.6 nozzle;0.30mm Strength @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "bmaReFmorAZrEdWG", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json index 6625224fb3..127c42f19c 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP018", + "setting_id": "mm1sR19x1GMV5HWd", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json index 27f6d34d8a..d03ac505d5 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP118", + "setting_id": "i4Hf8fQwAQBYI4KY", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json index d68c0a9691..14dcc0f4ee 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP218", + "setting_id": "sw1E5WWkpBJ0Vv3Y", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json index 5920d1df99..9dd0eb0728 100644 --- a/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.30mm Strength @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.30mm Strength @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.30_nozzle_0.6", "from": "system", - "setting_id": "GP318", + "setting_id": "V8BUZgHTc3aSw9Gm", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has more wall loops and a higher sparse infill density. So, it results in higher strength of the prints, but more filament consumption and longer printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json index 6e8e9e6359..7a8f7ea2e9 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.32mm Standard @Z-Bolt S300 0.8 nozzle;0.32mm Standard @Z-Bolt S400 0.8 nozzle;0.32mm Standard @Z-Bolt S600 0.8 nozzle;0.32mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP019", + "setting_id": "VlQaxN8Jt27ZM4Qc", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json index ad2b910c65..e639b6b277 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP019", + "setting_id": "5wBPobAWXKWdo5ig", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json index 6c02a44d22..dc7e570d65 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP119", + "setting_id": "UWegs5xqs4lUGptC", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json index 9076a672fe..e7a77f55a1 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP219", + "setting_id": "IY3WH7g6iA27BZUk", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json index 0a852da3ef..7fe7708930 100644 --- a/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.32mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.32mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.32_nozzle_0.8", "from": "system", - "setting_id": "GP319", + "setting_id": "mc9deGY78RGgMaEJ", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a slightly smaller layer height, and results in slightly less but still apparent layer lines and slightly higher printing quality, but longer printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json index d3806e764d..236979d112 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.36mm Standard @Z-Bolt S300 0.6 nozzle;0.36mm Standard @Z-Bolt S400 0.6 nozzle;0.36mm Standard @Z-Bolt S600 0.6 nozzle;0.36mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "loQ0K8BuYnb4lhrs", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json index 023ce835ae..32ec85d70d 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP020", + "setting_id": "0g05ryRBoI9OcI7R", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json index 32d84d3803..5f0e926991 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP120", + "setting_id": "cZ7LKDgxE9BlU5hy", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json index dcea16d35b..e58fecfbe1 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP220", + "setting_id": "UHHHawiR4wKDK8y9", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json index 6723440ece..3d2af55bd0 100644 --- a/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.36mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.36mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.36_nozzle_0.6", "from": "system", - "setting_id": "GP320", + "setting_id": "qwG5GY4TvvzC8I1n", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in more apparent layer lines and lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json index f1cc3a7a1c..b8c39f25b3 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.40mm Standard @Z-Bolt S300 0.8 nozzle;0.40mm Standard @Z-Bolt S400 0.8 nozzle;0.40mm Standard @Z-Bolt S600 0.8 nozzle;0.40mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP021", + "setting_id": "3enbj8N1CBmVvS22", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json index 03379d6b6a..bacba10332 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP021", + "setting_id": "3YDW0mR0ZlosVM1L", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json index 1052ed04d3..1234ff53d8 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP121", + "setting_id": "iyKInbHHk3UFFlOH", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json index ead49f1cba..6b05db5f96 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP221", + "setting_id": "vFw2NfpLaCrga9ZR", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json index b699c70a3a..0d0475e7d9 100644 --- a/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.40mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.40mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.40_nozzle_0.8", "from": "system", - "setting_id": "GP321", + "setting_id": "Kx7bqTTuygjpXimK", "instantiation": "true", "description": "It has a very big layer height, and results in very apparent layer lines, low printing quality and general printing time.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json index 2039abbf63..ccaab4f070 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt 0.6 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.42mm Standard @Z-Bolt S300 0.6 nozzle;0.42mm Standard @Z-Bolt S400 0.6 nozzle;0.42mm Standard @Z-Bolt S600 0.6 nozzle;0.42mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP022", + "setting_id": "3Y2p4ilbdJWtoet7", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json index 6cd1efbcf9..9a5e4b5aa5 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S300 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S300 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP022", + "setting_id": "S5yi1BSlwFr8p5a6", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json index a26ba5ef0d..c84e8895c0 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S400 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S400 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP122", + "setting_id": "cM8ZNZGpxY1c3Mlb", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json index eee7a4e160..20f0a155e3 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S600 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S600 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP222", + "setting_id": "2XGL3ppk2sbHogrF", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json index b16def4b6a..ed319c209f 100644 --- a/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.42mm Standard @Z-Bolt S800 0.6 nozzle.json @@ -3,7 +3,7 @@ "name": "0.42mm Standard @Z-Bolt S800 0.6 nozzle", "inherits": "fdm_process_zbolt_0.42_nozzle_0.6", "from": "system", - "setting_id": "GP322", + "setting_id": "3IwVpXqkrUPSODSc", "instantiation": "true", "description": "Compared with the default profile of a 0.6 mm nozzle, it has a bigger layer height, and results in much more apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json index febe394d8d..b26b749a81 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt 0.8 nozzle.json @@ -4,7 +4,7 @@ "renamed_from": "0.48mm Standard @Z-Bolt S300 0.8 nozzle;0.48mm Standard @Z-Bolt S400 0.8 nozzle;0.48mm Standard @Z-Bolt S600 0.8 nozzle;0.48mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP023", + "setting_id": "Xck8aOlCEcVdSFda", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json index a13302cb3b..42ddc4ff8d 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S300 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S300 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP023", + "setting_id": "ttdUbDHxaTJsZWWR", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json index 330169a7df..916e7a28e6 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S400 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S400 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP123", + "setting_id": "9WxhJWzZzlIc9PWh", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json index f087f8b22c..32dc534606 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S600 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S600 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP223", + "setting_id": "aM8NhaD1tGH4wDiV", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json index 642f16d96f..21c660ae18 100644 --- a/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json +++ b/resources/profiles/Z-Bolt/process/0.48mm Standard @Z-Bolt S800 0.8 nozzle.json @@ -3,7 +3,7 @@ "name": "0.48mm Standard @Z-Bolt S800 0.8 nozzle", "inherits": "fdm_process_zbolt_0.48_nozzle_0.8", "from": "system", - "setting_id": "GP323", + "setting_id": "0GGBIejcNifBg5qs", "instantiation": "true", "description": "Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer height, and results in very apparent layer lines and much lower printing quality, but shorter printing time in some printing cases.", "elefant_foot_compensation": "0.15", diff --git a/resources/profiles/iQ.json b/resources/profiles/iQ.json index ff1ad6fbed..a0a64b3593 100644 --- a/resources/profiles/iQ.json +++ b/resources/profiles/iQ.json @@ -1,6 +1,6 @@ { "name": "innovatiQ", - "version": "02.04.00.00", + "version": "02.04.00.01", "force_update": "1", "description": "innovatiQ configuration", "machine_model_list": [ diff --git a/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json index 0925d4f064..79be89b387 100644 --- a/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Fiberthree PACF Pro P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1", + "setting_id": "7YUqT6co3NfvJ8L9", "filament_id": "IQM1", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json index 00f81390ef..8b07c6af0f 100644 --- a/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Fiberthree PACF Pro P2 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS7", + "setting_id": "B5VrAYqX9Dzj5qfV", "filament_id": "IQM7", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json index 24a4237eae..b692152c71 100644 --- a/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Grauts HPP4GF25 P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1", + "setting_id": "5M829nxsQdq2Sde5", "filament_id": "IQM1", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json b/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json index be6fbfa3ea..e0faf6eb71 100644 --- a/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "Material4Print ABS Natur P1 @iQ TiQ8 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS2", + "setting_id": "2gaJup2jw52l27sv", "filament_id": "IQM2", "instantiation": "true", "activate_air_filtration": [ diff --git a/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json index 73395d834f..5226e1e755 100644 --- a/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle.json @@ -3,9 +3,9 @@ "name": "Polymaker PETG Polymax black P1 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", + "setting_id": "QefI7iu8bAQ9jzDK", "filament_id": "IQM3", "instantiation": "true", - "settings_id": "IQS3", "activate_air_filtration": [ "0" ], diff --git a/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json b/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json index c8031f0fb7..2855f13552 100644 --- a/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json +++ b/resources/profiles/iQ/filament/VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle.json @@ -3,7 +3,7 @@ "name": "VXL90 TiQ2 P2 @iQ TiQ2 0.4 Nozzle", "inherits": "fdm_filament_common", "from": "system", - "setting_id": "IQS1011", + "setting_id": "rVzUhxKEDUfGMnQi", "filament_id": "IQM1011", "instantiation": "true", "compatible_prints": [ diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json index 01dc15c3ce..69ad99e3c4 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.25 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "cIJ59rG6rulmYsqA", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.25 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json index 8264393b42..0fe6cccdd7 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.4 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "y69zlNoa8dYh0lzV", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.4 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json index 33e5f175c3..7ed46af6af 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.6 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "U5GboRipEfd1fsBm", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.6 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json index d7e9086ee5..d019b20c24 100644 --- a/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ2 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ2 0.8 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "Hnv1OfrxjIFdQTpK", "instantiation": "true", "printer_settings_id": "iQ TiQ2 0.8 Nozzle", "printer_model": "TiQ2", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json index c6782e935c..6a9864b7ac 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.25 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.25 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "5fSAp50K3cdzj1VS", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.25 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json index fc60e4275c..4d0cd06612 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.4 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.4 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "sFyLghE6YxFT4Kbm", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.4 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json index fdff73069e..33b9495ea0 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.6 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.6 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "lESAAlMZnASrLHFw", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.6 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json b/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json index bfd3fdf465..411aaf2f5b 100644 --- a/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json +++ b/resources/profiles/iQ/machine/iQ TiQ8 0.8 nozzle.json @@ -3,6 +3,7 @@ "name": "iQ TiQ8 0.8 Nozzle", "inherits": "fdm_tiq_common", "from": "system", + "setting_id": "KmISSZMOnHtmrfRD", "instantiation": "true", "printer_settings_id": "iQ TiQ8 0.8 Nozzle", "printer_model": "TiQ8", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json index 4f42d9e534..f9d2bad95e 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - HPP4GF25 Grauts (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "BH3aGItMozgr9VXA", "instantiation": "true", "default_acceleration": "1500", "enable_extra_bridge_layer": "apply_to_all", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json index df1ee7ff68..9b670487d2 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - PACF Pro Fiberthree (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "3n8Yio8keohwR0wt", "instantiation": "true", "bridge_flow": "1.07", "bridge_speed": "25", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json index a8cde49a86..7c2c8d9fa2 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P1 - PETG Polymax Polymaker (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "MjcIXgMAbvXbskhu", "instantiation": "true", "exclude_object": "0", "gcode_label_objects": "0", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json index 84a5908bca..f2b71249d6 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ2 P2 - PACF Pro Fiberthree + VXL90 Xioneer (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "xLqfZEouOkHUrK2D", "instantiation": "true", "gap_infill_speed": "70", "independent_support_layer_height": "0", diff --git a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json index 324bb087a8..376acbb148 100644 --- a/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json +++ b/resources/profiles/iQ/process/0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle).json @@ -3,6 +3,7 @@ "name": "0.20mm Standard @iQ TiQ8 P1 - ABS Natur Material4Print (0.4 Nozzle)", "inherits": "fdm_process_tiq_common", "from": "system", + "setting_id": "2tme6z6FUnpCpm4H", "instantiation": "true", "bridge_flow": "1.4", "bridge_speed": "100", diff --git a/resources/profiles/re3D.json b/resources/profiles/re3D.json index 69a1c87fa9..e0acc669d0 100644 --- a/resources/profiles/re3D.json +++ b/resources/profiles/re3D.json @@ -1,6 +1,6 @@ { "name": "re3D", - "version": "02.04.00.01", + "version": "02.04.00.03", "force_update": "0", "description": "re3D configurations", "machine_model_list": [ diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json index 0649a23f8f..028bf042bb 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG @0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG01", - "setting_id": "GFSG01", + "setting_id": "fRX555Prkdu5ESIp", "name": "re3D Greengate rPETG @0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json b/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json index a409f08bbe..5ae3d832ff 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG @1.75 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG01", - "setting_id": "GFSG01_175", + "setting_id": "6aPU6CYS2cmODkok", "name": "re3D Greengate rPETG @1.75 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D Greengate rPETG.json b/resources/profiles/re3D/filament/re3D Greengate rPETG.json index 6c56f72fb5..de56af4f02 100644 --- a/resources/profiles/re3D/filament/re3D Greengate rPETG.json +++ b/resources/profiles/re3D/filament/re3D Greengate rPETG.json @@ -5,14 +5,17 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG01", - "setting_id": "re3d_greengate_rpetg", + "setting_id": "SdugLw5oy9GB7NID", "filament_settings_id": [ "re3D Greengate rPETG" ], "compatible_printers": [ - "re3D GigabotX 2", - "re3D GigabotX 2 XLT", - "re3D TerabotX 2" + "re3D GigabotX 2 0.8 nozzle", + "re3D GigabotX 2 XLT 0.8 nozzle", + "re3D TerabotX 2 0.8 nozzle", + "re3D GigabotX 2 1.75 nozzle", + "re3D GigabotX 2 XLT 1.75 nozzle", + "re3D TerabotX 2 1.75 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json index 97e5308b5b..47a3a44f34 100644 --- a/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PC @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc_04", + "setting_id": "6yqRE2eSyER7X82N", "filament_settings_id": [ "re3D PC @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json index 783856f0a3..c1f329f295 100644 --- a/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PC @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc_08", + "setting_id": "YVPbVSiVCzjp5ynf", "filament_settings_id": [ "re3D PC @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PC.json b/resources/profiles/re3D/filament/re3D PC.json index 12498c0d2b..d24b00d482 100644 --- a/resources/profiles/re3D/filament/re3D PC.json +++ b/resources/profiles/re3D/filament/re3D PC.json @@ -5,14 +5,17 @@ "instantiation": "true", "inherits": "fdm_filament_pc", "filament_id": "GFG99", - "setting_id": "re3d_pc", + "setting_id": "eSR00TZTotTvJs8l", "filament_settings_id": [ "re3D PC" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json index 3878394f8d..c275a7517f 100644 --- a/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PETG @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg_04", + "setting_id": "epcrSCwjgRXMycBx", "filament_settings_id": [ "re3D PETG @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json index 61583c2cd3..148f6540fe 100644 --- a/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PETG @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg_08", + "setting_id": "MoQie1JMlUeH0BwR", "filament_settings_id": [ "re3D PETG @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PETG.json b/resources/profiles/re3D/filament/re3D PETG.json index 959c558564..a52d5b742c 100644 --- a/resources/profiles/re3D/filament/re3D PETG.json +++ b/resources/profiles/re3D/filament/re3D PETG.json @@ -5,14 +5,17 @@ "instantiation": "true", "inherits": "fdm_filament_pet", "filament_id": "GFG03", - "setting_id": "re3d_petg", + "setting_id": "msXDK31R8KOvqNqK", "filament_settings_id": [ "re3D PETG" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json b/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json index 9b41a6b863..1719807f7f 100644 --- a/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PLA @0.4 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla_04", + "setting_id": "M8OOntNjjDBR4W32", "filament_settings_id": [ "re3D PLA @0.4 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json index a38682a5d0..01e7abbc9a 100644 --- a/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D PLA @0.8 nozzle.json @@ -5,7 +5,7 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla_08", + "setting_id": "SpF19Y2sSYbPHyxz", "filament_settings_id": [ "re3D PLA @0.8 nozzle" ], diff --git a/resources/profiles/re3D/filament/re3D PLA.json b/resources/profiles/re3D/filament/re3D PLA.json index bf2894030a..7b153db22b 100644 --- a/resources/profiles/re3D/filament/re3D PLA.json +++ b/resources/profiles/re3D/filament/re3D PLA.json @@ -5,14 +5,17 @@ "instantiation": "true", "inherits": "fdm_filament_pla", "filament_id": "GFL99", - "setting_id": "re3d_pla", + "setting_id": "nPpDwvFg7WQr7K3t", "filament_settings_id": [ "re3D PLA" ], "compatible_printers": [ - "re3D Gigabot 4", - "re3D Gigabot 4 XLT", - "re3D Terabot 4" + "re3D Gigabot 4 0.4 nozzle", + "re3D Gigabot 4 XLT 0.4 nozzle", + "re3D Terabot 4 0.4 nozzle", + "re3D Gigabot 4 0.8 nozzle", + "re3D Gigabot 4 XLT 0.8 nozzle", + "re3D Terabot 4 0.8 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json b/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json index 3312aa9702..a49f19e128 100644 --- a/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json +++ b/resources/profiles/re3D/filament/re3D rPP @0.8 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG02", - "setting_id": "GFSG02", + "setting_id": "i9ii0b7qFYWnkGSq", "name": "re3D rPP @0.8 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json b/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json index 219216279c..0bde56c596 100644 --- a/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json +++ b/resources/profiles/re3D/filament/re3D rPP @1.75 nozzle.json @@ -1,7 +1,7 @@ { "type": "filament", "filament_id": "GFG02", - "setting_id": "GFSG02_175", + "setting_id": "356nOwsfGLI3CNqU", "name": "re3D rPP @1.75 nozzle", "from": "system", "instantiation": "true", diff --git a/resources/profiles/re3D/filament/re3D rPP.json b/resources/profiles/re3D/filament/re3D rPP.json index b82b6e46eb..bf96aa51e6 100644 --- a/resources/profiles/re3D/filament/re3D rPP.json +++ b/resources/profiles/re3D/filament/re3D rPP.json @@ -8,14 +8,17 @@ "PP" ], "filament_id": "GFG02", - "setting_id": "re3d_rpp", + "setting_id": "8PB62qm5Cd3SHLf4", "filament_settings_id": [ "re3D rPP" ], "compatible_printers": [ - "re3D GigabotX 2", - "re3D GigabotX 2 XLT", - "re3D TerabotX 2" + "re3D GigabotX 2 0.8 nozzle", + "re3D GigabotX 2 XLT 0.8 nozzle", + "re3D TerabotX 2 0.8 nozzle", + "re3D GigabotX 2 1.75 nozzle", + "re3D GigabotX 2 XLT 1.75 nozzle", + "re3D TerabotX 2 1.75 nozzle" ], "filament_vendor": [ "re3D" diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json index 4d2b39c096..a0cbd3c0e2 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_gigbot4_04", - "setting_id": "re3d_gigbot4_04" + "setting_id": "2FfoXQpNqgdO0psS" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json index 15f0de246d..e5d847e62c 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_gigbot4_08", - "setting_id": "re3d_gigbot4_08" + "setting_id": "t5Efv7WaUvnPYIAm" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json index 763628ee73..8a5e118bff 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_gigabot4_xlt_04", - "setting_id": "re3d_gigabot4_xlt_04" + "setting_id": "UrYpMJff1UulWnSk" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json index a12f8784ed..a3fabc985d 100644 --- a/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Gigabot 4 XLT 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_gigabot4_xlt_08", - "setting_id": "re3d_gigabot4_xlt_08" + "setting_id": "owqU0OvESWbbsBaw" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json index b0f1e87aad..8260ee5a1d 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_gbx_08", - "setting_id": "re3d_gbx_08" + "setting_id": "pASXL7fDFXAG0tkJ" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json index 4e5bc46cd8..8a89e9d858 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_gbx_175", - "setting_id": "re3d_gbx_175" + "setting_id": "ozJ43xjd5bOWGvPH" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json index d62ce7e6c9..2d81331c5c 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_gbx_xlt_08", - "setting_id": "re3d_gbx_xlt_08" + "setting_id": "66tcU44A7VD232wV" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json index 37fd6ca0a9..63503c01d8 100644 --- a/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D GigabotX 2 XLT 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_gbx_xlt_175", - "setting_id": "re3d_gbx_xlt_175" + "setting_id": "L0PKsbwUEul8gil3" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json b/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json index bb63aaa995..105b0f2621 100644 --- a/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Terabot 4 0.4 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.26 Standard", "printer_settings_id": "re3d_terabot4_04", - "setting_id": "re3d_terabot4_04" + "setting_id": "fjQ7KSytjKq40DSo" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json index a9948d83ab..bd83a5ef45 100644 --- a/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D Terabot 4 0.8 nozzle.json @@ -32,5 +32,5 @@ ], "default_print_profile": "0.4 Standard", "printer_settings_id": "re3d_terabot4_08", - "setting_id": "re3d_terabot4_08" + "setting_id": "EsfqTpN28Qmlaov3" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json b/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json index f20b8fd8d4..daa97c2e88 100644 --- a/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json +++ b/resources/profiles/re3D/machine/re3D TerabotX 2 0.8 nozzle.json @@ -29,5 +29,5 @@ ], "default_print_profile": "0.6 Standard", "printer_settings_id": "re3d_tbx2_08", - "setting_id": "re3d_tbx2_08" + "setting_id": "A6jcgezqyq6DE5mi" } \ No newline at end of file diff --git a/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json b/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json index 2d5f38fa73..401833977a 100644 --- a/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json +++ b/resources/profiles/re3D/machine/re3D TerabotX 2 1.75 nozzle.json @@ -30,5 +30,5 @@ ], "default_print_profile": "1.0 Standard", "printer_settings_id": "re3d_tbx2_175", - "setting_id": "re3d_tbx2_175" + "setting_id": "FCcmkG4pnJhjZUBd" } \ No newline at end of file diff --git a/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json index 0c26f0c748..7d443c9730 100644 --- a/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.26mm Standard @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm__04_026", + "setting_id": "z8J2jOmdssB8DCBO", "name": "0.26 Standard", "renamed_from": "0.26mm Standard @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json index a0845ca402..2734cf3334 100644 --- a/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.2mm Fine @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_04_02", + "setting_id": "u9PNexqDf7jWUnnH", "name": "0.2 Fine", "renamed_from": "0.2mm Fine @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json b/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json index 90dbe2bc1e..3ce98e2e7e 100644 --- a/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json +++ b/resources/profiles/re3D/process/0.32mm Draft @re3D fdm 0.4.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_04_032", + "setting_id": "pcKSZbNmByNtOHYX", "name": "0.32 Draft", "renamed_from": "0.32mm Draft @re3D fdm 0.4", "from": "system", diff --git a/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json b/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json index a6e61edca4..27c2452d19 100644 --- a/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json +++ b/resources/profiles/re3D/process/0.3mm Fine @re3D fdm 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_08_03", + "setting_id": "ChglxET1YwzVuD6a", "name": "0.3 Fine", "renamed_from": "0.2mm Standard @re3D fdm 0.8", "from": "system", diff --git a/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json b/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json index e75ad36283..d46316ef4e 100644 --- a/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json +++ b/resources/profiles/re3D/process/0.4mm Draft @re3D fdm 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fdm_08_04", + "setting_id": "hiBgnEuKo4yjK3wp", "name": "0.4 Standard", "renamed_from": "0.4mm Draft @re3D fdm 0.8", "from": "system", diff --git a/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json b/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json index 801a2b4d28..80cc07b339 100644 --- a/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json +++ b/resources/profiles/re3D/process/0.6mm Standard @re3D fgf 0.8.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fgf_08_06", + "setting_id": "7V7GXJOUd5LT6YNi", "name": "0.6 Standard", "from": "system", "inherits": "fgf_process_re3D_common", diff --git a/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json b/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json index 35c0c8aded..5f703baaec 100644 --- a/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json +++ b/resources/profiles/re3D/process/1.0mm Standard @re3D fgf 1.75.json @@ -1,6 +1,6 @@ { "type": "process", - "setting_id": "fgf_175_10", + "setting_id": "LKf4K1hjRuLeW7SM", "name": "1.0 Standard", "renamed_from": "1.0mm Standard @re3D fgf 1.75", "from": "system", diff --git a/resources/web/data/text.js b/resources/web/data/text.js index 33fbc89087..95342acdaf 100644 --- a/resources/web/data/text.js +++ b/resources/web/data/text.js @@ -1739,11 +1739,11 @@ var LangText = { orca3: "Slaptas režimas", orca5: "Įjungti slaptą režimą.", orca6: "Bambu Cloud", - orca7: "Orca Cloud Account", - orca8: "Not signed in", - orca9: "Bambu Cloud Account", - orca10: "Not connected", - orca11: "Connected", + orca7: "Orca Cloud paskyra", + orca8: "Neprisiregistruota", + orca9: "Bambu Cloud paskyra", + orca10: "Neprisijungta", + orca11: "Prisijungta", }, }; diff --git a/resources/web/dialog/PresetBundleDialog/index.js b/resources/web/dialog/PresetBundleDialog/index.js index b370fe8018..4ff3167d07 100644 --- a/resources/web/dialog/PresetBundleDialog/index.js +++ b/resources/web/dialog/PresetBundleDialog/index.js @@ -2,7 +2,7 @@ const bundlesById = new Map(); // bundleId -> bundle object const printersByBundle = new Map(); // bundleId -> Map(index -> printerName) const filamentsByBundle = new Map(); // bundleId -> Map(index -> filamentName) -const presetsByBundle = new Map(); // bundleId -> Map(index -> presetName) +const processesByBundle = new Map(); // bundleId -> Map(index -> presetName) const UPDATE_TOOLTIP = "Update available"; const UNAUTHORIZED_TOOLTIP = "Unauthorized bundle"; @@ -193,7 +193,7 @@ function unpackPayload(payload) { bundlesById.clear(); printersByBundle.clear(); filamentsByBundle.clear(); - presetsByBundle.clear(); + processesByBundle.clear(); const list = payload?.data || []; for (const bundle of list) { @@ -212,7 +212,7 @@ function unpackPayload(payload) { printersByBundle.set(id, new Map((bundle.printers || []).map((name, i) => [i, name]))); filamentsByBundle.set(id, new Map((bundle.filaments || []).map((name, i) => [i, name]))); - presetsByBundle.set(id, new Map((bundle.presets || []).map((name, i) => [i, name]))); + processesByBundle.set(id, new Map((bundle.processes || []).map((name, i) => [i, name]))); } } @@ -277,14 +277,14 @@ function renderBottomForBundle(bundleId) { const key = String(bundleId || ""); const printers = printersByBundle.get(key) || new Map(); const filaments = filamentsByBundle.get(key) || new Map(); - const presets = presetsByBundle.get(key) || new Map(); + const processes = processesByBundle.get(key) || new Map(); // Convert to a flat list of rows { typeLabel, name } const rows = []; for (const [, name] of printers) rows.push({ type: "Printer", name }); for (const [, name] of filaments) rows.push({ type: "Filament", name }); - for (const [, name] of presets) rows.push({ type: "Preset", name }); + for (const [, name] of processes) rows.push({ type: "Process", name }); bottomList.innerHTML = rows.map((r, idx) => `
diff --git a/scripts/assign_vendor_setting_ids.py b/scripts/assign_vendor_setting_ids.py new file mode 100644 index 0000000000..8ed607f591 --- /dev/null +++ b/scripts/assign_vendor_setting_ids.py @@ -0,0 +1,258 @@ +#!/usr/bin/env python3 +""" +Assign deterministic, globally-unique setting_id to OrcaSlicer system profiles. + +Policy (see AGENTS.md "Critical Constraints"): + * A preset's setting_id is a pure function of its identity: + setting_id = base62_16( uuid5(NAMESPACE, "//") ) + The same value is recomputed on the fly by the C++ app + (Slic3r::generate_preset_setting_id); the two MUST stay byte-identical. The rule + (generate_preset_setting_id, below) is also imported by the validator + (orca_extra_profile_check.py). Uniqueness is therefore automatic: two presets + collide only if they share vendor + type + name, which the validator flags. + * Bambu (BBL) owns the authoritative "G*" id space and is the only reserved vendor: + its ids are never rewritten (preserves backward-compat with Bambu-synced presets). + Every other vendor - including OrcaFilamentLibrary and Custom - follows the + deterministic rule. + * Only instantiated presets (instantiation == "true") carry a setting_id; base / + template profiles do not. + +Only setting_id is rewritten. filament_id is deliberately left untouched: it is a +per-material id, shared across a filament's nozzle variants and inherited from base +templates, so it must not be made per-file unique. + +Run from anywhere: python3 scripts/assign_vendor_setting_ids.py +The script is idempotent: a second run over an unchanged tree produces no diff. +""" + +import json +import os +import re +import sys +import uuid + + +# Deterministic preset setting_id rule. Imported by the validator +# (orca_extra_profile_check.py) and kept byte-identical to the C++ +# Slic3r::generate_preset_setting_id. Dedicated namespace, distinct from the cloud +# namespace (f47ac10b-...) so the two id spaces never coincide; this constant is baked +# into both languages - never change it. +NAMESPACE = uuid.UUID("c1f4d9e2-7a3b-5c8d-9e0f-1a2b3c4d5e6f") +ALPHABET = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" +ID_LENGTH = 16 + + +def generate_preset_setting_id(vendor, type_name, name): + """Deterministic 16-char base62 setting_id for a preset. + + input = f"{vendor}/{type_name}/{name}"; u = uuid5(NAMESPACE, input); + id = the low ID_LENGTH base62 digits of int(u.bytes, "big"), most-significant first. + """ + u = uuid.uuid5(NAMESPACE, f"{vendor}/{type_name}/{name}") + n = int.from_bytes(u.bytes, "big") + digits = [] + for _ in range(ID_LENGTH): + digits.append(ALPHABET[n % 62]) + n //= 62 + return "".join(reversed(digits)) + + +PROFILES_DIR = os.path.normpath(os.path.join(os.path.dirname(__file__), "..", "resources", "profiles")) + +# Bambu (BBL) is the only reserved vendor: it keeps its authoritative "G*" cloud ids. +RESERVED_VENDORS = {"BBL"} + +PROFILE_SUBDIRS = ("filament", "process", "machine") + + +def iter_profile_files(vendor_dir): + """Yield (json path, type) under a vendor, in a deterministic order. + + type is the subdir name ("filament"/"process"/"machine"), which matches + Preset::get_type_string() on the C++ side. + """ + for sub in PROFILE_SUBDIRS: + base = os.path.join(vendor_dir, sub) + if not os.path.isdir(base): + continue + for root, dirs, files in os.walk(base): + dirs.sort() # deterministic traversal across filesystems + for name in sorted(files): + if name.endswith(".json"): + yield os.path.join(root, name), sub + + +def read_profile(path): + """Return (setting_id, instantiation, name) as present (or None).""" + try: + with open(path, "rb") as f: + data = json.loads(f.read()) + except (ValueError, OSError): + return None, None, None + if not isinstance(data, dict): + return None, None, None + return data.get("setting_id"), data.get("instantiation"), data.get("name") + + +def list_vendors(): + return sorted( + d for d in os.listdir(PROFILES_DIR) + if os.path.isdir(os.path.join(PROFILES_DIR, d)) + ) + + +_JSON_STR = r'"(?:[^"\\]|\\.)*"' + + +def remove_key_line(text, key): + """Remove a top-level `"key": "..."` member, preserving formatting. + + Handles both the common case (member has a trailing comma) and the member + being the LAST in its object (consume the preceding comma instead, so no + dangling comma is left). Returns (new_text, count). + """ + # Member followed by a comma (not the last in the object). + trailing = re.compile( + r'[ \t]*"' + re.escape(key) + r'"[ \t]*:[ \t]*' + _JSON_STR + r'[ \t]*,[ \t]*\r?\n' + ) + new, n = trailing.subn("", text, count=1) + if n: + return new, n + # Member is the last one: drop the preceding comma and the member itself. + leading = re.compile( + r',[ \t]*\r?\n[ \t]*"' + re.escape(key) + r'"[ \t]*:[ \t]*' + _JSON_STR + ) + return leading.subn("", text, count=1) + + +def _remove_key_in_tree(key, should_remove): + """Remove `key` from files where should_remove(sid, inst, text) is True.""" + removed = 0 + for vendor in list_vendors(): + for path, _type in iter_profile_files(os.path.join(PROFILES_DIR, vendor)): + with open(path, "rb") as f: + text = f.read().decode("utf-8") + sid, inst, _name = read_profile(path) + if not should_remove(sid, inst, text): + continue + new_text, n = remove_key_line(text, key) + if n == 0: + raise RuntimeError(f"Could not locate {key} line to remove: {path}") + json.loads(new_text) # fail loudly if removal broke the JSON + with open(path, "wb") as f: + f.write(new_text.encode("utf-8")) + removed += 1 + return removed + + +def remove_misspelled_settings_id(): + """Delete the misspelled "settings_id" key (extra "s") wherever it appears. + + The app never reads that key, so those presets effectively had no setting_id + and get a correct one assigned by the normal pass; here we drop the junk key. + """ + return _remove_key_in_tree( + "settings_id", lambda sid, inst, text: '"settings_id"' in text + ) + + +def strip_base_setting_ids(): + """Remove setting_id from every base profile (instantiation != "true"). + + Convention: only instantiated, user-selectable presets carry a setting_id; + base/template profiles do not. Applied across all vendors. + """ + return _remove_key_in_tree( + "setting_id", lambda sid, inst, text: bool(sid) and inst != "true" + ) + + +def replace_id_value(text, key, new_value): + """Replace the first top-level `"key": "..."` value, preserving all formatting.""" + pattern = re.compile(r'("' + re.escape(key) + r'"\s*:\s*)"(?:[^"\\]|\\.)*"') + repl = lambda m: m.group(1) + json.dumps(new_value, ensure_ascii=False) + new_text, n = pattern.subn(repl, text, count=1) + return new_text, n + + +def insert_setting_id(text, new_id): + """Insert a `"setting_id"` line into a preset that lacks one. + + Placed just before `filament_id` (or, failing that, `instantiation`) so it + matches the canonical key order, reusing that anchor line's indentation and + line ending. Only setting_id is added; filament_id is left untouched. + """ + for key in ("filament_id", "instantiation"): + m = re.search(r'^([ \t]*)"' + key + r'"[ \t]*:.*?(\r?\n)', text, re.MULTILINE) + if m: + line = f'{m.group(1)}"setting_id": {json.dumps(new_id, ensure_ascii=False)},{m.group(2)}' + return text[:m.start()] + line + text[m.start():], 1 + return text, 0 + + +def rewrite_file(path, new_id, has_setting_id): + """Set the preset's setting_id to new_id (replacing or inserting as needed). + + filament_id is intentionally left untouched. Uses binary IO so the file's + original line endings (LF or CRLF) and exact formatting are preserved + byte-for-byte apart from the changed/added line. The result is re-parsed to + guarantee it is still valid JSON. + """ + with open(path, "rb") as f: + text = f.read().decode("utf-8") + if has_setting_id: + text, n = replace_id_value(text, "setting_id", new_id) + else: + text, n = insert_setting_id(text, new_id) + if n == 0: + raise RuntimeError(f"Could not set setting_id on {path}") + json.loads(text) # fail loudly if the edit broke the JSON + with open(path, "wb") as f: + f.write(text.encode("utf-8")) + return True + + +def main(): + # 0. Drop the misspelled "settings_id" key wherever it appears. + typos = remove_misspelled_settings_id() + + # 1. Strip setting_id from base profiles everywhere (only instantiated presets keep one). + stripped = strip_base_setting_ids() + + # 2. Assign the deterministic setting_id to every instantiated preset of every + # non-reserved vendor. + changed = added = 0 + vendors_touched = [] + for vendor in list_vendors(): + if vendor in RESERVED_VENDORS: + continue + vendor_changed = 0 + for path, type_name in iter_profile_files(os.path.join(PROFILES_DIR, vendor)): + sid, inst, name = read_profile(path) + if inst != "true": + continue + if not name: + raise RuntimeError(f"instantiated preset has no \"name\": {path}") + new_id = generate_preset_setting_id(vendor, type_name, name) + if sid == new_id: + continue # already correct - idempotent + rewrite_file(path, new_id, has_setting_id=sid is not None) + changed += 1 + vendor_changed += 1 + if sid is None: + added += 1 + if vendor_changed: + vendors_touched.append((vendor, vendor_changed)) + + print(f"Misspelled settings_id removed : {typos}") + print(f"Base setting_ids stripped : {stripped}") + print(f"Reserved vendors : {sorted(RESERVED_VENDORS)}") + print(f"Vendors updated : {len(vendors_touched)}") + for v, n in vendors_touched: + print(f" {v} ({n} files)") + print(f"Files rewritten : {changed} (of which newly assigned: {added})") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) diff --git a/scripts/msix/AppxManifest.xml b/scripts/msix/AppxManifest.xml index 56477bf80a..62b2216c5a 100644 --- a/scripts/msix/AppxManifest.xml +++ b/scripts/msix/AppxManifest.xml @@ -11,7 +11,7 @@ + ProcessorArchitecture="@MSIX_ARCH@" /> OrcaSlicer diff --git a/scripts/msix/build_msix.ps1 b/scripts/msix/build_msix.ps1 index 55e9fc156f..523e667bed 100644 --- a/scripts/msix/build_msix.ps1 +++ b/scripts/msix/build_msix.ps1 @@ -10,6 +10,8 @@ Requires the Windows SDK (makeappx.exe) unless -StageOnly is used. param( [string]$InstallDir = "build/OrcaSlicer", [string]$OutputPath = "build/OrcaSlicer_Windows_MSIX.msix", + [ValidateSet("x64", "arm64")] + [string]$Architecture = "x64", [string]$StagingDir = "", [switch]$StageOnly, [string]$IdentityName = "OrcaSlicer.OrcaSlicer", @@ -47,6 +49,7 @@ $manifest = $manifest.Replace('@MSIX_VERSION@', $msixVersion) $manifest = $manifest.Replace('@MSIX_IDENTITY_NAME@', $IdentityName) $manifest = $manifest.Replace('@MSIX_PUBLISHER@', $Publisher) $manifest = $manifest.Replace('@MSIX_PUBLISHER_DISPLAY_NAME@', $PublisherDisplayName) +$manifest = $manifest.Replace('@MSIX_ARCH@', $Architecture) Set-Content -Path (Join-Path $StagingDir 'AppxManifest.xml') -Value $manifest -Encoding utf8 if ($StageOnly) { @@ -54,11 +57,15 @@ if ($StageOnly) { return } -$makeappx = Get-ChildItem "${env:ProgramFiles(x86)}\Windows Kits\10\bin\10.*\x64\makeappx.exe" -ErrorAction SilentlyContinue | +# makeappx is a host tool: x64 runners ship only x64, arm64 runners ship arm64. +# Pick the build host's architecture (not the target $Architecture, which only +# affects the manifest ProcessorArchitecture above). +$hostArch = switch ($env:PROCESSOR_ARCHITECTURE) { 'ARM64' { 'arm64' } 'x86' { 'x86' } default { 'x64' } } +$makeappx = Get-ChildItem "${env:ProgramFiles(x86)}\Windows Kits\10\bin\10.*\$hostArch\makeappx.exe" -ErrorAction SilentlyContinue | Sort-Object { [version]$_.Directory.Parent.Name } -Descending | Select-Object -First 1 -ExpandProperty FullName if (-not $makeappx) { - throw "makeappx.exe not found under '${env:ProgramFiles(x86)}\Windows Kits\10\bin' - install the Windows SDK" + throw "makeappx.exe not found under '${env:ProgramFiles(x86)}\Windows Kits\10\bin\10.*\$hostArch' - install the Windows SDK" } Write-Output "Using makeappx: $makeappx" diff --git a/scripts/orca_extra_profile_check.py b/scripts/orca_extra_profile_check.py index 7ccc5a1a7f..cdfc8544a4 100644 --- a/scripts/orca_extra_profile_check.py +++ b/scripts/orca_extra_profile_check.py @@ -3,6 +3,8 @@ import json import argparse from pathlib import Path +from assign_vendor_setting_ids import generate_preset_setting_id + OBSOLETE_KEYS = { "acceleration", "scale", "rotate", "duplicate", "duplicate_grid", "bed_size", "print_center", "g0", "wipe_tower_per_color_wipe", @@ -450,6 +452,101 @@ def check_conflict_keys(profiles_dir, vendor_name): return error_count, warn_count +# Bambu (BBL) keeps its authoritative "G*" cloud ids, which are NOT produced by the +# deterministic formula, so BBL is exempt from the formula match (Rule 2) only. It is +# still checked for presence, uniqueness, base-no-id and the typo key like every other +# vendor. Every other vendor (incl. OrcaFilamentLibrary and Custom) must also match the +# formula. +SETTING_ID_FORMULA_EXEMPT_VENDORS = {"BBL"} +PROFILE_SUBDIRS = ("filament", "process", "machine") + + +def check_setting_id_uniqueness(profiles_dir): + """ + Validate setting_id across every vendor (see scripts/assign_vendor_setting_ids.py): + 1. Every instantiated preset must HAVE a setting_id. (all vendors) + 2. A stored setting_id must equal generate_preset_setting_id(vendor, type, name); a stale + value means the JSON was edited without rerunning assign_vendor_setting_ids.py. + (all vendors EXCEPT the formula-exempt ones, e.g. BBL) + 3. Base profiles (instantiation != "true") must not carry a setting_id. (all vendors) + 4. setting_id must be globally unique - no two files may share one. (all vendors) + 5. No profile may use the misspelled key "settings_id". (all vendors) + Formula-exempt vendors (BBL) keep their authoritative ids, so only Rule 2 is skipped + for them; they are still held to presence, uniqueness, base-no-id and the typo check. + """ + errors = 0 + owners = {} # setting_id -> list of relative_path (every vendor) + for vendor_dir in sorted(profiles_dir.iterdir()): + if not vendor_dir.is_dir(): + continue + vendor = vendor_dir.name + formula_exempt = vendor in SETTING_ID_FORMULA_EXEMPT_VENDORS + for sub in PROFILE_SUBDIRS: + base = vendor_dir / sub + if not base.is_dir(): + continue + for file_path in base.rglob("*.json"): + try: + data = json.loads(file_path.read_bytes()) + except (ValueError, OSError): + continue + if not isinstance(data, dict): + continue + rel = file_path.relative_to(profiles_dir) + # Rule 5: catch the misspelled "settings_id" key. + if "settings_id" in data: + errors += 1 + print_error( + f'profile {rel} uses the misspelled key "settings_id" ' + f'(should be "setting_id"); run assign_vendor_setting_ids.py' + ) + sid = data.get("setting_id") + instantiated = data.get("instantiation") == "true" + if not instantiated: + # Rule 3: base/template profiles must not carry a setting_id. + if sid: + errors += 1 + print_error( + f'base profile {rel} (instantiation != "true") must not have a ' + f'setting_id ("{sid}"); run assign_vendor_setting_ids.py' + ) + continue + # Rule 1: every instantiated preset must have a setting_id. + if not sid: + errors += 1 + print_error( + f"instantiated preset {rel} is missing a setting_id; " + f"run assign_vendor_setting_ids.py" + ) + continue + # Rule 2: the stored id must match the deterministic rule. BBL keeps its + # authoritative G* ids and is exempt from this check only. + if not formula_exempt: + expected = generate_preset_setting_id(vendor, sub, data.get("name", "")) + if sid != expected: + errors += 1 + print_error( + f'setting_id "{sid}" in {rel} does not match the expected ' + f'"{expected}" for {vendor}/{sub}/{data.get("name", "")}; ' + f"run assign_vendor_setting_ids.py" + ) + continue + # Rule 4: collect for the global-uniqueness check below. + owners.setdefault(sid, []).append(rel) + + # Rule 4: a setting_id shared by two files is an error. For managed vendors this means + # a duplicate vendor/type/name; for formula-exempt vendors (BBL) a copy-pasted id. + for sid, locs in sorted(owners.items()): + if len(locs) < 2: + continue + errors += 1 + print_error( + f'setting_id "{sid}" is shared by {len(locs)} files ({sorted(map(str, locs))}); ' + f"setting_id must be globally unique" + ) + return errors + + def main(): parser = argparse.ArgumentParser( description="Check 3D printer profiles for common issues", @@ -505,6 +602,10 @@ def main(): continue run_checks(vendor_dir.name) + # Global (cross-vendor) check: setting_id must be unique and stay in-namespace. + # Runs once over the whole tree regardless of the --vendor filter. + errors_found += check_setting_id_uniqueness(profiles_dir) + # ✨ Output finale in stile "compilatore" print("\n==================== SUMMARY ====================") print_info(f"Checked vendors : {checked_vendor_count}") diff --git a/scripts/run_gettext.bat b/scripts/run_gettext.bat index fb4a72d36f..ced22a2c73 100644 --- a/scripts/run_gettext.bat +++ b/scripts/run_gettext.bat @@ -23,7 +23,7 @@ if %FULL_MODE%==1 ( call :prepareGettextList "%list_file%" "%filtered_list%" "%missing_list%" if "!has_sources!"=="1" ( if not exist "%generated_i18n%" mkdir "%generated_i18n%" - .\tools\xgettext.exe --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost --no-wrap -f "%filtered_list%" -o "%generated_pot%" + .\tools\xgettext.exe --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost --no-wrap -f "%filtered_list%" -o "%generated_pot%" if errorlevel 1 ( set "script_exit_code=1" ) else ( diff --git a/scripts/run_gettext.sh b/scripts/run_gettext.sh index 9fdf6503f0..e956e441af 100755 --- a/scripts/run_gettext.sh +++ b/scripts/run_gettext.sh @@ -85,7 +85,7 @@ if $FULL_MODE; then generated_pot_file="${generated_i18n_dir}/OrcaSlicer.pot" mkdir -p "$generated_i18n_dir" - xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost --no-wrap -f "$filtered_list" -o "$generated_pot_file" + xgettext --keyword=L --keyword=_L --keyword=_u8L --keyword=L_CONTEXT:1,2c --keyword=_CTX:1,2c --keyword=_CTX_utf8:1,2c --keyword=_L_PLURAL:1,2 --add-comments=TRN --from-code=UTF-8 --no-location --debug --boost --no-wrap -f "$filtered_list" -o "$generated_pot_file" python3 scripts/HintsToPot.py ./resources "$generated_i18n_dir" if [ -f "$pot_file" ] && files_equal_ignoring_pot_date "$pot_file" "$generated_pot_file"; then diff --git a/scripts/run_unit_tests.sh b/scripts/run_unit_tests.sh index bd9e969227..f6a01dd3e0 100755 --- a/scripts/run_unit_tests.sh +++ b/scripts/run_unit_tests.sh @@ -4,11 +4,21 @@ # It should only require the directories build/tests, scripts/, and tests/ to function, # and cmake (with ctest) installed. # (otherwise, update the workflow too, but try to avoid to keep things self-contained) +# +# Usage: run_unit_tests.sh [TEST_DIR] [BUILD_CONFIG] +# TEST_DIR directory containing the built tests (default: build/tests) +# BUILD_CONFIG configuration to run; required for multi-config generators +# (Windows/macOS), harmless/omitted for single-config (Linux). ROOT_DIR="$(dirname "$0")/.." cd "${ROOT_DIR}" || exit 1 +TEST_DIR="${1:-build/tests}" +BUILD_CONFIG="${2:-}" + # Run the whole suite, excluding tests tagged [NotWorking]. # --no-tests=error fails the job if the filter matches nothing (instead of passing green). -ctest --test-dir build/tests -LE "NotWorking" --no-tests=error --output-junit "$(pwd)/ctest_results.xml" --output-on-failure -j +args=(--test-dir "${TEST_DIR}" -LE "NotWorking" --no-tests=error --output-junit "$(pwd)/ctest_results.xml" --output-on-failure -j) +[ -n "${BUILD_CONFIG}" ] && args+=(--build-config "${BUILD_CONFIG}") +ctest "${args[@]}" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 6ccd480e3b..2ef7f56cd3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -184,9 +184,12 @@ if (WIN32) if(MSVC) target_link_options(OrcaSlicer_app_gui PUBLIC "$<$:/DEBUG>") endif() - target_compile_definitions(OrcaSlicer_app_gui PRIVATE -DSLIC3R_WRAPPER_NOCONSOLE) + target_compile_definitions(OrcaSlicer_app_gui PRIVATE "$<$>:SLIC3R_WRAPPER_NOCONSOLE>") add_dependencies(OrcaSlicer_app_gui OrcaSlicer) - set_target_properties(OrcaSlicer_app_gui PROPERTIES OUTPUT_NAME "orca-slicer") + set_target_properties(OrcaSlicer_app_gui PROPERTIES + OUTPUT_NAME "orca-slicer" + WIN32_EXECUTABLE "$>" + ) target_link_libraries(OrcaSlicer_app_gui PRIVATE boost_headeronly) endif () diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp index 4bed36082f..311451f774 100644 --- a/src/OrcaSlicer.cpp +++ b/src/OrcaSlicer.cpp @@ -1317,7 +1317,13 @@ int CLI::run(int argc, char **argv) return CLI_INVALID_PARAMS; } BOOST_LOG_TRIVIAL(info) << "finished setup params, argc="<< argc << std::endl; - std::string temp_path = wxFileName::GetTempDir().utf8_str().data(); + std::string temp_path = per_user_temp_dir(wxFileName::GetTempDir().utf8_str().data(), per_user_temp_id()); + // Some consumers write into the temp root directly, so create it up front. + try { + boost::filesystem::create_directories(temp_path); + } catch (const std::exception &ex) { + BOOST_LOG_TRIVIAL(warning) << "failed to create per-user temp dir " << temp_path << ": " << ex.what(); + } set_temporary_dir(temp_path); m_extra_config.apply(m_config, true); @@ -3865,13 +3871,13 @@ int CLI::run(int argc, char **argv) } //travel_acceleration - ConfigOptionFloat *travel_acceleration_option = m_print_config.option("travel_acceleration", true); - ConfigOptionFloat *default_acceleration_option = m_print_config.option("default_acceleration"); - travel_acceleration_option->value = default_acceleration_option->value; + ConfigOptionFloatsNullable *travel_acceleration_option = m_print_config.option("travel_acceleration", true); + ConfigOptionFloatsNullable *default_acceleration_option = m_print_config.option("default_acceleration"); + travel_acceleration_option->values = default_acceleration_option->values; - ConfigOptionFloat *initial_layer_travel_acceleration_option = m_print_config.option("initial_layer_travel_acceleration", true); - ConfigOptionFloat *initial_layer_acceleration_option = m_print_config.option("initial_layer_acceleration"); - initial_layer_travel_acceleration_option->value = initial_layer_acceleration_option->value; + ConfigOptionFloatsNullable *initial_layer_travel_acceleration_option = m_print_config.option("initial_layer_travel_acceleration", true); + ConfigOptionFloatsNullable *initial_layer_acceleration_option = m_print_config.option("initial_layer_acceleration"); + initial_layer_travel_acceleration_option->values = initial_layer_acceleration_option->values; } auto get_print_sequence = [](Slic3r::GUI::PartPlate* plate, DynamicPrintConfig& print_config, bool &is_seq_print) { @@ -7353,7 +7359,7 @@ bool CLI::export_project(Model *model, std::string& path, PlateDataPtrs &partpla bool success = false; StoreParams store_params; - store_params.path = path.c_str(); + store_params.path = path; store_params.model = model; store_params.plate_data_list = partplate_data; store_params.project_presets = project_presets; diff --git a/src/dev-utils/BaseException.cpp b/src/dev-utils/BaseException.cpp index b9054ec21e..efb7a98245 100644 --- a/src/dev-utils/BaseException.cpp +++ b/src/dev-utils/BaseException.cpp @@ -357,6 +357,12 @@ void CBaseException::ShowRegistorInformation(PCONTEXT pCtx) OutputString(_T("SS:RSP:%04X:%016llX RBP:%016llX\r\n"), pCtx->SegSs, pCtx->Rsp, pCtx->Rbp); OutputString(_T("DS:%04X ES:%04X FS:%04X GS:%04X\r\n"), pCtx->SegDs, pCtx->SegEs, pCtx->SegFs, pCtx->SegGs); OutputString(_T("Flags:%08X\r\n"), pCtx->EFlags); +#elif defined(_M_ARM64) + OutputString(_T("\nRegisters:\r\n")); + OutputString(_T("PC:%016llX SP:%016llX FP:%016llX LR:%016llX\r\n"), + (unsigned long long)pCtx->Pc, (unsigned long long)pCtx->Sp, + (unsigned long long)pCtx->Fp, (unsigned long long)pCtx->Lr); + OutputString(_T("Cpsr:%08X\r\n"), pCtx->Cpsr); #endif OutputString( _T("\r\n") ); @@ -380,7 +386,11 @@ void CBaseException::ShowExceptionInformation() OutputString(_T("Param %d :0x%x \n"), i, m_pEp->ExceptionRecord->ExceptionInformation[i]); } OutputString(_T("Context :%p \n"), m_pEp->ContextRecord); +#if defined(_M_ARM64) + OutputString(_T("ContextFlag : 0x%x, Cpsr: 0x%x \n"), m_pEp->ContextRecord->ContextFlags, m_pEp->ContextRecord->Cpsr); +#else OutputString(_T("ContextFlag : 0x%x, EFlags: 0x%x \n"), m_pEp->ContextRecord->ContextFlags, m_pEp->ContextRecord->EFlags); +#endif TCHAR szFaultingModule[MAX_PATH]; DWORD section, offset; diff --git a/src/dev-utils/OrcaSlicer_profile_validator.cpp b/src/dev-utils/OrcaSlicer_profile_validator.cpp index a232588617..3208f55452 100644 --- a/src/dev-utils/OrcaSlicer_profile_validator.cpp +++ b/src/dev-utils/OrcaSlicer_profile_validator.cpp @@ -95,6 +95,7 @@ int main(int argc, char* argv[]) #endif ("vendor,v", po::value()->default_value(""), "Vendor name. Optional, all profiles present in the folder will be validated if not specified") ("generate_presets,g", po::value()->default_value(false), "Generate user presets for mock test") + ("check_filament_subtypes,f", po::bool_switch()->default_value(false), "Also flag printers with duplicate (ambiguous) filament subtypes. Off unless this flag is present.") ("log_level,l", po::value()->default_value(2), "Log level. Optional, default is 2 (warning). Higher values produce more detailed logs."); // clang-format on @@ -118,6 +119,7 @@ int main(int argc, char* argv[]) std::string vendor = vm["vendor"].as(); int log_level = vm["log_level"].as(); bool generate_user_preset = vm["generate_presets"].as(); + bool check_filament_subtypes = vm["check_filament_subtypes"].as(); // check if path is valid, and return error if not if (!fs::exists(path) || !fs::is_directory(path)) { @@ -164,7 +166,7 @@ int main(int argc, char* argv[]) return 0; } - if (preset_bundle->has_errors()) { + if (preset_bundle->has_errors(check_filament_subtypes)) { std::cout << "Validation failed" << std::endl; return 1; } diff --git a/src/dev-utils/StackWalker.cpp b/src/dev-utils/StackWalker.cpp index 818ac3405e..468e8927a5 100644 --- a/src/dev-utils/StackWalker.cpp +++ b/src/dev-utils/StackWalker.cpp @@ -457,6 +457,15 @@ LPSTACKINFO CStackWalker::StackWalker(HANDLE hThread, const CONTEXT* context) sf.AddrBStore.Mode = AddrModeFlat; sf.AddrStack.Offset = c.IntSp; sf.AddrStack.Mode = AddrModeFlat; + // ARM64 +#elif defined(_M_ARM64) + imageType = IMAGE_FILE_MACHINE_ARM64; + sf.AddrPC.Offset = c.Pc; + sf.AddrPC.Mode = AddrModeFlat; + sf.AddrFrame.Offset = c.Fp; + sf.AddrFrame.Mode = AddrModeFlat; + sf.AddrStack.Offset = c.Sp; + sf.AddrStack.Mode = AddrModeFlat; #else #error "Platform not supported!" #endif diff --git a/src/dev-utils/platform/unix/build_linux_image.sh.in b/src/dev-utils/platform/unix/build_linux_image.sh.in index 8b29ec3014..b5228f680e 100755 --- a/src/dev-utils/platform/unix/build_linux_image.sh.in +++ b/src/dev-utils/platform/unix/build_linux_image.sh.in @@ -350,7 +350,7 @@ fi exec "\$@" EOF - chmod ug+x "$LIBEXEC_DIR/@SLIC3R_APP_CMD@-env" + chmod a+x "$LIBEXEC_DIR/@SLIC3R_APP_CMD@-env" cat << EOF >@SLIC3R_APP_CMD@ #!/bin/bash diff --git a/src/libslic3r/AppConfig.cpp b/src/libslic3r/AppConfig.cpp index e84f469670..c81e6c391c 100644 --- a/src/libslic3r/AppConfig.cpp +++ b/src/libslic3r/AppConfig.cpp @@ -579,9 +579,16 @@ void AppConfig::set_defaults() if (get("enable_step_mesh_setting").empty()) { set_bool("enable_step_mesh_setting", true); } - if (get("linear_defletion", "angle_defletion").empty()) { - set("linear_defletion", "0.003"); - set("angle_defletion", "0.5"); + // Migrate legacy misspelled keys (linear_defletion/angle_defletion) to the corrected spelling. + if (get("linear_deflection").empty() && !get("linear_defletion").empty()) + set("linear_deflection", get("linear_defletion")); + if (get("angle_deflection").empty() && !get("angle_defletion").empty()) + set("angle_deflection", get("angle_defletion")); + if (get("linear_deflection").empty()) { + set("linear_deflection", "0.003"); + } + if (get("angle_deflection").empty()) { + set("angle_deflection", "0.5"); } if (get("is_split_compound").empty()) { set_bool("is_split_compound", false); diff --git a/src/libslic3r/Arachne/BeadingStrategy/WideningBeadingStrategy.cpp b/src/libslic3r/Arachne/BeadingStrategy/WideningBeadingStrategy.cpp index 5bef586d66..ab8b070604 100644 --- a/src/libslic3r/Arachne/BeadingStrategy/WideningBeadingStrategy.cpp +++ b/src/libslic3r/Arachne/BeadingStrategy/WideningBeadingStrategy.cpp @@ -32,7 +32,13 @@ WideningBeadingStrategy::Beading WideningBeadingStrategy::compute(coord_t thickn // Previously used optimal_width which could differ from the outer wall width used in // bead count calculations, causing inconsistency where bead_count=2 was requested but // only 1 bead was produced. - if (thickness < getTransitionThickness(1)) { + // + // Orca #14376: only collapse to a single bead when at most one bead is requested. This + // branch emits one bead at the full wall thickness, so honoring it when bead_count >= 2 + // (which happens inside 1<->2 transition bands) produces an over-wide extrusion that shows + // up as a surface bulge. Deferring to the parent keeps the requested two beads and also + // keeps compute() consistent with the bead count the skeletal graph asked for. + if (bead_count <= 1 && thickness < getTransitionThickness(1)) { Beading ret; ret.total_thickness = thickness; if (thickness >= min_input_width) { diff --git a/src/libslic3r/Arachne/SkeletalTrapezoidation.cpp b/src/libslic3r/Arachne/SkeletalTrapezoidation.cpp index 2d2cf9896d..da5c7357c1 100644 --- a/src/libslic3r/Arachne/SkeletalTrapezoidation.cpp +++ b/src/libslic3r/Arachne/SkeletalTrapezoidation.cpp @@ -1660,7 +1660,7 @@ void SkeletalTrapezoidation::propagateBeadingsDownward(edge_t* edge_to_peak, ptr } -SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right, coord_t switching_radius) const +SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right, coord_t switching_radius) { assert(ratio_left_to_whole >= 0.0 && ratio_left_to_whole <= 1.0); Beading ret = interpolate(left, ratio_left_to_whole, right); @@ -1684,6 +1684,12 @@ SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beadin { // We cant adjust to fit the next edge because there is no previous one?! return ret; } + // ret follows the thicker of left/right, which can hold fewer insets than left when bead + // count and thickness disagree; skip the adjustment rather than index ret past its end. + if (next_inset_idx >= coord_t(ret.toolpath_locations.size())) + { + return ret; + } assert(next_inset_idx < coord_t(left.toolpath_locations.size())); assert(left.toolpath_locations[next_inset_idx] <= switching_radius); assert(left.toolpath_locations[next_inset_idx + 1] >= switching_radius); @@ -1703,7 +1709,7 @@ SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beadin } -SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right) const +SkeletalTrapezoidation::Beading SkeletalTrapezoidation::interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right) { assert(ratio_left_to_whole >= 0.0 && ratio_left_to_whole <= 1.0); float ratio_right_to_whole = 1.0 - ratio_left_to_whole; diff --git a/src/libslic3r/Arachne/SkeletalTrapezoidation.hpp b/src/libslic3r/Arachne/SkeletalTrapezoidation.hpp index 70c2a7d9a3..d87cd74728 100644 --- a/src/libslic3r/Arachne/SkeletalTrapezoidation.hpp +++ b/src/libslic3r/Arachne/SkeletalTrapezoidation.hpp @@ -488,7 +488,7 @@ protected: * beads. * \return The beading at the interpolated location. */ - Beading interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right, coord_t switching_radius) const; + static Beading interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right, coord_t switching_radius); /*! * Subroutine of \ref interpolate(const Beading&, Ratio, const Beading&, coord_t) @@ -501,7 +501,7 @@ protected: * \param right One of the beadings to interpolate between. * \return The beading at the interpolated location. */ - Beading interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right) const; + static Beading interpolate(const Beading& left, double ratio_left_to_whole, const Beading& right); /*! * Get the beading at a certain node of the skeletal graph, or create one if diff --git a/src/libslic3r/Brim.cpp b/src/libslic3r/Brim.cpp index 814ebf7f7c..a2942e5dae 100644 --- a/src/libslic3r/Brim.cpp +++ b/src/libslic3r/Brim.cpp @@ -61,7 +61,7 @@ static bool use_brim_efc_outline(const PrintObject &object) && object.config().raft_layers.value == 0; } -//ORCA: Helper for snapping painted ears to the EFC outline. +//ORCA: Helper for projecting painted ears to the EFC outline. static bool closest_point_on_expolygons(const ExPolygons &polygons, const Point &from, Point &closest_out) { double min_dist2 = std::numeric_limits::max(); @@ -69,23 +69,22 @@ static bool closest_point_on_expolygons(const ExPolygons &polygons, const Point for (const ExPolygon &poly : polygons) { for (int i = 0; i < poly.num_contours(); ++i) { - const Point *candidate = poly.contour_or_hole(i).closest_point(from); - if (candidate == nullptr) - continue; - const int64_t dx = int64_t(candidate->x()) - int64_t(from.x()); - const int64_t dy = int64_t(candidate->y()) - int64_t(from.y()); - const double dist2 = double(dx * dx + dy * dy); - if (dist2 < min_dist2) { - min_dist2 = dist2; - closest_out = *candidate; - found = true; + const Lines lines = poly.contour_or_hole(i).lines(); + for (const Line &line : lines) { + Point candidate; + const double dist2 = line.distance_to_squared(from, &candidate); + if (dist2 < min_dist2) { + min_dist2 = dist2; + closest_out = candidate; + found = true; + } } } } return found; } -//ORCA: Helper for matching painted ears to their original island before EFC snapping. +//ORCA: Helper for matching painted ears to their original island before EFC projection. static int find_containing_expolygon_index(const ExPolygons &polygons, const Point &from) { for (size_t idx = 0; idx < polygons.size(); ++idx) { @@ -95,7 +94,7 @@ static int find_containing_expolygon_index(const ExPolygons &polygons, const Poi return -1; } -//ORCA: Keep painted ear snapping on the matching island when using EFC outline. +//ORCA: Keep painted ear projection on the matching island when using EFC outline. static bool closest_point_on_matching_island(const ExPolygons &raw_outline, const ExPolygons &efc_outline, const Point &from, Point &closest_out) { const int island_idx = find_containing_expolygon_index(raw_outline, from); @@ -106,6 +105,7 @@ static bool closest_point_on_matching_island(const ExPolygons &raw_outline, cons } return closest_point_on_expolygons(efc_outline, from, closest_out); } + //ORCA: Use post-processed first-layer slices (including EFC) for brim outline. // Returns ExPolygons of the bottom layer after all first-layer modifiers // (including elephant foot compensation, if enabled) have been applied. @@ -358,11 +358,12 @@ static ExPolygons make_brim_ears(const PrintObject* object, const double& flowWi if (brim_ear_points.size() <= 0) { return mouse_ears_ex; } - //ORCA: Painted ears can snap to the EFC-adjusted outline when enabled. + //ORCA: Painted ears follow the EFC-adjusted outline when enabled, while + // preserving their position along the selected outline segment. const bool use_efc_outline = use_brim_efc_outline(*object); const ExPolygons &raw_outline = object->layers().front()->lslices; //ORCA: Lazily computed EFC-adjusted bottom outline. - //Stored separately so we can avoid recomputation unless EFC snapping is used. + //Stored separately so we can avoid recomputation unless EFC projection is used. ExPolygons efc_outline_storage; const ExPolygons* efc_outline = nullptr; @@ -390,17 +391,17 @@ static ExPolygons make_brim_ears(const PrintObject* object, const double& flowWi int32_t pt_x = scale_(pos.x()); int32_t pt_y = scale_(pos.y()); - //ORCA: Snap painted ears to the EFC-adjusted outline when enabled. + //ORCA: Project painted ears to the EFC-adjusted outline when enabled. if (use_efc_outline) { if (efc_outline == nullptr) { - //ORCA: Compute EFC-adjusted outline lazily for painted ear snapping. + //ORCA: Compute the EFC-adjusted outline lazily for painted ear projection. efc_outline_storage = get_print_object_bottom_layer_expolygons(*object); efc_outline = &efc_outline_storage; } if (!efc_outline->empty()) { Point closest_point; - //ORCA: Snap within the matching island to avoid drifting to another island. + //ORCA: Project within the matching island to avoid drifting to another island. if (closest_point_on_matching_island( raw_outline, *efc_outline, @@ -833,8 +834,7 @@ Polygons tryExPolygonOffset(const ExPolygons& islandAreaEx, const Print& print) } return loops; } -//BBS: a function creates the ExtrusionEntityCollection from the brim area defined by ExPolygons -ExtrusionEntityCollection makeBrimInfill(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area) { +static ExtrusionEntityCollection makeBrimInfillImpl(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area, bool apply_plate_offset) { Polygons loops = tryExPolygonOffset(singleBrimArea, print); Flow flow = print.brim_flow(); loops = union_pt_chained_outside_in(loops); @@ -864,16 +864,29 @@ ExtrusionEntityCollection makeBrimInfill(const ExPolygons& singleBrimArea, const optimize_polylines_by_reversing(&all_loops); all_loops = connect_brim_lines(std::move(all_loops), offset(singleBrimArea, float(SCALED_EPSILON)), float(flow.scaled_spacing()) * 2.f); - //BBS: finally apply the plate offset which may very large - auto plate_offset = print.get_plate_origin(); - Point scaled_plate_offset = Point(scaled(plate_offset.x()), scaled(plate_offset.y())); - for (Polyline& one_loop : all_loops) - one_loop.translate(scaled_plate_offset); + if (apply_plate_offset) { + //BBS: finally apply the plate offset which may very large + auto plate_offset = print.get_plate_origin(); + Point scaled_plate_offset = Point(scaled(plate_offset.x()), scaled(plate_offset.y())); + for (Polyline& one_loop : all_loops) + one_loop.translate(scaled_plate_offset); + } extrusion_entities_append_loops_and_paths(brim.entities, std::move(all_loops), erBrim, float(flow.mm3_per_mm()), float(flow.width()), float(print.skirt_first_layer_height())); return brim; } +//BBS: a function creates the ExtrusionEntityCollection from the brim area defined by ExPolygons +ExtrusionEntityCollection makeBrimInfill(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area) +{ + return makeBrimInfillImpl(singleBrimArea, print, islands_area, true); +} + +ExtrusionEntityCollection makeBrimInfillFromPlateCoordinates(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area) +{ + return makeBrimInfillImpl(singleBrimArea, print, islands_area, false); +} + //BBS: an overload of the orignal brim generator that generates the brim by obj and by extruders void make_brim(const Print& print, PrintTryCancel try_cancel, Polygons& islands_area, std::map& brimMap, @@ -943,11 +956,13 @@ void make_brim(const Print& print, PrintTryCancel try_cancel, Polygons& islands_ if (supportBrimAreasOut != nullptr) *supportBrimAreasOut = translate_area_map(supportBrimAreaMap); - const bool combine_brims = print.config().combine_brims.value; - const bool is_by_object = (print.config().print_sequence == PrintSequence::ByObject); - const bool can_combine_brims = combine_brims && !is_by_object; + const bool has_per_object_skirt_or_shield = print.config().skirt_type == stPerObject && + (print.has_skirt() || print.has_infinite_skirt()); + const bool combine_brims = print.config().combine_brims.value && + !has_per_object_skirt_or_shield && + print.config().print_sequence != PrintSequence::ByObject; - if (!can_combine_brims) { + if (!combine_brims) { // Orca: Generate brims separately when brims cannot be combined. for (auto iter = brimAreaMap.begin(); iter != brimAreaMap.end(); ++iter) { if (!iter->second.empty()) { @@ -960,7 +975,7 @@ void make_brim(const Print& print, PrintTryCancel try_cancel, Polygons& islands_ }; } } else { - // Orca: Unified brim mode (non-sequential printing) + // Orca: Unified brim mode. ExPolygons all_brims_merged; std::vector brim_object_ids; diff --git a/src/libslic3r/Brim.hpp b/src/libslic3r/Brim.hpp index 52f7d741e3..2afd812247 100644 --- a/src/libslic3r/Brim.hpp +++ b/src/libslic3r/Brim.hpp @@ -24,6 +24,9 @@ void make_brim(const Print& print, PrintTryCancel try_cancel, std::map* objectBrimAreasOut = nullptr, std::map* supportBrimAreasOut = nullptr); +ExtrusionEntityCollection makeBrimInfill(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area); +ExtrusionEntityCollection makeBrimInfillFromPlateCoordinates(const ExPolygons& singleBrimArea, const Print& print, const Polygons& islands_area); + // BBS: automatically make brim ExtrusionEntityCollection make_brim_auto(const Print &print, PrintTryCancel try_cancel, Polygons &islands_area); diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt index 9b67d7ab50..01c1a0636b 100644 --- a/src/libslic3r/CMakeLists.txt +++ b/src/libslic3r/CMakeLists.txt @@ -221,6 +221,7 @@ set(lisbslic3r_sources GCode/FanMover.hpp GCode/GCodeProcessor.cpp GCode/GCodeProcessor.hpp + GCode/ElegooGCodeProcessorHelper.cpp GCode.hpp GCode/PchipInterpolatorHelper.cpp GCode/PchipInterpolatorHelper.hpp @@ -534,6 +535,7 @@ endif () encoding_check(libslic3r) target_compile_definitions(libslic3r PUBLIC -DUSE_TBB -DTBB_USE_CAPTURED_EXCEPTION=0) +target_compile_definitions(libslic3r PRIVATE $<$:SLIC3R_CONSOLE_LOG>) target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} PUBLIC ${CMAKE_CURRENT_BINARY_DIR}) target_include_directories(libslic3r SYSTEM PUBLIC ${EXPAT_INCLUDE_DIRS}) diff --git a/src/libslic3r/Clipper2Utils.cpp b/src/libslic3r/Clipper2Utils.cpp index 12fd867500..d389d25209 100644 --- a/src/libslic3r/Clipper2Utils.cpp +++ b/src/libslic3r/Clipper2Utils.cpp @@ -188,6 +188,18 @@ ExPolygons offset_ex_2(const ExPolygons &expolygons, double delta) return results; } +ExPolygons offset_ex_2(const ExPolygons &expolygons, double delta, Clipper2Lib::JoinType joinType) +{ + Clipper2Lib::Paths64 subject = Slic3rExPolygons_to_Paths64(expolygons); + Clipper2Lib::ClipperOffset offsetter; + offsetter.AddPaths(subject, joinType, Clipper2Lib::EndType::Polygon); + Clipper2Lib::PolyPath64 polytree; + offsetter.Execute(delta, polytree); + ExPolygons results = PolyTreeToExPolygons(std::move(polytree)); + + return results; +} + ExPolygons offset2_ex_2(const ExPolygons& expolygons, double delta1, double delta2) { // 1st offset diff --git a/src/libslic3r/Clipper2Utils.hpp b/src/libslic3r/Clipper2Utils.hpp index 54b48d6bd7..2b4b0fb2ef 100644 --- a/src/libslic3r/Clipper2Utils.hpp +++ b/src/libslic3r/Clipper2Utils.hpp @@ -15,6 +15,7 @@ Slic3r::Polylines diff_pl_2(const Slic3r::Polylines& subject, const Slic3r::Pol ExPolygons union_ex_2(const Polygons &expolygons); ExPolygons union_ex_2(const ExPolygons &expolygons); ExPolygons offset_ex_2(const ExPolygons &expolygons, double delta); +ExPolygons offset_ex_2(const ExPolygons &expolygons, double delta, Clipper2Lib::JoinType joinType); ExPolygons offset2_ex_2(const ExPolygons &expolygons, double delta1, double delta2); } diff --git a/src/libslic3r/Config.cpp b/src/libslic3r/Config.cpp index 89e8302904..a32c174c46 100644 --- a/src/libslic3r/Config.cpp +++ b/src/libslic3r/Config.cpp @@ -685,6 +685,32 @@ bool ConfigBase::set_deserialize_raw(const t_config_option_key &opt_key_src, con return success; } +double ConfigBase::get_abs_value_at(const t_config_option_key &opt_key, size_t index) const +{ + const ConfigOption *raw_opt = this->option(opt_key); + assert(raw_opt != nullptr); + if (raw_opt->type() == coFloats) { + return static_cast(raw_opt)->get_at(index); + } + if (raw_opt->type() == coFloatsOrPercents) { + const ConfigDef *def = this->def(); + if (def == nullptr) throw NoDefinitionException(opt_key); + const ConfigOptionDef *opt_def = def->get(opt_key); + assert(opt_def != nullptr); + + if (opt_def->ratio_over.empty()) { + return 0; + } else { + const ConfigOption *ratio_opt = this->option(opt_def->ratio_over); + assert(ratio_opt->type() == coFloats); + const ConfigOptionFloats *ratio_values = static_cast(ratio_opt); + return static_cast(raw_opt)->get_at(index).get_abs_value(ratio_values->get_at(index)); + } + } + + throw ConfigurationError("ConfigBase::get_abs_value_at(): Not a valid option type for get_abs_value_at()"); +} + // Return an absolute value of a possibly relative config variable. // For example, return absolute infill extrusion width, either from an absolute value, or relative to the layer height. double ConfigBase::get_abs_value(const t_config_option_key &opt_key) const @@ -1886,6 +1912,39 @@ t_config_option_keys DynamicConfig::equal(const DynamicConfig &other) const return equal; } +double& DynamicConfig::opt_float(const t_config_option_key &opt_key, unsigned int idx) +{ + if (ConfigOptionFloats *opt_floats = dynamic_cast(this->option(opt_key))) { + return opt_floats->get_at(idx); + } else { + ConfigOptionFloatsNullable *opt_floats_nullable = dynamic_cast(this->option(opt_key)); + assert(opt_floats_nullable != nullptr); + return opt_floats_nullable->get_at(idx); + } +} +const double& DynamicConfig::opt_float(const t_config_option_key &opt_key, unsigned int idx) const +{ + if (const ConfigOptionFloats *opt_floats = dynamic_cast(this->option(opt_key))) { + return opt_floats->get_at(idx); + } else if (const ConfigOptionFloatsNullable *opt_floats_nullable = dynamic_cast(this->option(opt_key))) { + return opt_floats_nullable->get_at(idx); + } else { + assert(false); + return 0; + } +} + +bool DynamicConfig::opt_bool(const t_config_option_key &opt_key, unsigned int idx) const { + if (const ConfigOptionBools *opts = dynamic_cast(this->option(opt_key))) { + return opts->get_at(idx) != 0; + } + else { + const ConfigOptionBoolsNullable *opt_s = dynamic_cast(this->option(opt_key)); + assert(opt_s != nullptr); + return opt_s->get_at(idx) != 0; + } +} + } #include diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp index 5fedaa9b28..54a09ec96a 100644 --- a/src/libslic3r/Config.hpp +++ b/src/libslic3r/Config.hpp @@ -30,8 +30,14 @@ namespace Slic3r { struct FloatOrPercent { - double value; - bool percent; + double value = 0; + bool percent = false; + + FloatOrPercent() {} + FloatOrPercent(double value_, bool percent_) : value(value_), percent(percent_) { } + + double get_abs_value(double ratio_over) const { return this->percent ? (ratio_over * this->value / 100) : this->value; } + private: friend class cereal::access; template void serialize(Archive& ar) { ar(this->value); ar(this->percent); } @@ -2726,6 +2732,7 @@ public: void set_deserialize_strict(std::initializer_list items) { ConfigSubstitutionContext ctxt{ ForwardCompatibilitySubstitutionRule::Disable }; this->set_deserialize(items, ctxt); } + double get_abs_value_at(const t_config_option_key &opt_key, size_t index) const; double get_abs_value(const t_config_option_key &opt_key) const; double get_abs_value(const t_config_option_key &opt_key, double ratio_over) const; void setenv_() const; @@ -2900,13 +2907,17 @@ public: double& opt_float(const t_config_option_key &opt_key) { return this->option(opt_key)->value; } const double& opt_float(const t_config_option_key &opt_key) const { return dynamic_cast(this->option(opt_key))->value; } - double& opt_float(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx); } - const double& opt_float(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); } + double & opt_float(const t_config_option_key &opt_key, unsigned int idx); + const double & opt_float(const t_config_option_key &opt_key, unsigned int idx) const; + double & opt_float_nullable(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx); } + const double & opt_float_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); } int& opt_int(const t_config_option_key &opt_key) { return this->option(opt_key)->value; } int opt_int(const t_config_option_key &opt_key) const { return dynamic_cast(this->option(opt_key))->value; } int& opt_int(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx); } int opt_int(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); } + int& opt_int_nullable(const t_config_option_key &opt_key, unsigned int idx) { return this->option(opt_key)->get_at(idx);} + const int & opt_int_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx);} // In ConfigManipulation::toggle_print_fff_options, it is called on option with type ConfigOptionEnumGeneric* and also ConfigOptionEnum*. // Thus the virtual method getInt() is used to retrieve the enum value. @@ -2914,9 +2925,13 @@ public: ENUM opt_enum(const t_config_option_key &opt_key) const { return static_cast(this->option(opt_key)->getInt()); } // BBS int opt_enum(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); } + int opt_enum_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx); } + bool opt_bool(const t_config_option_key &opt_key) const { return this->option(opt_key)->value != 0; } - bool opt_bool(const t_config_option_key &opt_key, unsigned int idx) const { return this->option(opt_key)->get_at(idx) != 0; } + bool opt_bool(const t_config_option_key &opt_key, unsigned int idx) const; + bool opt_bool_nullable(const t_config_option_key &opt_key, unsigned int idx) const { return dynamic_cast(this->option(opt_key))->get_at(idx);} + // Command line processing bool read_cli(int argc, const char* const argv[], t_config_option_keys* extra, t_config_option_keys* keys = nullptr); diff --git a/src/libslic3r/ExtrusionEntity.hpp b/src/libslic3r/ExtrusionEntity.hpp index 180312aa6d..e8348b3bd5 100644 --- a/src/libslic3r/ExtrusionEntity.hpp +++ b/src/libslic3r/ExtrusionEntity.hpp @@ -96,12 +96,21 @@ inline bool is_solid_infill(ExtrusionRole role) || role == erIroning; } -inline bool is_bridge(ExtrusionRole role) { +inline bool is_bridge(ExtrusionRole role) +{ return role == erBridgeInfill || role == erInternalBridgeInfill || role == erOverhangPerimeter; } +// Orca +inline bool is_support(ExtrusionRole role) +{ + return role == erSupportMaterial + || role == erSupportMaterialInterface + || role == erSupportTransition; +} + class ExtrusionEntity { public: diff --git a/src/libslic3r/Fill/Fill.cpp b/src/libslic3r/Fill/Fill.cpp index e9517480c8..68180cd2f7 100644 --- a/src/libslic3r/Fill/Fill.cpp +++ b/src/libslic3r/Fill/Fill.cpp @@ -272,6 +272,10 @@ struct SurfaceFillParams // For Gyroid: when true, use the parameterized "optimized" wave. bool gyroid_optimized = false; + bool anisotropic_surfaces{false}; + CenterOfSurfacePattern center_of_surface_pattern{CenterOfSurfacePattern::Each_Surface}; + bool separated_infills{false}; + bool operator<(const SurfaceFillParams &rhs) const { #define RETURN_COMPARE_NON_EQUAL(KEY) if (this->KEY < rhs.KEY) return true; if (this->KEY > rhs.KEY) return false; #define RETURN_COMPARE_NON_EQUAL_TYPED(TYPE, KEY) if (TYPE(this->KEY) < TYPE(rhs.KEY)) return true; if (TYPE(this->KEY) > TYPE(rhs.KEY)) return false; @@ -301,8 +305,12 @@ struct SurfaceFillParams RETURN_COMPARE_NON_EQUAL(lateral_lattice_angle_2); RETURN_COMPARE_NON_EQUAL(symmetric_infill_y_axis); RETURN_COMPARE_NON_EQUAL(infill_lock_depth); - RETURN_COMPARE_NON_EQUAL(skin_infill_depth); RETURN_COMPARE_NON_EQUAL(infill_overhang_angle); + RETURN_COMPARE_NON_EQUAL(skin_infill_depth); + RETURN_COMPARE_NON_EQUAL(infill_overhang_angle); RETURN_COMPARE_NON_EQUAL(gyroid_optimized); + RETURN_COMPARE_NON_EQUAL(anisotropic_surfaces); + RETURN_COMPARE_NON_EQUAL(center_of_surface_pattern); + RETURN_COMPARE_NON_EQUAL(separated_infills); return false; } @@ -329,6 +337,9 @@ struct SurfaceFillParams this->infill_lock_depth == rhs.infill_lock_depth && this->skin_infill_depth == rhs.skin_infill_depth && this->infill_overhang_angle == rhs.infill_overhang_angle && + this->anisotropic_surfaces == rhs.anisotropic_surfaces && + this->center_of_surface_pattern == rhs.center_of_surface_pattern && + this->separated_infills == rhs.separated_infills && this->gyroid_optimized == rhs.gyroid_optimized; } }; @@ -868,6 +879,9 @@ std::vector group_fills(const Layer &layer, LockRegionParam &lock_p params.lateral_lattice_angle_1 = region_config.lateral_lattice_angle_1; params.lateral_lattice_angle_2 = region_config.lateral_lattice_angle_2; params.infill_overhang_angle = region_config.infill_overhang_angle; + params.anisotropic_surfaces = region_config.anisotropic_surfaces; + params.center_of_surface_pattern = region_config.center_of_surface_pattern; + params.separated_infills = region_config.separated_infills; if (params.pattern == ipLockedZag) { params.infill_lock_depth = scale_(region_config.infill_lock_depth); params.skin_infill_depth = scale_(region_config.skin_infill_depth); @@ -936,9 +950,16 @@ std::vector group_fills(const Layer &layer, LockRegionParam &lock_p region_config.sparse_infill_rotate_template.value); params.fixed_angle = !region_config.sparse_infill_rotate_template.value.empty(); } else { - params.angle = calculate_infill_rotation_angle(layer.object(), layer.id(), region_config.solid_infill_direction.value, - region_config.solid_infill_rotate_template.value); - params.fixed_angle = !region_config.solid_infill_rotate_template.value.empty(); + const bool top_layer_direction_set = surface.is_top() && region_config.top_layer_direction.value >= 0.; + const bool bottom_layer_direction_set = surface.is_bottom() && region_config.bottom_layer_direction.value >= 0.; + if (top_layer_direction_set || bottom_layer_direction_set) { + params.angle = Geometry::deg2rad(top_layer_direction_set ? region_config.top_layer_direction.value : region_config.bottom_layer_direction.value); + params.fixed_angle = true; + } else { + params.angle = calculate_infill_rotation_angle(layer.object(), layer.id(), region_config.solid_infill_direction.value, + region_config.solid_infill_rotate_template.value); + params.fixed_angle = !region_config.solid_infill_rotate_template.value.empty(); + } } params.bridge_angle = float(surface.bridge_angle); @@ -960,15 +981,15 @@ std::vector group_fills(const Layer &layer, LockRegionParam &lock_p params.role_speed = 0; if (params.extrusion_role == erBridgeInfill) - params.role_speed = region_config.bridge_speed; + params.role_speed = region_config.bridge_speed.get_at(layer.get_extruder_id(params.extruder)); else if (params.extrusion_role == erInternalBridgeInfill) - params.role_speed = region_config.get_abs_value("internal_bridge_speed"); + params.role_speed = region_config.get_abs_value_at("internal_bridge_speed", layer.get_extruder_id(params.extruder)); else if (params.extrusion_role == erInternalInfill) - params.role_speed = region_config.sparse_infill_speed; + params.role_speed = region_config.sparse_infill_speed.get_at(layer.get_extruder_id(params.extruder)); else if (params.extrusion_role == erTopSolidInfill) - params.role_speed = region_config.top_surface_speed; + params.role_speed = region_config.top_surface_speed.get_at(layer.get_extruder_id(params.extruder)); else if (params.extrusion_role == erSolidInfill) - params.role_speed = region_config.internal_solid_infill_speed; + params.role_speed = region_config.internal_solid_infill_speed.get_at(layer.get_extruder_id(params.extruder)); // Calculate flow spacing for infill pattern generation. if (surface.is_solid() || is_bridge) { params.spacing = params.flow.spacing(); @@ -1302,6 +1323,22 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive: params.config = ®ion_config; params.pattern = surface_fill.params.pattern; + // Orca: Checking the filling of a centered surface by drawing for each model parts + bool is_top_or_bottom = params.extrusion_role == erTopSolidInfill || params.extrusion_role == erBottomSurface; + bool is_centered_infill = surface_fill.params.pattern == ipArchimedeanChords || surface_fill.params.pattern == ipOctagramSpiral; + if (is_top_or_bottom) { + params.is_anisotropic = surface_fill.params.anisotropic_surfaces; // Orca: anisotropic surfaces + params.center_of_surface_pattern = surface_fill.params.center_of_surface_pattern; // Orca: center of surface pattern + } + // Orca: Each_Model centers the pattern on each model part's bbox; Each_Surface / Each_Assembly + // fall through to the default (whole-object) bounding box below. + bool is_per_model_center = is_top_or_bottom && params.center_of_surface_pattern == CenterOfSurfacePattern::Each_Model && is_centered_infill; + bool is_separate_infill = !is_top_or_bottom && surface_fill.params.separated_infills && + ( + is_centered_infill || + params.config->solid_infill_rotate_template != "" || + params.config->sparse_infill_rotate_template != "" ); + if( surface_fill.params.pattern == ipLockedZag ) { params.locked_zag = true; params.infill_lock_depth = surface_fill.params.infill_lock_depth; @@ -1325,7 +1362,65 @@ void Layer::make_fills(FillAdaptive::Octree* adaptive_fill_octree, FillAdaptive: params.can_reverse = false; for (ExPolygon& expoly : surface_fill.expolygons) { - f->no_overlap_expolygons = intersection_ex(surface_fill.no_overlap_expolygons, ExPolygons() = {expoly}, ApplySafetyOffset::Yes); + // Orca: separate infill / per-model pattern centering. + // + // First assign this fill region to the model part whose slice at this layer overlaps it + // the most. A strict "contains" test is ambiguous for assemblies whose parts overlap (a + // region may sit inside several parts, or straddle a boundary and be inside none), so we + // pick by intersection area instead. + // + // The center must belong to an *overlap group*, not a single part: parts that + // touch/overlap form one connected physical body that shares a single center, while a + // part detached from the rest of the assembly gets its own. This holds for both + // separated infills and Each_Model surface centering (Each_Model == per connected body). + // firstLayerObjGroups() already holds these connected components, so we widen the chosen + // part's bbox to the whole group it belongs to. + if (is_per_model_center || is_separate_infill) { + double best_overlap = 0.; + ObjectID best_vol_id; + const PrintInstance* best_instance = nullptr; + for (const auto& instance : this->object()->instances()) { + for (const auto& volume : instance.print_object->firstLayerObjSlice()) { + if (f->layer_id >= volume.slices.size()) + continue; + const double overlap = area(intersection_ex(volume.slices[f->layer_id], ExPolygons{expoly})); + if (overlap > best_overlap) { + best_overlap = overlap; + best_vol_id = volume.volume_id; + best_instance = &instance; + } + } + } + if (best_instance) { + const Transform3d matrix = best_instance->model_instance->get_matrix(); + Point shift = best_instance->shift; // get_volume_bbox takes a non-const ref + auto& volumes = best_instance->model_instance->get_object()->volumes; + + // Volume ids to center on: the whole overlap group the winning part belongs to, + // falling back to just that part if it isn't part of any group. + std::vector center_ids; + for (const auto& group : best_instance->print_object->firstLayerObjGroups()) { + bool in_group = false; + for (const ObjectID& vid : group.volume_ids) + if (vid == best_vol_id) { in_group = true; break; } + if (in_group) { center_ids = group.volume_ids; break; } + } + if (center_ids.empty()) + center_ids.push_back(best_vol_id); + + BoundingBox bbox; + for (const ObjectID& vid : center_ids) + for (auto model_volume : volumes) + if (vid.id == model_volume->id().id) { + bbox.merge(model_volume->get_volume_bbox(matrix, shift, true)); + break; + } + if (bbox.defined) + f->set_bounding_box(bbox); + } + } // - End: separate infill / per-model pattern centering + + f->no_overlap_expolygons = intersection_ex(surface_fill.no_overlap_expolygons, ExPolygons() = {expoly}, ApplySafetyOffset::Yes); if (params.symmetric_infill_y_axis) { params.symmetric_y_axis = f->extended_object_bounding_box().center().x(); expoly.symmetric_y(params.symmetric_y_axis); @@ -1599,16 +1694,20 @@ void Layer::make_ironing() ironing_params.height = default_layer_height * 0.01 * (!config.filament_ironing_flow.is_nil(extruder_idx) ? config.filament_ironing_flow.get_at(extruder_idx) : config.ironing_flow); - ironing_params.speed = (!config.filament_ironing_speed.is_nil(extruder_idx) - ? config.filament_ironing_speed.get_at(extruder_idx) - : config.ironing_speed); - double ironing_angle = (config.ironing_angle_fixed ? 0 : calculate_infill_rotation_angle(this->object(), this->id(), config.solid_infill_direction.value, config.solid_infill_rotate_template.value)) + config.ironing_angle * M_PI / 180.; + ironing_params.speed = (!config.filament_ironing_speed.is_nil(extruder_idx) + ? config.filament_ironing_speed.get_at(extruder_idx) + : config.ironing_speed); + const bool top_layer_direction_set = config.top_layer_direction.value >= 0.; + const double top_layer_base_angle = top_layer_direction_set ? + Geometry::deg2rad(config.top_layer_direction.value) : + calculate_infill_rotation_angle(this->object(), this->id(), config.solid_infill_direction.value, config.solid_infill_rotate_template.value); + double ironing_angle = (config.ironing_angle_fixed ? 0. : top_layer_base_angle) + config.ironing_angle * M_PI / 180.; if (config.align_infill_direction_to_model) { auto m = this->object()->trafo().matrix(); ironing_angle += atan2((double)m(1, 0), (double)m(0, 0)); } - ironing_params.angle = ironing_angle; - ironing_params.fixed_angle = config.ironing_angle_fixed || !config.solid_infill_rotate_template.value.empty(); + ironing_params.angle = ironing_angle; + ironing_params.fixed_angle = config.ironing_angle_fixed || top_layer_direction_set || !config.solid_infill_rotate_template.value.empty(); ironing_params.pattern = config.ironing_pattern; ironing_params.layerm = layerm; by_extruder.emplace_back(ironing_params); diff --git a/src/libslic3r/Fill/FillBase.cpp b/src/libslic3r/Fill/FillBase.cpp index 1d15614ccb..cf74606dd4 100644 --- a/src/libslic3r/Fill/FillBase.cpp +++ b/src/libslic3r/Fill/FillBase.cpp @@ -165,7 +165,7 @@ void Fill::fill_surface_extrusion(const Surface* surface, const FillParams& para // ORCA: special flag for flow rate calibration auto is_flow_calib = params.extrusion_role == erTopSolidInfill && this->print_object_config->has("calib_flowrate_topinfill_special_order") && this->print_object_config->option("calib_flowrate_topinfill_special_order")->getBool(); - if (is_flow_calib) { + if (is_flow_calib || params.is_anisotropic) { // Orca: disable sorting while anisotropic surfaces eec->no_sort = true; } size_t idx = eec->entities.size(); @@ -186,7 +186,8 @@ void Fill::fill_surface_extrusion(const Surface* surface, const FillParams& para } // Orca: run gap fill - this->_create_gap_fill(surface, params, eec); + if (!(params.is_anisotropic)) // Orca: Disable gap filling while anisotropic + this->_create_gap_fill(surface, params, eec); } } diff --git a/src/libslic3r/Fill/FillBase.hpp b/src/libslic3r/Fill/FillBase.hpp index ef6a6bc804..ffeed3045b 100644 --- a/src/libslic3r/Fill/FillBase.hpp +++ b/src/libslic3r/Fill/FillBase.hpp @@ -106,6 +106,8 @@ struct FillParams bool locked_zag{false}; float infill_lock_depth{0.0}; float skin_infill_depth{0.0}; + bool is_anisotropic{false}; + CenterOfSurfacePattern center_of_surface_pattern{CenterOfSurfacePattern::Each_Surface}; }; static_assert(IsTriviallyCopyable::value, "FillParams class is not POD (and it should be - see constructor)."); diff --git a/src/libslic3r/Fill/FillPlanePath.cpp b/src/libslic3r/Fill/FillPlanePath.cpp index b4681d05f9..01f4ca00da 100644 --- a/src/libslic3r/Fill/FillPlanePath.cpp +++ b/src/libslic3r/Fill/FillPlanePath.cpp @@ -77,20 +77,24 @@ void FillPlanePath::_fill_surface_single( //FIXME Vojtech: We are not sure whether the user expects the fill patterns on visible surfaces to be aligned across all the islands of a single layer. // One may align for this->centered() to align the patterns for Archimedean Chords and Octagram Spiral patterns. - const bool align = params.density < 0.995; - + // Orca: the old implementation became obsolete when it became possible to change the density of the top and bottom surfaces + bool align = params.extrusion_role == ExtrusionRole::erInternalInfill; + BoundingBox bounding_box; BoundingBox snug_bounding_box = get_extents(expolygon).inflated(SCALED_EPSILON); // Expand the bounding box to avoid artifacts at the edges - snug_bounding_box.offset(scale_(this->spacing)*params.multiline); + snug_bounding_box.offset(scale_(this->spacing)*params.multiline); - // Rotated bounding box of the area to fill in with the pattern. - BoundingBox bounding_box = align ? - // Sparse infill needs to be aligned across layers. Align infill across layers using the object's bounding box. - this->bounding_box.rotated(-direction.first) : - // Solid infill does not need to be aligned across layers, generate the infill pattern - // around the clipping expolygon only. - snug_bounding_box; + // Sparse infill (or Internal where align == true) needs to be aligned across layers. Align infill across layers using the object's bounding box. + // Solid infill does not need to be aligned across layers, generate the infill pattern around the clipping expolygon only. + if (align) + bounding_box = this->bounding_box.rotated(-direction.first); + else if (params.center_of_surface_pattern == CenterOfSurfacePattern::Each_Surface) + bounding_box = snug_bounding_box; + else if (params.center_of_surface_pattern == CenterOfSurfacePattern::Each_Model) + bounding_box = this->bounding_box.rotated(-direction.first); + else + bounding_box = extended_object_bounding_box(); Point shift = this->centered() ? bounding_box.center() : @@ -129,35 +133,49 @@ void FillPlanePath::_fill_surface_single( polylines = intersection_pl(std::move(polylines), expolygon); if (!polylines.empty()) { Polylines chained; - if (params.dont_connect() || params.density > 0.5) { - // ORCA: special flag for flow rate calibration - auto is_flow_calib = params.extrusion_role == erTopSolidInfill && - this->print_object_config->has("calib_flowrate_topinfill_special_order") && - this->print_object_config->option("calib_flowrate_topinfill_special_order")->getBool() && - dynamic_cast(this); - if (is_flow_calib) { - // We want the spiral part to be printed inside-out - // Find the center spiral line first, by looking for the longest one - auto it = std::max_element(polylines.begin(), polylines.end(), - [](const Polyline& a, const Polyline& b) { return a.length() < b.length(); }); - Polyline center_spiral = std::move(*it); + if (!params.is_anisotropic) { // Orca: not anisotropic surface + if ((params.dont_connect() || params.density > 0.5)) { + // ORCA: special flag for flow rate calibration + auto is_flow_calib = params.extrusion_role == erTopSolidInfill && + this->print_object_config->has("calib_flowrate_topinfill_special_order") && + this->print_object_config->option("calib_flowrate_topinfill_special_order")->getBool() && + dynamic_cast(this); + if (is_flow_calib) { + // We want the spiral part to be printed inside-out + // Find the center spiral line first, by looking for the longest one + auto it = std::max_element(polylines.begin(), polylines.end(), + [](const Polyline& a, const Polyline& b) { return a.length() < b.length(); }); + Polyline center_spiral = std::move(*it); - // Ensure the spiral is printed from inside to out - if (center_spiral.first_point().squaredNorm() > center_spiral.last_point().squaredNorm()) { - center_spiral.reverse(); + // Ensure the spiral is printed from inside to out + if ((center_spiral.first_point().squaredNorm() > center_spiral.last_point().squaredNorm())) { + center_spiral.reverse(); + } + + // Chain the other polylines + polylines.erase(it); + chained = chain_polylines(std::move(polylines), nullptr); + + // Then add the center spiral back + chained.push_back(std::move(center_spiral)); + } else { + chained = chain_polylines(std::move(polylines), nullptr); } - - // Chain the other polylines - polylines.erase(it); - chained = chain_polylines(std::move(polylines)); - - // Then add the center spiral back - chained.push_back(std::move(center_spiral)); - } else { - chained = chain_polylines(std::move(polylines)); + } else + connect_infill(std::move(polylines), expolygon, chained, this->spacing, params); + } else { // Orca: anisotropic surface + const Point _center(0., 0.); + for (Polyline& segment : polylines) { // sort paths by its direction + if (segment.size() > 1) { // need at least two points to evaluate direction + if (segment.first_point().ccw(segment.points[1], _center) < 0) + segment.reverse(); + } + chained.emplace_back(std::move(segment)); } - } else - connect_infill(std::move(polylines), expolygon, chained, this->spacing, params); + std::sort(chained.begin(), chained.end(), [&_center](const Polyline& a, const Polyline& b) { // just sort polylines from center to outside + return a.distance_to(_center) < b.distance_to(_center); + }); + } // paths must be repositioned and rotated back for (Polyline& pl : chained) { pl.translate(shift.x(), shift.y()); diff --git a/src/libslic3r/Format/STEP.cpp b/src/libslic3r/Format/STEP.cpp index 3ea3de5914..8b07286c5b 100644 --- a/src/libslic3r/Format/STEP.cpp +++ b/src/libslic3r/Format/STEP.cpp @@ -230,8 +230,8 @@ static void getNamedSolids(const TopLoc_Location& location, } //bool load_step(const char *path, Model *model, bool& is_cancel, -// double linear_defletion/*=0.003*/, -// double angle_defletion/*= 0.5*/, +// double linear_deflection/*=0.003*/, +// double angle_deflection/*= 0.5*/, // bool isSplitCompound, // ImportStepProgressFn stepFn, StepIsUtf8Fn isUtf8Fn, long& mesh_face_num) //{ @@ -288,7 +288,7 @@ static void getNamedSolids(const TopLoc_Location& location, // stl.resize(namedSolids.size()); // tbb::parallel_for(tbb::blocked_range(0, namedSolids.size()), [&](const tbb::blocked_range &range) { // for (size_t i = range.begin(); i < range.end(); i++) { -// BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_defletion, false, angle_defletion, true); +// BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_deflection, false, angle_deflection, true); // // BBS: calculate total number of the nodes and triangles // int aNbNodes = 0; // int aNbTriangles = 0; @@ -511,8 +511,8 @@ Step::Step_Status Step::load() Step::Step_Status Step::mesh(Model* model, bool& is_cancel, bool isSplitCompound, - double linear_defletion/*=0.003*/, - double angle_defletion/*= 0.5*/) + double linear_deflection/*=0.003*/, + double angle_deflection/*= 0.5*/) { bool task_result = false; @@ -544,7 +544,7 @@ Step::Step_Status Step::mesh(Model* model, stl.resize(namedSolids.size()); tbb::parallel_for(tbb::blocked_range(0, namedSolids.size()), [&](const tbb::blocked_range& range) { for (size_t i = range.begin(); i < range.end(); i++) { - BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_defletion, false, angle_defletion, true); + BRepMesh_IncrementalMesh mesh(namedSolids[i].solid, linear_deflection, false, angle_deflection, true); // BBS: calculate total number of the nodes and triangles int aNbNodes = 0; int aNbTriangles = 0; @@ -689,15 +689,15 @@ void Step::clean_mesh_data() } } -unsigned int Step::get_triangle_num(double linear_defletion, double angle_defletion) +unsigned int Step::get_triangle_num(double linear_deflection, double angle_deflection) { unsigned int tri_num = 0; try { Handle(StepProgressIncdicator) progress = new StepProgressIncdicator(m_stop_mesh); clean_mesh_data(); IMeshTools_Parameters param; - param.Deflection = linear_defletion; - param.Angle = angle_defletion; + param.Deflection = linear_deflection; + param.Angle = angle_deflection; param.InParallel = true; for (int i = 0; i < m_name_solids.size(); ++i) { BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, param, progress->Start()); @@ -719,7 +719,7 @@ unsigned int Step::get_triangle_num(double linear_defletion, double angle_deflet return tri_num; } -unsigned int Step::get_triangle_num_tbb(double linear_defletion, double angle_defletion) +unsigned int Step::get_triangle_num_tbb(double linear_deflection, double angle_deflection) { unsigned int tri_num = 0; clean_mesh_data(); @@ -727,7 +727,7 @@ unsigned int Step::get_triangle_num_tbb(double linear_defletion, double angle_de [&](const tbb::blocked_range& range) { for (size_t i = range.begin(); i < range.end(); i++) { unsigned int solids_tri_num = 0; - BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, linear_defletion, false, angle_defletion, true); + BRepMesh_IncrementalMesh mesh(m_name_solids[i].solid, linear_deflection, false, angle_deflection, true); for (TopExp_Explorer anExpSF(m_name_solids[i].solid, TopAbs_FACE); anExpSF.More(); anExpSF.Next()) { TopLoc_Location aLoc; Handle(Poly_Triangulation) aTriangulation = BRep_Tool::Triangulation(TopoDS::Face(anExpSF.Current()), aLoc); diff --git a/src/libslic3r/Format/STEP.hpp b/src/libslic3r/Format/STEP.hpp index 3253553567..1a65d5956b 100644 --- a/src/libslic3r/Format/STEP.hpp +++ b/src/libslic3r/Format/STEP.hpp @@ -38,8 +38,8 @@ struct NamedSolid //BBS: Load an step file into a provided model. extern bool load_step(const char *path, Model *model, bool& is_cancel, - double linear_defletion = 0.003, - double angle_defletion = 0.5, + double linear_deflection = 0.003, + double angle_deflection = 0.5, bool isSplitCompound = false, ImportStepProgressFn proFn = nullptr, StepIsUtf8Fn isUtf8Fn = nullptr, @@ -98,14 +98,14 @@ public: Step(std::string path, ImportStepProgressFn stepFn = nullptr, StepIsUtf8Fn isUtf8Fn = nullptr); ~Step(); Step_Status load(); - unsigned int get_triangle_num(double linear_defletion, double angle_defletion); - unsigned int get_triangle_num_tbb(double linear_defletion, double angle_defletion); + unsigned int get_triangle_num(double linear_deflection, double angle_deflection); + unsigned int get_triangle_num_tbb(double linear_deflection, double angle_deflection); void clean_mesh_data(); Step_Status mesh(Model* model, bool& is_cancel, bool isSplitCompound, - double linear_defletion = 0.003, - double angle_defletion = 0.5); + double linear_deflection = 0.003, + double angle_deflection = 0.5); std::atomic m_stop_mesh{false}; void update_process(int load_stage, int current, int total, bool& cancel); diff --git a/src/libslic3r/Format/bbs_3mf.cpp b/src/libslic3r/Format/bbs_3mf.cpp index 31519e4fbe..fd395135ae 100644 --- a/src/libslic3r/Format/bbs_3mf.cpp +++ b/src/libslic3r/Format/bbs_3mf.cpp @@ -5949,7 +5949,7 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result) m_thumbnail_middle = iter->second; } boost::system::error_code ec; - std::string filename = std::string(store_params.path); + std::string filename = store_params.path; boost::filesystem::remove(filename + ".tmp", ec); bool result = _save_model_to_file(filename + ".tmp", *store_params.model, store_params.plate_data_list, store_params.project_presets, store_params.config, @@ -8988,7 +8988,7 @@ bool store_bbs_3mf(StoreParams& store_params) // All export should use "C" locales for number formatting. CNumericLocalesSetter locales_setter; - if (store_params.path == nullptr || store_params.model == nullptr) + if (store_params.path.empty() || store_params.model == nullptr) return false; _BBS_3MF_Exporter exporter; diff --git a/src/libslic3r/Format/bbs_3mf.hpp b/src/libslic3r/Format/bbs_3mf.hpp index df4f91f6e9..c16c423f66 100644 --- a/src/libslic3r/Format/bbs_3mf.hpp +++ b/src/libslic3r/Format/bbs_3mf.hpp @@ -226,7 +226,7 @@ typedef std::map PlateDataMaps; struct StoreParams { - const char* path; + std::string path; Model* model = nullptr; PlateDataPtrs plate_data_list; int export_plate_idx = -1; diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 96e745a9d2..8238f5be85 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -337,7 +337,7 @@ static std::vector get_path_of_change_filament(const Print& print) if(retraction_length_remaining <=EPSILON) return {retractionBeforeWipe,0.f}; // Calculate wipe speed - double wipe_speed = config.role_based_wipe_speed ? writer.get_current_speed() / 60.0 : config.get_abs_value("wipe_speed"); + double wipe_speed = config.role_based_wipe_speed ? writer.get_current_speed() / 60.0 : config.get_abs_value("wipe_speed", gcodegen.config().travel_speed.get_at(gcodegen.cur_extruder_index())); wipe_speed = std::max(wipe_speed, 10.0); // Process wipe path & calculate wipe path length @@ -429,7 +429,7 @@ static std::vector get_path_of_change_filament(const Print& print) /* Reduce feedrate a bit; travel speed is often too high to move on existing material. Too fast = ripping of existing material; too slow = short wipe path, thus more blob. */ - double _wipe_speed = gcodegen.config().get_abs_value("wipe_speed");// gcodegen.writer().config.travel_speed.value * 0.8; + double _wipe_speed = gcodegen.config().get_abs_value("wipe_speed", gcodegen.config().travel_speed.get_at(gcodegen.cur_extruder_index()));// gcodegen.writer().config.travel_speed.value * 0.8; if(gcodegen.config().role_based_wipe_speed) _wipe_speed = gcodegen.writer().get_current_speed() / 60.0; if(_wipe_speed < 10) @@ -515,7 +515,7 @@ static std::vector get_path_of_change_filament(const Print& print) outer_wall_line_width = default_line_width == 0.0 ? filament_diameter : default_line_width; } Flow outer_wall_flow = Flow(outer_wall_line_width, config.layer_height, config.nozzle_diameter.get_at(extruder_id)); - float outer_wall_speed = print.default_region_config().outer_wall_speed.value; + float outer_wall_speed = print.default_region_config().outer_wall_speed.get_at(extruder_id); outer_wall_volumetric_speed = outer_wall_speed * outer_wall_flow.mm3_per_mm(); if (outer_wall_volumetric_speed > filament_max_volumetric_speed) outer_wall_volumetric_speed = filament_max_volumetric_speed; @@ -781,6 +781,7 @@ static std::vector get_path_of_change_filament(const Print& print) if (gcodegen.writer().filament() != nullptr && !filament_end_gcode.empty()) { DynamicConfig config; config.set_key_value("layer_num", new ConfigOptionInt(gcodegen.m_layer_index)); + config.set_key_value("layer_z", new ConfigOptionFloat(tcr.print_z)); if (!gcodegen.m_filament_instances_code.empty()) { end_filament_gcode_str += ("M624 " + gcodegen.m_filament_instances_code + "\n"); gcodegen.m_filament_instances_code = ""; @@ -1602,6 +1603,7 @@ static std::vector get_path_of_change_filament(const Print& print) #define EXTRUDER_CONFIG(OPT) m_config.OPT.get_at(m_writer.filament()->extruder_id()) #define FILAMENT_CONFIG(OPT) m_config.OPT.get_at(m_writer.filament()->id()) +#define NOZZLE_CONFIG(OPT) m_config.OPT.get_at(cur_extruder_index()) void GCode::PlaceholderParserIntegration::reset() { @@ -2032,6 +2034,7 @@ void GCode::do_export(Print* print, const char* path, GCodeProcessorResult* resu // BBS m_curr_print = print; + m_skirt_group_done.clear(); GCodeWriter::full_gcode_comment = print->config().gcode_comments; CNumericLocalesSetter locales_setter; @@ -2805,11 +2808,11 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato print.throw_if_canceled(); - m_cooling_buffer = make_unique(*this); - m_cooling_buffer->set_current_extruder(initial_extruder_id); - int extruder_id = get_extruder_id(initial_extruder_id); + m_cooling_buffer = make_unique(*this); + m_cooling_buffer->set_current_extruder(initial_extruder_id, extruder_id); + // Orca: Initialise AdaptivePA processor filter m_pa_processor = std::make_unique(*this, tool_ordering.all_extruders()); @@ -3033,6 +3036,7 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato this->placeholder_parser().set("bed_temperature_initial_layer_vector", new ConfigOptionString()); this->placeholder_parser().set("chamber_temperature", new ConfigOptionInts(m_config.chamber_temperature)); this->placeholder_parser().set("overall_chamber_temperature", new ConfigOptionInt(max_chamber_temp)); + this->placeholder_parser().set("chamber_minimal_temperature", new ConfigOptionInts(m_config.chamber_minimal_temperature)); this->placeholder_parser().set("enable_high_low_temp_mix", new ConfigOptionBool(!print.need_check_multi_filaments_compatibility())); this->placeholder_parser().set("min_vitrification_temperature", new ConfigOptionInt(min_temperature_vitrification)); @@ -3223,6 +3227,11 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato // Ugly hack: Do not set the initial extruder if the extruder is primed using the MMU priming towers at the edge of the print bed. file.write(this->set_extruder(initial_extruder_id, 0.)); } + + this->m_objsWithBrim.clear(); + this->m_objSupportsWithBrim.clear(); + m_brim_done = false; + // BBS: set that indicates objs with brim for (auto iter = print.m_brimMap.begin(); iter != print.m_brimMap.end(); ++iter) { if (!iter->second.empty()) @@ -3238,12 +3247,12 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato if (print.calib_params().mode == CalibMode::Calib_PA_Line) { std::string gcode; gcode += ";" + GCodeProcessor::reserved_tag(GCodeProcessor::ETags::Layer_Change) + "\n"; - if ((print.default_object_config().outer_wall_acceleration.value > 0 && print.default_object_config().outer_wall_acceleration.value > 0)) { - gcode += m_writer.set_print_acceleration((unsigned int)floor(print.default_object_config().outer_wall_acceleration.value + 0.5)); + if ((NOZZLE_CONFIG(outer_wall_acceleration) > 0 && NOZZLE_CONFIG(outer_wall_acceleration) > 0)) { + gcode += m_writer.set_print_acceleration((unsigned int)floor(NOZZLE_CONFIG(outer_wall_acceleration) + 0.5)); } - if (print.default_object_config().outer_wall_jerk.value > 0) { - double jerk = print.default_object_config().outer_wall_jerk.value; + if (NOZZLE_CONFIG(outer_wall_jerk) > 0) { + double jerk = NOZZLE_CONFIG(outer_wall_jerk); gcode += m_writer.set_jerk_xy(jerk); } @@ -3326,8 +3335,8 @@ void GCode::_do_export(Print& print, GCodeOutputStream &file, ThumbnailsGenerato file.writeln(printing_by_object_gcode); } // Reset the cooling buffer internal state (the current position, feed rate, accelerations). + m_cooling_buffer->set_current_extruder(initial_extruder_id, get_extruder_id(initial_extruder_id)); m_cooling_buffer->reset(this->writer().get_position()); - m_cooling_buffer->set_current_extruder(initial_extruder_id); // Process all layers of a single object instance (sequential mode) with a parallel pipeline: // Generate G-code, run the filters (vase mode, cooling buffer), run the G-code analyser // and export G-code into file. @@ -3638,6 +3647,13 @@ void GCode::check_placeholder_parser_failed() } } +size_t GCode::cur_extruder_index() const +{ + //TODO: check if the function is duplicated + //just return m_writer.filament()->extruder_id() + return get_extruder_id(m_writer.filament()->id()); +} + size_t GCode::get_extruder_id(unsigned int filament_id) const { if (m_print) { @@ -3933,51 +3949,75 @@ void GCode::print_machine_envelope(GCodeOutputStream &file, Print &print) const auto flavor = print.config().gcode_flavor.value; if ((flavor == gcfMarlinLegacy || flavor == gcfMarlinFirmware || flavor == gcfRepRapFirmware) && print.config().emit_machine_limits_to_gcode.value == true) { + + // Get all physical tool ids current print will use + std::unordered_set used_extruders; + for (const auto& extruder : m_writer.extruders()) { + used_extruders.insert(extruder.extruder_id()); + } + + // Get the max limit value among used extruders + auto get_max_value = [&used_extruders](const std::string key, const ConfigOptionFloats& v) { + unsigned int stride = 1; + if (printer_options_with_variant_2.count(key) > 0) { + stride = 2; + } + + double value = std::numeric_limits::lowest(); + for (unsigned int extruder : used_extruders) { + value = std::max(value, v.values[extruder * stride]); + } + + assert(value > std::numeric_limits::lowest()); + return value; + }; +#define MAX_LIMIT(OPT) get_max_value(#OPT, print.config().OPT) + int factor = flavor == gcfRepRapFirmware ? 60 : 1; // RRF M203 and M566 are in mm/min file.write_format("M201 X%d Y%d Z%d E%d\n", - int(print.config().machine_max_acceleration_x.values.front() + 0.5), - int(print.config().machine_max_acceleration_y.values.front() + 0.5), - int(print.config().machine_max_acceleration_z.values.front() + 0.5), - int(print.config().machine_max_acceleration_e.values.front() + 0.5)); + int(MAX_LIMIT(machine_max_acceleration_x) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_y) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_z) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_e) + 0.5)); file.write_format("M203 X%d Y%d Z%d E%d\n", - int(print.config().machine_max_speed_x.values.front() * factor + 0.5), - int(print.config().machine_max_speed_y.values.front() * factor + 0.5), - int(print.config().machine_max_speed_z.values.front() * factor + 0.5), - int(print.config().machine_max_speed_e.values.front() * factor + 0.5)); + int(MAX_LIMIT(machine_max_speed_x) * factor + 0.5), + int(MAX_LIMIT(machine_max_speed_y) * factor + 0.5), + int(MAX_LIMIT(machine_max_speed_z) * factor + 0.5), + int(MAX_LIMIT(machine_max_speed_e) * factor + 0.5)); // Now M204 - acceleration. This one is quite hairy thanks to how Marlin guys care about // Legacy Marlin should export travel acceleration the same as printing acceleration. // MarlinFirmware has the two separated. int travel_acc = flavor == gcfMarlinLegacy - ? int(print.config().machine_max_acceleration_extruding.values.front() + 0.5) - : int(print.config().machine_max_acceleration_travel.values.front() + 0.5); + ? int(MAX_LIMIT(machine_max_acceleration_extruding) + 0.5) + : int(MAX_LIMIT(machine_max_acceleration_travel) + 0.5); if (flavor == gcfRepRapFirmware) file.write_format("M204 P%d T%d ; sets acceleration (P, T), mm/sec^2\n", - int(print.config().machine_max_acceleration_extruding.values.front() + 0.5), + int(MAX_LIMIT(machine_max_acceleration_extruding) + 0.5), travel_acc); else if (flavor == gcfMarlinFirmware) // New Marlin uses M204 P[print] R[retract] T[travel] file.write_format("M204 P%d R%d T%d ; sets acceleration (P, T) and retract acceleration (R), mm/sec^2\n", - int(print.config().machine_max_acceleration_extruding.values.front() + 0.5), - int(print.config().machine_max_acceleration_retracting.values.front() + 0.5), - int(print.config().machine_max_acceleration_travel.values.front() + 0.5)); + int(MAX_LIMIT(machine_max_acceleration_extruding) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_retracting) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_travel) + 0.5)); else file.write_format("M204 P%d R%d T%d\n", - int(print.config().machine_max_acceleration_extruding.values.front() + 0.5), - int(print.config().machine_max_acceleration_retracting.values.front() + 0.5), + int(MAX_LIMIT(machine_max_acceleration_extruding) + 0.5), + int(MAX_LIMIT(machine_max_acceleration_retracting) + 0.5), travel_acc); assert(is_decimal_separator_point()); file.write_format(flavor == gcfRepRapFirmware ? "M566 X%.2lf Y%.2lf Z%.2lf E%.2lf ; sets the jerk limits, mm/min\n" : "M205 X%.2lf Y%.2lf Z%.2lf E%.2lf ; sets the jerk limits, mm/sec\n", - print.config().machine_max_jerk_x.values.front() * factor, - print.config().machine_max_jerk_y.values.front() * factor, - print.config().machine_max_jerk_z.values.front() * factor, - print.config().machine_max_jerk_e.values.front() * factor); + MAX_LIMIT(machine_max_jerk_x) * factor, + MAX_LIMIT(machine_max_jerk_y) * factor, + MAX_LIMIT(machine_max_jerk_z) * factor, + MAX_LIMIT(machine_max_jerk_e) * factor); // New Marlin uses M205 J[mm] for junction deviation (only apply if it is > 0) - file.write_format(writer().set_junction_deviation(config().machine_max_junction_deviation.values.front()).c_str()); + file.write_format(writer().set_junction_deviation(MAX_LIMIT(machine_max_junction_deviation)).c_str()); // Orca: Override input shaping values if (print.config().input_shaping_emit.value && flavor != gcfMarlinLegacy) { @@ -3990,6 +4030,7 @@ void GCode::print_machine_envelope(GCodeOutputStream &file, Print &print) } } } +#undef MAX_LIMIT } // BBS @@ -4282,7 +4323,8 @@ namespace Skirt { std::map> skirt_loops_per_extruder_out; //For sequential print, the following test may fail when extruding the 2nd and other objects. // assert(skirt_done.empty()); - if (skirt_done.empty() && print.has_skirt() && ! skirt.entities.empty() && layer_tools.has_skirt) { + const bool has_skirt_or_draft_shield = print.has_skirt() || print.has_infinite_skirt(); + if (skirt_done.empty() && has_skirt_or_draft_shield && ! skirt.entities.empty() && layer_tools.has_skirt) { skirt_loops_per_extruder_all_printing(print, skirt, layer_tools, skirt_loops_per_extruder_out); skirt_done.emplace_back(layer_tools.print_z); } @@ -4299,15 +4341,16 @@ namespace Skirt { // Extrude skirt at the print_z of the raft layers and normal object layers // not at the print_z of the interlaced support material layers. std::map> skirt_loops_per_extruder_out; - if (print.has_skirt() && ! skirt.entities.empty() && layer_tools.has_skirt && + const bool has_skirt_or_draft_shield = print.has_skirt() || print.has_infinite_skirt(); + if (has_skirt_or_draft_shield && ! skirt.entities.empty() && layer_tools.has_skirt && // Not enough skirt layers printed yet. //FIXME infinite or high skirt does not make sense for sequential print! (skirt_done.size() < (size_t)print.config().skirt_height.value || print.has_infinite_skirt())) { - bool valid = ! skirt_done.empty() && skirt_done.back() < layer_tools.print_z - EPSILON; - assert(valid); - // This print_z has not been extruded yet (sequential print) - // FIXME: The skirt_done should not be empty at this point. The check is a workaround - if (valid) { + assert(!skirt_done.empty()); + if (skirt_done.empty()) + return skirt_loops_per_extruder_out; + // This print_z has not been extruded yet. + if (skirt_done.back() < layer_tools.print_z - EPSILON) { #if 0 // Prime just the first printing extruder. This is original Slic3r's implementation. skirt_loops_per_extruder_out[layer_tools.extruders.front()] = std::pair(0, print.config().skirt_loops.value); @@ -4315,7 +4358,6 @@ namespace Skirt { // Prime all extruders planned for this layer, see skirt_loops_per_extruder_all_printing(print, skirt, layer_tools, skirt_loops_per_extruder_out); #endif - assert(!skirt_done.empty()); skirt_done.emplace_back(layer_tools.print_z); } } @@ -4382,7 +4424,8 @@ std::string GCode::generate_skirt(const Print &print, const float skirt_start_angle, const LayerTools &layer_tools, const Layer& layer, - unsigned int extruder_id) + unsigned int extruder_id, + std::vector &skirt_done) { bool first_layer = (layer.id() == 0 && abs(layer.bottom_z()) < EPSILON); @@ -4392,8 +4435,8 @@ std::string GCode::generate_skirt(const Print &print, // Map from extruder ID to index of skirt loops to be extruded with that extruder. std::map> skirt_loops_per_extruder; skirt_loops_per_extruder = first_layer ? - Skirt::make_skirt_loops_per_extruder_1st_layer(print, skirt, layer_tools, m_skirt_done) : - Skirt::make_skirt_loops_per_extruder_other_layers(print, skirt, layer_tools, m_skirt_done); + Skirt::make_skirt_loops_per_extruder_1st_layer(print, skirt, layer_tools, skirt_done) : + Skirt::make_skirt_loops_per_extruder_other_layers(print, skirt, layer_tools, skirt_done); if (auto loops_it = skirt_loops_per_extruder.find(extruder_id); loops_it != skirt_loops_per_extruder.end()) { const std::pair loops = loops_it->second; @@ -4401,7 +4444,7 @@ std::string GCode::generate_skirt(const Print &print, set_origin(unscaled(offset)); m_avoid_crossing_perimeters.use_external_mp(); - Flow layer_skirt_flow = print.skirt_flow().with_height(float(m_skirt_done.back() - (m_skirt_done.size() == 1 ? 0. : m_skirt_done[m_skirt_done.size() - 2]))); + Flow layer_skirt_flow = print.skirt_flow().with_height(float(skirt_done.back() - (skirt_done.size() == 1 ? 0. : skirt_done[skirt_done.size() - 2]))); double mm3_per_mm = layer_skirt_flow.mm3_per_mm(); // Decide where to start looping: // - If it’s the first layer or if we do NOT want a single-wall skirt/draft shield, @@ -4425,10 +4468,10 @@ std::string GCode::generate_skirt(const Print &print, if (first_layer && i==loops.first) { //set skirt start point location const Point desired_start_point = Skirt::find_start_point(loop, skirt_start_angle); - gcode += this->extrude_loop(loop, "skirt", m_config.support_speed.value, {}, &desired_start_point); + gcode += this->extrude_loop(loop, "skirt", NOZZLE_CONFIG(support_speed), {}, &desired_start_point); } else - gcode += this->extrude_loop(loop, "skirt", m_config.support_speed.value); + gcode += this->extrude_loop(loop, "skirt", NOZZLE_CONFIG(support_speed)); // If we only want a single wall on non-first layers, break now if (!first_layer && print.m_config.single_loop_draft_shield) { @@ -4443,6 +4486,84 @@ std::string GCode::generate_skirt(const Print &print, return gcode; } +static size_t find_skirt_brim_group_idx(const Print& print, ObjectID object_id) +{ + const std::vector& groups = print.skirt_brim_groups(); + for (size_t idx = 0; idx < groups.size(); ++idx) + if (std::find(groups[idx].object_ids.begin(), groups[idx].object_ids.end(), object_id) != groups[idx].object_ids.end()) + return idx; + return size_t(-1); +} + +std::string GCode::generate_object_skirt_group(const Print &print, + const PrintObject &object, + const LayerTools &layer_tools, + const Layer& layer, + unsigned int extruder_id) +{ + if (print.config().skirt_type != stPerObject || print.skirt_brim_groups().empty()) + return {}; + + const size_t group_idx = find_skirt_brim_group_idx(print, object.id()); + if (group_idx == size_t(-1) || print.skirt_brim_groups()[group_idx].skirt.empty()) + return {}; + + LayerTools object_skirt_tools = layer_tools; + object_skirt_tools.extruders = { extruder_id }; + object_skirt_tools.has_skirt = true; + + return generate_skirt(print, print.skirt_brim_groups()[group_idx].skirt, Point(0, 0), object.config().skirt_start_angle, + object_skirt_tools, layer, extruder_id, m_skirt_group_done[group_idx]); +} + +std::string GCode::generate_object_brim(const Print &print, const PrintObject &object, bool first_layer) +{ + if (!first_layer) + return {}; + + auto emit_brim = [this](const ExtrusionEntityCollection& brim, const std::vector& object_ids) { + std::string gcode; + const bool already_emitted = std::none_of(object_ids.begin(), object_ids.end(), [this](ObjectID object_id) { + return m_objsWithBrim.find(object_id) != m_objsWithBrim.end(); + }); + if (already_emitted || brim.empty()) + return gcode; + + this->set_origin(0., 0.); + m_avoid_crossing_perimeters.use_external_mp(); + for (const ExtrusionEntity* ee : brim.entities) + if (ee != nullptr) + gcode += this->extrude_entity(*ee, "brim", NOZZLE_CONFIG(support_speed)); + m_avoid_crossing_perimeters.use_external_mp(false); + m_avoid_crossing_perimeters.disable_once(); + for (ObjectID object_id : object_ids) + m_objsWithBrim.erase(object_id); + return gcode; + }; + + const bool has_per_object_skirt_or_shield = print.config().skirt_type == stPerObject && + (print.has_skirt() || print.has_infinite_skirt()); + if (print.config().combine_brims && !has_per_object_skirt_or_shield && + print.config().print_sequence != PrintSequence::ByObject && print.m_brimMap.size() == 1) { + const auto brim_it = print.m_brimMap.begin(); + return emit_brim(brim_it->second, { brim_it->first }); + } + + const size_t group_idx = find_skirt_brim_group_idx(print, object.id()); + if (group_idx != size_t(-1)) { + std::string gcode; + for (const Print::SkirtBrimGroup::Brim& brim : print.skirt_brim_groups()[group_idx].brims) + if (std::find(brim.object_ids.begin(), brim.object_ids.end(), object.id()) != brim.object_ids.end()) + gcode += emit_brim(brim.brim, brim.object_ids); + return gcode; + } + + const auto brim_it = print.m_brimMap.find(object.id()); + if (brim_it == print.m_brimMap.end()) + return {}; + return emit_brim(brim_it->second, { object.id() }); +} + // In sequential mode, process_layer is called once per each object and its copy, // therefore layers will contain a single entry and single_object_instance_idx will point to the copy of the object. // In non-sequential mode, process_layer is called per each print_z height with all object and support layers accumulated. @@ -4554,8 +4675,6 @@ LayerResult GCode::process_layer( } PrinterStructure printer_structure = m_config.printer_structure.value; - PrintSequence print_sequence = m_config.print_sequence; - bool sequence_by_layer = print_sequence == PrintSequence::ByLayer; bool is_i3_printer = printer_structure == PrinterStructure::psI3; bool is_multi_extruder = m_config.nozzle_diameter.size() > 1; @@ -4613,12 +4732,12 @@ LayerResult GCode::process_layer( } case CalibMode::Calib_VFA_Tower: { auto _speed = print.calib_params().start + std::floor(print_z / 5.0) * print.calib_params().step; - m_calib_config.set_key_value("outer_wall_speed", new ConfigOptionFloat(std::round(_speed))); + m_calib_config.set_key_value("outer_wall_speed", new ConfigOptionFloatsNullable({std::round(_speed)})); break; } case CalibMode::Calib_Vol_speed_Tower: { auto _speed = print.calib_params().start + print_z * print.calib_params().step; - m_calib_config.set_key_value("outer_wall_speed", new ConfigOptionFloat(std::round(_speed))); + m_calib_config.set_key_value("outer_wall_speed", new ConfigOptionFloatsNullable({std::round(_speed)})); break; } case CalibMode::Calib_Retraction_tower: { @@ -4675,16 +4794,16 @@ LayerResult GCode::process_layer( //BBS if (first_layer) { // Orca: we don't need to optimize the Klipper as only set once - if (m_config.default_acceleration.value > 0 && m_config.initial_layer_acceleration.value > 0) { - gcode += m_writer.set_print_acceleration((unsigned int)floor(m_config.initial_layer_acceleration.value + 0.5)); + if (NOZZLE_CONFIG(default_acceleration) > 0 && NOZZLE_CONFIG(initial_layer_acceleration) > 0) { + gcode += m_writer.set_print_acceleration((unsigned int)floor(NOZZLE_CONFIG(initial_layer_acceleration) + 0.5)); } - if (m_config.default_jerk.value > 0 && m_config.initial_layer_jerk.value > 0) { - gcode += m_writer.set_jerk_xy(m_config.initial_layer_jerk.value); + if (NOZZLE_CONFIG(default_jerk) > 0 && NOZZLE_CONFIG(initial_layer_jerk) > 0) { + gcode += m_writer.set_jerk_xy(NOZZLE_CONFIG(initial_layer_jerk)); } - if (m_writer.get_gcode_flavor() == gcfMarlinFirmware && m_config.default_junction_deviation.value > 0) { - gcode += m_writer.set_junction_deviation(m_config.default_junction_deviation.value); + if (m_writer.get_gcode_flavor() == gcfMarlinFirmware && NOZZLE_CONFIG(default_junction_deviation) > 0) { + gcode += m_writer.set_junction_deviation(NOZZLE_CONFIG(default_junction_deviation)); } } @@ -4705,12 +4824,12 @@ LayerResult GCode::process_layer( } // Reset acceleration at sencond layer // Orca: only set once, don't need to call set_accel_and_jerk - if (m_config.default_acceleration.value > 0 && m_config.initial_layer_acceleration.value > 0) { - gcode += m_writer.set_print_acceleration((unsigned int) floor(m_config.default_acceleration.value + 0.5)); + if (NOZZLE_CONFIG(default_acceleration) > 0 && NOZZLE_CONFIG(initial_layer_acceleration) > 0) { + gcode += m_writer.set_print_acceleration((unsigned int) floor(NOZZLE_CONFIG(default_acceleration) + 0.5)); } - if (m_config.default_jerk.value > 0 && m_config.initial_layer_jerk.value > 0) { - gcode += m_writer.set_jerk_xy(m_config.default_jerk.value); + if (NOZZLE_CONFIG(default_jerk) > 0 && NOZZLE_CONFIG(initial_layer_jerk) > 0) { + gcode += m_writer.set_jerk_xy(NOZZLE_CONFIG(default_jerk)); } // Transition from 1st to 2nd layer. Adjust nozzle temperatures as prescribed by the nozzle dependent @@ -4765,8 +4884,8 @@ LayerResult GCode::process_layer( for (const auto &layer_to_print : layers) { if (layer_to_print.object_layer) { const auto& regions = layer_to_print.object_layer->regions(); - const bool enable_overhang_speed = std::any_of(regions.begin(), regions.end(), [](const LayerRegion* r) { - return r->has_extrusions() && r->region().config().enable_overhang_speed; + const bool enable_overhang_speed = std::any_of(regions.begin(), regions.end(), [this](const LayerRegion* r) { + return r->has_extrusions() && r->region().config().enable_overhang_speed.get_at(cur_extruder_index()); }); if (enable_overhang_speed) { m_extrusion_quality_estimator.prepare_for_new_layer(layer_to_print.original_object, @@ -5151,27 +5270,17 @@ LayerResult GCode::process_layer( bool has_insert_wrapping_detection_gcode = false; // Extrude the skirt, brim, support, perimeters, infill ordered by the extruders. + m_skirt_group_done.resize(print.skirt_brim_groups().size()); for (unsigned int extruder_id : layer_tools.extruders) { - if ((print.config().skirt_type == stCombined || - (print.config().skirt_type == stPerObject && print.config().print_sequence == PrintSequence::ByLayer)) && - !print.skirt_groups().empty()) { - bool skirt_generated_for_current_print_z = false; - for (const ExtrusionEntityCollection& skirt_group : print.skirt_groups()) { - if (skirt_group.empty()) + if (print.config().skirt_type == stCombined && !print.skirt_brim_groups().empty()) { + for (size_t group_idx = 0; group_idx < print.skirt_brim_groups().size(); ++group_idx) { + const Print::SkirtBrimGroup& group = print.skirt_brim_groups()[group_idx]; + if (group.skirt.empty()) continue; - // Orca: each grouped skirt is emitted as its own collection so higher skirt layers - // follow the same per-group behavior as the first layer. - if (first_layer) - m_skirt_done.clear(); - else if (skirt_generated_for_current_print_z && !m_skirt_done.empty()) - m_skirt_done.pop_back(); - - std::string skirt_gcode = generate_skirt(print, skirt_group, Point(0, 0), layer.object()->config().skirt_start_angle, - layer_tools, layer, extruder_id); - if (!skirt_gcode.empty()) - skirt_generated_for_current_print_z = true; + std::string skirt_gcode = generate_skirt(print, group.skirt, Point(0, 0), layer.object()->config().skirt_start_angle, + layer_tools, layer, extruder_id, m_skirt_group_done[group_idx]); gcode += std::move(skirt_gcode); } } @@ -5245,108 +5354,20 @@ LayerResult GCode::process_layer( std::vector &instances_to_print = filament_to_print_instances[extruder_id]; - // BBS - if (print.config().skirt_type == stPerObject && - print.config().print_sequence == PrintSequence::ByObject && - !layer.object()->object_skirt().empty() && - ((layer.id() < print.config().skirt_height || print.config().draft_shield == DraftShield::dsEnabled)) - ) - { - for (InstanceToPrint& instance_to_print : instances_to_print) { - - if (instance_to_print.print_object.object_skirt().empty()) - continue; - - if (this->m_objSupportsWithBrim.find(instance_to_print.print_object.id()) != this->m_objSupportsWithBrim.end() && - print.m_supportBrimMap.at(instance_to_print.print_object.id()).entities.size() > 0) - continue; - - if (this->m_objsWithBrim.find(instance_to_print.print_object.id()) != this->m_objsWithBrim.end() && - print.m_brimMap.at(instance_to_print.print_object.id()).entities.size() > 0) - continue; - if (first_layer) - m_skirt_done.clear(); - - if (layer.id() == 1 && m_skirt_done.size() > 1) - m_skirt_done.erase(m_skirt_done.begin()+1,m_skirt_done.end()); - - const Point& offset = instance_to_print.print_object.instances()[instance_to_print.instance_id].shift; - gcode += generate_skirt(print, instance_to_print.print_object.object_skirt(), offset, instance_to_print.print_object.config().skirt_start_angle, layer_tools, layer, extruder_id); - } - } - - // Orca: Print unified global brim after the skirt and before any object. - // Only do this if `combine_brims` is enabled and we are printing by layer. - if (first_layer && sequence_by_layer && m_config.combine_brims && !print.m_brimMap.empty()) { - const ObjectID unified_object_id = [&]() -> ObjectID { - ObjectID id; - for (const auto& [obj_id, brim] : print.m_brimMap) { - const bool has_printable_entities = std::any_of(brim.entities.begin(), brim.entities.end(), - [](const ExtrusionEntity* ee) { return ee != nullptr; }); - if (!has_printable_entities) - continue; - - if (id.valid()) - return ObjectID(); - - id = obj_id; - } - return id; - }(); - - if (unified_object_id.valid() && this->m_objsWithBrim.find(unified_object_id) != this->m_objsWithBrim.end()) { - const ExtrusionEntityCollection& unified_brim = print.m_brimMap.at(unified_object_id); - this->set_origin(0., 0.); - for (const ExtrusionEntity* ee : unified_brim.entities) - if (ee != nullptr) - gcode += this->extrude_entity(*ee, "brim", m_config.support_speed.value); - - // Mark brim as printed for this object to avoid per-object brim emission later. - this->m_objsWithBrim.erase(unified_object_id); - } - } - // We are almost ready to print. However, we must go through all the objects twice to print the overridden extrusions first (infill/perimeter wiping feature): std::vector by_region_per_copy_cache; for (int print_wipe_extrusions = is_anything_overridden; print_wipe_extrusions>=0; --print_wipe_extrusions) { if (is_anything_overridden && print_wipe_extrusions == 0) gcode+="; PURGING FINISHED\n"; - bool skirt_generated_for_current_print_z = false; - for (InstanceToPrint &instance_to_print : instances_to_print) { - if (print.config().skirt_type == stPerObject && - !instance_to_print.print_object.object_skirt().empty() && - print.config().print_sequence == PrintSequence::ByLayer) - { - const LayerToPrint& layer_to_print = layers[instance_to_print.layer_id]; - const Layer* skirt_layer = layer_to_print.object_layer; - if (skirt_layer == nullptr && layer_to_print.support_layer != nullptr && - layer_to_print.support_layer->id() < layer_to_print.support_layer->object()->slicing_parameters().raft_layers()) { - skirt_layer = layer_to_print.support_layer; - } - - if (skirt_layer != nullptr && - (skirt_layer->id() < print.config().skirt_height || print.config().draft_shield == DraftShield::dsEnabled)) { - const bool skirt_first_layer = (skirt_layer->id() == 0 && std::abs(skirt_layer->bottom_z()) < EPSILON); - if (skirt_first_layer) - m_skirt_done.clear(); - - if (skirt_generated_for_current_print_z && !m_skirt_done.empty()) - m_skirt_done.pop_back(); - - const Point& offset = instance_to_print.print_object.instances()[instance_to_print.instance_id].shift; - std::string skirt_gcode = generate_skirt(print, instance_to_print.print_object.object_skirt(), offset, - instance_to_print.print_object.config().skirt_start_angle, layer_tools, - *skirt_layer, extruder_id); - if (!skirt_gcode.empty()) - skirt_generated_for_current_print_z = true; - gcode += std::move(skirt_gcode); - } - } - const auto& inst = instance_to_print.print_object.instances()[instance_to_print.instance_id]; const LayerToPrint &layer_to_print = layers[instance_to_print.layer_id]; + if (print_wipe_extrusions == (is_anything_overridden ? 1 : 0)) { + gcode += generate_object_skirt_group(print, instance_to_print.print_object, layer_tools, layer, extruder_id); + gcode += generate_object_brim(print, instance_to_print.print_object, first_layer); + } + // To control print speed of the 1st object layer printed over raft interface. bool object_layer_over_raft = layer_to_print.object_layer && layer_to_print.object_layer->id() > 0 && instance_to_print.print_object.slicing_parameters().raft_layers() == layer_to_print.object_layer->id(); @@ -5404,7 +5425,7 @@ LayerResult GCode::process_layer( this->set_origin(0., 0.); m_avoid_crossing_perimeters.use_external_mp(); for (const ExtrusionEntity* ee : print.m_supportBrimMap.at(instance_to_print.print_object.id()).entities) { - gcode += this->extrude_entity(*ee, "brim", m_config.support_speed.value); + gcode += this->extrude_entity(*ee, "brim", NOZZLE_CONFIG(support_speed)); } m_avoid_crossing_perimeters.use_external_mp(false); // Allow a straight travel move to the first object point. @@ -5445,20 +5466,6 @@ LayerResult GCode::process_layer( // Sequential tool path ordering of multiple parts within the same object, aka. perimeter tracking (#5511) for (ObjectByExtruder::Island &island : instance_to_print.object_by_extruder.islands) { const auto& by_region_specific = is_anything_overridden ? island.by_region_per_copy(by_region_per_copy_cache, static_cast(instance_to_print.instance_id), extruder_id, print_wipe_extrusions != 0) : island.by_region; - //BBS: add brim by obj by extruder - if (first_layer) { - if (this->m_objsWithBrim.find(instance_to_print.print_object.id()) != this->m_objsWithBrim.end() && !print_wipe_extrusions) { - this->set_origin(0., 0.); - m_avoid_crossing_perimeters.use_external_mp(); - for (const ExtrusionEntity* ee : print.m_brimMap.at(instance_to_print.print_object.id()).entities) { - gcode += this->extrude_entity(*ee, "brim", m_config.support_speed.value); - } - m_avoid_crossing_perimeters.use_external_mp(false); - // Allow a straight travel move to the first object point. - m_avoid_crossing_perimeters.disable_once(); - this->m_objsWithBrim.erase(instance_to_print.print_object.id()); - } - } // When starting a new object, use the external motion planner for the first travel move. const Point& offset = instance_to_print.print_object.instances()[instance_to_print.instance_id].shift; std::pair this_object_copy(&instance_to_print.print_object, offset); @@ -5832,11 +5839,11 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, // SoftFever: check loop lenght for small perimeter. double small_peri_speed = -1; - if (speed == -1 && loop.length() <= SMALL_PERIMETER_LENGTH(m_config.small_perimeter_threshold.value)) { - if(m_config.small_perimeter_speed == 0) - small_peri_speed = m_config.outer_wall_speed * 0.5; + if (speed == -1 && loop.length() <= SMALL_PERIMETER_LENGTH(NOZZLE_CONFIG(small_perimeter_threshold))) { + if(NOZZLE_CONFIG(small_perimeter_speed).value == 0) + small_peri_speed = NOZZLE_CONFIG(outer_wall_speed) * 0.5; else - small_peri_speed = m_config.small_perimeter_speed.get_abs_value(m_config.outer_wall_speed); + small_peri_speed = NOZZLE_CONFIG(small_perimeter_speed).get_abs_value(NOZZLE_CONFIG(outer_wall_speed)); } // extrude along the path @@ -5918,8 +5925,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, const auto speed_for_path = [&speed, &small_peri_speed](const ExtrusionPath& path) { // don't apply small perimeter setting for overhangs/bridges/non-perimeters - const bool is_small_peri = is_perimeter(path.role()) && !is_bridge(path.role()) && small_peri_speed > 0; - return is_small_peri ? small_peri_speed : speed; + const bool is_small_small_perimeter = small_peri_speed > 0 && !is_bridge(path.role()) && is_perimeter(path.role()); + return is_small_small_perimeter ? small_peri_speed : speed; }; @@ -5941,8 +5948,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, // Orca: end of multipath average mm3_per_mm value calculation if (!enable_seam_slope) { - for (ExtrusionPaths::iterator path = paths.begin(); path != paths.end(); ++path) { - gcode += this->_extrude(*path, description, speed_for_path(*path)); + for (const ExtrusionPath& path : paths) { + gcode += this->_extrude(path, description, speed_for_path(path)); // Orca: Adaptive PA - dont adapt PA after the first multipath extrusion is completed // as we have already set the PA value to the average flow over the totality of the path // in the first extrude move @@ -5978,8 +5985,8 @@ std::string GCode::extrude_loop(const ExtrusionLoop& loop_ref, new_loop.clip_slope(seam_gap); // Then extrude it - for (const auto& p : new_loop.get_all_paths()) { - gcode += this->_extrude(*p, description, speed_for_path(*p)); + for (const ExtrusionPath* path : new_loop.get_all_paths()) { + gcode += this->_extrude(*path, description, speed_for_path(*path)); // Orca: Adaptive PA - dont adapt PA after the first pultipath extrusion is completed // as we have already set the PA value to the average flow over the totality of the path // in the first extrude move @@ -6135,7 +6142,7 @@ std::string GCode::extrude_path(const ExtrusionPath& path, const std::string& de std::string gcode = this->_extrude(path, description, speed); if (m_wipe.enable && FILAMENT_CONFIG(wipe)) { m_wipe.path = path.polyline.to_polyline(); - if (is_tree(this->config().support_type) && (path.role() == erSupportMaterial || path.role() == erSupportMaterialInterface || path.role() == erSupportTransition)) { + if (is_tree(this->config().support_type) && is_support(path.role())) { if ((m_wipe.path.first_point() - m_wipe.path.last_point()).cast().norm() > scale_(0.2)) { double min_dist = scale_(0.2); int i = 0; @@ -6203,13 +6210,31 @@ std::string GCode::extrude_infill(const Print &print, const std::vector SMALL_PERIMETER_LENGTH(NOZZLE_CONFIG(small_support_perimeter_threshold))) + return default_speed; + + double small_perimeter_speed = -1.0; + + const auto base_speed = (role == erSupportMaterialInterface) + ? NOZZLE_CONFIG(support_interface_speed) : NOZZLE_CONFIG(support_speed); + + if (NOZZLE_CONFIG(small_support_perimeter_speed).value == 0) + small_perimeter_speed = base_speed * 0.5; + else + small_perimeter_speed = NOZZLE_CONFIG(small_support_perimeter_speed).get_abs_value(base_speed); + + return small_perimeter_speed > 0 ? small_perimeter_speed : default_speed; + }; + std::string gcode; - if (! support_fills.entities.empty()) { + if (!support_fills.entities.empty()) { ExtrusionEntitiesPtr extrusions; extrusions.reserve(support_fills.entities.size()); @@ -6226,28 +6251,27 @@ std::string GCode::extrude_support(const ExtrusionEntityCollection &support_fill if (!support_fills.no_sort) chain_and_reorder_extrusion_entities(extrusions, m_last_pos.to_point()); - const double support_speed = m_config.support_speed.value; - const double support_interface_speed = m_config.get_abs_value("support_interface_speed"); for (const ExtrusionEntity *ee : extrusions) { ExtrusionRole role = ee->role(); - assert(role == erSupportMaterial || role == erSupportMaterialInterface || role == erSupportTransition || role == erIroning); + assert(is_support(role) || role == erIroning); + const char* label = (role == erSupportMaterial) ? support_label : ((role == erSupportMaterialInterface) ? support_interface_label : ((role == erIroning) ? support_ironing_label : support_transition_label)); - // BBS - //const double speed = (role == erSupportMaterial) ? support_speed : support_interface_speed; - const double speed = -1.0; + const ExtrusionPath* path = dynamic_cast(ee); const ExtrusionMultiPath* multipath = dynamic_cast(ee); const ExtrusionLoop* loop = dynamic_cast(ee); const ExtrusionEntityCollection* collection = dynamic_cast(ee); - if (path) - gcode += this->extrude_path(*path, label, speed); + + if (path) { + gcode += extrude_path(*path, label, speed_for_path(path->length(), role)); + } else if (multipath) { - gcode += this->extrude_multi_path(*multipath, label, speed); + gcode += extrude_multi_path(*multipath, label, speed_for_path(multipath->length(), role)); } else if (loop) { - gcode += this->extrude_loop(*loop, label, speed); + gcode += extrude_loop(*loop, label, speed_for_path(loop->length(), role)); } else if (collection) { gcode += extrude_support(*collection, support_extrusion_role); @@ -6438,47 +6462,47 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, unsigned int acceleration_i = 0; double jerk = 0; // adjust acceleration - if (m_config.default_acceleration.value > 0) { + if (NOZZLE_CONFIG(default_acceleration) > 0) { double acceleration; - if (this->on_first_layer() && m_config.initial_layer_acceleration.value > 0) { - acceleration = m_config.initial_layer_acceleration.value; + if (this->on_first_layer() && NOZZLE_CONFIG(initial_layer_acceleration) > 0) { + acceleration = NOZZLE_CONFIG(initial_layer_acceleration); #if 0 } else if (this->object_layer_over_raft() && m_config.first_layer_acceleration_over_raft.value > 0) { acceleration = m_config.first_layer_acceleration_over_raft.value; #endif - } else if (m_config.get_abs_value("bridge_acceleration") > 0 && is_bridge(path.role())) { - acceleration = m_config.get_abs_value("bridge_acceleration"); - } else if (m_config.get_abs_value("sparse_infill_acceleration") > 0 && (path.role() == erInternalInfill)) { - acceleration = m_config.get_abs_value("sparse_infill_acceleration"); - } else if (m_config.get_abs_value("internal_solid_infill_acceleration") > 0 && (path.role() == erSolidInfill)) { - acceleration = m_config.get_abs_value("internal_solid_infill_acceleration"); - } else if (m_config.outer_wall_acceleration.value > 0 && is_external_perimeter(path.role())) { - acceleration = m_config.outer_wall_acceleration.value; - } else if (m_config.inner_wall_acceleration.value > 0 && is_internal_perimeter(path.role())) { - acceleration = m_config.inner_wall_acceleration.value; - } else if (m_config.top_surface_acceleration.value > 0 && is_top_surface(path.role())) { - acceleration = m_config.top_surface_acceleration.value; + } else if (m_config.get_abs_value_at("bridge_acceleration", cur_extruder_index()) > 0 && is_bridge(path.role())) { + acceleration = m_config.get_abs_value_at("bridge_acceleration", cur_extruder_index()); + } else if (m_config.get_abs_value_at("sparse_infill_acceleration", cur_extruder_index()) > 0 && (path.role() == erInternalInfill)) { + acceleration = m_config.get_abs_value_at("sparse_infill_acceleration", cur_extruder_index()); + } else if (m_config.get_abs_value_at("internal_solid_infill_acceleration", cur_extruder_index()) > 0 && (path.role() == erSolidInfill)) { + acceleration = m_config.get_abs_value_at("internal_solid_infill_acceleration", cur_extruder_index()); + } else if (NOZZLE_CONFIG(outer_wall_acceleration) > 0 && is_external_perimeter(path.role())) { + acceleration = NOZZLE_CONFIG(outer_wall_acceleration); + } else if (NOZZLE_CONFIG(inner_wall_acceleration) > 0 && is_internal_perimeter(path.role())) { + acceleration = NOZZLE_CONFIG(inner_wall_acceleration); + } else if (NOZZLE_CONFIG(top_surface_acceleration) > 0 && is_top_surface(path.role())) { + acceleration = NOZZLE_CONFIG(top_surface_acceleration); } else { - acceleration = m_config.default_acceleration.value; + acceleration = NOZZLE_CONFIG(default_acceleration); } acceleration_i = (unsigned int)floor(acceleration + 0.5); } // adjust X Y jerk - if (m_config.default_jerk.value > 0) { - if (this->on_first_layer() && m_config.initial_layer_jerk.value > 0) { - jerk = m_config.initial_layer_jerk.value; - } else if (m_config.outer_wall_jerk.value > 0 && is_external_perimeter(path.role())) { - jerk = m_config.outer_wall_jerk.value; - } else if (m_config.inner_wall_jerk.value > 0 && is_internal_perimeter(path.role())) { - jerk = m_config.inner_wall_jerk.value; - } else if (m_config.top_surface_jerk.value > 0 && is_top_surface(path.role())) { - jerk = m_config.top_surface_jerk.value; - } else if (m_config.infill_jerk.value > 0 && is_infill(path.role())) { - jerk = m_config.infill_jerk.value; + if (NOZZLE_CONFIG(default_jerk) > 0) { + if (this->on_first_layer() && NOZZLE_CONFIG(initial_layer_jerk) > 0) { + jerk = NOZZLE_CONFIG(initial_layer_jerk); + } else if (NOZZLE_CONFIG(outer_wall_jerk) > 0 && is_external_perimeter(path.role())) { + jerk = NOZZLE_CONFIG(outer_wall_jerk); + } else if (NOZZLE_CONFIG(inner_wall_jerk) > 0 && is_internal_perimeter(path.role())) { + jerk = NOZZLE_CONFIG(inner_wall_jerk); + } else if (NOZZLE_CONFIG(top_surface_jerk) > 0 && is_top_surface(path.role())) { + jerk = NOZZLE_CONFIG(top_surface_jerk); + } else if (NOZZLE_CONFIG(infill_jerk) > 0 && is_infill(path.role())) { + jerk = NOZZLE_CONFIG(infill_jerk); } else { - jerk = m_config.default_jerk.value; + jerk = NOZZLE_CONFIG(default_jerk); } } @@ -6541,38 +6565,36 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, // set speed if (speed == -1) { if (path.role() == erPerimeter) { - speed = m_config.get_abs_value("inner_wall_speed"); + speed = NOZZLE_CONFIG(inner_wall_speed); if (sloped) { - speed = std::min(speed, m_config.scarf_joint_speed.get_abs_value(m_config.get_abs_value("inner_wall_speed"))); + speed = std::min(speed, m_config.scarf_joint_speed.get_abs_value(speed)); } } else if (path.role() == erExternalPerimeter) { - speed = m_config.get_abs_value("outer_wall_speed"); + speed = NOZZLE_CONFIG(outer_wall_speed); if (sloped) { - speed = std::min(speed, m_config.scarf_joint_speed.get_abs_value(m_config.get_abs_value("outer_wall_speed"))); + speed = std::min(speed, m_config.scarf_joint_speed.get_abs_value(speed)); } } else if(path.role() == erInternalBridgeInfill) { - speed = m_config.get_abs_value("internal_bridge_speed"); + speed = m_config.get_abs_value_at("internal_bridge_speed", cur_extruder_index()); } else if (path.role() == erOverhangPerimeter || path.role() == erSupportTransition || path.role() == erBridgeInfill) { - speed = m_config.get_abs_value("bridge_speed"); + speed = NOZZLE_CONFIG(bridge_speed); } else if (path.role() == erInternalInfill) { - speed = m_config.get_abs_value("sparse_infill_speed"); + speed = NOZZLE_CONFIG(sparse_infill_speed); } else if (path.role() == erSolidInfill) { - speed = m_config.get_abs_value("internal_solid_infill_speed"); + speed = NOZZLE_CONFIG(internal_solid_infill_speed); } else if (path.role() == erTopSolidInfill) { - speed = m_config.get_abs_value("top_surface_speed"); + speed = NOZZLE_CONFIG(top_surface_speed); } else if (path.role() == erIroning) { speed = m_config.get_abs_value("ironing_speed"); } else if (path.role() == erBottomSurface) { - speed = m_config.get_abs_value("initial_layer_infill_speed"); + speed = NOZZLE_CONFIG(initial_layer_infill_speed); } else if (path.role() == erGapFill) { - speed = m_config.get_abs_value("gap_infill_speed"); - } - else if (path.role() == erSupportMaterial || - path.role() == erSupportMaterialInterface) { - const double support_speed = m_config.support_speed.value; - const double support_interface_speed = m_config.get_abs_value("support_interface_speed"); - speed = (path.role() == erSupportMaterial) ? support_speed : support_interface_speed; + speed = NOZZLE_CONFIG(gap_infill_speed); + } else if (path.role() == erSupportMaterial) { + speed = NOZZLE_CONFIG(support_speed); + } else if (path.role() == erSupportMaterialInterface) { + speed = NOZZLE_CONFIG(support_interface_speed); } else { throw Slic3r::InvalidArgument("Invalid speed"); } @@ -6592,16 +6614,17 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, //BBS: for solid infill of first layer, speed can be higher as long as //wall lines have be attached if (path.role() != erBottomSurface) { - speed = is_perimeter(path.role()) ? m_config.get_abs_value("initial_layer_speed") : - m_config.get_abs_value("initial_layer_infill_speed"); + const bool use_first_layer_speed = is_perimeter(path.role()) || path.role() == erBrim; + speed = use_first_layer_speed ? NOZZLE_CONFIG(initial_layer_speed) : + NOZZLE_CONFIG(initial_layer_infill_speed); } } else if (m_config.slow_down_layers > 1 && m_config.raft_layers == 0) { if (_layer > 0 && _layer < m_config.slow_down_layers) { const auto first_layer_speed = is_perimeter(path.role()) - ? m_config.get_abs_value("initial_layer_speed") - : m_config.get_abs_value("initial_layer_infill_speed"); + ? NOZZLE_CONFIG(initial_layer_speed) + : NOZZLE_CONFIG(initial_layer_infill_speed); if (first_layer_speed < speed) { speed = std::min( speed, @@ -6613,8 +6636,8 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, if (_layer > m_config.raft_layers && (_layer - m_config.raft_layers) < m_config.slow_down_layers) { const auto first_layer_speed - = is_perimeter(path.role()) ? m_config.get_abs_value("initial_layer_speed") : - m_config.get_abs_value("initial_layer_infill_speed"); + = is_perimeter(path.role()) ? NOZZLE_CONFIG(initial_layer_speed) : + NOZZLE_CONFIG(initial_layer_infill_speed); if (first_layer_speed < speed) { speed = std::min(speed, Slic3r::lerp(first_layer_speed, speed, (double) (_layer - m_config.raft_layers) / m_config.slow_down_layers)); @@ -6680,10 +6703,10 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, bool variable_speed = false; std::vector new_points {}; - if (m_config.enable_overhang_speed && !this->on_first_layer() && !object_layer_over_raft() && + if (NOZZLE_CONFIG(enable_overhang_speed) && !this->on_first_layer() && !object_layer_over_raft() && (is_bridge(path.role()) || is_perimeter(path.role()))) { bool is_external = is_external_perimeter(path.role()); - double ref_speed = is_external ? m_config.get_abs_value("outer_wall_speed") : m_config.get_abs_value("inner_wall_speed"); + double ref_speed = is_external ? NOZZLE_CONFIG(outer_wall_speed) : NOZZLE_CONFIG(inner_wall_speed); if (ref_speed == 0) ref_speed = FILAMENT_CONFIG(filament_max_volumetric_speed) / _mm3_per_mm; @@ -6696,46 +6719,46 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description, ConfigOptionPercents overhang_overlap_levels({90, 75, 50, 25, 13, 0}); - if (m_config.slowdown_for_curled_perimeters){ + if (NOZZLE_CONFIG(slowdown_for_curled_perimeters)){ ConfigOptionFloatsOrPercents dynamic_overhang_speeds( {FloatOrPercent{100, true}, - (m_config.get_abs_value("overhang_1_4_speed", ref_speed) < 0.5) ? + (NOZZLE_CONFIG(overhang_1_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_1_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_2_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_1_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_2_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_2_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_3_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_2_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_3_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_3_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_4_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_3_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_4_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_4_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_4_4_speed", ref_speed) * 100 / ref_speed, true}}); + FloatOrPercent{NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}}); new_points = m_extrusion_quality_estimator.estimate_extrusion_quality(path, overhang_overlap_levels, dynamic_overhang_speeds, - ref_speed, speed, m_config.slowdown_for_curled_perimeters); + ref_speed, speed, NOZZLE_CONFIG(slowdown_for_curled_perimeters)); }else{ ConfigOptionFloatsOrPercents dynamic_overhang_speeds( {FloatOrPercent{100, true}, - (m_config.get_abs_value("overhang_1_4_speed", ref_speed) < 0.5) ? + (NOZZLE_CONFIG(overhang_1_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_1_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_2_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_1_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_2_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_2_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_3_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_2_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_3_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_3_4_speed", ref_speed) * 100 / ref_speed, true}, - (m_config.get_abs_value("overhang_4_4_speed", ref_speed) < 0.5) ? + FloatOrPercent{NOZZLE_CONFIG(overhang_3_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + (NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) < 0.5) ? FloatOrPercent{100, true} : - FloatOrPercent{m_config.get_abs_value("overhang_4_4_speed", ref_speed) * 100 / ref_speed, true}, - FloatOrPercent{m_config.get_abs_value("bridge_speed") * 100 / ref_speed, true}}); + FloatOrPercent{NOZZLE_CONFIG(overhang_4_4_speed).get_abs_value(ref_speed) * 100 / ref_speed, true}, + FloatOrPercent{NOZZLE_CONFIG(bridge_speed) * 100 / ref_speed, true}}); new_points = m_extrusion_quality_estimator.estimate_extrusion_quality(path, overhang_overlap_levels, dynamic_overhang_speeds, - ref_speed, speed, m_config.slowdown_for_curled_perimeters); + ref_speed, speed, NOZZLE_CONFIG(slowdown_for_curled_perimeters)); } variable_speed = std::any_of(new_points.begin(), new_points.end(), [speed](const ProcessedPoint &p) { return fabs(double(p.speed) - speed) > 1; }); // Ignore small speed variations (under 1mm/sec) @@ -7394,40 +7417,40 @@ std::string GCode::travel_to(const Point& point, ExtrusionRole role, std::string unsigned int acceleration_to_set = 0; if (this->on_first_layer()) { - unsigned int initial_layer_travel_acceleration = m_config.get_abs_value("initial_layer_travel_acceleration"); - double initial_layer_travel_jerk = m_config.get_abs_value("initial_layer_travel_jerk"); + unsigned int initial_layer_travel_acceleration = m_config.get_abs_value_at("initial_layer_travel_acceleration", cur_extruder_index()); + double initial_layer_travel_jerk = m_config.get_abs_value_at("initial_layer_travel_jerk", cur_extruder_index()); - if (m_config.default_acceleration.value > 0 && initial_layer_travel_acceleration > 0) { + if (NOZZLE_CONFIG(default_acceleration) > 0 && initial_layer_travel_acceleration > 0) { acceleration_to_set = (unsigned int) floor(initial_layer_travel_acceleration + 0.5); } - if (m_config.default_jerk.value > 0 && initial_layer_travel_jerk > 0) { + if (NOZZLE_CONFIG(default_jerk)> 0 && initial_layer_travel_jerk > 0) { jerk_to_set = initial_layer_travel_jerk; } } else { // ORCA: Handle short-travel acceleration and jerk for outer perimeters (if applicable) const bool is_short_travel = travel.length() < scale_(EXTRUDER_CONFIG(retraction_minimum_travel)); - if (m_config.default_acceleration.value > 0) { + if (NOZZLE_CONFIG(default_acceleration) > 0) { if (role == erOverhangPerimeter && is_short_travel) { - const double bridge_acceleration = m_config.get_abs_value("bridge_acceleration"); + const double bridge_acceleration = m_config.get_abs_value_at("bridge_acceleration", cur_extruder_index()); if (bridge_acceleration > 0) acceleration_to_set = (unsigned int) floor(bridge_acceleration + 0.5); } else if (role == erExternalPerimeter && is_short_travel) { - if (m_config.outer_wall_acceleration.value > 0) - acceleration_to_set = (unsigned int) floor(m_config.outer_wall_acceleration.value + 0.5); + if (NOZZLE_CONFIG(outer_wall_acceleration) > 0) + acceleration_to_set = (unsigned int) floor(NOZZLE_CONFIG(outer_wall_acceleration) + 0.5); } else { - if (m_config.travel_acceleration.value > 0) - acceleration_to_set = (unsigned int) floor(m_config.travel_acceleration.value + 0.5); + if (NOZZLE_CONFIG(travel_acceleration) > 0) + acceleration_to_set = (unsigned int) floor(NOZZLE_CONFIG(travel_acceleration) + 0.5); } } - if (m_config.default_jerk.value > 0) { + if (NOZZLE_CONFIG(default_jerk) > 0) { if ((role == erExternalPerimeter || role == erOverhangPerimeter) && is_short_travel) { - if (m_config.outer_wall_jerk.value > 0) - jerk_to_set = m_config.outer_wall_jerk.value; + if (NOZZLE_CONFIG(outer_wall_jerk) > 0) + jerk_to_set = NOZZLE_CONFIG(outer_wall_jerk); } else { - if (m_config.travel_jerk.value > 0) - jerk_to_set = m_config.travel_jerk.value; + if (NOZZLE_CONFIG(travel_jerk) > 0) + jerk_to_set = NOZZLE_CONFIG(travel_jerk); } } } diff --git a/src/libslic3r/GCode.hpp b/src/libslic3r/GCode.hpp index 03e76a1eff..01c253a4fc 100644 --- a/src/libslic3r/GCode.hpp +++ b/src/libslic3r/GCode.hpp @@ -343,7 +343,16 @@ private: const float skirt_start_angle, const LayerTools &layer_tools, const Layer& layer, + unsigned int extruder_id, + std::vector &skirt_done); + std::string generate_object_skirt_group(const Print &print, + const PrintObject &object, + const LayerTools &layer_tools, + const Layer& layer, unsigned int extruder_id); + std::string generate_object_brim(const Print &print, + const PrintObject &object, + bool first_layer); LayerResult process_layer( const Print &print, @@ -383,6 +392,7 @@ private: //BBS void check_placeholder_parser_failed(); + size_t cur_extruder_index() const; size_t get_extruder_id(unsigned int filament_id) const; void set_last_pos(const Point &pos) { m_last_pos = Point3(pos, 0); m_last_pos_defined = true; } @@ -609,8 +619,8 @@ private: std::unique_ptr m_small_area_infill_flow_compensator; - // Heights (print_z) at which the skirt has already been extruded. - std::vector m_skirt_done; + // Heights (print_z) at which each grouped skirt has already been extruded. + std::vector> m_skirt_group_done; // Has the brim been extruded already? Brim is being extruded only for the first object of a multi-object print. bool m_brim_done; // Flag indicating whether the nozzle temperature changes from 1st to 2nd layer were performed. diff --git a/src/libslic3r/GCode/CoolingBuffer.cpp b/src/libslic3r/GCode/CoolingBuffer.cpp index 8cfb99a46b..c0c79be466 100644 --- a/src/libslic3r/GCode/CoolingBuffer.cpp +++ b/src/libslic3r/GCode/CoolingBuffer.cpp @@ -18,7 +18,7 @@ namespace Slic3r { -CoolingBuffer::CoolingBuffer(GCode &gcodegen) : m_config(gcodegen.config()), m_toolchange_prefix(gcodegen.writer().toolchange_prefix()), m_current_extruder(0) +CoolingBuffer::CoolingBuffer(GCode &gcodegen) : m_config(gcodegen.config()), m_toolchange_prefix(gcodegen.writer().toolchange_prefix()), m_current_extruder(0), m_current_nozzle(0) { this->reset(gcodegen.writer().get_position()); @@ -37,7 +37,7 @@ void CoolingBuffer::reset(const Vec3d &position) m_current_pos[0] = float(position.x()); m_current_pos[1] = float(position.y()); m_current_pos[2] = float(position.z()); - m_current_pos[4] = float(m_config.travel_speed.value); + m_current_pos[4] = float(m_config.travel_speed.get_at(m_current_nozzle)); m_fan_speed = -1; m_additional_fan_speed = -1; m_current_fan_speed = -1; @@ -744,6 +744,13 @@ std::string CoolingBuffer::apply_layer_cooldown( int close_fan_the_first_x_layers = EXTRUDER_CONFIG(close_fan_the_first_x_layers); // Is the fan speed ramp enabled? int full_fan_speed_layer = EXTRUDER_CONFIG(full_fan_speed_layer); + // ORCA: explicit per-filament first-layer override (-1 = disabled, 0-100 = forced PWM percent on layer 0). + // The override is only honoured when the "No cooling for the first" gate is 0; otherwise the gate would + // force layers 1..N-1 to zero while the override sets layer 0 to a non-zero value, which is confusing + // and non-monotonic. The UI greys out and resets the value in that case, but we also guard here so + // legacy profiles loaded with both set are neutralised at the slicer level. + int initial_layer_fan_speed = EXTRUDER_CONFIG(initial_layer_fan_speed); + const bool has_initial_layer_override = initial_layer_fan_speed >= 0 && close_fan_the_first_x_layers <= 0; supp_interface_fan_speed = EXTRUDER_CONFIG(support_material_interface_fan_speed); // ORCA: previously a silent override forced `close_fan_the_first_x_layers` from 0 up to 1 whenever a ramp @@ -751,7 +758,24 @@ std::string CoolingBuffer::apply_layer_cooldown( // That hid the user's literal "no cooling for the first 0 layers" setting and produced a non-zero starting // factor on the ramp denominator. The override has been removed: with N=0 and M>0 the ramp now genuinely // starts on layer 0 at a factor of 1/M and reaches 100% at layer M-1, matching the intent of the option. - if (int(layer_id) >= close_fan_the_first_x_layers) { + // + // ORCA: First-layer hard override (`initial_layer_fan_speed`). When the user has set this option to a + // value >= 0, layer 0 emits exactly that percentage so the entire first layer + // is at one stable fan speed. The override wins over the `close_fan_the_first_x_layers` gate when + // layer_id == 0. From layer 1 onwards the regular logic resumes. + if (has_initial_layer_override && layer_id == 0) { + fan_speed_new = initial_layer_fan_speed; + overhang_fan_speed = initial_layer_fan_speed; + overhang_fan_control = false; + internal_bridge_fan_speed = initial_layer_fan_speed; + internal_bridge_fan_control = false; + supp_interface_fan_speed = initial_layer_fan_speed; + supp_interface_fan_control = false; + ironing_fan_speed = initial_layer_fan_speed; + ironing_fan_control = false; + // additional_fan_speed_new is left at its configured value (auxiliary fan is independent of the + // part-cooling override). + } else if (int(layer_id) >= close_fan_the_first_x_layers) { float fan_max_speed = EXTRUDER_CONFIG(fan_max_speed); float slow_down_layer_time = float(EXTRUDER_CONFIG(slow_down_layer_time)); float fan_cooling_layer_time = float(EXTRUDER_CONFIG(fan_cooling_layer_time)); @@ -769,10 +793,25 @@ std::string CoolingBuffer::apply_layer_cooldown( //} overhang_fan_speed = EXTRUDER_CONFIG(overhang_fan_speed); if (int(layer_id) >= close_fan_the_first_x_layers && int(layer_id) + 1 < full_fan_speed_layer) { - // Ramp up the fan speed from close_fan_the_first_x_layers to full_fan_speed_layer. - float factor = float(int(layer_id + 1) - close_fan_the_first_x_layers) / float(full_fan_speed_layer - close_fan_the_first_x_layers); - fan_speed_new = std::clamp(int(float(fan_speed_new) * factor + 0.5f), 0, 255); - overhang_fan_speed = std::clamp(int(float(overhang_fan_speed) * factor + 0.5f), 0, 255); + if (has_initial_layer_override && close_fan_the_first_x_layers == 0 && full_fan_speed_layer > 1) { + // ORCA: Option-B anchored ramp. When the first-layer override is configured and there's + // no "no cooling" gate, the ramp interpolates linearly from `initial_layer_fan_speed` on + // layer 0 up to the computed target on layer `full_fan_speed_layer - 1` instead of + // scaling the target by `factor` from zero. Layer 0 itself is handled by the override + // branch above; this branch only runs for layer_id >= 1, but the formula uses t = 0 at + // layer 0 conceptually so the curve is continuous. Guarantees a monotonic transition + // even when the override is larger than the natural 1/M starting value. + const float anchor = float(initial_layer_fan_speed); + const float denom = float(full_fan_speed_layer - 1); + const float t = float(int(layer_id)) / denom; + fan_speed_new = std::clamp(int(anchor + t * (float(fan_speed_new) - anchor) + 0.5f), 0, 255); + overhang_fan_speed = std::clamp(int(anchor + t * (float(overhang_fan_speed) - anchor) + 0.5f), 0, 255); + } else { + // Ramp up the fan speed from close_fan_the_first_x_layers to full_fan_speed_layer. + float factor = float(int(layer_id + 1) - close_fan_the_first_x_layers) / float(full_fan_speed_layer - close_fan_the_first_x_layers); + fan_speed_new = std::clamp(int(float(fan_speed_new) * factor + 0.5f), 0, 255); + overhang_fan_speed = std::clamp(int(float(overhang_fan_speed) * factor + 0.5f), 0, 255); + } } supp_interface_fan_speed = EXTRUDER_CONFIG(support_material_interface_fan_speed); supp_interface_fan_control = supp_interface_fan_speed >= 0; diff --git a/src/libslic3r/GCode/CoolingBuffer.hpp b/src/libslic3r/GCode/CoolingBuffer.hpp index fba27b289b..9b0a5ab9df 100644 --- a/src/libslic3r/GCode/CoolingBuffer.hpp +++ b/src/libslic3r/GCode/CoolingBuffer.hpp @@ -25,7 +25,7 @@ class CoolingBuffer { public: CoolingBuffer(GCode &gcodegen); void reset(const Vec3d &position); - void set_current_extruder(unsigned int extruder_id) { m_current_extruder = extruder_id; } + void set_current_extruder(unsigned int extruder_id, unsigned int nozzle_id) { m_current_extruder = extruder_id; m_current_nozzle = nozzle_id; } std::string process_layer(std::string &&gcode, size_t layer_id, bool flush); private: @@ -55,6 +55,7 @@ private: // the PrintConfig slice of FullPrintConfig is constant, thus no thread synchronization is required. const PrintConfig &m_config; unsigned int m_current_extruder; + unsigned int m_current_nozzle; //BBS: current fan speed int m_current_fan_speed; }; diff --git a/src/libslic3r/GCode/ElegooGCodeProcessorHelper.cpp b/src/libslic3r/GCode/ElegooGCodeProcessorHelper.cpp new file mode 100644 index 0000000000..cac53637a5 --- /dev/null +++ b/src/libslic3r/GCode/ElegooGCodeProcessorHelper.cpp @@ -0,0 +1,190 @@ +#include "GCodeProcessor.hpp" + +#include "libslic3r/libslic3r.h" + +#include +#include +#include +#include + +namespace Slic3r { +namespace { + +bool equals_case_insensitive(std::string_view lhs, std::string_view rhs) +{ + return lhs.size() == rhs.size() && std::equal(lhs.begin(), lhs.end(), rhs.begin(), [](unsigned char l, unsigned char r) { + return std::tolower(l) == std::tolower(r); + }); +} + +float get_clamped_param(const GCodeReader::GCodeLine& line, char axis, float default_value, float min_value, float max_value) +{ + float value = default_value; + line.has_value(axis, value); + return std::clamp(value, min_value, max_value); +} + +float extrusion_time(float e_length, float feedrate) +{ + return feedrate > 0.0f && e_length > 0.0f ? e_length / feedrate * 60.0f : 0.0f; +} + +float retract_time(float e_length) +{ + static constexpr float retract_feedrate = 1800.0f; + return extrusion_time(std::max(e_length, 0.0f), retract_feedrate); +} + +float s819_time(float e_length, float feedrate) +{ + static constexpr float s819_tail_flush_length = 10.0f; + static constexpr float s819_tail_feedrate = 400.0f; + + const float tail_length = std::min(std::max(e_length, 0.0f), s819_tail_flush_length); + const float main_length = std::max(e_length - tail_length, 0.0f); + return extrusion_time(main_length, feedrate) + extrusion_time(tail_length, s819_tail_feedrate); +} + +float estimate_M6211_time_for_centauri_carbon(const GCodeReader::GCodeLine& line, float length, double current_x, + double current_y) +{ + static constexpr float max_segment_length = 73.0f; + static constexpr float wipe_after_flush_time = 2.8f; + static constexpr float main_feedrate = 500.0f; + static constexpr float tail_feedrate = 400.0f; + static constexpr float travel_feedrate = 5000.0f; + static constexpr double parking_x = 256.0; + static constexpr double parking_y = 0.0; + + const float flush_length = std::clamp(length, 10.0f, 1000.0f); + const float cool_time = get_clamped_param(line, 'P', 5000.0f, 0.0f, 20000.0f) * 0.001f; + const float travel_time = static_cast(std::abs(current_y - parking_y) + std::abs(current_x - parking_x)) / + travel_feedrate * 60.0f; + + // Initial time, including: material change, heating, etc. + float m6211_time = 18.2f + travel_time; + + float remaining_flush_length = std::max(flush_length, 0.0f); + while (remaining_flush_length > 0.0f) { + const float segment_length = std::min(remaining_flush_length, max_segment_length); + remaining_flush_length -= segment_length; + if (segment_length >= max_segment_length) { + // Full segment: 3-phase extrusion (30+35+10=75mm) + retract + m6211_time += extrusion_time(30.0f, main_feedrate) + extrusion_time(35.0f, main_feedrate) + + extrusion_time(10.0f, tail_feedrate) + extrusion_time(2.0f, tail_feedrate) + cool_time + + wipe_after_flush_time; + } else { + // Partial last segment: simple extrude at F500 + retract at F400 + m6211_time += extrusion_time(segment_length, main_feedrate) + extrusion_time(2.0f, tail_feedrate) + cool_time + + wipe_after_flush_time; + } + } + + return m6211_time; +} + +float estimate_M6211_time_for_centauri_carbon_2(const GCodeReader::GCodeLine& line, float length, float new_extruder_temp) +{ + const float flush_length = std::clamp(length, 10.0f, 1000.0f); + const float flush_length_single = get_clamped_param(line, 'K', 75.0f, 10.0f, 300.0f); + const float old_filament_e_feedrate = get_clamped_param(line, 'M', 300.0f, 10.0f, 600.0f); + const float new_filament_e_feedrate = get_clamped_param(line, 'N', 300.0f, 10.0f, 600.0f); + const float cool_time = get_clamped_param(line, 'P', 3000.0f, 0.0f, 20000.0f) * 0.001f; + + // The flush length of the old material, unit: mm + static constexpr float e_flush_dist = 15.0f; + // Wipe time after flush, in seconds + static constexpr float wipe_after_flush_time = 5.0f; + + const float flush_length_after_start = std::max(flush_length - e_flush_dist, 0.0f); + const int flush_times = std::max(1, static_cast(std::ceil(flush_length_after_start / flush_length_single))); + const float flush_length_actual = flush_length_single; + + // Initial time, including: material change, heating, moving, etc. + float m6211_time = 31.0f; + m6211_time += extrusion_time(std::min(e_flush_dist, flush_length), old_filament_e_feedrate); + + const int intermediate_flush_times = flush_times - 1; + const float intermediate_flush_time = s819_time(flush_length_actual, new_filament_e_feedrate) + retract_time(6.0f) + cool_time + + wipe_after_flush_time; + m6211_time += static_cast(intermediate_flush_times) * intermediate_flush_time; + m6211_time += s819_time(flush_length_actual, new_filament_e_feedrate * 0.8f) + retract_time(4.0f) + cool_time + wipe_after_flush_time; + + static constexpr float cooling_rate = 1.36f; + const float r_temp = get_clamped_param(line, 'R', new_extruder_temp + 20.0f, 185.0f, 350.0f); + const float s_temp = get_clamped_param(line, 'S', 250.0f, 185.0f, 350.0f); + + if (s_temp < r_temp) + m6211_time += (r_temp - s_temp) / cooling_rate; + + return m6211_time; +} + +float estimate_M6211_time(const GCodeReader::GCodeLine& line, std::string_view printer_model, float length, float new_extruder_temp, double current_x, double current_y) +{ + if (equals_case_insensitive(printer_model, "Elegoo Centauri Carbon") || equals_case_insensitive(printer_model, "Elegoo Centauri")) { + return estimate_M6211_time_for_centauri_carbon(line, length, current_x, current_y); + } else if (equals_case_insensitive(printer_model, "Elegoo Centauri Carbon 2") || + equals_case_insensitive(printer_model, "Elegoo Centauri 2")) { + return estimate_M6211_time_for_centauri_carbon_2(line, length, new_extruder_temp); + } + return 0.0f; +} + +} // namespace + +void GCodeProcessor::process_elegoo_M6211(const GCodeReader::GCodeLine& line) +{ + float length = 0.0f; + if (!line.has_value('L', length) || length <= 0.0f) + return; + + float t = -1.0f; + if (!line.has_value('T', t) || t < 0.0f) + return; + + const int filament_id = static_cast(std::round(t)); + if (filament_id < 0 || filament_id >= m_result.filaments_count) + return; + + const int extruder_id = m_filament_maps[filament_id]; + + float new_extruder_temp = 0.0f; + if (line.has_value('S', new_extruder_temp)) { + if (extruder_id >= 0 && static_cast(extruder_id) < m_extruder_temps.size()) + m_extruder_temps[static_cast(extruder_id)] = new_extruder_temp; + } + + const float m6211_time = estimate_M6211_time(line, m_printer_model, length, new_extruder_temp, + m_start_position[X], m_start_position[Y]); + const int curr_filament_id = get_filament_id(false); + const bool is_first_extrusion = (curr_filament_id == -1) || (filament_id == curr_filament_id); + + m_time_processor.filament_unload_times = 0; + m_time_processor.filament_load_times = m6211_time; + process_filament_change(filament_id); + + if (extruder_id >= 0 && static_cast(extruder_id) < m_remaining_volume.size()) { + const float remaining_volume = static_cast(extruder_id) < m_nozzle_volume.size() ? + m_nozzle_volume[extruder_id] : + 0.0f; + const float filament_diameter = static_cast(filament_id) < m_result.filament_diameters.size() ? + m_result.filament_diameters[filament_id] : + m_result.filament_diameters.back(); + const float area_filament_cross_section = static_cast(M_PI) * sqr(0.5f * filament_diameter); + const float volume_flushed_filament = area_filament_cross_section * length; + + if (volume_flushed_filament >= remaining_volume) { + if (!is_first_extrusion) + m_used_filaments.update_flush_per_filament(curr_filament_id, remaining_volume); + + m_used_filaments.update_flush_per_filament(filament_id, volume_flushed_filament - remaining_volume); + m_remaining_volume[extruder_id] = 0.0f; + } else { + m_used_filaments.update_flush_per_filament(filament_id, volume_flushed_filament); + m_remaining_volume[extruder_id] -= volume_flushed_filament; + } + } +} + +} // namespace Slic3r diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp index cc5036846e..c0a92780c4 100644 --- a/src/libslic3r/GCode/GCodeProcessor.cpp +++ b/src/libslic3r/GCode/GCodeProcessor.cpp @@ -310,6 +310,7 @@ void GCodeProcessor::TimeMachine::reset() g1_times_cache = std::vector(); first_layer_time = 0.0f; prepare_time = 0.0f; + m_additional_time_buffer.clear(); } static void planner_forward_pass_kernel(const GCodeProcessor::TimeBlock& prev, GCodeProcessor::TimeBlock& curr) @@ -395,13 +396,53 @@ static void recalculate_trapezoids(std::vector& block } } -void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks, float additional_time) +GCodeProcessor::TimeMachine::AdditionalBuffer GCodeProcessor::TimeMachine::merge_adjacent_additional_time_blocks(const AdditionalBuffer& buffer) { - if (!enabled || blocks.size() < 2) + AdditionalBuffer merged; + if (buffer.empty()) + return merged; + + AdditionalBufferBlock current_block = buffer.front(); + for (size_t idx = 1; idx < buffer.size(); ++idx) { + const AdditionalBufferBlock& next_block = buffer[idx]; + if (current_block.first == next_block.first) + current_block.second += next_block.second; + else { + merged.push_back(current_block); + current_block = next_block; + } + } + merged.push_back(current_block); + return merged; +} + +void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks, float additional_time, EMoveType target_move_type, bool is_final) +{ + if (!enabled) return; + // Orca: on the finalization pass, drain extra time that is still buffered (e.g. a + // trailing filament change) even with fewer than two blocks queued -- no later pass + // exists to attribute it on. Every other pass keeps the original >= 2 requirement, + // and an empty buffer keeps today's early-return unchanged (no behavior change). + const bool drain_final = is_final && !m_additional_time_buffer.empty(); + if (blocks.size() < 2 && !drain_final) { + // Not enough blocks to attribute the extra time to yet; buffer it so it is + // applied on a later pass instead of being dropped. + if (additional_time > 0.0f) + m_additional_time_buffer.emplace_back(target_move_type, additional_time); + return; + } assert(keep_last_n_blocks <= blocks.size()); + // Merge any previously buffered extra time with this call's extra time. Each + // entry is applied, in order, to the first block matching its target move type + // (EMoveType::Noop matches any block). + AdditionalBuffer additional_buffer = m_additional_time_buffer; + if (additional_time > 0.0f) + additional_buffer.emplace_back(target_move_type, additional_time); + additional_buffer = merge_adjacent_additional_time_blocks(additional_buffer); + // reverse_pass for (int i = static_cast(blocks.size()) - 1; i > 0; --i) { planner_reverse_pass_kernel(blocks[i - 1], blocks[i]); @@ -415,11 +456,17 @@ void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, P recalculate_trapezoids(blocks); const size_t n_blocks_process = blocks.size() - keep_last_n_blocks; + size_t additional_buffer_idx = 0; for (size_t i = 0; i < n_blocks_process; ++i) { const TimeBlock& block = blocks[i]; float block_time = block.time(); - if (i == 0) - block_time += additional_time; + if (additional_buffer_idx < additional_buffer.size()) { + const EMoveType buf_move_type = additional_buffer[additional_buffer_idx].first; + if (buf_move_type == EMoveType::Noop || buf_move_type == block.move_type) { + block_time += additional_buffer[additional_buffer_idx].second; + ++additional_buffer_idx; + } + } time += double(block_time); result.moves[block.move_id].time[static_cast(mode)] = block_time; @@ -532,6 +579,28 @@ void GCodeProcessor::TimeMachine::calculate_time(GCodeProcessorResult& result, P it_stop_time->elapsed_time = float(time); } + // Carry forward any extra time that found no matching block this pass, so it + // is retried against the blocks of a later pass. + m_additional_time_buffer.clear(); + if (additional_buffer_idx < additional_buffer.size()) { + if (is_final) { + // Orca EOF hardening: no later pass remains to attribute this remainder, + // so add it to the machine total (and the custom-gcode cache) instead of + // dropping it. Deliberately NOT attributed to any move vertex, so a stray + // filament-change delay can never leak into an extrusion role's time. + // (BambuStudio drops the remainder here.) + float leftover = 0.0f; + for (size_t i = additional_buffer_idx; i < additional_buffer.size(); ++i) + leftover += additional_buffer[i].second; + time += double(leftover); + gcode_time.cache += leftover; + } else { + m_additional_time_buffer.insert(m_additional_time_buffer.end(), + additional_buffer.begin() + additional_buffer_idx, + additional_buffer.end()); + } + } + if (keep_last_n_blocks) { blocks.erase(blocks.begin(), blocks.begin() + n_blocks_process); @@ -1770,7 +1839,8 @@ void GCodeProcessor::register_commands() {"VM104", [this](const GCodeReader::GCodeLine& line) { process_VM104(line); }}, {"VM109", [this](const GCodeReader::GCodeLine& line) { process_VM109(line); }}, {"M622", [this](const GCodeReader::GCodeLine& line) { process_M622(line);}}, - {"M623", [this](const GCodeReader::GCodeLine& line) { process_M623(line);}} + {"M623", [this](const GCodeReader::GCodeLine& line) { process_M623(line);}}, + {"M6211", [this](const GCodeReader::GCodeLine& line) { process_M6211(line); }} }; std::unordered_setearly_quit_commands = { @@ -1794,6 +1864,12 @@ void GCodeProcessor::register_commands() } } +void GCodeProcessor::process_M6211(const GCodeReader::GCodeLine& line) +{ + if (boost::algorithm::istarts_with(m_printer_model, "elegoo")) + process_elegoo_M6211(line); +} + bool GCodeProcessor::check_multi_extruder_gcode_valid(const int extruder_size, const Pointfs plate_printable_area, const double plate_printable_height, @@ -1958,6 +2034,7 @@ void GCodeProcessor::apply_config(const PrintConfig& config) m_parser.apply_config(config); m_flavor = config.gcode_flavor; + m_printer_model = config.printer_model.value; m_single_extruder_multi_material = config.single_extruder_multi_material; @@ -2144,6 +2221,10 @@ void GCodeProcessor::apply_config(const DynamicPrintConfig& config) if (printer_settings_id != nullptr) m_result.settings_ids.printer = printer_settings_id->value; + const ConfigOptionString* printer_model = config.option("printer_model"); + if (printer_model != nullptr) + m_printer_model = printer_model->value; + // BBS m_result.filaments_count = config.option("filament_diameter")->values.size(); @@ -2625,7 +2706,9 @@ void GCodeProcessor::finalize(bool post_process) } } - calculate_time(m_result); + // Orca: final pass -- also drains any filament-change delay still buffered because + // calculate_time early-returns with fewer than two queued blocks (see calculate_time). + calculate_time(m_result, 0, 0.0f, EMoveType::Noop, /*is_final=*/true); // process the time blocks for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { @@ -5525,9 +5608,35 @@ void GCodeProcessor::process_filament_change(int id) } m_cp_color.current = m_extruder_colors[next_filament_id]; - simulate_st_synchronize(extra_time); - // store tool change move + + // Store the tool-change move first, then attribute the filament-change delay to + // it rather than to whichever motion block happens to be pending. This keeps the + // delay out of the per-role feature-time distribution (tool-change moves are not + // counted as an extrusion role) while still including it in the total and + // per-layer times. store_move_vertex(EMoveType::Tool_change); + + // Construct a zero-distance time block for the tool-change move on each enabled + // machine so the synchronize below can land the delay on it. The synchronize + // flushes with keep_last_n_blocks == 0; if fewer than two blocks are queued it + // buffers the delay instead, and this block stays queued to receive it on a + // later pass. + for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { + TimeMachine& machine = m_time_processor.machines[i]; + if (!machine.enabled) + continue; + TimeBlock block; + block.move_id = static_cast(m_result.moves.size()) - 1; + block.move_type = EMoveType::Tool_change; + block.layer_id = std::max(1, m_layer_id); + block.g1_line_id = m_g1_line_id; + block.flags.prepare_stage = m_processing_start_custom_gcode; + block.distance = 0.0f; + block.calculate_trapezoid(); + machine.blocks.push_back(block); + } + + simulate_st_synchronize(extra_time, EMoveType::Tool_change); } void GCodeProcessor::store_move_vertex(EMoveType type, EMovePathType path_type, bool internal_only) @@ -5851,13 +5960,13 @@ void GCodeProcessor::process_filaments(CustomGCode::Type code) } } -void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks, float additional_time) +void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks, float additional_time, EMoveType target_move_type, bool is_final) { // calculate times std::vector actual_speed_moves; for (size_t i = 0; i < static_cast(PrintEstimatedStatistics::ETimeMode::Count); ++i) { TimeMachine& machine = m_time_processor.machines[i]; - machine.calculate_time(m_result, static_cast(i), keep_last_n_blocks, additional_time); + machine.calculate_time(m_result, static_cast(i), keep_last_n_blocks, additional_time, target_move_type, is_final); if (static_cast(i) == PrintEstimatedStatistics::ETimeMode::Normal) actual_speed_moves = std::move(machine.actual_speed_moves); } @@ -5911,9 +6020,9 @@ void GCodeProcessor::calculate_time(GCodeProcessorResult& result, size_t keep_la } } -void GCodeProcessor::simulate_st_synchronize(float additional_time) +void GCodeProcessor::simulate_st_synchronize(float additional_time, EMoveType target_move_type) { - calculate_time(m_result, 0, additional_time); + calculate_time(m_result, 0, additional_time, target_move_type); } void GCodeProcessor::update_estimated_times_stats() diff --git a/src/libslic3r/GCode/GCodeProcessor.hpp b/src/libslic3r/GCode/GCodeProcessor.hpp index 546df6fbb2..fcefd1a9a7 100644 --- a/src/libslic3r/GCode/GCodeProcessor.hpp +++ b/src/libslic3r/GCode/GCodeProcessor.hpp @@ -560,9 +560,24 @@ class Print; //BBS: prepare stage time before print model, including start gcode time and mostly same with start gcode time float prepare_time; + // Orca: extra time (e.g. a filament-change delay) that can't be attributed to a + // matching block on this pass is buffered here and retried on a later pass, so it + // is never folded into an unrelated move. On the final pass no later pass remains, + // so any still-unmatched remainder is added to the machine total (never to a move + // vertex) instead of being dropped, keeping get_time() consistent with the + // filament-change statistics. Orca-only EOF hardening; BambuStudio drops it. + using AdditionalBufferBlock = std::pair; + using AdditionalBuffer = std::vector; + AdditionalBuffer m_additional_time_buffer; + void reset(); - void calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks = 0, float additional_time = 0.0f); + // Merge adjacent buffer entries that target the same move type. + static AdditionalBuffer merge_adjacent_additional_time_blocks(const AdditionalBuffer& buffer); + + // additional_time is attributed to the first block matching target_move_type + // (EMoveType::Noop matches any block, i.e. the first processed block). + void calculate_time(GCodeProcessorResult& result, PrintEstimatedStatistics::ETimeMode mode, size_t keep_last_n_blocks = 0, float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop, bool is_final = false); }; struct UsedFilaments // filaments per ColorChange @@ -831,6 +846,7 @@ class Print; float m_preheat_time; int m_preheat_steps; bool m_disable_m73; + std::string m_printer_model; enum class EProducer { @@ -1069,6 +1085,10 @@ class Print; // Unload the current filament into the MK3 MMU2 unit at the end of print. void process_M702(const GCodeReader::GCodeLine& line); + //Used for Elegoo printer to change tool head + void process_M6211(const GCodeReader::GCodeLine& line); + void process_elegoo_M6211(const GCodeReader::GCodeLine& line); + void process_SYNC(const GCodeReader::GCodeLine& line); // Processes T line (Select Tool) @@ -1115,10 +1135,10 @@ class Print; void process_custom_gcode_time(CustomGCode::Type code); void process_filaments(CustomGCode::Type code); - void calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks = 0, float additional_time = 0.0f); + void calculate_time(GCodeProcessorResult& result, size_t keep_last_n_blocks = 0, float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop, bool is_final = false); // Simulates firmware st_synchronize() call - void simulate_st_synchronize(float additional_time = 0.0f); + void simulate_st_synchronize(float additional_time = 0.0f, EMoveType target_move_type = EMoveType::Noop); void update_estimated_times_stats(); diff --git a/src/libslic3r/GCode/ToolOrdering.cpp b/src/libslic3r/GCode/ToolOrdering.cpp index 5cb66ba5e5..65c887f343 100644 --- a/src/libslic3r/GCode/ToolOrdering.cpp +++ b/src/libslic3r/GCode/ToolOrdering.cpp @@ -138,7 +138,8 @@ static double calc_max_layer_height(const PrintConfig &config, double max_object { double max_layer_height = std::numeric_limits::max(); for (size_t i = 0; i < config.nozzle_diameter.values.size(); ++ i) { - double mlh = config.max_layer_height.values[i]; + // max_layer_height may be shorter than the extruder count; get_at() clamps. + double mlh = config.max_layer_height.get_at(i); if (mlh == 0.) mlh = 0.75 * config.nozzle_diameter.values[i]; max_layer_height = std::min(max_layer_height, mlh); @@ -187,6 +188,10 @@ static void apply_first_layer_order(const DynamicPrintConfig* config, std::vecto void ToolOrdering::handle_dontcare_extruder(const std::vector& tool_order_layer0) { + const PrintConfig* print_config = m_print_config_ptr; + if (!print_config && m_print_object_ptr) + print_config = &m_print_object_ptr->print()->config(); + if(m_layer_tools.empty() || tool_order_layer0.empty()) return; @@ -221,6 +226,8 @@ void ToolOrdering::handle_dontcare_extruder(const std::vector& too for (int i = 1; i < m_layer_tools.size(); i++) { LayerTools& lt = m_layer_tools[i]; + // Extruders in lt.extruders are already sorted. + if (lt.extruders.empty()) continue; if (lt.extruders.size() == 1 && lt.extruders.front() == 0) @@ -229,14 +236,23 @@ void ToolOrdering::handle_dontcare_extruder(const std::vector& too if (lt.extruders.front() == 0) // Pop the "don't care" extruder, the "don't care" region will be merged with the next one. lt.extruders.erase(lt.extruders.begin()); - // Reorder the extruders to start with the last one. - for (size_t i = 1; i < lt.extruders.size(); ++i) - if (lt.extruders[i] == last_extruder_id) { - // Move the last extruder to the front. - memmove(lt.extruders.data() + 1, lt.extruders.data(), i * sizeof(unsigned int)); - lt.extruders.front() = last_extruder_id; - break; + + if (print_config == nullptr + || print_config->toolchange_ordering == ToolChangeOrderingType::Default) + { + // Reorder the extruders to start with the last one. + for (size_t i = 1; i < lt.extruders.size(); ++i) { + if (lt.extruders[i] == last_extruder_id) { + // Move the last extruder to the front. + std::rotate( + lt.extruders.begin(), + lt.extruders.begin() + i, + lt.extruders.begin() + i + 1 + ); + break; + } } + } } last_extruder_id = lt.extruders.back(); } @@ -252,6 +268,10 @@ void ToolOrdering::handle_dontcare_extruder(const std::vector& too void ToolOrdering::handle_dontcare_extruder(unsigned int last_extruder_id) { + const PrintConfig* print_config = m_print_config_ptr; + if (!print_config && m_print_object_ptr) + print_config = &m_print_object_ptr->print()->config(); + if(m_layer_tools.empty()) return; if(last_extruder_id == (unsigned int)-1){ @@ -275,6 +295,8 @@ void ToolOrdering::handle_dontcare_extruder(unsigned int last_extruder_id) } for (LayerTools < : m_layer_tools) { + // Extruders in lt.extruders are already sorted. + if (lt.extruders.empty()) continue; if (lt.extruders.size() == 1 && lt.extruders.front() == 0) @@ -283,21 +305,30 @@ void ToolOrdering::handle_dontcare_extruder(unsigned int last_extruder_id) if (lt.extruders.front() == 0) // Pop the "don't care" extruder, the "don't care" region will be merged with the next one. lt.extruders.erase(lt.extruders.begin()); - // Reorder the extruders to start with the last one. - for (size_t i = 1; i < lt.extruders.size(); ++ i) - if (lt.extruders[i] == last_extruder_id) { - // Move the last extruder to the front. - memmove(lt.extruders.data() + 1, lt.extruders.data(), i * sizeof(unsigned int)); - lt.extruders.front() = last_extruder_id; - break; + + if (print_config == nullptr + || print_config->toolchange_ordering == ToolChangeOrderingType::Default) + { + // Reorder the extruders to start with the last one. + for (size_t i = 1; i < lt.extruders.size(); ++i) { + if (lt.extruders[i] == last_extruder_id) { + // Move the last extruder to the front. + std::rotate( + lt.extruders.begin(), + lt.extruders.begin() + i, + lt.extruders.begin() + i + 1 + ); + break; + } } + } if (lt == m_layer_tools[0]) { // On first layer with wipe tower, prefer a soluble extruder // at the beginning, so it is not wiped on the first layer. - if (m_print_config_ptr && m_print_config_ptr->enable_prime_tower) { + if (print_config && print_config->enable_prime_tower) { for (size_t i = 0; ifilament_soluble.get_at(lt.extruders[i]-1)) { // 1-based... + if (print_config->filament_soluble.get_at(lt.extruders[i]-1)) { // 1-based... std::swap(lt.extruders[i], lt.extruders.front()); break; } @@ -396,6 +427,7 @@ void ToolOrdering::sort_and_build_data(const PrintObject& object , unsigned int ToolOrdering::ToolOrdering(const PrintObject &object, unsigned int first_extruder, bool prime_multi_material) { m_print_full_config = &object.print()->full_print_config(); + m_print_config_ptr = &object.print()->config(); m_print_object_ptr = &object; m_print = const_cast(object.print()); if (object.layers().empty()) @@ -1329,8 +1361,11 @@ void ToolOrdering::reorder_extruders_for_minimum_flush_volume(bool reorder_first if (!m_layer_tools.empty()) first_layer_filaments = m_layer_tools[0].extruders; + const bool use_cyclic_ordering = + (print_config->toolchange_ordering == ToolChangeOrderingType::Cyclic); + // other_layers_seq: the layer_idx and extruder_idx are base on 1 - auto get_custom_seq = [&other_layers_seqs, &reorder_first_layer, &first_layer_filaments](int layer_idx, std::vector& out_seq) -> bool { + auto get_custom_seq = [&other_layers_seqs, &reorder_first_layer, &first_layer_filaments, &layer_filaments, use_cyclic_ordering](int layer_idx, std::vector& out_seq) -> bool { if (!reorder_first_layer && layer_idx == 0) { out_seq.resize(first_layer_filaments.size()); std::transform(first_layer_filaments.begin(), first_layer_filaments.end(), out_seq.begin(), [](auto item) {return item + 1; }); @@ -1343,6 +1378,15 @@ void ToolOrdering::reorder_extruders_for_minimum_flush_volume(bool reorder_first return true; } } + + if (use_cyclic_ordering && layer_idx >= 0 && size_t(layer_idx) < layer_filaments.size()) { + std::vector ordered = layer_filaments[size_t(layer_idx)]; + std::sort(ordered.begin(), ordered.end()); + out_seq.resize(ordered.size()); + std::transform(ordered.begin(), ordered.end(), out_seq.begin(), [](auto item) { return int(item) + 1; }); + return true; + } + return false; }; diff --git a/src/libslic3r/GCode/WipeTower.cpp b/src/libslic3r/GCode/WipeTower.cpp index 21f1101660..13807c191b 100644 --- a/src/libslic3r/GCode/WipeTower.cpp +++ b/src/libslic3r/GCode/WipeTower.cpp @@ -1472,7 +1472,7 @@ WipeTower::WipeTower(const PrintConfig& config, int plate_idx, Vec3d plate_origi m_bridging(10.f), m_no_sparse_layers(config.wipe_tower_no_sparse_layers), m_gcode_flavor(config.gcode_flavor), - m_travel_speed(config.travel_speed), + m_travel_speed(config.travel_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool))), m_current_tool(initial_tool), //wipe_volumes(flush_matrix) m_enable_timelapse_print(config.timelapse_type.value == TimelapseType::tlSmooth), @@ -1497,7 +1497,7 @@ WipeTower::WipeTower(const PrintConfig& config, int plate_idx, Vec3d plate_origi // it is taken over following default. Speeds from config are not // easily accessible here. const float default_speed = 60.f; - m_first_layer_speed = config.get_abs_value("initial_layer_speed"); + m_first_layer_speed = config.initial_layer_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool)); if (m_first_layer_speed == 0.f) // just to make sure autospeed doesn't break it. m_first_layer_speed = default_speed / 2.f; diff --git a/src/libslic3r/GCode/WipeTower2.cpp b/src/libslic3r/GCode/WipeTower2.cpp index c68a74f8b3..7950034bb1 100644 --- a/src/libslic3r/GCode/WipeTower2.cpp +++ b/src/libslic3r/GCode/WipeTower2.cpp @@ -1262,9 +1262,9 @@ WipeTower2::WipeTower2(const PrintConfig& config, const PrintRegionConfig& defau m_bridging(float(config.wipe_tower_bridging)), m_no_sparse_layers(config.wipe_tower_no_sparse_layers), m_gcode_flavor(config.gcode_flavor), - m_travel_speed(config.travel_speed), - m_infill_speed(default_region_config.sparse_infill_speed), - m_perimeter_speed(default_region_config.inner_wall_speed), + m_travel_speed(config.travel_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool))), + m_infill_speed(default_region_config.sparse_infill_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool))), + m_perimeter_speed(default_region_config.inner_wall_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool))), m_current_tool(initial_tool), wipe_volumes(wiping_matrix), m_wipe_tower_max_purge_speed(float(config.wipe_tower_max_purge_speed)), m_enable_arc_fitting(config.enable_arc_fitting), @@ -1280,7 +1280,7 @@ WipeTower2::WipeTower2(const PrintConfig& config, const PrintRegionConfig& defau // it is taken over following default. Speeds from config are not // easily accessible here. const float default_speed = 60.f; - m_first_layer_speed = config.initial_layer_speed; + m_first_layer_speed = config.initial_layer_speed.get_at(get_extruder_index(config, (unsigned int)initial_tool)); if (m_first_layer_speed == 0.f) // just to make sure autospeed doesn't break it. m_first_layer_speed = default_speed / 2.f; diff --git a/src/libslic3r/GCodeWriter.cpp b/src/libslic3r/GCodeWriter.cpp index 4ead8dfb49..a3d8e66ac3 100644 --- a/src/libslic3r/GCodeWriter.cpp +++ b/src/libslic3r/GCodeWriter.cpp @@ -28,6 +28,39 @@ bool GCodeWriter::supports_separate_travel_acceleration(GCodeFlavor flavor) void GCodeWriter::apply_print_config(const PrintConfig &print_config) { this->config.apply(print_config, true); + + // Some machine limits are stride-2 (normal, silent) pairs, here we extract the value that will be used, + // which is always normal mode at the moment + // TODO: support silent? Any printer actually have that? + auto get_machine_limits = [](const std::string key, const ConfigOptionFloats& opt) -> std::vector { + unsigned int stride = 1; + unsigned int offset = 0; + if (printer_options_with_variant_2.count(key) > 0) { + stride = 2; + // offset = ; + } + + std::vector results; + results.reserve(opt.values.size() / stride); + + for (unsigned int i = offset; i < opt.values.size(); i += stride) { + results.emplace_back(opt.values[i]); + } + + return results; + }; + auto rounded = [](std::vector&& vec) -> std::vector&&{ + std::transform(vec.cbegin(), vec.cend(), vec.begin(), [](const double v) { return std::round(v); }); + return std::move(vec); + }; + auto to_uint = [](const std::vector& vec) { + std::vector r; + std::transform(vec.begin(), vec.end(), std::back_inserter(r), [](const double v) { return static_cast(v); }); + return r; + }; +#define LIMITS(OPT) get_machine_limits(#OPT, print_config.OPT) +#define LIMITS_UINT(OPT) to_uint(rounded(LIMITS(OPT))) + m_single_extruder_multi_material = print_config.single_extruder_multi_material.value; bool use_mach_limits = print_config.gcode_flavor.value == gcfMarlinLegacy || print_config.gcode_flavor.value == gcfMarlinFirmware || print_config.gcode_flavor.value == gcfKlipper || print_config.gcode_flavor.value == gcfRepRapFirmware; @@ -35,29 +68,40 @@ void GCodeWriter::apply_print_config(const PrintConfig &print_config) // For Klipper, SET_VELOCITY_LIMIT ACCEL= applies to all moves, so the effective cap // is the minimum of the extruding limit and the per-axis X/Y limits. // This ensures user-configured Motion Ability limits are honoured (#12244). - unsigned int extruding_limit = std::lrint(print_config.machine_max_acceleration_extruding.values.front()); + auto extruding_limit = LIMITS_UINT(machine_max_acceleration_extruding); if (print_config.gcode_flavor.value == gcfKlipper) { - unsigned int x_limit = std::lrint(print_config.machine_max_acceleration_x.values.front()); - unsigned int y_limit = std::lrint(print_config.machine_max_acceleration_y.values.front()); - if (x_limit > 0) extruding_limit = std::min(extruding_limit, x_limit); - if (y_limit > 0) extruding_limit = std::min(extruding_limit, y_limit); + auto x_limit = LIMITS_UINT(machine_max_acceleration_x); + auto y_limit = LIMITS_UINT(machine_max_acceleration_y); + + for (size_t i = 0; i < extruding_limit.size(); i++) { + if (x_limit[i] > 0) extruding_limit[i] = std::min(extruding_limit[i], x_limit[i]); + if (y_limit[i] > 0) extruding_limit[i] = std::min(extruding_limit[i], y_limit[i]); + } } - m_max_acceleration = extruding_limit; + m_max_acceleration = std::move(extruding_limit); } else { - m_max_acceleration = 0; + m_max_acceleration.clear(); + } + if (use_mach_limits && supports_separate_travel_acceleration(print_config.gcode_flavor.value)) { + m_max_travel_acceleration = LIMITS_UINT(machine_max_acceleration_travel); + } else { + m_max_travel_acceleration.clear(); } - m_max_travel_acceleration = static_cast( - std::round((use_mach_limits && supports_separate_travel_acceleration(print_config.gcode_flavor.value)) ? - print_config.machine_max_acceleration_travel.values.front() : - 0)); if (use_mach_limits) { - m_max_jerk_x = std::lrint(print_config.machine_max_jerk_x.values.front()); - m_max_jerk_y = std::lrint(print_config.machine_max_jerk_y.values.front()); - m_max_junction_deviation = (print_config.machine_max_junction_deviation.values.front()); - }; - m_max_jerk_z = print_config.machine_max_jerk_z.values.front(); - m_max_jerk_e = print_config.machine_max_jerk_e.values.front(); + m_max_jerk_x = rounded(LIMITS(machine_max_jerk_x)); + m_max_jerk_y = rounded(LIMITS(machine_max_jerk_y)); + m_max_junction_deviation = LIMITS(machine_max_junction_deviation); + } else { + m_max_jerk_x.clear(); + m_max_jerk_y.clear(); + m_max_junction_deviation.clear(); + } + m_max_jerk_z = LIMITS(machine_max_jerk_z); + m_max_jerk_e = LIMITS(machine_max_jerk_e); m_resolution = print_config.resolution.value; + +#undef LIMITS +#undef LIMITS_UINT } void GCodeWriter::set_extruders(std::vector extruder_ids) @@ -212,14 +256,18 @@ std::string GCodeWriter::set_chamber_temperature(int temperature, bool wait) return gcode.str(); } +#define EXTRUDER_LIMIT(OPT) \ + (filament() ? ((OPT).size() <= filament()->extruder_id() ? 0 : (OPT)[filament()->extruder_id()]) : \ + ((OPT).empty() ? 0 : *std::max_element((OPT).cbegin(), (OPT).cend()))) + // copied from PrusaSlicer std::string GCodeWriter::set_acceleration_internal(Acceleration type, unsigned int acceleration) { // Clamp the acceleration to the allowed maximum. - if (type == Acceleration::Print && m_max_acceleration > 0 && acceleration > m_max_acceleration) - acceleration = m_max_acceleration; - if (type == Acceleration::Travel && m_max_travel_acceleration > 0 && acceleration > m_max_travel_acceleration) - acceleration = m_max_travel_acceleration; + if (type == Acceleration::Print && EXTRUDER_LIMIT(m_max_acceleration) > 0 && acceleration > EXTRUDER_LIMIT(m_max_acceleration)) + acceleration = EXTRUDER_LIMIT(m_max_acceleration); + if (type == Acceleration::Travel && EXTRUDER_LIMIT(m_max_travel_acceleration) > 0 && acceleration > EXTRUDER_LIMIT(m_max_travel_acceleration)) + acceleration = EXTRUDER_LIMIT(m_max_travel_acceleration); // Are we setting travel acceleration for a flavour that supports separate travel and print acc? bool separate_travel = (type == Acceleration::Travel && supports_separate_travel_acceleration(this->config.gcode_flavor)); @@ -262,10 +310,10 @@ std::string GCodeWriter::set_jerk_xy(double jerk) std::ostringstream gcode; if (FLAVOR_IS(gcfKlipper)) { // Clamp the jerk to the allowed maximum. - if (m_max_jerk_x > 0 && jerk > m_max_jerk_x) - jerk = m_max_jerk_x; - if (m_max_jerk_y > 0 && jerk > m_max_jerk_y) - jerk = m_max_jerk_y; + if (EXTRUDER_LIMIT(m_max_jerk_x) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_x)) + jerk = EXTRUDER_LIMIT(m_max_jerk_x); + if (EXTRUDER_LIMIT(m_max_jerk_y) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_y)) + jerk = EXTRUDER_LIMIT(m_max_jerk_y); gcode << "SET_VELOCITY_LIMIT SQUARE_CORNER_VELOCITY=" << jerk; @@ -274,12 +322,12 @@ std::string GCodeWriter::set_jerk_xy(double jerk) double jerk_xy = jerk; // Clamp against the X machine limit - if (m_max_jerk_x > 0 && jerk_xy > m_max_jerk_x) - jerk_xy = m_max_jerk_x; + if (EXTRUDER_LIMIT(m_max_jerk_x) > 0 && jerk_xy > EXTRUDER_LIMIT(m_max_jerk_x)) + jerk_xy = EXTRUDER_LIMIT(m_max_jerk_x); // Clamp against the Y machine limit as well to be safe - if (m_max_jerk_y > 0 && jerk_xy > m_max_jerk_y) - jerk_xy = m_max_jerk_y; + if (EXTRUDER_LIMIT(m_max_jerk_y) > 0 && jerk_xy > EXTRUDER_LIMIT(m_max_jerk_y)) + jerk_xy = EXTRUDER_LIMIT(m_max_jerk_y); // Output the lowest safe limit using ONLY the X parameter gcode << "M207 X" << jerk_xy; @@ -287,16 +335,16 @@ std::string GCodeWriter::set_jerk_xy(double jerk) double jerk_x = jerk; double jerk_y = jerk; // Clamp the axis jerk to the allowed maximum. - if (m_max_jerk_x > 0 && jerk > m_max_jerk_x) - jerk_x = m_max_jerk_x; - if (m_max_jerk_y > 0 && jerk > m_max_jerk_y) - jerk_y = m_max_jerk_y; + if (EXTRUDER_LIMIT(m_max_jerk_x) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_x)) + jerk_x = EXTRUDER_LIMIT(m_max_jerk_x); + if (EXTRUDER_LIMIT(m_max_jerk_y) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_y)) + jerk_y = EXTRUDER_LIMIT(m_max_jerk_y); gcode << "M205 X" << jerk_x << " Y" << jerk_y; } //the is_bbl check should be in the else statement above so that it doesn't inadverently added Z & E to klipper if (m_is_bbl_printers) - gcode << std::setprecision(2) << " Z" << m_max_jerk_z << " E" << m_max_jerk_e; + gcode << std::setprecision(2) << " Z" << EXTRUDER_LIMIT(m_max_jerk_z) << " E" << EXTRUDER_LIMIT(m_max_jerk_e); if (GCodeWriter::full_gcode_comment) gcode << " ; adjust jerk"; gcode << "\n"; @@ -312,8 +360,8 @@ std::string GCodeWriter::set_accel_and_jerk(unsigned int acceleration, double je throw std::runtime_error(_u8L("set_accel_and_jerk() is only supported by Klipper")); // Clamp the acceleration to the allowed maximum. - if (m_max_acceleration > 0 && acceleration > m_max_acceleration) - acceleration = m_max_acceleration; + if (EXTRUDER_LIMIT(m_max_acceleration) > 0 && acceleration > EXTRUDER_LIMIT(m_max_acceleration)) + acceleration = EXTRUDER_LIMIT(m_max_acceleration); bool is_empty = true; std::ostringstream gcode; @@ -327,10 +375,10 @@ std::string GCodeWriter::set_accel_and_jerk(unsigned int acceleration, double je is_empty = false; } // Clamp the jerk to the allowed maximum. - if (m_max_jerk_x > 0 && jerk > m_max_jerk_x) - jerk = m_max_jerk_x; - if (m_max_jerk_y > 0 && jerk > m_max_jerk_y) - jerk = m_max_jerk_y; + if (EXTRUDER_LIMIT(m_max_jerk_x) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_x)) + jerk = EXTRUDER_LIMIT(m_max_jerk_x); + if (EXTRUDER_LIMIT(m_max_jerk_y) > 0 && jerk > EXTRUDER_LIMIT(m_max_jerk_y)) + jerk = EXTRUDER_LIMIT(m_max_jerk_y); if (jerk > 0.01 && !is_approx(jerk, m_last_jerk)) { gcode << " SQUARE_CORNER_VELOCITY=" << jerk; @@ -351,13 +399,13 @@ std::string GCodeWriter::set_accel_and_jerk(unsigned int acceleration, double je std::string GCodeWriter::set_junction_deviation(double junction_deviation){ std::ostringstream gcode; - if (FLAVOR_IS(gcfMarlinFirmware) && m_max_junction_deviation > 0 && junction_deviation > 0) { + if (FLAVOR_IS(gcfMarlinFirmware) && EXTRUDER_LIMIT(m_max_junction_deviation) > 0 && junction_deviation > 0) { // Clamp the junction deviation to the allowed maximum. gcode << "M205 J"; - if (junction_deviation <= m_max_junction_deviation) { + if (junction_deviation <= EXTRUDER_LIMIT(m_max_junction_deviation)) { gcode << std::fixed << std::setprecision(3) << junction_deviation; } else { - gcode << std::fixed << std::setprecision(3) << m_max_junction_deviation; + gcode << std::fixed << std::setprecision(3) << EXTRUDER_LIMIT(m_max_junction_deviation); } if (GCodeWriter::full_gcode_comment) { gcode << " ; Junction Deviation"; @@ -610,7 +658,7 @@ std::string GCodeWriter::travel_to_xy(const Vec2d &point, const std::string &com GCodeG1Formatter w; w.emit_xy(point_on_plate); auto speed = m_is_first_layer - ? this->config.get_abs_value("initial_layer_travel_speed") : this->config.travel_speed.value; + ? this->config.get_abs_value_at("initial_layer_travel_speed", get_extruder_index(this->config, filament()->id())) : this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())); w.emit_f(speed * 60.0); //BBS w.emit_comment(GCodeWriter::full_gcode_comment, comment); @@ -696,7 +744,7 @@ std::string GCodeWriter::travel_to_xyz(const Vec3d &point, const std::string &co // BBS Vec3d dest_point = point; auto travel_speed = - m_is_first_layer ? this->config.get_abs_value("initial_layer_travel_speed") : this->config.travel_speed.value; + m_is_first_layer ? this->config.get_abs_value_at("initial_layer_travel_speed", get_extruder_index(this->config, filament()->id())) : this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())); //BBS: a z_hop need to be handle when travel if (std::abs(m_to_lift) > EPSILON) { assert(std::abs(m_lifted) < EPSILON); @@ -793,13 +841,13 @@ std::string GCodeWriter::travel_to_xyz(const Vec3d &point, const std::string &co { //force to move xy first then z after filament change w.emit_xy(Vec2d(point_on_plate.x(), point_on_plate.y())); - w.emit_f(this->config.travel_speed.value * 60.0); + w.emit_f(this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())) * 60.0); w.emit_comment(GCodeWriter::full_gcode_comment, comment); out_string = w.string() + _travel_to_z(point_on_plate.z(), comment); } else { GCodeG1Formatter w; w.emit_xyz(point_on_plate); - w.emit_f(this->config.travel_speed.value * 60.0); + w.emit_f(this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())) * 60.0); w.emit_comment(GCodeWriter::full_gcode_comment, comment); out_string = w.string(); } @@ -832,10 +880,10 @@ std::string GCodeWriter::_travel_to_z(double z, const std::string &comment) { m_pos(2) = z; - double speed = this->config.travel_speed_z.value; + double speed = this->config.travel_speed_z.get_at(get_extruder_index(this->config, filament()->id())); if (speed == 0.) { - speed = m_is_first_layer ? this->config.get_abs_value("initial_layer_travel_speed") - : this->config.travel_speed.value; + speed = m_is_first_layer ? this->config.get_abs_value_at("initial_layer_travel_speed", get_extruder_index(this->config, filament()->id())) + : this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())); } GCodeG1Formatter w; @@ -849,11 +897,11 @@ std::string GCodeWriter::_travel_to_z(double z, const std::string &comment) std::string GCodeWriter::_spiral_travel_to_z(double z, const Vec2d &ij_offset, const std::string &comment) { std::string output; - double speed = this->config.travel_speed_z.value; + double speed = this->config.travel_speed_z.get_at(get_extruder_index(this->config, filament()->id())); if (speed == 0.) { - speed = m_is_first_layer ? this->config.get_abs_value("initial_layer_travel_speed") - : this->config.travel_speed.value; + speed = m_is_first_layer ? this->config.get_abs_value_at("initial_layer_travel_speed", get_extruder_index(this->config, filament()->id())) + : this->config.travel_speed.get_at(get_extruder_index(this->config, filament()->id())); } if (!this->config.enable_arc_fitting) { // Orca: if arc fitting is disabled, approximate the arc with small linear segments diff --git a/src/libslic3r/GCodeWriter.hpp b/src/libslic3r/GCodeWriter.hpp index 10e52a1c8e..d3f419df7c 100644 --- a/src/libslic3r/GCodeWriter.hpp +++ b/src/libslic3r/GCodeWriter.hpp @@ -135,22 +135,22 @@ public: bool m_single_extruder_multi_material; std::vector m_curr_filament_extruder; int m_curr_extruder_id; - unsigned int m_last_acceleration; - unsigned int m_last_travel_acceleration; - unsigned int m_max_travel_acceleration; + unsigned int m_last_acceleration; + unsigned int m_last_travel_acceleration; + std::vector m_max_travel_acceleration; // Limit for setting the acceleration, to respect the machine limits set for the Marlin firmware. - // If set to zero, the limit is not in action. - unsigned int m_max_acceleration; - double m_max_jerk_x; - double m_max_jerk_y; - double m_last_jerk; - double m_max_jerk_z; - double m_max_jerk_e; - double m_max_junction_deviation; + // If set to zero, the limit is not in action. Indexed by 0-based physical nozzle id. + std::vector m_max_acceleration; + std::vector m_max_jerk_x; + std::vector m_max_jerk_y; + double m_last_jerk; + std::vector m_max_jerk_z; + std::vector m_max_jerk_e; + std::vector m_max_junction_deviation; - unsigned int m_travel_acceleration; - unsigned int m_travel_jerk; + // unsigned int m_travel_acceleration; + // unsigned int m_travel_jerk; //BBS diff --git a/src/libslic3r/Int128.hpp b/src/libslic3r/Int128.hpp index 8dc9e012dd..f8951f20f9 100644 --- a/src/libslic3r/Int128.hpp +++ b/src/libslic3r/Int128.hpp @@ -188,8 +188,9 @@ public: static inline Int128 multiply(int64_t lhs, int64_t rhs) { -#if defined(_MSC_VER) && defined(_WIN64) - // On Visual Studio 64bit, use the _mul128() intrinsic function. +#if defined(_MSC_VER) && defined(_M_X64) + // On Visual Studio x64, use the _mul128() intrinsic function. + // (ARM64 MSVC has no _mul128; it falls through to the portable path.) Int128 result; result.m_lo = (uint64_t)_mul128(lhs, rhs, &result.m_hi); return result; diff --git a/src/libslic3r/Layer.cpp b/src/libslic3r/Layer.cpp index 5bdc156d01..b3a145bed0 100644 --- a/src/libslic3r/Layer.cpp +++ b/src/libslic3r/Layer.cpp @@ -136,7 +136,7 @@ ExPolygons Layer::merged(float offset_scaled) const return out; } -bool Layer::is_perimeter_compatible(const PrintRegion& a, const PrintRegion& b) +bool Layer::is_perimeter_compatible(const Print& print, const PrintRegion& a, const PrintRegion& b) { const PrintRegionConfig& config = a.config(); const PrintRegionConfig& other_config = b.config(); @@ -146,10 +146,11 @@ bool Layer::is_perimeter_compatible(const PrintRegion& a, const PrintRegion& b) && config.wall_loops == other_config.wall_loops && config.wall_sequence == other_config.wall_sequence && config.is_infill_first == other_config.is_infill_first - && config.inner_wall_speed == other_config.inner_wall_speed - && config.outer_wall_speed == other_config.outer_wall_speed - && config.small_perimeter_speed == other_config.small_perimeter_speed - && config.gap_infill_speed.value == other_config.gap_infill_speed.value + && config.inner_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.inner_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) + && config.outer_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.outer_wall_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) + && config.small_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.small_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) + && config.small_support_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.small_support_perimeter_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) + && config.gap_infill_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) == other_config.gap_infill_speed.get_at(print.get_extruder_id(config.outer_wall_filament_id)) && config.filter_out_gap_fill.value == other_config.filter_out_gap_fill.value && config.detect_overhang_wall == other_config.detect_overhang_wall && config.overhang_reverse == other_config.overhang_reverse @@ -209,7 +210,7 @@ void Layer::make_perimeters() if (! (*it)->slices.empty()) { LayerRegion* other_layerm = *it; const PrintRegion &other_region = other_layerm->region(); - if (is_perimeter_compatible(this_region, other_region)) + if (is_perimeter_compatible(*m_object->print(), this_region, other_region)) { other_layerm->perimeters.clear(); other_layerm->fills.clear(); diff --git a/src/libslic3r/Layer.hpp b/src/libslic3r/Layer.hpp index cb2e6c7c1a..d871bcbea2 100644 --- a/src/libslic3r/Layer.hpp +++ b/src/libslic3r/Layer.hpp @@ -17,6 +17,7 @@ class LayerRegion; using LayerRegionPtrs = std::vector; class PrintRegion; class PrintObject; +class Print; namespace FillAdaptive { struct Octree; @@ -186,7 +187,7 @@ public: } // Whether two regions can be printed in a continues perimeter - static bool is_perimeter_compatible(const PrintRegion& a, const PrintRegion& b); + static bool is_perimeter_compatible(const Print& print, const PrintRegion& a, const PrintRegion& b); void make_perimeters(); // Phony version of make_fills() without parameters for Perl integration only. void make_fills() { this->make_fills(nullptr, nullptr); } diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp index 5ab9e00840..eb9153a661 100644 --- a/src/libslic3r/Model.cpp +++ b/src/libslic3r/Model.cpp @@ -187,8 +187,8 @@ Model Model::read_from_step(const std::string& ImportStepProgressFn stepFn, StepIsUtf8Fn stepIsUtf8Fn, std::function step_mesh_fn, - double linear_defletion, - double angle_defletion, + double linear_deflection, + double angle_deflection, bool is_split_compound) { Model model; @@ -201,13 +201,13 @@ Model Model::read_from_step(const std::string& goto _finished; } if (step_mesh_fn) { - if (step_mesh_fn(step_file, linear_defletion, angle_defletion, is_split_compound) == -1) { + if (step_mesh_fn(step_file, linear_deflection, angle_deflection, is_split_compound) == -1) { status = Step::Step_Status::CANCEL; goto _finished; } } - status = step_file.mesh(&model, is_cb_cancel, is_split_compound, linear_defletion, angle_defletion); + status = step_file.mesh(&model, is_cb_cancel, is_split_compound, linear_deflection, angle_deflection); _finished: @@ -2708,6 +2708,23 @@ const TriangleMesh& ModelVolume::get_convex_hull() const return *m_convex_hull.get(); } +// Orca: get volume bbox for separate infill +static std::mutex mtx_model; +BoundingBox ModelVolume::get_volume_bbox(const Transform3d &matrix, Point &shift, bool apply_cache = false) { + std::unique_lock l(mtx_model); // locks function here + // Orca: the cache is keyed by the instance transform/shift; a ModelVolume is shared + // across instances, so returning the cache blindly would hand back another instance's bbox. + if (m_cached_volume_bbox.defined && apply_cache + && matrix.isApprox(m_cached_volume_bbox_matrix) + && shift == m_cached_volume_bbox_shift) + return m_cached_volume_bbox; + auto hull = get_convex_hull_2d(matrix); + hull.translate(-shift); + m_cached_volume_bbox_matrix = matrix; + m_cached_volume_bbox_shift = shift; + return m_cached_volume_bbox = hull.bounding_box().polygon().bounding_box(); +} + //BBS: refine the model part names ModelVolumeType ModelVolume::type_from_string(const std::string &s) { @@ -2972,31 +2989,31 @@ void Model::setPrintSpeedTable(const DynamicPrintConfig& config, const PrintConf //Slic3r::DynamicPrintConfig config = wxGetApp().preset_bundle->full_config(); printSpeedMap.maxSpeed = 0; if (config.has("inner_wall_speed")) { - printSpeedMap.perimeterSpeed = config.opt_float("inner_wall_speed"); + printSpeedMap.perimeterSpeed = config.opt_float_nullable("inner_wall_speed", 0); if (printSpeedMap.perimeterSpeed > printSpeedMap.maxSpeed) printSpeedMap.maxSpeed = printSpeedMap.perimeterSpeed; } if (config.has("outer_wall_speed")) { - printSpeedMap.externalPerimeterSpeed = config.opt_float("outer_wall_speed"); + printSpeedMap.externalPerimeterSpeed = config.opt_float_nullable("outer_wall_speed", 0); printSpeedMap.maxSpeed = std::max(printSpeedMap.maxSpeed, printSpeedMap.externalPerimeterSpeed); } if (config.has("sparse_infill_speed")) { - printSpeedMap.infillSpeed = config.opt_float("sparse_infill_speed"); + printSpeedMap.infillSpeed = config.opt_float_nullable("sparse_infill_speed", 0); if (printSpeedMap.infillSpeed > printSpeedMap.maxSpeed) printSpeedMap.maxSpeed = printSpeedMap.infillSpeed; } if (config.has("internal_solid_infill_speed")) { - printSpeedMap.solidInfillSpeed = config.opt_float("internal_solid_infill_speed"); + printSpeedMap.solidInfillSpeed = config.opt_float_nullable("internal_solid_infill_speed", 0); if (printSpeedMap.solidInfillSpeed > printSpeedMap.maxSpeed) printSpeedMap.maxSpeed = printSpeedMap.solidInfillSpeed; } if (config.has("top_surface_speed")) { - printSpeedMap.topSolidInfillSpeed = config.opt_float("top_surface_speed"); + printSpeedMap.topSolidInfillSpeed = config.opt_float_nullable("top_surface_speed", 0); if (printSpeedMap.topSolidInfillSpeed > printSpeedMap.maxSpeed) printSpeedMap.maxSpeed = printSpeedMap.topSolidInfillSpeed; } if (config.has("support_speed")) { - printSpeedMap.supportSpeed = config.opt_float("support_speed"); + printSpeedMap.supportSpeed = config.opt_float_nullable("support_speed", 0); if (printSpeedMap.supportSpeed > printSpeedMap.maxSpeed) printSpeedMap.maxSpeed = printSpeedMap.supportSpeed; @@ -3226,25 +3243,28 @@ double Model::findMaxSpeed(const ModelObject* object) { double topSolidInfillSpeedObj = Model::printSpeedMap.topSolidInfillSpeed; double supportSpeedObj = Model::printSpeedMap.supportSpeed; double smallPerimeterSpeedObj = Model::printSpeedMap.smallPerimeterSpeed; + double smallSupportPerimeterSpeedObj = Model::printSpeedMap.smallSupportPerimeterSpeed; for (std::string objectKey : objectKeys) { if (objectKey == "inner_wall_speed"){ - perimeterSpeedObj = object->config.opt_float(objectKey); + perimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); externalPerimeterSpeedObj = Model::printSpeedMap.externalPerimeterSpeed / Model::printSpeedMap.perimeterSpeed * perimeterSpeedObj; } if (objectKey == "sparse_infill_speed") - infillSpeedObj = object->config.opt_float(objectKey); + infillSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "internal_solid_infill_speed") - solidInfillSpeedObj = object->config.opt_float(objectKey); + solidInfillSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "top_surface_speed") - topSolidInfillSpeedObj = object->config.opt_float(objectKey); + topSolidInfillSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "support_speed") - supportSpeedObj = object->config.opt_float(objectKey); + supportSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "outer_wall_speed") - externalPerimeterSpeedObj = object->config.opt_float(objectKey); + externalPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); if (objectKey == "small_perimeter_speed") - smallPerimeterSpeedObj = object->config.opt_float(objectKey); + smallPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); + if (objectKey == "small_support_perimeter_speed") + smallSupportPerimeterSpeedObj = object->config.get().opt_float_nullable(objectKey, 0); } - objMaxSpeed = std::max(perimeterSpeedObj, std::max(externalPerimeterSpeedObj, std::max(infillSpeedObj, std::max(solidInfillSpeedObj, std::max(topSolidInfillSpeedObj, std::max(supportSpeedObj, std::max(smallPerimeterSpeedObj, objMaxSpeed))))))); + objMaxSpeed = std::max(perimeterSpeedObj, std::max(externalPerimeterSpeedObj, std::max(infillSpeedObj, std::max(solidInfillSpeedObj, std::max(topSolidInfillSpeedObj, std::max(supportSpeedObj, std::max(smallPerimeterSpeedObj, std::max(smallSupportPerimeterSpeedObj, objMaxSpeed)))))))); if (objMaxSpeed <= 0) objMaxSpeed = 250.; return objMaxSpeed; } diff --git a/src/libslic3r/Model.hpp b/src/libslic3r/Model.hpp index d8697adb41..518fbbaa1c 100644 --- a/src/libslic3r/Model.hpp +++ b/src/libslic3r/Model.hpp @@ -920,6 +920,14 @@ public: // Extruder ID is only valid for FFF. Returns -1 for SLA or if the extruder ID is not applicable (support volumes). int extruder_id() const; + //Orca: cache clearing procedure to ensure that the shape is positioned accurately when manipulating it + void clear_cache() { + m_cached_trans_matrix = Transform3d::Identity().inverse(); // get unvelivable matrix + m_cached_volume_bbox.reset(); + m_convex_hull_2d.clear(); + m_cached_2d_polygon.clear(); + }; + bool is_splittable() const; // BBS @@ -961,39 +969,42 @@ public: // Get count of errors in the mesh int get_repaired_errors_count() const; + BoundingBox get_volume_bbox(const Transform3d &matrix, Point &shift, bool apply_cache); + void reset_volume_bbox() { m_cached_volume_bbox.reset(); }; + // Helpers for loading / storing into AMF / 3MF files. static ModelVolumeType type_from_string(const std::string &s); static std::string type_to_string(const ModelVolumeType t); const Geometry::Transformation& get_transformation() const { return m_transformation; } - void set_transformation(const Geometry::Transformation& transformation) { m_transformation = transformation; } - void set_transformation(const Transform3d& trafo) { m_transformation.set_matrix(trafo); } + void set_transformation(const Geometry::Transformation& transformation) { clear_cache(); m_transformation = transformation; } + void set_transformation(const Transform3d& trafo) { clear_cache(); m_transformation.set_matrix(trafo); } Vec3d get_offset() const { return m_transformation.get_offset(); } double get_offset(Axis axis) const { return m_transformation.get_offset(axis); } - void set_offset(const Vec3d& offset) { m_transformation.set_offset(offset); } - void set_offset(Axis axis, double offset) { m_transformation.set_offset(axis, offset); } + void set_offset(const Vec3d& offset) { clear_cache(); m_transformation.set_offset(offset); } + void set_offset(Axis axis, double offset) { clear_cache(); m_transformation.set_offset(axis, offset); } Vec3d get_rotation() const { return m_transformation.get_rotation(); } double get_rotation(Axis axis) const { return m_transformation.get_rotation(axis); } - void set_rotation(const Vec3d& rotation) { m_transformation.set_rotation(rotation); } - void set_rotation(Axis axis, double rotation) { m_transformation.set_rotation(axis, rotation); } + void set_rotation(const Vec3d& rotation) { clear_cache(); m_transformation.set_rotation(rotation); } + void set_rotation(Axis axis, double rotation) { clear_cache(); m_transformation.set_rotation(axis, rotation); } Vec3d get_scaling_factor() const { return m_transformation.get_scaling_factor(); } double get_scaling_factor(Axis axis) const { return m_transformation.get_scaling_factor(axis); } - void set_scaling_factor(const Vec3d& scaling_factor) { m_transformation.set_scaling_factor(scaling_factor); } - void set_scaling_factor(Axis axis, double scaling_factor) { m_transformation.set_scaling_factor(axis, scaling_factor); } + void set_scaling_factor(const Vec3d& scaling_factor) { clear_cache(); m_transformation.set_scaling_factor(scaling_factor); } + void set_scaling_factor(Axis axis, double scaling_factor) {clear_cache(); m_transformation.set_scaling_factor(axis, scaling_factor); } Vec3d get_mirror() const { return m_transformation.get_mirror(); } double get_mirror(Axis axis) const { return m_transformation.get_mirror(axis); } bool is_left_handed() const { return m_transformation.is_left_handed(); } - void set_mirror(const Vec3d& mirror) { m_transformation.set_mirror(mirror); } - void set_mirror(Axis axis, double mirror) { m_transformation.set_mirror(axis, mirror); } + void set_mirror(const Vec3d& mirror) { clear_cache(); m_transformation.set_mirror(mirror); } + void set_mirror(Axis axis, double mirror) { clear_cache(); m_transformation.set_mirror(axis, mirror); } void convert_from_imperial_units(); void convert_from_meters(); @@ -1048,6 +1059,9 @@ private: mutable Transform3d m_cached_trans_matrix; //BBS, used for convex_hell_2d acceleration mutable Polygon m_cached_2d_polygon; //BBS, used for convex_hell_2d acceleration Geometry::Transformation m_transformation; + mutable BoundingBox m_cached_volume_bbox; //Orca: used for separated infills + mutable Transform3d m_cached_volume_bbox_matrix{Transform3d::Identity()}; //Orca: cache key for m_cached_volume_bbox + mutable Point m_cached_volume_bbox_shift{Point(0, 0)}; //Orca: cache key for m_cached_volume_bbox //BBS: add convex_hell_2d related logic void calculate_convex_hull_2d(const Geometry::Transformation &transformation) const; @@ -1467,6 +1481,7 @@ struct GlobalSpeedMap double topSolidInfillSpeed; double supportSpeed; double smallPerimeterSpeed; + double smallSupportPerimeterSpeed; double maxSpeed; Polygon bed_poly; }; @@ -1588,8 +1603,8 @@ public: ImportStepProgressFn stepFn, StepIsUtf8Fn stepIsUtf8Fn, std::function step_mesh_fn, - double linear_defletion, - double angle_defletion, + double linear_deflection, + double angle_deflection, bool is_split_compound); //BBS: add part plate related logic diff --git a/src/libslic3r/MultiMaterialSegmentation.cpp b/src/libslic3r/MultiMaterialSegmentation.cpp index 942af96a7d..9e465715d5 100644 --- a/src/libslic3r/MultiMaterialSegmentation.cpp +++ b/src/libslic3r/MultiMaterialSegmentation.cpp @@ -1352,7 +1352,7 @@ static inline std::vector> segmentation_top_and_bottom_l out.extrusion_width = std::max(out.extrusion_width, outer_wall_line_width); out.top_shell_layers = std::max(out.top_shell_layers, config.top_shell_layers); out.bottom_shell_layers = std::max(out.bottom_shell_layers, config.bottom_shell_layers); - out.small_region_threshold = config.gap_infill_speed.value > 0 ? + out.small_region_threshold = config.gap_infill_speed.get_at(print_object.print()->get_extruder_id(config.outer_wall_filament_id - 1)) > 0 ? // Gap fill enabled. Enable a single line of 1/2 extrusion width. 0.5f * outer_wall_line_width : // Gap fill disabled. Enable two lines slightly overlapping. diff --git a/src/libslic3r/PerimeterGenerator.cpp b/src/libslic3r/PerimeterGenerator.cpp index 1a0f129c0d..1c785c3184 100644 --- a/src/libslic3r/PerimeterGenerator.cpp +++ b/src/libslic3r/PerimeterGenerator.cpp @@ -571,6 +571,19 @@ static ExtrusionEntityCollection traverse_extrusions(const PerimeterGenerator& p return extrusion_coll; } +// ORCA: only_one_wall_top detects the top as "slice − upper", so a feature rising from the middle of a +// top surface becomes an enclosed hole that gets ringed with extra inner walls. Fill those holes back +// into the top. Only holes that are both covered by the upper layer (excludes bridges) and backed by +// solid material (excludes voids) are filled. +static ExPolygons fill_enclosed_top_feature_holes(const ExPolygons &top, const Polygons &covered_by_upper, const ExPolygons &solid) +{ + ExPolygons filled = top; + for (ExPolygon &ex : filled) + ex.holes.clear(); + const ExPolygons feature_holes = intersection_ex(intersection_ex(diff_ex(filled, top), covered_by_upper), solid); + return feature_holes.empty() ? top : union_ex(top, feature_holes); +} + void PerimeterGenerator::split_top_surfaces(const ExPolygons &orig_polygons, ExPolygons &top_fills, ExPolygons &non_top_polygons, ExPolygons &fill_clip) const { // other perimeters @@ -581,7 +594,7 @@ void PerimeterGenerator::split_top_surfaces(const ExPolygons &orig_polygons, ExP coord_t ext_perimeter_width = this->ext_perimeter_flow.scaled_width(); coord_t ext_perimeter_spacing = this->ext_perimeter_flow.scaled_spacing(); - bool has_gap_fill = this->config->gap_infill_speed.value > 0; + bool has_gap_fill = this->config->gap_infill_speed.get_at(get_extruder_index(*print_config, this->config->outer_wall_filament_id - 1)) > 0; // split the polygons with top/not_top // get the offset from solid surface anchor @@ -636,6 +649,8 @@ void PerimeterGenerator::split_top_surfaces(const ExPolygons &orig_polygons, ExP ExPolygons delete_bridge = diff_ex(orig_polygons, bridge_checker, ApplySafetyOffset::Yes); ExPolygons top_polygons = diff_ex(delete_bridge, upper_polygons_series_clipped, ApplySafetyOffset::Yes); + top_polygons = fill_enclosed_top_feature_holes(top_polygons, upper_polygons_series_clipped, orig_polygons); + // get the not-top surface, from the "real top" but enlarged by external_infill_margin (and the // min_width_top_surface we removed a bit before) ExPolygons temp_gap = diff_ex(top_polygons, fill_clip); @@ -1189,7 +1204,7 @@ void PerimeterGenerator::process_classic() // internal flow which is unrelated. coord_t min_spacing = coord_t(perimeter_spacing * (1 - INSET_OVERLAP_TOLERANCE)); coord_t ext_min_spacing = coord_t(ext_perimeter_spacing * (1 - INSET_OVERLAP_TOLERANCE)); - bool has_gap_fill = this->config->gap_infill_speed.value > 0; + bool has_gap_fill = this->config->gap_infill_speed.get_at(get_extruder_index(*print_config, this->config->outer_wall_filament_id - 1)) > 0; // BBS: this flow is for smaller external perimeter for small area coord_t ext_min_spacing_smaller = coord_t(ext_perimeter_spacing * (1 - SMALLER_EXT_INSET_OVERLAP_TOLERANCE)); @@ -2194,6 +2209,7 @@ void PerimeterGenerator::process_arachne() upper_slices_clipped = ClipperUtils::clip_clipper_polygons_with_subject_bbox(*upper_slices, infill_contour_bbox); top_expolygons = diff_ex(infill_contour, upper_slices_clipped); + top_expolygons = fill_enclosed_top_feature_holes(top_expolygons, upper_slices_clipped, infill_contour); if (!top_expolygons.empty()) { if (lower_slices != nullptr) { diff --git a/src/libslic3r/PlaceholderParser.cpp b/src/libslic3r/PlaceholderParser.cpp index f03a5cee38..e3a4037590 100644 --- a/src/libslic3r/PlaceholderParser.cpp +++ b/src/libslic3r/PlaceholderParser.cpp @@ -712,6 +712,26 @@ namespace client static void regex_matches (expr &lhs, IteratorRange &rhs) { return regex_op(lhs, rhs, '=', lhs); } static void regex_doesnt_match(expr &lhs, IteratorRange &rhs) { return regex_op(lhs, rhs, '!', lhs); } + // Replace every match of the regular expression 'pattern' in the string 'subject' with 'replacement'. + // The replacement may reference capture groups ($1, $2, ...). Store the result into subject. + static void regex_replace(expr &subject, IteratorRange &pattern, expr &replacement) + { + if (subject.type() == TYPE_EMPTY) + // Inside an if / else block to be skipped + return; + if (subject.type() != TYPE_STRING) + subject.throw_exception("regex_replace() first parameter must be a string."); + try { + std::string re(++ pattern.begin(), -- pattern.end()); + std::string result = SLIC3R_REGEX_NAMESPACE::regex_replace(subject.s(), SLIC3R_REGEX_NAMESPACE::regex(re), replacement.to_string()); + subject.set_s(std::move(result)); + } catch (SLIC3R_REGEX_NAMESPACE::regex_error &ex) { + // Syntax error in the regular expression + boost::throw_exception(qi::expectation_failure( + pattern.begin(), pattern.end(), spirit::info(std::string("*Regular expression compilation failed: ") + ex.what()))); + } + } + static void one_of_test_init(expr &out) { out.set_b(false); } @@ -836,9 +856,11 @@ namespace client static std::map tag_to_error_message; size_t get_extruder_id() const { - const ConfigOptionInts * filament_map_opt = external_config->option("filament_map"); - if (filament_map_opt && current_extruder_id < filament_map_opt->values.size()) { - return filament_map_opt->values[current_extruder_id]; + if (external_config != nullptr) { + const ConfigOptionInts * filament_map_opt = external_config->option("filament_map"); + if (filament_map_opt && current_extruder_id < filament_map_opt->values.size()) { + return filament_map_opt->values[current_extruder_id]; + } } return 0; } @@ -1096,27 +1118,109 @@ namespace client const ConfigOptionVectorBase* vec = static_cast(opt.opt); if (vec->empty()) ctx->throw_exception("Indexing an empty vector variable", opt.it_range); + + // Helper to resolve a FloatOrPercent value (handles ratio_over chain for percent values). + // elem_index: the element index used to access this vector element, so that + // parent vectors (via ratio_over) use the same index rather than the current extruder. + auto resolve_float_or_percent = [ctx, &opt, &output](const FloatOrPercent &fop, size_t elem_index) { + std::string opt_key(opt.it_range.begin(), opt.it_range.end()); + if (boost::ends_with(opt_key, "line_width")) { + // Line width supports defaults and a complex graph of dependencies. + output.set_d(Flow::extrusion_width(opt_key, *ctx, static_cast(ctx->current_extruder_id))); + } else if (! fop.percent) { + // Not a percent, just return the value. + output.set_d(fop.value); + } else { + // Resolve dependencies using the "ratio_over" link to a parent value. + const ConfigOptionDef *opt_def = print_config_def.get(opt_key); + assert(opt_def != nullptr); + double v = fop.value * 0.01; // percent to ratio + for (;;) { + const ConfigOption *opt_parent = opt_def->ratio_over.empty() ? nullptr : ctx->resolve_symbol(opt_def->ratio_over); + if (opt_parent == nullptr) + ctx->throw_exception("FloatOrPercent variable failed to resolve the \"ratio_over\" dependencies", opt.it_range); + if (boost::ends_with(opt_def->ratio_over, "line_width")) { + // Line width supports defaults and a complex graph of dependencies. + assert(opt_parent->type() == coFloatOrPercent); + v *= Flow::extrusion_width(opt_def->ratio_over, static_cast(opt_parent), *ctx, static_cast(ctx->current_extruder_id)); + break; + } + if (opt_parent->type() == coFloat || opt_parent->type() == coFloatOrPercent) { + v *= opt_parent->getFloat(); + if (opt_parent->type() == coFloat || ! static_cast(opt_parent)->percent) + break; + v *= 0.01; // percent to ratio + } else if (opt_parent->type() == coFloats) { + // Vector parent: extract the value for the current extruder. + const ConfigOptionFloatsNullable *parent_nullable = dynamic_cast(opt_parent); + if (parent_nullable) { + v *= (parent_nullable->size() == 1) ? parent_nullable->get_at(0) : parent_nullable->get_at(elem_index); + } else { + const ConfigOptionFloats *parent_vec = static_cast(opt_parent); + v *= (parent_vec->size() == 1) ? parent_vec->get_at(0) : parent_vec->get_at(elem_index); + } + break; + } else if (opt_parent->type() == coFloatsOrPercents) { + // Vector parent with percent support: extract the FloatOrPercent for the current extruder. + const ConfigOptionFloatsOrPercentsNullable *parent_nullable = dynamic_cast(opt_parent); + if (parent_nullable) { + const FloatOrPercent &parent_fop = (parent_nullable->size() == 1) ? parent_nullable->get_at(0) : parent_nullable->get_at(elem_index); + if (! parent_fop.percent) { + v *= parent_fop.value; + break; + } + v *= parent_fop.value * 0.01; // percent to ratio + } else { + const ConfigOptionFloatsOrPercents *parent_vec = static_cast(opt_parent); + const FloatOrPercent &parent_fop = (parent_vec->size() == 1) ? parent_vec->get_at(0) : parent_vec->get_at(elem_index); + if (! parent_fop.percent) { + v *= parent_fop.value; + break; + } + v *= parent_fop.value * 0.01; // percent to ratio + } + } + // Continue one level up in the "ratio_over" hierarchy. + opt_def = print_config_def.get(opt_def->ratio_over); + assert(opt_def != nullptr); + } + output.set_d(v); + } + }; + if (!opt.has_index()) { // Allow omitting extruder id when referencing vectors switch (opt.opt->type()) { case coFloats: { - const ConfigOptionFloatsNullable* opt_floatsnullable = static_cast(opt.opt); + const ConfigOptionFloatsNullable* opt_floatsnullable = dynamic_cast(opt.opt); if (opt_floatsnullable) { if (opt_floatsnullable->size() == 1) { // old version - output.set_d(static_cast(opt.opt)->get_at(0)); + output.set_d(opt_floatsnullable->get_at(0)); } else { - output.set_d(static_cast(opt.opt)->get_at(ctx->get_extruder_id())); + output.set_d(opt_floatsnullable->get_at(ctx->get_extruder_id())); } } else { const ConfigOptionFloats* opt_floats = static_cast(opt.opt); if (opt_floats->size() == 1) { // old version - output.set_d(static_cast(opt.opt)->get_at(0)); + output.set_d(opt_floats->get_at(0)); } else { - output.set_d(static_cast(opt.opt)->get_at(ctx->get_extruder_id())); + output.set_d(opt_floats->get_at(ctx->get_extruder_id())); } } break; } + case coFloatsOrPercents: { + const ConfigOptionFloatsOrPercentsNullable *opt_vec_nullable = dynamic_cast(opt.opt); + if (opt_vec_nullable) { + size_t elem_index = (opt_vec_nullable->size() == 1) ? 0 : ctx->get_extruder_id(); + resolve_float_or_percent(opt_vec_nullable->get_at(elem_index), elem_index); + } else { + const ConfigOptionFloatsOrPercents *opt_vec = static_cast(opt.opt); + size_t elem_index = (opt_vec->size() == 1) ? 0 : ctx->get_extruder_id(); + resolve_float_or_percent(opt_vec->get_at(elem_index), elem_index); + } + break; + } default: ctx->throw_exception("Referencing a vector variable when scalar is expected", opt.it_range); } } else { @@ -1131,6 +1235,15 @@ namespace client case coPoints: output.set_s(to_string(static_cast(opt.opt)->values[idx])); break; case coBools: output.set_b(static_cast(opt.opt)->values[idx] != 0); break; case coEnums: output.set_i(static_cast(opt.opt)->values[idx]); break; + case coFloatsOrPercents: { + const ConfigOptionFloatsOrPercentsNullable *opt_vec_nullable = dynamic_cast(opt.opt); + if (opt_vec_nullable) { + resolve_float_or_percent(opt_vec_nullable->values[idx], idx); + } else { + resolve_float_or_percent(static_cast(opt.opt)->values[idx], idx); + } + break; + } default: ctx->throw_exception("Unsupported vector variable type", opt.it_range); } @@ -2230,6 +2343,8 @@ namespace client [ px::bind(&expr::digits, _val, _2, _3) ] | (kw["zdigits"] > '(' > conditional_expression(_r1) [_val = _1] > ',' > conditional_expression(_r1) > optional_parameter(_r1)) [ px::bind(&expr::digits, _val, _2, _3) ] + | (kw["regex_replace"] > '(' > conditional_expression(_r1) [_val = _1] > ',' > regular_expression > ',' > conditional_expression(_r1) > ')') + [ px::bind(&expr::regex_replace, _val, _2, _3) ] | (kw["int"] > '(' > conditional_expression(_r1) > ')') [ px::bind(&FactorActions::to_int, _1, _val) ] | (kw["round"] > '(' > conditional_expression(_r1) > ')') [ px::bind(&FactorActions::round, _1, _val) ] | (kw["ceil"] > '(' > conditional_expression(_r1) > ')') [ px::bind(&FactorActions::ceil, _1, _val) ] @@ -2311,6 +2426,7 @@ namespace client ("min") ("max") ("random") + ("regex_replace") ("filament_change") ("repeat") ("round") diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp index 948c779137..b9319ec0e3 100644 --- a/src/libslic3r/Preset.cpp +++ b/src/libslic3r/Preset.cpp @@ -39,6 +39,8 @@ #include #include #include +#include +#include #include #include @@ -520,6 +522,39 @@ std::string Preset::get_type_string(Preset::Type type) } } +std::string generate_preset_setting_id(const std::string& vendor, const std::string& type, const std::string& name) +{ + if (vendor.empty() || name.empty()) + return ""; + + // Dedicated namespace for preset setting_ids, distinct from the cloud per-user + // namespace (OrcaCloudServiceAgent). Keep in sync with scripts/assign_vendor_setting_ids.py; + // never change this constant. + static const boost::uuids::uuid vendor_namespace = + boost::uuids::string_generator()("c1f4d9e2-7a3b-5c8d-9e0f-1a2b3c4d5e6f"); + + boost::uuids::name_generator_sha1 gen(vendor_namespace); + boost::uuids::uuid id = gen(vendor + "/" + type + "/" + name); + + // Render the low 16 base62 digits of the 128-bit id, most-significant first. + // Implemented as long-division over the 16 raw (big-endian) bytes so it stays + // portable (no __int128, which MSVC lacks) and matches the Python reference. + static const char ALPHABET[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; + unsigned char bytes[16]; + std::copy(id.begin(), id.end(), bytes); + char out[16]; + for (int pos = 15; pos >= 0; --pos) { + unsigned int rem = 0; + for (int i = 0; i < 16; ++i) { + unsigned int cur = (rem << 8) | bytes[i]; + bytes[i] = static_cast(cur / 62); + rem = cur % 62; + } + out[pos] = ALPHABET[rem]; + } + return std::string(out, 16); +} + std::string Preset::get_iot_type_string(Preset::Type type) { switch (type) { @@ -1009,9 +1044,14 @@ static std::vector s_Preset_print_options{ "lightning_prune_angle", "lightning_straightening_angle", "top_surface_pattern", + "top_surface_expansion", + "top_surface_expansion_margin", + "top_surface_expansion_direction", "bottom_surface_pattern", "infill_direction", "solid_infill_direction", + "top_layer_direction", + "bottom_layer_direction", "counterbore_hole_bridging", "infill_shift_step", "sparse_infill_rotate_template", @@ -1023,6 +1063,9 @@ static std::vector s_Preset_print_options{ "skin_infill_density", "align_infill_direction_to_model", "extra_solid_infills", + "anisotropic_surfaces", + "center_of_surface_pattern", + "separated_infills", "minimum_sparse_infill_area", "reduce_infill_retraction", "internal_solid_infill_pattern", @@ -1163,6 +1206,8 @@ static std::vector s_Preset_print_options{ "wall_maximum_deviation", "small_perimeter_speed", "small_perimeter_threshold", + "small_support_perimeter_speed", + "small_support_perimeter_threshold", "bridge_angle", "internal_bridge_angle", "relative_bridge_angle", @@ -1233,6 +1278,7 @@ static std::vector s_Preset_print_options{ "wipe_tower_bridging", "wipe_tower_extra_flow", "single_extruder_multi_material_priming", + "toolchange_ordering", "wipe_tower_rotation_angle", "tree_support_branch_distance_organic", "tree_support_branch_diameter_organic", @@ -1240,6 +1286,7 @@ static std::vector s_Preset_print_options{ "hole_to_polyhole", "hole_to_polyhole_threshold", "hole_to_polyhole_twisted", + "hole_to_polyhole_max_edges", "mmu_segmented_region_max_width", "mmu_segmented_region_interlocking_depth", "small_area_infill_flow_compensation", @@ -1283,7 +1330,7 @@ static std::vector s_Preset_filament_options {/*"filament_colour", // "bed_type", //BBS:temperature_vitrification "temperature_vitrification", "reduce_fan_stop_start_freq","dont_slow_down_outer_wall", "slow_down_for_layer_cooling", "fan_min_speed", - "fan_max_speed", "enable_overhang_bridge_fan", "overhang_fan_speed", "overhang_fan_threshold", "close_fan_the_first_x_layers", "close_additional_fan_first_x_layers", "first_x_layer_fan_speed", "full_fan_speed_layer", "additional_fan_full_speed_layer", "fan_cooling_layer_time", "slow_down_layer_time", "slow_down_min_speed", + "fan_max_speed", "enable_overhang_bridge_fan", "overhang_fan_speed", "overhang_fan_threshold", "close_fan_the_first_x_layers", "close_additional_fan_first_x_layers", "first_x_layer_fan_speed", "full_fan_speed_layer", "initial_layer_fan_speed", "additional_fan_full_speed_layer", "fan_cooling_layer_time", "slow_down_layer_time", "slow_down_min_speed", "filament_start_gcode", "filament_end_gcode", "filament_change_extrusion_role_gcode", //exhaust fan control "activate_air_filtration","activate_air_filtration_during_print","activate_air_filtration_on_completion","during_print_exhaust_fan_speed","complete_print_exhaust_fan_speed", @@ -1304,7 +1351,7 @@ static std::vector s_Preset_filament_options {/*"filament_colour", "filament_loading_speed", "filament_loading_speed_start", "filament_unloading_speed", "filament_unloading_speed_start", "filament_toolchange_delay", "filament_cooling_moves", "filament_stamping_loading_speed", "filament_stamping_distance", "filament_cooling_initial_speed", "filament_cooling_final_speed", "filament_ramming_parameters", - "filament_multitool_ramming", "filament_multitool_ramming_volume", "filament_multitool_ramming_flow", "activate_chamber_temp_control", + "filament_multitool_ramming", "filament_multitool_ramming_volume", "filament_multitool_ramming_flow", "activate_chamber_temp_control", "chamber_minimal_temperature", "filament_long_retractions_when_cut","filament_retraction_distances_when_cut", "idle_temperature", //BBS filament change length while the extruder color "filament_change_length","filament_flush_volumetric_speed","filament_flush_temp", "filament_cooling_before_tower", @@ -1637,6 +1684,7 @@ void PresetCollection::load_presets( std::string inherits_value = option_str->value; // Orca: try to find if the parent preset has been renamed inherit_preset = this->find_preset2(inherits_value); + Preset::normalize_inherits(config, inherit_preset); } else { ; } @@ -1821,6 +1869,26 @@ int PresetCollection::get_differed_values_to_update(Preset& preset, std::mapserialize(); } + + // Orca: force-emit nullable filament override keys whenever they hold a nil ("off") + // value, even when the diff dropped them because the parent is nil too. Otherwise the + // key is absent from the synced profile and the cloud re-materializes it against the + // option's non-nil default (e.g. filament_retract_before_wipe -> 100%), silently + // resurrecting an override the user turned off. See GitHub issue on Retract Before Wipe. + if (m_type == Preset::TYPE_FILAMENT) { + for (const std::string& opt_key : filament_extruder_override_keys) { + if (key_values.count(opt_key)) + continue; // already carried by the diff + const auto* opt_vec = dynamic_cast(preset.config.option(opt_key)); + if (opt_vec == nullptr) + continue; + bool has_nil = false; + for (size_t i = 0; i < opt_vec->size(); ++i) + if (opt_vec->is_nil(i)) { has_nil = true; break; } + if (has_nil) + key_values[opt_key] = opt_vec->serialize(); + } + } } else { for (auto iter = preset.config.cbegin(); iter != preset.config.cend(); ++iter) @@ -1889,6 +1957,7 @@ void PresetCollection::load_project_embedded_presets(std::vector& proje option_str->value = inherits_value; }*/ inherit_preset = this->find_preset2(inherits_value, true); + Preset::normalize_inherits(config, inherit_preset); } const Preset& default_preset = this->default_preset_for(config); if (inherit_preset) { @@ -2196,11 +2265,12 @@ bool PresetCollection::load_user_preset(std::string name, std::mapsecond.empty(); if (preset_inherits_from_parent) { - // This indicates that there is inherits exists but there is no base_id - BOOST_LOG_TRIVIAL(warning) << __FUNCTION__ - << boost::format("can not find base_id, not loading for user preset %1%") % canonical_name; - unlock(); - return false; + // No base_id stored although the preset inherits from a parent. Rather than + // dropping the preset, derive base_id on the fly from the resolved parent's + // setting_id below (the parent is found by its "inherits" name). Only the + // genuinely unresolvable-parent case is skipped, further down. + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ + << boost::format("no base_id for user preset %1%, will derive it from the parent") % canonical_name; } } @@ -2224,10 +2294,16 @@ bool PresetCollection::load_user_preset(std::string name, std::map (inherits_config); std::string inherits_value = option_str->value; inherit_preset = this->find_preset2(inherits_value, true); + Preset::normalize_inherits(cloud_config, inherit_preset); } const Preset& default_preset = this->default_preset_for(cloud_config); if (inherit_preset) { new_config = inherit_preset->config; + // Derive base_id from the resolved parent when it was not supplied. The + // parent's setting_id is itself computed deterministically at load time, so + // this stays stable. Does not affect the preset's own (cloud) setting_id. + if (based_id.empty()) + based_id = inherit_preset->setting_id; if (cloud_filament_id == "null") { cloud_filament_id = inherit_preset->filament_id; } @@ -2633,7 +2709,10 @@ std::pair PresetCollection::load_external_preset( preset.filament_id = filament_id; else { if (!inherits.empty()) { - Preset *parent = this->find_preset(inherits, false, true); + // Orca: resolve via find_preset2 so a renamed/removed-and-matched parent still + // yields its filament_id (external presets store a full config, so the dangling + // "inherits" itself is normalized on the next load_presets pass). + Preset *parent = this->find_preset2(inherits, true); if (parent) preset.filament_id = parent->filament_id; } @@ -2897,10 +2976,14 @@ void PresetCollection::save_current_preset(const std::string &new_name, bool det //BBS: only save difference for user preset Preset* parent_preset = nullptr; if (!final_inherits.empty()) { - parent_preset = this->find_preset(final_inherits, false, true); - if (parent_preset && this->get_selected_preset().base_id.empty()) { - this->get_selected_preset().base_id = parent_preset->setting_id; - BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << " base_id: " << parent_preset->setting_id; + parent_preset = this->find_preset2(final_inherits, true); + if (parent_preset) { + // Orca: take the saved diff against the resolved parent (renamed / library-matched). + Preset::normalize_inherits(this->get_selected_preset().config, parent_preset); + if (this->get_selected_preset().base_id.empty()) { + this->get_selected_preset().base_id = parent_preset->setting_id; + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << " base_id: " << parent_preset->setting_id; + } } } if (parent_preset) @@ -2991,6 +3074,25 @@ void PresetCollection::check_and_fix_syncinfo(Preset& preset, const std::string& preset.updated_time = 0; preset.sync_info = "create"; preset.save_info(); + return; + } + + const auto inherits = Preset::inherits(preset.config); + Preset* parent = find_preset2(inherits, true); + if (!inherits.empty() && parent) { + const std::string expected = parent->setting_id; + if (expected.empty()) { + BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << ": Direct parent of " << preset.name << " does not have a setting_id"; + return; + } + // Reconcile a missing or stale base_id against the direct parent's setting_id. + if (preset.base_id != expected) { + preset.base_id = expected; + // Already-synced preset whose base changed -> re-push it. + if (!preset.setting_id.empty() && preset.sync_info.empty()) + preset.sync_info = "update"; + preset.save_info(); + } } } @@ -3012,14 +3114,8 @@ const Preset* PresetCollection::get_selected_preset_parent() const return nullptr; preset = &this->default_preset(m_type == Preset::Type::TYPE_PRINTER && edited_preset.printer_technology() == ptSLA ? 1 : 0); } else + // find_preset() already resolves "renamed_from" internally. preset = this->find_preset(inherits, false); - if (preset == nullptr) { - // Resolve the "renamed_from" field. - assert(! inherits.empty()); - auto it = this->find_preset_renamed(inherits); - if (it != m_presets.end()) - preset = &(*it); - } //BBS: add project embedded preset logic and refine is_external return (preset == nullptr/* || preset->is_default || preset->is_external*/) ? nullptr : preset; //return (preset == nullptr/* || preset->is_default*/ || preset->is_external) ? nullptr : preset; @@ -3031,12 +3127,8 @@ const Preset* PresetCollection::get_preset_parent(const Preset& child) const if (inherits.empty()) // return this->get_selected_preset().is_system ? &this->get_selected_preset() : nullptr; return nullptr; + // find_preset() already resolves "renamed_from" internally. const Preset* preset = this->find_preset(inherits, false); - if (preset == nullptr) { - auto it = this->find_preset_renamed(inherits); - if (it != m_presets.end()) - preset = &(*it); - } return // not found (preset == nullptr/* || preset->is_default */|| @@ -3135,6 +3227,14 @@ Preset* PresetCollection::find_preset(const std::string &name, bool first_visibl auto it = this->find_preset_internal(canonical, only_from_library); if (it != m_presets.end() && it->name == canonical) return &this->preset(it - m_presets.begin(), real); + // Resolve the "renamed_from" field: a system preset may have been renamed (e.g. by a + // vendor profile sync), which records its old name in "renamed_from". Try the rename + // map before the first-visible fallback so every caller - including those passing + // real/only_from_library or first_visible_if_not_found - resolves to the renamed preset + // rather than a mismatched one. Recursion follows multi-step renames (A->B->C) and + // terminates as soon as a name resolves or has no further rename entry. + if (const std::string* renamed = get_preset_name_renamed(name)) + return find_preset(*renamed, first_visible_if_not_found, real, only_from_library); return first_visible_if_not_found ? &this->first_visible() : nullptr; } @@ -3142,14 +3242,11 @@ Preset* PresetCollection::find_preset2(const std::string& name, bool auto_match/ { auto preset = find_preset(name, false, true); if (preset == nullptr) { - auto _name = get_preset_name_renamed(name); - if (_name != nullptr) - preset = find_preset(*_name, false, true); - if (auto_match && preset == nullptr) { + if (auto_match) { //Orca: one more try, find the most likely preset in OrcaFilamentLibrary if (name.find("Generic") != std::string::npos) { // The regex pattern matches an optional prefix ending in '_' then "Generic" followed by the material name. - std::regex re(R"(^(?:.*?\b(?:\w+_)?)(Generic)\b\s+([^@]+?)\s*(?:@.*)?$)"); + static const std::regex re(R"(^(?:.*?\b(?:\w+_)?)(Generic)\b\s+([^@]+?)\s*(?:@.*)?$)"); auto alter_name = std::regex_replace(name, re, "Generic $2 @System"); preset = find_preset2(alter_name, false); // print preset file name diff --git a/src/libslic3r/Preset.hpp b/src/libslic3r/Preset.hpp index e0d3a52a28..bbbdc6c5ff 100644 --- a/src/libslic3r/Preset.hpp +++ b/src/libslic3r/Preset.hpp @@ -90,6 +90,16 @@ namespace Slic3r { class AppConfig; class PresetBundle; +// Deterministic preset setting_id: uuid5(vendor/type/name) -> 16 base62 chars. +// Pure function of a system preset's identity, so the value can be assigned by +// scripts/assign_vendor_setting_ids.py and recomputed here when a profile ships +// without it. MUST stay byte-identical to scripts/assign_vendor_setting_ids.py. +// This is NOT the per-user cloud-sync setting_id +// (OrcaCloudServiceAgent::generate_uuid_for_setting_id) - do not conflate them. +std::string generate_preset_setting_id(const std::string& vendor, + const std::string& type, + const std::string& name); + enum ConfigFileType { CONFIG_FILE_TYPE_UNKNOWN, @@ -310,6 +320,20 @@ public: std::string& inherits() { return Preset::inherits(this->config); } const std::string& inherits() const { return Preset::inherits(const_cast(this)->config); } + // Rewrite cfg's "inherits" to the resolved parent's canonical name. find_preset2 may + // resolve a renamed parent, or a removed vendor profile auto-matched to the + // OrcaFilamentLibrary; persisting the canonical name lets later plain find_preset() + // callers (e.g. get_preset_parent) walk the inheritance chain without the fuzzy match. + // No-op when the parent could not be resolved or the name is already canonical. + static void normalize_inherits(DynamicPrintConfig &cfg, const Preset *resolved_parent) + { + if (resolved_parent == nullptr) + return; + std::string &inherits = Preset::inherits(cfg); + if (inherits != resolved_parent->name) + inherits = resolved_parent->name; + } + // Returns the "compatible_prints_condition". static std::string& compatible_prints_condition(DynamicPrintConfig &cfg) { return cfg.option("compatible_prints_condition", true)->value; } std::string& compatible_prints_condition() { diff --git a/src/libslic3r/PresetBundle.cpp b/src/libslic3r/PresetBundle.cpp index 1ace4db685..fccbd13b98 100644 --- a/src/libslic3r/PresetBundle.cpp +++ b/src/libslic3r/PresetBundle.cpp @@ -532,6 +532,12 @@ PresetsConfigSubstitutions PresetBundle::load_presets(AppConfig &config, Forward load_user_presets(dir_user_presets, substitution_rule); } + // Rewrite renamed compatible_printers / compatible_prints references before selection. Skipped + // in validation mode so the profile validator (has_errors -> check_preset_references) sees the + // raw vendor-JSON references instead of the silently-repaired ones. + if (!validation_mode) + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); @@ -752,6 +758,8 @@ PresetsConfigSubstitutions PresetBundle::load_project_embedded_presets(std::vect //this->update_multi_material_filament_presets(); //this->update_compatible(PresetSelectCompatibleType::Never); + // Rewrite renamed compatible references before the caller (Plater) selects the project presets. + this->normalize_compatible_presets(); if (! errors_cummulative.empty()) throw Slic3r::RuntimeError(errors_cummulative); @@ -1122,6 +1130,9 @@ PresetsConfigSubstitutions PresetBundle::load_user_presets(AppConfig & this->printers.update_after_user_presets_loaded(); }*/ + // Rewrite renamed compatible references in synced user presets before compatibility is evaluated. + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); //this->load_selections(config, PresetPreferences()); @@ -1498,6 +1509,9 @@ bool PresetBundle::import_json_presets(PresetsConfigSubstitutions & s ConfigOptionString *option_str = dynamic_cast(inherits_config); inherits_value = option_str->value; inherit_preset = collection->find_preset2(inherits_value, true); + Preset::normalize_inherits(config, inherit_preset); + if (inherit_preset) + inherits_value = inherit_preset->name; // keep the base_id redo below in sync } if (inherit_preset) { new_config = inherit_preset->config; @@ -1804,6 +1818,9 @@ PresetsConfigSubstitutions PresetBundle::update_subscribed_presets( BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << " failed to save bundle metadata to: " << metadata_save_path.string(); } + // Rewrite renamed compatible references in synced user presets before compatibility is evaluated. + this->normalize_compatible_presets(); + this->update_multi_material_filament_presets(); this->update_compatible(PresetSelectCompatibleType::Never); @@ -1869,6 +1886,8 @@ bool PresetBundle::save_preset_to_bundle_dir(Preset& preset, PresetCollection* c if (!parent_preset) { BOOST_LOG_TRIVIAL(error) << __FUNCTION__ << " cannot find parent preset for " << preset.name << ", inherits " << inherits; } else { + // Orca: take the saved diff against the resolved parent (renamed / library-matched). + Preset::normalize_inherits(preset.config, parent_preset); if (preset.base_id.empty()) preset.base_id = parent_preset->setting_id; BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << " saved preset " << preset.name @@ -3827,9 +3846,9 @@ void PresetBundle::update_filament_count() : filament_presets.back()); } -bool PresetBundle::support_different_extruders() +bool PresetBundle::support_different_extruders() const { - Preset& printer_preset = this->printers.get_edited_preset(); + const Preset& printer_preset = this->printers.get_edited_preset(); int extruder_count; bool supported = printer_preset.config.support_different_extruders(extruder_count); @@ -5039,6 +5058,13 @@ std::pair PresetBundle::load_vendor_configs_ loaded.version = current_vendor_profile->config_version; loaded.description = description; loaded.setting_id = setting_id; + // Derive the preset setting_id on the fly when a profile ships without one, + // matching scripts/assign_vendor_setting_ids.py. Only instantiated presets + // carry an id; non-instantiated base profiles return earlier above. This never + // touches the per-user cloud-sync setting_id written into user .info files. + if (loaded.setting_id.empty() && instantiation == "true") + loaded.setting_id = generate_preset_setting_id( + vendor_name, Preset::get_type_string(presets_collection->type()), preset_name); loaded.filament_id = filament_id; loaded.m_from_orca_filament_lib = is_from_lib; BOOST_LOG_TRIVIAL(debug) << __FUNCTION__ << " " << __LINE__ << ", " << loaded.name << " load filament_id: " << filament_id; @@ -5228,6 +5254,49 @@ void PresetBundle::update_multi_material_filament_presets(size_t to_delete_filam } } +// Rewrite a preset-name-list field (compatible_printers / compatible_prints) so references to a +// renamed system preset point at the current name. Sibling-collection analog of +// Preset::normalize_inherits: target.find_preset(name, false) resolves "renamed_from" recursively +// and returns nullptr for unknown names, so we rewrite only on a positive, changed match and leave +// user/deleted names untouched. +static void normalize_compatible_field(Preset &preset, const char *field_key, PresetCollection &target) +{ + auto *opt = preset.config.option(field_key); + if (opt == nullptr) + return; + for (std::string &name : opt->values) { + if (name.empty()) + continue; + if (const Preset *resolved = target.find_preset(name, false); resolved != nullptr && resolved->name != name) + name = resolved->name; + } +} + +// Resolve compatible_printers / compatible_prints references that point at a renamed system preset +// to the current name, mirroring Preset::normalize_inherits for the "inherits" field. Because these +// fields reference presets in sibling collections (printers / prints / sla_prints), the resolution +// cannot happen inside a single collection's load_presets() and runs here, after update_system_maps() +// has built every collection's rename map. Must be called before selection so the rewritten stored +// preset is copied into the edited preset by select_preset (no spurious "modified" flag). +void PresetBundle::normalize_compatible_presets() +{ + // compatible_printers references a printer preset; compatible_prints (filaments / SLA materials) + // references a process preset. System presets are normalized too: a vendor profile can itself + // reference a sibling preset by a name that was later renamed, and the rewrite is in-memory only + // (system presets are never persisted back to vendor JSON). (begin()/end() skip defaults.) + auto normalize = [this](PresetCollection &holders, PresetCollection *processes) { + for (Preset &p : holders) { + normalize_compatible_field(p, "compatible_printers", this->printers); + if (processes != nullptr) + normalize_compatible_field(p, "compatible_prints", *processes); + } + }; + normalize(this->prints, nullptr); + normalize(this->filaments, &this->prints); + normalize(this->sla_prints, nullptr); + normalize(this->sla_materials, &this->sla_prints); +} + void PresetBundle::update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible) { const Preset &printer_preset = this->printers.get_edited_preset(); @@ -5459,7 +5528,7 @@ void PresetBundle::set_default_suppressed(bool default_suppressed) printers.set_default_suppressed(default_suppressed); } -bool PresetBundle::has_errors() const +bool PresetBundle::has_errors(bool check_duplicate_filament_subtypes) const { if (m_errors != 0 || printers.m_errors != 0 || filaments.m_errors != 0 || prints.m_errors != 0) return true; @@ -5479,9 +5548,171 @@ bool PresetBundle::has_errors() const } } + if (check_duplicate_filament_subtypes && this->check_duplicate_filament_subtypes()) + has_errors = true; + + if (this->check_preset_references()) + has_errors = true; + return has_errors; } +// Orca: turn a preset file path into an absolute file:// URI for log messages. +// Printed unquoted on its own line, this is the one format clickable in both the +// VS Code integrated terminal (Cmd/Ctrl+click) and macOS Terminal.app +// (Cmd+double-click); quotes or literal spaces break link detection in both, so +// the characters that would terminate the URI token are percent-encoded. +static std::string preset_file_uri(const std::string &file) +{ + std::string path; + try { + path = boost::filesystem::canonical(file).generic_string(); + } catch (...) { + path = file; + } + std::string uri = "file://"; + if (path.empty() || path.front() != '/') + uri += '/'; // Windows drive paths (e.g. C:/...) need the extra leading slash + for (char c : path) { + switch (c) { + case ' ': uri += "%20"; break; + case '#': uri += "%23"; break; + case '%': uri += "%25"; break; + default: uri += c; + } + } + return uri; +} + +// Orca: validator-only. Flag any system preset whose inherits / compatible_printers / +// compatible_prints references a name that no longer resolves. Uses find_preset (exact match, then +// the renamed_from map - no fuzzy find_preset2, no alias resolution), so: +// nullptr -> the referenced preset was deleted/renamed away (name is dangling), +// resolved != name -> the reference uses an old name that renamed_from maps to a current one. +// Both should be fixed at the source rather than relying on load-time normalization - which is why +// normalize_compatible_presets() is skipped in validation mode (see load_presets), so this sees the +// raw vendor-JSON references. Safe under a single-vendor run (-v) too: inherits / compatible_printers +// / compatible_prints only name same-vendor or OrcaFilamentLibrary presets (both loaded), so a +// reference that does not resolve is genuinely dangling rather than an unloaded cross-vendor preset. +bool PresetBundle::check_preset_references() const +{ + bool found = false; + + // Resolve one reference (an inherits parent or a compatible_* entry) against its target + // collection and log if it is dangling (unknown) or uses a renamed preset's old name. + auto report_ref = [&](const Preset &p, const std::string &name, const PresetCollection &target, + const char *verb, const char *noun) { + const Preset *resolved = target.find_preset(name, false); + if (resolved == nullptr) { + found = true; + BOOST_LOG_TRIVIAL(error) << "Preset \"" << p.name << "\" " << verb << " unknown " << noun << " \"" << name << "\":\n" + << preset_file_uri(p.file); + } else if (resolved->name != name) { + found = true; + BOOST_LOG_TRIVIAL(error) << "Preset \"" << p.name << "\" " << verb << " renamed " << noun << " \"" << name + << "\" (now \"" << resolved->name << "\"):\n" << preset_file_uri(p.file); + } + }; + + auto check_list = [&](const Preset &p, const char *key, const PresetCollection &target) { + const auto *opt = p.config.option(key); + if (opt == nullptr) + return; + for (const std::string &name : opt->values) + if (!name.empty()) + report_ref(p, name, target, "references", key); + }; + + auto check_collection = [&](const PresetCollection &holders, const PresetCollection *processes) { + for (const Preset &p : holders) { + if (!p.is_system) + continue; + if (const std::string &inh = p.inherits(); !inh.empty()) + report_ref(p, inh, holders, "inherits", "parent"); + check_list(p, "compatible_printers", this->printers); + if (processes != nullptr) + check_list(p, "compatible_prints", *processes); + } + }; + + // Printers carry no compatible_printers/compatible_prints (those name a printer, so a printer + // holding them makes no sense); check_list is a no-op for them, so only their inherits is checked. + check_collection(this->printers, nullptr); + check_collection(this->prints, nullptr); + check_collection(this->filaments, &this->prints); + check_collection(this->sla_prints, nullptr); + check_collection(this->sla_materials, &this->sla_prints); + + return found; +} + +// Orca: a filament is matched from the AMS by (filament_id + printer compatibility). +// For any one printer, at most one instantiated filament preset with a given +// filament_id may be compatible - otherwise the AMS match is ambiguous and the +// runtime silently picks whichever loads first. This validator-only check flags +// any printer that has two or more compatible filament presets sharing a filament_id. +bool PresetBundle::check_duplicate_filament_subtypes() const +{ + // Pre-collect system filament presets (each carries its effective filament_id, + // inherited from its @base at load time), grouped by vendor so we only test a + // printer against its own vendor's filaments. A vendor's compatible_printers + // only names that vendor's printers, so same-vendor scoping is correctness + // preserving and avoids an O(all printers x all filaments) sweep. + std::map> filaments_by_vendor; + for (const auto &preset : filaments) { + if (!preset.is_system || preset.filament_id.empty() || preset.vendor == nullptr) + continue; + filaments_by_vendor[preset.vendor->name].push_back(&preset); + } + + bool found_duplicates = false; + for (const auto &printer : printers) { + if (!printer.is_system || printer.vendor == nullptr) + continue; + auto vendor_it = filaments_by_vendor.find(printer.vendor->name); + if (vendor_it == filaments_by_vendor.end()) + continue; + + const PresetWithVendorProfile active_printer = printers.get_preset_with_vendor_profile(printer); + // std::map keeps the reported errors in a deterministic (sorted) order. + std::map> by_filament_id; + for (const Preset *fil : vendor_it->second) + if (is_compatible_with_printer(filaments.get_preset_with_vendor_profile(*fil), active_printer)) + by_filament_id[fil->filament_id].push_back(fil); + + for (const auto &entry : by_filament_id) { + if (entry.second.size() < 2) + continue; + found_duplicates = true; + // List each conflicting preset with a clickable file:// URI on its own + // line, so the profile author can jump straight to the files to fix. + std::string presets; + for (const Preset *p : entry.second) + presets += "\n - " + p->name + "\n " + preset_file_uri(p->file); + BOOST_LOG_TRIVIAL(error) + << "Ambiguous AMS filament match: " << entry.second.size() + << " filament presets share filament_id \"" << entry.first + << "\" and are all compatible with printer \"" << printer.name + << "\". When matching an AMS spool the slicer cannot tell them apart and" + " silently picks whichever loads first." << presets; + } + } + + // Print the troubleshooting guidance once, not per error, to keep the log readable. + if (found_duplicates) + BOOST_LOG_TRIVIAL(error) << "\n========================================\n" + << "How to fix \"Ambiguous AMS filament match\" errors: make sure only ONE filament" + " preset with a given filament_id is compatible with each printer. Either" + "\n (a) remove the overlapping printer from a preset's \"compatible_printers\"" + " list (e.g. a '@printer' preset over-claiming a nozzle that already has its own" + " '@printer 0.x nozzle' preset), or" + "\n (b) if these are genuinely different materials, give each its own" + " \"filament_id\" - a common cause is a wrong \"inherits\" pointing at another" + " material's @base preset."; + + return found_duplicates; +} + // Orca: BundleMetadata method implementations bool BundleMetadata::load_from_json(const std::string& path) { diff --git a/src/libslic3r/PresetBundle.hpp b/src/libslic3r/PresetBundle.hpp index 220de95b78..fc03ff8d3b 100644 --- a/src/libslic3r/PresetBundle.hpp +++ b/src/libslic3r/PresetBundle.hpp @@ -370,7 +370,7 @@ public: //BBS: add some functions for multiple extruders int get_printer_extruder_count() const; - bool support_different_extruders(); + bool support_different_extruders() const; // Orca: Ensure filament_presets has at least one slot per nozzle on FFF printers. // Called from (load|update)_selections before the parallel project_config arrays @@ -448,6 +448,11 @@ public: void update_compatible(PresetSelectCompatibleType select_other_print_if_incompatible, PresetSelectCompatibleType select_other_filament_if_incompatible); void update_compatible(PresetSelectCompatibleType select_other_if_incompatible) { this->update_compatible(select_other_if_incompatible, select_other_if_incompatible); } + // Rewrite compatible_printers / compatible_prints references that point at a renamed system + // preset to the current name, mirroring Preset::normalize_inherits for the "inherits" field. + // Call after loading presets and before selection; requires update_system_maps() to have run. + void normalize_compatible_presets(); + // Set the is_visible flag for printer vendors, printer models and printer variants // based on the user configuration. // If the "vendor" section is missing, enable all models and variants of the particular vendor. @@ -480,10 +485,18 @@ public: return { Preset::TYPE_PRINTER, Preset::TYPE_SLA_PRINT, Preset::TYPE_SLA_MATERIAL }; } - // Orca: for validation only - bool has_errors() const; + // Orca: for validation only. + bool has_errors(bool check_duplicate_filament_subtypes = false) const; + + // Orca: for validation only. Flag any system preset whose inherits / compatible_printers / + // compatible_prints references a deleted (unknown) or renamed (old) preset name. + bool check_preset_references() const; private: + // Orca: validation only - flag any printer with two or more compatible + // filament presets sharing one filament_id (ambiguous AMS subtype match). + bool check_duplicate_filament_subtypes() const; + //std::pair load_system_presets(ForwardCompatibilitySubstitutionRule compatibility_rule); //BBS: add json related logic std::pair load_system_presets_from_json(ForwardCompatibilitySubstitutionRule compatibility_rule); diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp index 6be171750d..10d7b46349 100644 --- a/src/libslic3r/Print.cpp +++ b/src/libslic3r/Print.cpp @@ -134,6 +134,7 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n "dont_slow_down_outer_wall", "fan_cooling_layer_time", "full_fan_speed_layer", + "initial_layer_fan_speed", "fan_kickstart", "part_cooling_fan_min_pwm", "fan_speedup_overhangs", @@ -205,8 +206,10 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n "is_infill_first", // Orca "chamber_temperature", + "chamber_minimal_temperature", "thumbnails", "thumbnails_format", + "anisotropic_surfaces", "center_of_surface_pattern", "separated_infills", "seam_gap", "role_based_wipe_speed", "wipe_speed", @@ -328,6 +331,7 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n || opt_key == "first_layer_print_sequence" || opt_key == "other_layers_print_sequence" || opt_key == "other_layers_print_sequence_nums" + || opt_key == "toolchange_ordering" || opt_key == "extruder_ams_count" || opt_key == "filament_map_mode" || opt_key == "filament_map" @@ -1348,8 +1352,8 @@ StringObjectException Print::validate(std::vector *warnin const auto all_regions = m_objects.front()->all_regions(); if (all_regions.size() > 1) { // Orca: make sure regions are not compatible - if (std::any_of(all_regions.begin() + 1, all_regions.end(), [ra = all_regions.front()](const auto rb) { - return !Layer::is_perimeter_compatible(ra, rb); + if (std::any_of(all_regions.begin() + 1, all_regions.end(), [this, ra = all_regions.front()](const auto rb) { + return !Layer::is_perimeter_compatible(*this, ra, rb); })) { return {L("Spiral (vase) mode does not work when an object contains more than one material."), nullptr, "spiral_mode"}; } @@ -1781,146 +1785,152 @@ StringObjectException Print::validate(std::vector *warnin // shrinkage warnings below. StringObjectException motion_warning; try { - auto check_motion_ability_object_setting = [&](const std::vector& keys_to_check, double limit) -> std::string { - std::string warning_key; - for (const auto& key : keys_to_check) { - if (m_default_object_config.get_abs_value(key) > limit) { - warning_key = key; - break; - } - } - return warning_key; - }; - auto check_motion_ability_region_setting = [&](const std::vector& keys_to_check, double limit) -> std::string { - std::string warning_key; - for (const auto& key : keys_to_check) { - if (m_default_region_config.get_abs_value(key) > limit) { - warning_key = key; - break; - } - } - return warning_key; - }; - std::string warning_key; - - const auto max_junction_deviation = m_config.machine_max_junction_deviation.values[0]; - const bool ignore_jerk_validation = m_config.gcode_flavor == gcfMarlinFirmware && max_junction_deviation > 0; - - // check jerk - if (!ignore_jerk_validation) { - if (m_default_object_config.default_jerk == 1 || m_default_object_config.outer_wall_jerk == 1 || - m_default_object_config.inner_wall_jerk == 1) { - motion_warning.string = L("Setting the jerk speed too low could lead to artifacts on curved surfaces"); - if (m_default_object_config.outer_wall_jerk == 1) - warning_key = "outer_wall_jerk"; - else if (m_default_object_config.inner_wall_jerk == 1) - warning_key = "inner_wall_jerk"; - else - warning_key = "default_jerk"; - - motion_warning.opt_key = warning_key; - } - - if (warning_key.empty() && m_default_object_config.default_jerk > 0) { - std::vector jerk_to_check = {"default_jerk", "outer_wall_jerk", "inner_wall_jerk", "infill_jerk", - "top_surface_jerk", "initial_layer_jerk", "travel_jerk"}; - const auto max_jerk = std::min(m_config.machine_max_jerk_x.values[0], m_config.machine_max_jerk_y.values[0]); - warning_key.clear(); - warning_key = check_motion_ability_object_setting(jerk_to_check, max_jerk); - if (!warning_key.empty()) { - motion_warning.string = L( - "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."); - motion_warning.opt_key = warning_key; - } - } - } - // check junction deviation - else if (m_default_object_config.default_junction_deviation.value > max_junction_deviation) { - motion_warning.string = L( "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."); - motion_warning.opt_key = "default_junction_deviation"; - } - - // check acceleration - const auto max_accel = m_config.machine_max_acceleration_extruding.values[0]; - if (warning_key.empty() && m_default_object_config.default_acceleration > 0 && max_accel > 0) { - const bool support_travel_acc = (m_config.gcode_flavor == gcfRepetier || m_config.gcode_flavor == gcfMarlinFirmware || - m_config.gcode_flavor == gcfRepRapFirmware); - - std::vector accel_to_check; - if (!support_travel_acc) - accel_to_check = { - "default_acceleration", - "inner_wall_acceleration", - "outer_wall_acceleration", - "bridge_acceleration", - "initial_layer_acceleration", - "sparse_infill_acceleration", - "internal_solid_infill_acceleration", - "top_surface_acceleration", - "travel_acceleration", - }; - else - accel_to_check = { - "default_acceleration", - "inner_wall_acceleration", - "outer_wall_acceleration", - "bridge_acceleration", - "initial_layer_acceleration", - "sparse_infill_acceleration", - "internal_solid_infill_acceleration", - "top_surface_acceleration", - }; - warning_key = check_motion_ability_object_setting(accel_to_check, max_accel); - if (!warning_key.empty()) { - motion_warning.string = L("The acceleration setting exceeds the printer's maximum acceleration " - "(machine_max_acceleration_extruding).\nOrca will " - "automatically cap the acceleration speed to ensure it doesn't surpass the printer's " - "capabilities.\nYou can adjust the " - "machine_max_acceleration_extruding value in your printer's configuration to get higher speeds."); - motion_warning.opt_key = warning_key; - } - if (support_travel_acc) { - const auto max_travel = m_config.machine_max_acceleration_travel.values[0]; - if (max_travel > 0) { - accel_to_check = { - "travel_acceleration", - }; - warning_key = check_motion_ability_object_setting(accel_to_check, max_travel); - if (!warning_key.empty()) { - motion_warning.string = L( - "The travel acceleration setting exceeds the printer's maximum travel acceleration " - "(machine_max_acceleration_travel).\nOrca will " - "automatically cap the travel acceleration speed to ensure it doesn't surpass the printer's " - "capabilities.\nYou can adjust the " - "machine_max_acceleration_travel value in your printer's configuration to get higher speeds."); - motion_warning.opt_key = warning_key; + auto check_extruder = [&](const int extruder_id) { + auto check_motion_ability_object_setting = [&](const std::vector& keys_to_check, double limit) -> std::string { + std::string warning_key; + for (const auto& key : keys_to_check) { + if (m_default_object_config.get_abs_value_at(key, extruder_id) > limit) { + warning_key = key; + break; } } - } - } + return warning_key; + }; + auto check_motion_ability_region_setting = [&](const std::vector& keys_to_check, double limit) -> std::string { + std::string warning_key; + for (const auto& key : keys_to_check) { + if (m_default_region_config.get_abs_value_at(key, extruder_id) > limit) { + warning_key = key; + break; + } + } + return warning_key; + }; + std::string warning_key; - // check speed - // Orca: disable the speed check for now as we don't cap the speed - // if (warning_key.empty()) { - // auto speed_to_check = {"inner_wall_speed", "outer_wall_speed", "sparse_infill_speed", "internal_solid_infill_speed", - // "top_surface_speed", "bridge_speed", "internal_bridge_speed", "gap_infill_speed"}; - // const auto max_speed = std::min(m_config.machine_max_speed_x.values[0], m_config.machine_max_speed_y.values[0]); - // warning_key.clear(); - // warning_key = check_motion_ability_region_setting(speed_to_check, max_speed); - // if (warning_key.empty() && m_config.travel_speed > max_speed) - // warning_key = "travel_speed"; - // if (!warning_key.empty()) { - // warning->string = L( - // "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/machine_max_speed_y).\nOrca will " - // "automatically cap the print speed to ensure it doesn't surpass the printer's capabilities.\nYou can adjust the " - // "maximum speed setting in your printer's configuration to get higher speeds."); - // warning->opt_key = warning_key; - // } - // } + const auto max_junction_deviation = m_config.machine_max_junction_deviation.values[0]; // TODO: fix this + const bool ignore_jerk_validation = m_config.gcode_flavor == gcfMarlinFirmware && max_junction_deviation > 0; + + // check jerk + if (!ignore_jerk_validation) { + if (m_default_object_config.default_jerk.get_at(extruder_id) == 1 || m_default_object_config.outer_wall_jerk.get_at(extruder_id) == 1 || + m_default_object_config.inner_wall_jerk.get_at(extruder_id) == 1) { + motion_warning.string = L("Setting the jerk speed too low could lead to artifacts on curved surfaces"); + if (m_default_object_config.outer_wall_jerk.get_at(extruder_id) == 1) + warning_key = "outer_wall_jerk"; + else if (m_default_object_config.inner_wall_jerk.get_at(extruder_id) == 1) + warning_key = "inner_wall_jerk"; + else + warning_key = "default_jerk"; + + motion_warning.opt_key = warning_key; + } + + if (warning_key.empty() && m_default_object_config.default_jerk.get_at(extruder_id) > 0) { + std::vector jerk_to_check = {"default_jerk", "outer_wall_jerk", "inner_wall_jerk", "infill_jerk", + "top_surface_jerk", "initial_layer_jerk", "travel_jerk"}; + const auto max_jerk = std::min(m_config.machine_max_jerk_x.values[0], m_config.machine_max_jerk_y.values[0]); + warning_key.clear(); + warning_key = check_motion_ability_object_setting(jerk_to_check, max_jerk); + if (!warning_key.empty()) { + motion_warning.string = L( + "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."); + motion_warning.opt_key = warning_key; + } + } + } + + // Check junction deviation + // Orca: Only marlin FW supports max junction deviation. Dont display warning if firmware is not supporting it. + const bool support_max_junction_deviation = ( m_config.gcode_flavor == gcfMarlinFirmware); + if (warning_key.empty() && m_default_object_config.default_junction_deviation.get_at(extruder_id) > max_junction_deviation && support_max_junction_deviation) { + motion_warning.string = L( "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."); + motion_warning.opt_key = "default_junction_deviation"; + } + + // check acceleration + const auto max_accel = m_config.machine_max_acceleration_extruding.values[0]; + if (warning_key.empty() && m_default_object_config.default_acceleration.get_at(extruder_id) > 0 && max_accel > 0) { + const bool support_travel_acc = (m_config.gcode_flavor == gcfRepetier || m_config.gcode_flavor == gcfMarlinFirmware || + m_config.gcode_flavor == gcfRepRapFirmware); + + std::vector accel_to_check; + if (!support_travel_acc) + accel_to_check = { + "default_acceleration", + "inner_wall_acceleration", + "outer_wall_acceleration", + "bridge_acceleration", + "initial_layer_acceleration", + "sparse_infill_acceleration", + "internal_solid_infill_acceleration", + "top_surface_acceleration", + "travel_acceleration", + }; + else + accel_to_check = { + "default_acceleration", + "inner_wall_acceleration", + "outer_wall_acceleration", + "bridge_acceleration", + "initial_layer_acceleration", + "sparse_infill_acceleration", + "internal_solid_infill_acceleration", + "top_surface_acceleration", + }; + warning_key = check_motion_ability_object_setting(accel_to_check, max_accel); + if (!warning_key.empty()) { + motion_warning.string = L("The acceleration setting exceeds the printer's maximum acceleration " + "(machine_max_acceleration_extruding).\nOrca will " + "automatically cap the acceleration speed to ensure it doesn't surpass the printer's " + "capabilities.\nYou can adjust the " + "machine_max_acceleration_extruding value in your printer's configuration to get higher speeds."); + motion_warning.opt_key = warning_key; + } + if (support_travel_acc) { + const auto max_travel = m_config.machine_max_acceleration_travel.values[0]; + if (max_travel > 0) { + accel_to_check = { + "travel_acceleration", + }; + warning_key = check_motion_ability_object_setting(accel_to_check, max_travel); + if (!warning_key.empty()) { + motion_warning.string = L( + "The travel acceleration setting exceeds the printer's maximum travel acceleration " + "(machine_max_acceleration_travel).\nOrca will " + "automatically cap the travel acceleration speed to ensure it doesn't surpass the printer's " + "capabilities.\nYou can adjust the " + "machine_max_acceleration_travel value in your printer's configuration to get higher speeds."); + motion_warning.opt_key = warning_key; + } + } + } + } + + // check speed + // Orca: disable the speed check for now as we don't cap the speed + // if (warning_key.empty()) { + // auto speed_to_check = {"inner_wall_speed", "outer_wall_speed", "sparse_infill_speed", "internal_solid_infill_speed", + // "top_surface_speed", "bridge_speed", "internal_bridge_speed", "gap_infill_speed"}; + // const auto max_speed = std::min(m_config.machine_max_speed_x.values[0], m_config.machine_max_speed_y.values[0]); + // warning_key.clear(); + // warning_key = check_motion_ability_region_setting(speed_to_check, max_speed); + // if (warning_key.empty() && m_config.travel_speed > max_speed) + // warning_key = "travel_speed"; + // if (!warning_key.empty()) { + // motion_warning.string = L( + // "The speed setting exceeds the printer's maximum speed (machine_max_speed_x/machine_max_speed_y).\nOrca will " + // "automatically cap the print speed to ensure it doesn't surpass the printer's capabilities.\nYou can adjust the " + // "maximum speed setting in your printer's configuration to get higher speeds."); + // motion_warning.opt_key = warning_key; + // } + // } + }; + check_extruder(0); // TODO: check used extruder variants // check wall sequence and precise outer wall if (m_default_region_config.precise_outer_wall && m_default_region_config.wall_sequence != WallSequence::InnerOuter) @@ -2039,21 +2049,23 @@ Flow Print::brim_flow() const Flow Print::skirt_flow() const { + + // Orca: fall back to m_config if no objects are present ConfigOptionFloatOrPercent width = m_config.initial_layer_line_width; if (width.value <= 0) - width = m_objects.front()->config().line_width; + width = m_objects.empty() ? m_config.initial_layer_line_width : m_objects.front()->config().line_width; /* We currently use a random object's support material extruder. While this works for most cases, we should probably consider all of the support material extruders and take the one with, say, the smallest index; The same logic should be applied to the code that selects the extruder during G-code generation as well. */ - return Flow::new_from_config_width( - frPerimeter, - // Flow::new_from_config_width takes care of the percent to value substitution - width, - (float)m_config.nozzle_diameter.get_at(m_objects.front()->config().support_filament-1), - (float)this->skirt_first_layer_height()); + return Flow::new_from_config_width(frPerimeter, + // Flow::new_from_config_width takes care of the percent to value substitution + width, + (float) m_config.nozzle_diameter.get_at( + m_objects.empty() ? 0 : m_objects.front()->config().support_filament - 1), + (float) this->skirt_first_layer_height()); } bool Print::has_support_material() const @@ -2456,21 +2468,14 @@ void Print::process(long long *time_cost_with_cache, bool use_cache) start_time = (long long)Slic3r::Utils::get_current_time_utc(); m_skirt.clear(); - m_skirt_groups.clear(); + m_skirt_brim_groups.clear(); + m_has_shared_per_object_skirt = false; m_skirt_convex_hull.clear(); m_objectBrimAreas.clear(); m_supportBrimAreas.clear(); m_first_layer_convex_hull.points.clear(); for (PrintObject *object : m_objects) object->m_skirt.clear(); - const bool draft_shield = config().draft_shield != dsDisabled; - - if (this->has_skirt() && draft_shield) { - // In case that draft shield is active, generate skirt first so brim - // can be trimmed to make room for it. - _make_skirt(); - } - //BBS: get the objects' indices when GCodes are generated ToolOrdering tool_ordering; unsigned int initial_extruder_id = (unsigned int)-1; @@ -2561,11 +2566,16 @@ void Print::process(long long *time_cost_with_cache, bool use_cache) } - if (has_skirt() && ! draft_shield) { - // In case that draft shield is NOT active, generate skirt now. - // It will be placed around the brim, so brim has to be ready. + if (has_skirt() || has_infinite_skirt() || has_brim()) { + // Generate skirt/brim groups after brim so per-object and draft-shield footprints + // include brims when grouping and offsetting skirt loops. assert(m_skirt.empty()); _make_skirt(); + if (m_config.print_sequence == PrintSequence::ByObject && + m_config.skirt_type == stPerObject && + this->has_shared_per_object_skirt()) { + throw Slic3r::SlicingError(L("Per-object skirts cannot fit between the objects in By object print sequence.\n\nMove the objects farther apart, reduce brim/skirt size, switch Skirt type to Combined, or switch Print sequence to By layer.")); + } } this->finalize_first_layer_convex_hull(); @@ -2657,6 +2667,8 @@ std::string Print::export_gcode(const std::string& path_template, GCodeProcessor void Print::_make_skirt() { + const bool generate_skirt = this->has_skirt() || this->has_infinite_skirt(); + // First off we need to decide how tall the skirt must be. // The skirt_height option from config is expressed in layers, but our // object might have different layer heights, so we need to find the print_z @@ -2668,11 +2680,13 @@ void Print::_make_skirt() // prepended to the first 'n' layers (with 'n' = skirt_height). // $skirt_height_z in this case is the highest possible skirt height for safety. coordf_t skirt_height_z = 0.; - for (const PrintObject *object : m_objects) { - size_t skirt_layers = this->has_infinite_skirt() ? - object->layer_count() : - std::min(size_t(m_config.skirt_height.value), object->layer_count()); - skirt_height_z = std::max(skirt_height_z, object->m_layers[skirt_layers-1]->print_z); + if (generate_skirt) { + for (const PrintObject *object : m_objects) { + size_t skirt_layers = this->has_infinite_skirt() ? + object->layer_count() : + std::min(size_t(m_config.skirt_height.value), object->layer_count()); + skirt_height_z = std::max(skirt_height_z, object->m_layers[skirt_layers-1]->print_z); + } } struct ObjectSkirtHull { @@ -2686,7 +2700,7 @@ void Print::_make_skirt() Points object_points; // Get object layers up to skirt_height_z. for (const Layer *layer : object->m_layers) { - if (layer->print_z > skirt_height_z) + if (generate_skirt && layer->print_z > skirt_height_z) break; for (const ExPolygon &expoly : layer->lslices) // Collect the outer contour points only, ignore holes for the calculation of the convex hull. @@ -2694,7 +2708,7 @@ void Print::_make_skirt() } // Get support layers up to skirt_height_z. for (const SupportLayer *layer : object->support_layers()) { - if (layer->print_z > skirt_height_z) + if (generate_skirt && layer->print_z > skirt_height_z) break; layer->support_fills.collect_points(object_points); } @@ -2784,17 +2798,15 @@ void Print::_make_skirt() }; m_skirt.clear(); - m_skirt_groups.clear(); + m_skirt_brim_groups.clear(); + m_has_shared_per_object_skirt = false; + for (const ObjectSkirtHull& object_hull : object_convex_hulls) + object_hull.object->m_skirt.clear(); - if (m_config.skirt_type == stPerObject && m_config.print_sequence == PrintSequence::ByObject) { - for (const ObjectSkirtHull& object_hull : object_convex_hulls) { - object_hull.object->m_skirt.clear(); - append_skirt_loops_for_hull(object_hull.hull, object_hull.object->m_skirt, false); - object_hull.object->m_skirt.reverse(); - } - } else if (m_config.skirt_type == stCombined || m_config.skirt_type == stPerObject) { + if (m_config.skirt_type == stCombined || m_config.skirt_type == stPerObject) { struct SkirtGroupItem { Points occupied_points; + ObjectID object_id; bool emits_skirt; }; @@ -2824,13 +2836,13 @@ void Print::_make_skirt() continue; // Orca: include the object's brim/support-brim footprint before checking skirt collisions. - group_items.push_back({ std::move(occupied_points), true }); + group_items.push_back({ std::move(occupied_points), object->id(), true }); } // Orca: the wipe tower contributes occupied area, but does not emit a skirt by itself. Points wipe_tower_points = this->first_layer_wipe_tower_corners(); if (wipe_tower_points.size() >= 3) - group_items.push_back({ std::move(wipe_tower_points), false }); + group_items.push_back({ std::move(wipe_tower_points), ObjectID(), false }); std::vector parent(group_items.size()); std::iota(parent.begin(), parent.end(), 0); @@ -2856,14 +2868,17 @@ void Print::_make_skirt() auto build_grouped_points = [&]() { struct GroupData { - Points points; - bool emits_skirt = false; + Points points; + std::vector object_ids; + bool emits_skirt = false; }; std::map grouped; for (size_t i = 0; i < group_items.size(); ++i) { GroupData& group = grouped[find_parent(i)]; append(group.points, group_items[i].occupied_points); + if (group_items[i].object_id.valid()) + group.object_ids.push_back(group_items[i].object_id); group.emits_skirt = group.emits_skirt || group_items[i].emits_skirt; } return grouped; @@ -2902,19 +2917,99 @@ void Print::_make_skirt() } } + auto make_group_brims = [this](const std::vector& group_object_ids) { + std::vector brims; + std::vector brim_object_ids; + for (ObjectID object_id : group_object_ids) { + const auto brim_it = m_brimMap.find(object_id); + if (brim_it != m_brimMap.end() && !brim_it->second.empty()) + brim_object_ids.push_back(object_id); + } + + const bool global_combined_brim = m_config.combine_brims && m_config.skirt_type != stPerObject && m_brimMap.size() == 1; + auto brim_owner_ids = [&group_object_ids, global_combined_brim](const std::vector& object_ids) { + return global_combined_brim ? group_object_ids : object_ids; + }; + + const bool combine_group_brims = m_config.combine_brims && brim_object_ids.size() > 1; + if (!combine_group_brims) { + for (ObjectID object_id : brim_object_ids) + brims.push_back({ m_brimMap.at(object_id), brim_owner_ids({ object_id }) }); + return brims; + } + + std::vector brim_parent(brim_object_ids.size()); + std::iota(brim_parent.begin(), brim_parent.end(), 0); + auto find_brim_parent = [&brim_parent](size_t idx) { + while (brim_parent[idx] != idx) { + brim_parent[idx] = brim_parent[brim_parent[idx]]; + idx = brim_parent[idx]; + } + return idx; + }; + auto unite_brims = [&brim_parent, &find_brim_parent](size_t a, size_t b) { + a = find_brim_parent(a); + b = find_brim_parent(b); + if (a != b) + brim_parent[b] = a; + }; + + const coord_t brim_contact_distance = coord_t(brim_flow().scaled_spacing() * 2.); + for (size_t i = 0; i < brim_object_ids.size(); ++i) { + const auto area_i = m_objectBrimAreas.find(brim_object_ids[i]); + if (area_i == m_objectBrimAreas.end()) + continue; + for (size_t j = i + 1; j < brim_object_ids.size(); ++j) { + const auto area_j = m_objectBrimAreas.find(brim_object_ids[j]); + if (area_j != m_objectBrimAreas.end() && + !intersection_ex(offset_ex(area_i->second, brim_contact_distance, jtRound, SCALED_RESOLUTION), area_j->second).empty()) + unite_brims(i, j); + } + } + + std::map> combined_brim_ids; + for (size_t i = 0; i < brim_object_ids.size(); ++i) + combined_brim_ids[find_brim_parent(i)].push_back(brim_object_ids[i]); + + for (const auto& [_, object_ids] : combined_brim_ids) { + if (object_ids.size() == 1) { + brims.push_back({ m_brimMap.at(object_ids.front()), brim_owner_ids(object_ids) }); + continue; + } + + ExPolygons combined_area; + for (ObjectID object_id : object_ids) + expolygons_append(combined_area, m_objectBrimAreas.at(object_id)); + combined_area = union_ex(combined_area); + const float scaled_resolution = float(scaled(m_config.resolution.value)); + const float brim_cleanup_delta = std::max(scaled_resolution, float(SCALED_EPSILON)); + combined_area = offset2_ex(combined_area, brim_cleanup_delta, -brim_cleanup_delta, jtRound, scaled_resolution); + + Polygons islands_area; + brims.push_back({ makeBrimInfillFromPlateCoordinates(combined_area, *this, islands_area), object_ids }); + } + + return brims; + }; + auto grouped_points = build_grouped_points(); for (auto& [_, group] : grouped_points) { if (!group.emits_skirt || group.points.size() < 3) continue; + if (generate_skirt && m_config.skirt_type == stPerObject && group.object_ids.size() > 1) + m_has_shared_per_object_skirt = true; // Orca: after merging, use the occupied outline directly; do not add skirt distance twice. ExtrusionEntityCollection group_skirt; - append_skirt_loops_for_hull(Geometry::convex_hull(group.points), group_skirt, true); + if (generate_skirt) + append_skirt_loops_for_hull(Geometry::convex_hull(group.points), group_skirt, true); + std::vector group_brims = make_group_brims(group.object_ids); if (!group_skirt.empty()) { group_skirt.reverse(); // Orca: keep m_skirt as a flattened compatibility mirror for preview/extents. m_skirt.append(group_skirt.entities); - m_skirt_groups.push_back(std::move(group_skirt)); } + if (!group_skirt.empty() || !group_brims.empty()) + m_skirt_brim_groups.push_back({ std::move(group_skirt), std::move(group.object_ids), std::move(group_brims) }); } } } @@ -3703,7 +3798,7 @@ void Print::export_gcode_from_previous_file(const std::string& file, GCodeProces std::tuple Print::object_skirt_offset(double margin_height) const { - if (config().skirt_loops == 0 || config().skirt_type != stPerObject) + if (config().skirt_loops == 0 || config().skirt_type != stPerObject || m_objects.empty()) return std::make_tuple(0, 0); float max_nozzle_diameter = *std::max_element(m_config.nozzle_diameter.values.begin(), m_config.nozzle_diameter.values.end()); diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp index f186968846..b9f70506fb 100644 --- a/src/libslic3r/Print.hpp +++ b/src/libslic3r/Print.hpp @@ -970,8 +970,21 @@ public: PrintObjectPtrs& objects_mutable() { return m_objects; } PrintRegionPtrs& print_regions_mutable() { return m_print_regions; } std::vector layers_sorted_for_object(float start, float end, std::vector &layers_of_objects, std::vector &boundingBox_for_objects, VecOfPoints& objects_instances_shift); + struct SkirtBrimGroup { + struct Brim { + ExtrusionEntityCollection brim; + std::vector object_ids; + }; + + ExtrusionEntityCollection skirt; + std::vector object_ids; + // Brims stay separate unless Combine brims merges colliding brims inside this group. + std::vector brims; + }; + const ExtrusionEntityCollection& skirt() const { return m_skirt; } - const std::vector& skirt_groups() const { return m_skirt_groups; } + const std::vector& skirt_brim_groups() const { return m_skirt_brim_groups; } + bool has_shared_per_object_skirt() const { return m_has_shared_per_object_skirt; } // Convex hull of the 1st layer extrusions, for bed leveling and placing the initial purge line. // It encompasses the object extrusions, support extrusions, skirt, brim, wipe tower. // It does NOT encompass user extrusions generated by custom G-code, @@ -1141,11 +1154,12 @@ private: PrintRegionPtrs m_print_regions; //SoftFever - bool m_isBBLPrinter; + bool m_isBBLPrinter = false; // Ordered collections of extrusion paths to build skirt loops and brim. ExtrusionEntityCollection m_skirt; - std::vector m_skirt_groups; + std::vector m_skirt_brim_groups; + bool m_has_shared_per_object_skirt { false }; // BBS: collecting extrusion paths to build brim by objs std::map m_brimMap; std::map m_supportBrimMap; @@ -1175,7 +1189,7 @@ private: std::vector m_slice_used_filaments_first_layer; //BBS: plate's origin - Vec3d m_origin; + Vec3d m_origin {0, 0, 0}; //BBS: modified_count int m_modified_count {0}; //BBS diff --git a/src/libslic3r/PrintApply.cpp b/src/libslic3r/PrintApply.cpp index a80ad6f730..0678f75277 100644 --- a/src/libslic3r/PrintApply.cpp +++ b/src/libslic3r/PrintApply.cpp @@ -1163,8 +1163,9 @@ Print::ApplyStatus Print::apply(const Model &model, DynamicPrintConfig new_full_ //apply extruder related values if (!extruder_applied) { - new_full_config.update_values_to_printer_extruders(new_full_config, printer_options_with_variant_1, "printer_extruder_id", "printer_extruder_variant"); + // variant_2 must be processed first, because variant_1 will make `printer_extruder_id` and `printer_extruder_variant` half of the size that makes `get_index_for_extruder` no longer work properly new_full_config.update_values_to_printer_extruders(new_full_config, printer_options_with_variant_2, "printer_extruder_id", "printer_extruder_variant", 2); + new_full_config.update_values_to_printer_extruders(new_full_config, printer_options_with_variant_1, "printer_extruder_id", "printer_extruder_variant"); //update print config related with variants new_full_config.update_values_to_printer_extruders(new_full_config, print_options_with_variant, "print_extruder_id", "print_extruder_variant"); diff --git a/src/libslic3r/PrintBase.cpp b/src/libslic3r/PrintBase.cpp index 821cf8a7f8..4448c12c76 100644 --- a/src/libslic3r/PrintBase.cpp +++ b/src/libslic3r/PrintBase.cpp @@ -21,11 +21,12 @@ void PrintTryCancel::operator()() size_t PrintStateBase::g_last_timestamp = 0; -// Update "scale", "input_filename", "input_filename_base" placeholders from the current m_objects. +// Update "scale", "input_filename", "input_filename_base", "first_object_name" placeholders from the current m_objects. void PrintBase::update_object_placeholders(DynamicConfig &config, const std::string &default_ext) const { // get the first input file name std::string input_file; + std::string first_object_name; std::vector v_scale; int num_objects = 0; int num_instances = 0; @@ -38,6 +39,8 @@ void PrintBase::update_object_placeholders(DynamicConfig &config, const std::str } if (printable) { ++ num_objects; + if (num_objects == 1) + first_object_name = model_object->name; // CHECK_ME -> Is the following correct ? v_scale.push_back("x:" + boost::lexical_cast(printable->get_scaling_factor(X) * 100) + "% y:" + boost::lexical_cast(printable->get_scaling_factor(Y) * 100) + @@ -51,6 +54,7 @@ void PrintBase::update_object_placeholders(DynamicConfig &config, const std::str config.set_key_value("num_instances", new ConfigOptionInt(num_instances)); config.set_key_value("scale", new ConfigOptionStrings(v_scale)); + config.set_key_value("first_object_name", new ConfigOptionString(first_object_name)); if (! input_file.empty()) { // get basename with and without suffix const std::string input_filename = boost::filesystem::path(input_file).filename().string(); diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index e107ca2cb8..b3f8a2a0b8 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -188,6 +188,12 @@ static t_config_enum_values s_keys_map_PowerLossRecoveryMode { }; CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(PowerLossRecoveryMode) +static t_config_enum_values s_keys_map_CenterOfSurfacePattern{ + {"each_surface", int(CenterOfSurfacePattern::Each_Surface)}, + {"each_model", int(CenterOfSurfacePattern::Each_Model)}, + {"each_assembly", int(CenterOfSurfacePattern::Each_Assembly)}}; +CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(CenterOfSurfacePattern) + static t_config_enum_values s_keys_map_FuzzySkinType { { "none", int(FuzzySkinType::None) }, { "external", int(FuzzySkinType::External) }, @@ -203,7 +209,7 @@ static t_config_enum_values s_keys_map_NoiseType { { "perlin", int(NoiseType::Perlin) }, { "billow", int(NoiseType::Billow) }, { "ridgedmulti", int(NoiseType::RidgedMulti) }, - { "voronoi", int(NoiseType::Voronoi) }, + { "voronoi", int(NoiseType::Voronoi) }, { "ripple", int(NoiseType::Ripple) } }; CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(NoiseType) @@ -221,6 +227,13 @@ static t_config_enum_values s_keys_map_FuzzySkinMode { }; CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(FuzzySkinMode) +static t_config_enum_values s_keys_map_TopSurfaceExpansionDirection { + { "inward_and_outward", int(TopSurfaceExpansionDirection::InwardAndOutward) }, + { "inward", int(TopSurfaceExpansionDirection::Inward) }, + { "outward", int(TopSurfaceExpansionDirection::Outward) } +}; +CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(TopSurfaceExpansionDirection) + static t_config_enum_values s_keys_map_InfillPattern { { "monotonic", ipMonotonic }, { "monotonicline", ipMonotonicLine }, @@ -522,6 +535,12 @@ static t_config_enum_values s_keys_map_PerimeterGeneratorType{ }; CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(PerimeterGeneratorType) +static t_config_enum_values s_keys_map_ToolChangeOrderingType { + { "default", int(ToolChangeOrderingType::Default) }, + { "cyclic", int(ToolChangeOrderingType::Cyclic) } +}; +CONFIG_OPTION_ENUM_DEFINE_STATIC_MAPS(ToolChangeOrderingType) + static const t_config_enum_values s_keys_map_ZHopType = { { "Auto Lift", zhtAuto }, { "Normal Lift", zhtNormal }, @@ -1558,14 +1577,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(50, true)); - def = this->add("enable_overhang_speed", coBool); + def = this->add("enable_overhang_speed", coBools); def->label = L("Slow down for overhangs"); def->category = L("Speed"); def->tooltip = L("Enable this option to slow down when printing overhangs. The speeds for different overhang percentages are set below."); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionBool{ true }); + def->nullable = true; + def->set_default_value(new ConfigOptionBoolsNullable{ true }); - def = this->add("slowdown_for_curled_perimeters", coBool); + def = this->add("slowdown_for_curled_perimeters", coBools); def->label = L("Slow down for curled perimeters"); def->category = L("Speed"); // xgettext:no-c-format, no-boost-format @@ -1586,9 +1606,10 @@ void PrintConfigDef::init_fff_params() "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."); def->mode = comAdvanced; - def->set_default_value(new ConfigOptionBool{ false }); + def->nullable = true; + def->set_default_value(new ConfigOptionBoolsNullable{ false }); - def = this->add("overhang_1_4_speed", coFloatOrPercent); + def = this->add("overhang_1_4_speed", coFloatsOrPercents); def->label = "10%"; def->category = L("Speed"); def->full_label = "10%"; @@ -1598,9 +1619,10 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "outer_wall_speed"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0, false)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(0, false)}); - def = this->add("overhang_2_4_speed", coFloatOrPercent); + def = this->add("overhang_2_4_speed", coFloatsOrPercents); def->label = "25%"; def->category = L("Speed"); def->full_label = "25%"; @@ -1610,9 +1632,10 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "outer_wall_speed"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0, false)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(0, false)}); - def = this->add("overhang_3_4_speed", coFloatOrPercent); + def = this->add("overhang_3_4_speed", coFloatsOrPercents); def->label = "50%"; def->category = L("Speed"); def->full_label = "50%"; @@ -1622,9 +1645,10 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "outer_wall_speed"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0, false)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(0, false)}); - def = this->add("overhang_4_4_speed", coFloatOrPercent); + def = this->add("overhang_4_4_speed", coFloatsOrPercents); def->label = "75%"; def->category = L("Speed"); def->full_label = "75%"; @@ -1634,9 +1658,10 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "outer_wall_speed"; def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(0, false)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(0, false)}); - def = this->add("bridge_speed", coFloat); + def = this->add("bridge_speed", coFloats); def->label = L("External"); def->category = L("Speed"); def->tooltip = L("Speed of the externally visible bridge extrusions.\n\n" @@ -1646,9 +1671,10 @@ void PrintConfigDef::init_fff_params() def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(25)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{25}); - def = this->add("internal_bridge_speed", coFloatOrPercent); + def = this->add("internal_bridge_speed", coFloatsOrPercents); def->label = L("Internal"); def->category = L("Speed"); def->tooltip = L("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%."); @@ -1656,7 +1682,8 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "bridge_speed"; def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(150, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(150, true)}); def = this->add("brim_width", coFloat); def->label = L("Brim width"); @@ -1834,14 +1861,46 @@ void PrintConfigDef::init_fff_params() def->tooltip = L("Enable this option to slow printing speed down to ensure that the final layer time is not shorter than the layer time threshold in \"Max fan speed threshold\", so that the layer can be cooled for a longer time. This can improve the quality for small details."); def->set_default_value(new ConfigOptionBools { true }); - def = this->add("default_acceleration", coFloat); + def = this->add("default_acceleration", coFloats); def->label = L("Normal printing"); def->category = L("Speed"); def->tooltip = L("This is the default acceleration for both normal printing and travel after the first layer."); def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(500.0)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{500.0}); + + def = this->add("travel_acceleration", coFloats); + def->label = L("Travel"); + def->category = L("Speed"); + def->tooltip = L("Acceleration of travel moves."); + def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation + def->min = 0; + def->mode = comAdvanced; + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{10000.0}); + + def = this->add("initial_layer_travel_acceleration", coFloatsOrPercents); + def->label = L("First layer travel"); + def->tooltip = L("Travel acceleration of first layer.\nThe percentage value is relative to Travel Acceleration."); + def->sidetext = L("mm/s² or %"); + def->min = 0; + def->mode = comAdvanced; + def->ratio_over = "travel_acceleration"; + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(100, true)}); + + def = this->add("bridge_acceleration", coFloatsOrPercents); + def->label = L("Bridge"); + def->category = L("Speed"); + def->tooltip = L("Acceleration of bridges. If the value is expressed as a percentage (e.g. 50%), it will be calculated based on the outer wall acceleration."); + def->sidetext = L("mm/s² or %"); + def->min = 0; + def->mode = comAdvanced; + def->ratio_over = "outer_wall_acceleration"; + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(50,true)}); def = this->add("default_filament_profile", coStrings); def->label = L("Default filament profile"); @@ -2065,6 +2124,59 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Octagram Spiral")); def->set_default_value(new ConfigOptionEnum(ipMonotonicLine)); + def = this->add("top_surface_density", coPercent); + def->label = L("Top surface density"); + def->category = L("Strength"); + def->tooltip = L("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."); + def->sidetext = ("%"); + def->min = 0; + def->max = 100; + def->set_default_value(new ConfigOptionPercent(100)); + + def = this->add("top_surface_expansion", coFloat); + def->label = L("Top surface expansion"); + def->category = L("Strength"); + def->tooltip = L("Expands the top surfaces by this distance to connect distinct top surfaces and fill gaps.\n" + "Useful for cases where the top surface is interrupted by a raised feature, such as text on a plane." + "Expanding it removes the holes beneath these features and creates a continuous path with a better finish for printing on top." + "The expansion is applied to the original top surface, before any other processing such as bridging or overhang detection."); + def->sidetext = L("mm"); + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0)); + + def = this->add("top_surface_expansion_margin", coFloat); + def->label = L("Top expansion wall margin"); + def->category = L("Strength"); + def->tooltip = L("Using “Top surface expansion” may cause a surface that did not previously touch the model's outer walls to now do so.\n" + "This can cause contraction marks (such as the hull line) on the outer walls.\n" + "By adding a small margin, this contraction will not occur directly on the walls, thereby preventing a visible mark."); + def->sidetext = L("mm"); + def->min = 0; + def->max = 10; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(0)); + + def = this->add("top_surface_expansion_direction", coEnum); + def->label = L("Top expansion direction"); + def->category = L("Strength"); + def->tooltip = L("Direction in which the top surface expansion grows.\n" + " - Inward grows into the holes and gaps left by features rising from the middle of a top surface.\n" + " - Outward grows the outer edge of the surface, connecting surfaces separated by features that can divide a surface, such as a lattice pattern.\n" + " - Inward and Outward does both."); + def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); + def->enum_values.push_back("inward_and_outward"); + def->enum_values.push_back("inward"); + def->enum_values.push_back("outward"); + def->enum_labels.push_back(L("Inward and Outward")); + def->enum_labels.push_back(L("Inward")); + def->enum_labels.push_back(L("Outward")); + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionEnum(TopSurfaceExpansionDirection::InwardAndOutward)); + def = this->add("bottom_surface_pattern", coEnum); def->label = L("Bottom surface pattern"); def->category = L("Strength"); @@ -2074,6 +2186,17 @@ void PrintConfigDef::init_fff_params() def->enum_labels = def_top_fill_pattern->enum_labels; def->set_default_value(new ConfigOptionEnum(ipMonotonic)); + def = this->add("bottom_surface_density", coPercent); + def->label = L("Bottom surface density"); + def->category = L("Strength"); + def->tooltip = L("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."); + def->sidetext = ("%"); + def->min = 10; + def->max = 100; + def->set_default_value(new ConfigOptionPercent(100)); + def = this->add("internal_solid_infill_pattern", coEnum); def->label = L("Internal solid infill pattern"); def->category = L("Strength"); @@ -2095,16 +2218,17 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(0., false)); - def = this->add("outer_wall_speed", coFloat); + def = this->add("outer_wall_speed", coFloats); def->label = L("Outer wall"); def->category = L("Speed"); def->tooltip = L("This is the printing speed for the outer walls of parts. These are generally printed slower than inner walls for higher quality."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(60)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{60}); - def = this->add("small_perimeter_speed", coFloatOrPercent); + def = this->add("small_perimeter_speed", coFloatsOrPercents); def->label = L("Small perimeters"); def->category = L("Speed"); def->tooltip = L("This separate setting will affect the speed of perimeters having radius <= small_perimeter_threshold " @@ -2114,16 +2238,40 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "outer_wall_speed"; def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(50, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(50, true)}); - def = this->add("small_perimeter_threshold", coFloat); + def = this->add("small_perimeter_threshold", coFloats); def->label = L("Small perimeters threshold"); def->category = L("Speed"); def->tooltip = L("This sets the threshold for small perimeter length. Default threshold is 0mm."); def->sidetext = L("mm"); // millimeters, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(0)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{0}); + + def = this->add("small_support_perimeter_speed", coFloatsOrPercents); + def->label = L("Small support perimeters"); + def->category = L("Speed"); + def->tooltip = L("Same as \"Small perimeters\", but for supports. " + "This separate setting will affect the speed of support for areas <= `small_support_perimeter_threshold`. " + "If expressed as a percentage (for example: 80%), it will be calculated on the support or support interface speed setting above. " + "Set to zero for auto."); + def->sidetext = L("mm/s or %"); + def->ratio_over = "outer_wall_speed"; + def->min = 1; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(50, true)}); + + def = this->add("small_support_perimeter_threshold", coFloats); + def->label = L("Small support perimeters threshold"); + def->category = L("Speed"); + def->tooltip = L("This sets the threshold for small support perimeter length. The default threshold is 0mm."); + def->sidetext = L("mm"); // millimeters, CIS languages need translation + def->min = 0; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatsNullable{0}); def = this->add("wall_sequence", coEnum); def->label = L("Walls printing order"); @@ -2360,18 +2508,19 @@ void PrintConfigDef::init_fff_params() // xgettext:no-c-format, no-boost-format def = this->add("adaptive_pressure_advance_overhangs", coBools); - def->label = L("Enable adaptive pressure advance for overhangs (beta)"); - def->tooltip = L("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" - "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects."); + def->label = L("Enable adaptive pressure advance within features (beta)"); + def->tooltip = L("Enable adaptive PA whenever there are flow changes in a feature, such as line width changes in a corner or overhangs.\n\n" + "Not compatible with Prusa printers as they pause to process PA changes, which causes delays and defects.\n\n" + "This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues."); def->mode = comAdvanced; def->set_default_value(new ConfigOptionBools{ false }); def = this->add("adaptive_pressure_advance_bridges", coFloats); - def->label = L("Pressure advance for bridges"); - def->tooltip = L("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."); + def->label = L("Static pressure advance for bridges"); + def->tooltip = L("Static pressure advance value for bridges. Set to 0 to apply the same pressure advance as \n" + "equivalent walls (using adaptive settings if enabled).\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."); def->max = 2; def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloats { 0.0 }); @@ -2482,18 +2631,6 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionEnum(fmmAutoForFlush)); - def = this->add("enable_filament_dynamic_map", coBool); - def->label = L("Enable filament dynamic map"); - def->tooltip = L("Enable dynamic filament mapping during print."); - def->mode = comDevelop; - def->set_default_value(new ConfigOptionBool(false)); - - def = this->add("has_filament_switcher", coBool); - def->label = L("Has filament switcher"); - def->tooltip = L("Printer has a filament switcher hardware (e.g., AMS)."); - def->mode = comDevelop; - def->set_default_value(new ConfigOptionBool(false)); - def = this->add("filament_flush_temp", coInts); def->label = L("Flush temperature"); def->tooltip = L("Temperature when flushing filament. 0 indicates the upper bound of the recommended nozzle temperature range."); @@ -2929,6 +3066,26 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(45)); + def = this->add("top_layer_direction", coFloat); + def->label = L("Top layer direction"); + def->category = L("Strength"); + def->tooltip = L("Fixed angle for the top solid infill and ironing lines.\nSet to -1 to follow the default solid infill direction."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -1; + def->max = 360; + def->mode = comSimple; + def->set_default_value(new ConfigOptionFloat(-1)); + + def = this->add("bottom_layer_direction", coFloat); + def->label = L("Bottom layer direction"); + def->category = L("Strength"); + def->tooltip = L("Fixed angle for the bottom solid infill lines.\nSet to -1 to follow the default solid infill direction."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -1; + def->max = 360; + def->mode = comSimple; + def->set_default_value(new ConfigOptionFloat(-1)); + def = this->add("sparse_infill_density", coPercent); def->label = L("Sparse infill density"); def->category = L("Strength"); @@ -2971,6 +3128,7 @@ void PrintConfigDef::init_fff_params() def = this->add("gyroid_optimized", coBool); def->label = L("Z-buckling bias optimization (experimental)"); def->category = L("Strength"); + // xgettext:no-c-format, no-boost-format def->tooltip = L("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 " @@ -3036,165 +3194,37 @@ void PrintConfigDef::init_fff_params() def->enum_labels.push_back(L("Octagram Spiral")); def->set_default_value(new ConfigOptionEnum(ipCrossHatch)); - def = this->add("lateral_lattice_angle_1", coFloat); - def->label = L("Lateral lattice angle 1"); - def->category = L("Strength"); - def->tooltip = L("The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = -75; - def->max = 75; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(-45)); - - def = this->add("lateral_lattice_angle_2", coFloat); - def->label = L("Lateral lattice angle 2"); - def->category = L("Strength"); - def->tooltip = L("The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = -75; - def->max = 75; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(45)); - - def = this->add("infill_overhang_angle", coFloat); - def->label = L("Infill overhang angle"); - def->category = L("Strength"); - def->tooltip = L("The angle of the infill angled lines. 60° will result in a pure honeycomb."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = 15; - def->max = 75; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(60)); - - def = this->add("lightning_overhang_angle", coFloat); - def->label = L("Lightning overhang angle"); - def->category = L("Strength"); - def->tooltip = L("Maximum overhang angle for Lightning infill support propagation."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = 5; - def->max = 85; - def->mode = comExpert; - def->set_default_value(new ConfigOptionFloat(45)); - - def = this->add("lightning_prune_angle", coFloat); - def->label = L("Prune angle"); - def->category = L("Strength"); - def->tooltip = L("Controls how aggressively short or unsupported Lightning branches are pruned.\n" - "This angle is converted internally to a per-layer distance."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = 5; - def->max = 85; - def->mode = comExpert; - def->set_default_value(new ConfigOptionFloat(45)); - - def = this->add("lightning_straightening_angle", coFloat); - def->label = L("Straightening angle"); - def->category = L("Strength"); - def->tooltip = L("Maximum straightening angle used to simplify Lightning branches."); - def->sidetext = u8"°"; // degrees, don't need translation - def->min = 5; - def->max = 85; - def->mode = comExpert; - def->set_default_value(new ConfigOptionFloat(45)); - - auto def_infill_anchor_min = def = this->add("infill_anchor", coFloatOrPercent); - def->label = L("Sparse infill anchor length"); - def->category = L("Strength"); - def->tooltip = L("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."); - def->sidetext = L("mm or %"); - def->ratio_over = "sparse_infill_line_width"; - def->max_literal = 1000; - def->gui_type = ConfigOptionDef::GUIType::f_enum_open; - def->enum_values.push_back("0"); - def->enum_values.push_back("1"); - def->enum_values.push_back("2"); - def->enum_values.push_back("5"); - def->enum_values.push_back("10"); - def->enum_values.push_back("1000"); - def->enum_labels.push_back(L("0 (no open anchors)")); - def->enum_labels.push_back("1 mm"); - def->enum_labels.push_back("2 mm"); - def->enum_labels.push_back("5 mm"); - def->enum_labels.push_back("10 mm"); - def->enum_labels.push_back(L("1000 (unlimited)")); - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(400, true)); - - def = this->add("infill_anchor_max", coFloatOrPercent); - def->label = L("Maximum length of the infill anchor"); - def->category = L("Strength"); - def->tooltip = L("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."); - def->sidetext = def_infill_anchor_min->sidetext; - def->ratio_over = def_infill_anchor_min->ratio_over; - def->gui_type = def_infill_anchor_min->gui_type; - def->enum_values = def_infill_anchor_min->enum_values; - def->max_literal = def_infill_anchor_min->max_literal; - def->enum_labels.push_back(L("0 (Simple connect)")); - def->enum_labels.push_back("1 mm"); - def->enum_labels.push_back("2 mm"); - def->enum_labels.push_back("5 mm"); - def->enum_labels.push_back("10 mm"); - def->enum_labels.push_back(L("1000 (unlimited)")); - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(20, false)); - - def = this->add("inner_wall_acceleration", coFloat); - def->label = L("Inner wall"); - def->category = L("Speed"); - def->tooltip = L("Acceleration of inner walls."); - def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation - def->min = 0; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(10000)); - - def = this->add("travel_acceleration", coFloat); - def->label = L("Travel"); - def->category = L("Speed"); - def->tooltip = L("Acceleration of travel moves."); - def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation - def->min = 0; - def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(10000)); - - def = this->add("top_surface_acceleration", coFloat); + def = this->add("top_surface_acceleration", coFloats); def->label = L("Top surface"); def->category = L("Speed"); def->tooltip = L("This is the acceleration of top surface infill. Using a lower value may improve top surface quality."); def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(500)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{500}); - def = this->add("outer_wall_acceleration", coFloat); + def = this->add("outer_wall_acceleration", coFloats); def->label = L("Outer wall"); def->category = L("Speed"); def->tooltip = L("Acceleration of outer wall: using a lower value can improve quality."); def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(500)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{500}); - def = this->add("bridge_acceleration", coFloatOrPercent); - def->label = L("Bridge"); + def = this->add("inner_wall_acceleration", coFloats); + def->label = L("Inner wall"); def->category = L("Speed"); - def->tooltip = L("Acceleration of bridges. If the value is expressed as a percentage (e.g. 50%), it will be calculated based on the outer wall acceleration."); - def->sidetext = L("mm/s² or %"); + def->tooltip = L("Acceleration of inner walls."); + def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->ratio_over = "outer_wall_acceleration"; - def->set_default_value(new ConfigOptionFloatOrPercent(50,true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{10000}); - def = this->add("sparse_infill_acceleration", coFloatOrPercent); + def = this->add("sparse_infill_acceleration", coFloatsOrPercents); def->label = L("Sparse infill"); def->category = L("Speed"); def->tooltip = L("Acceleration of sparse infill. If the value is expressed as a percentage (e.g. 100%), it will be calculated based on the default acceleration."); @@ -3202,9 +3232,10 @@ void PrintConfigDef::init_fff_params() def->min = 0; def->mode = comAdvanced; def->ratio_over = "default_acceleration"; - def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(100, true)}); - def = this->add("internal_solid_infill_acceleration", coFloatOrPercent); + def = this->add("internal_solid_infill_acceleration", coFloatsOrPercents); def->label = L("Internal solid infill"); def->category = L("Speed"); def->tooltip = L("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."); @@ -3212,25 +3243,18 @@ void PrintConfigDef::init_fff_params() def->min = 0; def->mode = comAdvanced; def->ratio_over = "default_acceleration"; - def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(100, true)}); - def = this->add("initial_layer_acceleration", coFloat); + def = this->add("initial_layer_acceleration", coFloats); def->label = L("First layer"); def->category = L("Speed"); def->tooltip = L("This is the printing acceleration for the first layer. Using limited acceleration can improve build plate adhesion."); def->sidetext = L(u8"mm/s²"); // millimeters per second per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(300)); - - def = this->add("initial_layer_travel_acceleration", coFloatOrPercent); - def->label = L("First layer travel"); - def->tooltip = L("Travel acceleration of first layer.\nThe percentage value is relative to Travel Acceleration."); - def->sidetext = L("mm/s² or %"); - def->min = 0; - def->mode = comAdvanced; - def->ratio_over = "travel_acceleration"; - def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{300}); def = this->add("accel_to_decel_enable", coBool); def->label = L("Enable accel_to_decel"); @@ -3249,16 +3273,17 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionPercent(50)); - def = this->add("default_jerk", coFloat); + def = this->add("default_jerk", coFloats); def->label = L("Default"); def->category = L("Speed"); def->tooltip = L("Default jerk."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(0)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{0}); - def = this->add("default_junction_deviation", coFloat); + def = this->add("default_junction_deviation", coFloats); def->label = L("Junction Deviation"); def->category = L("Speed"); def->tooltip = L("Marlin Firmware Junction Deviation (replaces the traditional XY Jerk setting)."); @@ -3266,70 +3291,78 @@ void PrintConfigDef::init_fff_params() def->min = 0.f; def->max = 0.3f; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(0.f)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{0.f}); - def = this->add("outer_wall_jerk", coFloat); + def = this->add("outer_wall_jerk", coFloats); def->label = L("Outer wall"); def->category = L("Speed"); def->tooltip = L("Jerk of outer walls."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(9)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{9}); - def = this->add("inner_wall_jerk", coFloat); + def = this->add("inner_wall_jerk", coFloats); def->label = L("Inner wall"); def->category = L("Speed"); def->tooltip = L("Jerk of inner walls."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(9)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{9}); - def = this->add("top_surface_jerk", coFloat); + def = this->add("top_surface_jerk", coFloats); def->label = L("Top surface"); def->category = L("Speed"); + def->nullable = true; def->tooltip = L("Jerk for top surface."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(9)); + def->set_default_value(new ConfigOptionFloatsNullable{9}); - def = this->add("infill_jerk", coFloat); + def = this->add("infill_jerk", coFloats); def->label = L("Infill"); def->category = L("Speed"); def->tooltip = L("Jerk for infill."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(9)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{9}); - def = this->add("initial_layer_jerk", coFloat); + def = this->add("initial_layer_jerk", coFloats); def->label = L("First layer"); def->category = L("Speed"); def->tooltip = L("Jerk for the first layer."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(9)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{9}); - def = this->add("travel_jerk", coFloat); + def = this->add("travel_jerk", coFloats); def->label = L("Travel"); def->category = L("Speed"); def->tooltip = L("Jerk for travel."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(12)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{12}); - def = this->add("initial_layer_travel_jerk", coFloatOrPercent); + def = this->add("initial_layer_travel_jerk", coFloatsOrPercents); def->label = L("First layer travel"); def->tooltip = L("Travel jerk of first layer.\nThe percentage value is relative to Travel Jerk."); def->sidetext = L("mm/s or %"); def->min = 0; def->mode = comAdvanced; def->ratio_over = "travel_jerk"; - def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(100, true)}); def = this->add("initial_layer_line_width", coFloatOrPercent); def->label = L("First layer"); @@ -3343,7 +3376,6 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(0., false)); - def = this->add("initial_layer_print_height", coFloat); def->label = L("First layer height"); def->category = L("Quality"); @@ -3360,23 +3392,25 @@ void PrintConfigDef::init_fff_params() // "Note that this option only takes effect if no prime tower is generated in current plate."); //def->set_default_value(new ConfigOptionBool(0)); - def = this->add("initial_layer_speed", coFloat); + def = this->add("initial_layer_speed", coFloats); def->label = L("First layer"); def->tooltip = L("This is the speed for the first layer except for solid infill sections."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(30)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{30}); - def = this->add("initial_layer_infill_speed", coFloat); + def = this->add("initial_layer_infill_speed", coFloats); def->label = L("First layer infill"); def->tooltip = L("This is the speed for solid infill parts of the first layer."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(60.0)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{60.0}); - def = this->add("initial_layer_travel_speed", coFloatOrPercent); + def = this->add("initial_layer_travel_speed", coFloatsOrPercents); def->label = L("First layer travel speed"); def->tooltip = L("Travel speed of the first layer."); def->category = L("Speed"); @@ -3384,7 +3418,8 @@ void PrintConfigDef::init_fff_params() def->ratio_over = "travel_speed"; def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloatOrPercent(100, true)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsOrPercentsNullable{FloatOrPercent(100, true)}); def = this->add("slow_down_layers", coInt); def->label = L("Number of slow layers"); @@ -3416,7 +3451,25 @@ void PrintConfigDef::init_fff_params() def->max = 1000; def->mode = comAdvanced; def->set_default_value(new ConfigOptionInts { 0 }); - + + // ORCA: explicit override for the part cooling fan speed on the first printed layer. + def = this->add("initial_layer_fan_speed", coInts); + def->label = L("First layer fan speed"); + def->tooltip = L("Sets an exact fan speed for the first layer, overriding all other cooling settings. " + "Useful for protecting 3D-printed toolhead parts (e.g. Voron-style ABS/ASA ducts) from " + "a hot bed. A small amount of airflow cools the ducts down, without using full cooling that " + "may in certain conditions hurt first-layer adhesion." + "\nFrom the second layer onwards, normal cooling resumes." + "\nIf \"Full fan speed at layer\" is also set, the fan ramps smoothly from this value " + "on the first layer up to your target by the chosen layer." + "\nOnly available when \"No cooling for the first\" is 0." + "\nSet to -1 to disable it."); + def->sidetext = "%"; + def->min = -1; + def->max = 100; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionInts { -1 }); + def = this->add("support_material_interface_fan_speed", coInts); def->label = L("Support interface fan speed"); def->tooltip = L("This part cooling fan speed is applied when printing support interfaces. Setting this parameter to a higher than regular speed " @@ -3666,14 +3719,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(0)); - def = this->add("gap_infill_speed", coFloat); + def = this->add("gap_infill_speed", coFloats); def->label = L("Gap infill"); def->category = L("Speed"); def->tooltip = L("This is the speed for gap infill. Gaps usually have irregular line width and should be printed more slowly."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(30)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{30}); // BBS def = this->add("precise_z_height", coBool); @@ -4084,6 +4138,118 @@ void PrintConfigDef::init_fff_params() def->gui_type = ConfigOptionDef::GUIType::one_string; def->set_default_value(new ConfigOptionPoints()); + def = this->add("lateral_lattice_angle_1", coFloat); + def->label = L("Lateral lattice angle 1"); + def->category = L("Strength"); + def->tooltip = L("The angle of the first set of Lateral lattice elements in the Z direction. Zero is vertical."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -75; + def->max = 75; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(-45)); + + def = this->add("lateral_lattice_angle_2", coFloat); + def->label = L("Lateral lattice angle 2"); + def->category = L("Strength"); + def->tooltip = L("The angle of the second set of Lateral lattice elements in the Z direction. Zero is vertical."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = -75; + def->max = 75; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(45)); + + def = this->add("infill_overhang_angle", coFloat); + def->label = L("Infill overhang angle"); + def->category = L("Strength"); + def->tooltip = L("The angle of the infill angled lines. 60° will result in a pure honeycomb."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = 15; + def->max = 75; + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloat(60)); + + def = this->add("lightning_overhang_angle", coFloat); + def->label = L("Lightning overhang angle"); + def->category = L("Strength"); + def->tooltip = L("Maximum overhang angle for Lightning infill support propagation."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = 5; + def->max = 85; + def->mode = comExpert; + def->set_default_value(new ConfigOptionFloat(45)); + + def = this->add("lightning_prune_angle", coFloat); + def->label = L("Prune angle"); + def->category = L("Strength"); + def->tooltip = L("Controls how aggressively short or unsupported Lightning branches are pruned.\n" + "This angle is converted internally to a per-layer distance."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = 5; + def->max = 85; + def->mode = comExpert; + def->set_default_value(new ConfigOptionFloat(45)); + + def = this->add("lightning_straightening_angle", coFloat); + def->label = L("Straightening angle"); + def->category = L("Strength"); + def->tooltip = L("Maximum straightening angle used to simplify Lightning branches."); + def->sidetext = u8"°"; // degrees, don't need translation + def->min = 5; + def->max = 85; + def->mode = comExpert; + def->set_default_value(new ConfigOptionFloat(45)); + + auto def_infill_anchor_min = def = this->add("infill_anchor", coFloatOrPercent); + def->label = L("Sparse infill anchor length"); + def->category = L("Strength"); + def->tooltip = L("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."); + def->sidetext = L("mm or %"); + def->ratio_over = "sparse_infill_line_width"; + def->max_literal = 1000; + def->gui_type = ConfigOptionDef::GUIType::f_enum_open; + def->enum_values.push_back("0"); + def->enum_values.push_back("1"); + def->enum_values.push_back("2"); + def->enum_values.push_back("5"); + def->enum_values.push_back("10"); + def->enum_values.push_back("1000"); + def->enum_labels.push_back(L("0 (no open anchors)")); + def->enum_labels.push_back("1 mm"); + def->enum_labels.push_back("2 mm"); + def->enum_labels.push_back("5 mm"); + def->enum_labels.push_back("10 mm"); + def->enum_labels.push_back(L("1000 (unlimited)")); + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatOrPercent(400, true)); + + def = this->add("infill_anchor_max", coFloatOrPercent); + def->label = L("Maximum length of the infill anchor"); + def->category = L("Strength"); + def->tooltip = L("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."); + def->sidetext = def_infill_anchor_min->sidetext; + def->ratio_over = def_infill_anchor_min->ratio_over; + def->gui_type = def_infill_anchor_min->gui_type; + def->enum_values = def_infill_anchor_min->enum_values; + def->max_literal = def_infill_anchor_min->max_literal; + def->enum_labels.push_back(L("0 (Simple connect)")); + def->enum_labels.push_back("1 mm"); + def->enum_labels.push_back("2 mm"); + def->enum_labels.push_back("5 mm"); + def->enum_labels.push_back("10 mm"); + def->enum_labels.push_back(L("1000 (unlimited)")); + def->mode = comAdvanced; + def->set_default_value(new ConfigOptionFloatOrPercent(20, false)); + def = this->add("sparse_infill_filament_id", coInt); def->gui_type = ConfigOptionDef::GUIType::i_enum_open; def->label = L("Infill"); @@ -4128,14 +4294,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionPercent(25)); - def = this->add("sparse_infill_speed", coFloat); + def = this->add("sparse_infill_speed", coFloats); def->label = L("Sparse infill"); def->category = L("Speed"); def->tooltip = L("This is the speed for internal sparse infill."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(100)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{100}); def = this->add("inherits", coString); def->label = L("Inherits profile"); @@ -4989,7 +5156,7 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(0., false)); - def = this->add("inner_wall_speed", coFloat); + def = this->add("inner_wall_speed", coFloats); def->label = L("Inner wall"); def->category = L("Speed"); def->tooltip = L("This is the speed for inner walls."); @@ -4997,7 +5164,8 @@ void PrintConfigDef::init_fff_params() def->aliases = { "perimeter_feed_rate" }; def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(60)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{60}); def = this->add("wall_loops", coInt); def->label = L("Wall loops"); @@ -5328,6 +5496,18 @@ void PrintConfigDef::init_fff_params() def->tooltip = "AMS counts per extruder."; def->set_default_value(new ConfigOptionStrings { }); + def = this->add("enable_filament_dynamic_map", coBool); + def->label = L("Enable filament dynamic map"); + def->tooltip = L("Enable dynamic filament mapping during print."); + def->mode = comDevelop; + def->set_default_value(new ConfigOptionBool(false)); + + def = this->add("has_filament_switcher", coBool); + def->label = L("Has filament switcher"); + def->tooltip = L("Printer has a filament switcher hardware (e.g., AMS)."); + def->mode = comDevelop; + def->set_default_value(new ConfigOptionBool(false)); + def = this->add("printer_extruder_id", coInts); // internal use only, don't need translation def->label = "Printer extruder id"; @@ -5763,14 +5943,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(0., false)); - def = this->add("internal_solid_infill_speed", coFloat); + def = this->add("internal_solid_infill_speed", coFloats); def->label = L("Internal solid infill"); def->category = L("Speed"); def->tooltip = L("This is the speed for internal solid infill, not including the top or bottom surface."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(100)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{100}); def = this->add("spiral_mode", coBool); def->label = L("Spiral vase"); @@ -5955,6 +6136,22 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(false)); + def = this->add("toolchange_ordering", coEnum); + def->label = L("Toolchange ordering"); + def->category = L("Advanced"); + def->tooltip = L( + "Determines the order of tool changes on each layer.\n" + "- Default: Starts with the last used extruder to minimize tool changes.\n" + "- Cyclic: Uses a fixed tool sequence each layer. This sacrifices speed for better surface quality, as the extra toolchanges allow layers more time to cool." + ); + def->mode = comAdvanced; + def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); + def->enum_values.emplace_back("default"); + def->enum_values.emplace_back("cyclic"); + def->enum_labels.emplace_back(L("Default")); + def->enum_labels.emplace_back(L("Cyclic")); + def->set_default_value(new ConfigOptionEnum(ToolChangeOrderingType::Default)); + def = this->add("slice_closing_radius", coFloat); def->label = L("Slice gap closing radius"); def->category = L("Quality"); @@ -6208,14 +6405,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(0.5)); - def = this->add("support_interface_speed", coFloat); + def = this->add("support_interface_speed", coFloats); def->label = L("Support interface"); def->category = L("Speed"); def->tooltip = L("This is the speed for support interfaces."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(80)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{80}); def = this->add("support_base_pattern", coEnum); def->label = L("Base pattern"); @@ -6277,14 +6475,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloat(0)); - def = this->add("support_speed", coFloat); + def = this->add("support_speed", coFloats); def->label = L("Support"); def->category = L("Speed"); def->tooltip = L("This is the speed for support."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(80)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{ 80 }); def = this->add("support_style", coEnum); def->label = L("Style"); @@ -6557,6 +6756,21 @@ void PrintConfigDef::init_fff_params() def->max = max_temp; def->set_default_value(new ConfigOptionInts{0}); + def = this->add("chamber_minimal_temperature", coInts); + def->label = L("Minimal"); + def->tooltip = L("This is the chamber temperature at which printing should start, while the chamber continues heating " + "toward the \"Target\" chamber temperature. For example, set the Target to 60 and the Minimal to 50 to " + "begin printing once the chamber reaches 50°C, without waiting for the full 60°C.\n\n" + "It sets a G-code variable named chamber_minimal_temperature, which can be passed to your print start macro " + "or a heat soak macro, like this: PRINT_START (other variables) CHAMBER_MIN_TEMP=[chamber_minimal_temperature].\n\n" + "Unlike the \"Target\" chamber temperature, this option does not emit any M141/M191 commands; it only exposes " + "the value to your custom G-code. It should not exceed the \"Target\" chamber temperature."); + def->sidetext = L(u8"\u2103" /* °C */); // degrees Celsius, CIS languages need translation + def->full_label = L("Chamber minimal temperature"); + def->min = 0; + def->max = max_temp; + def->set_default_value(new ConfigOptionInts{0}); + def = this->add("nozzle_temperature", coInts); def->label = L("Other layers"); def->tooltip = L("Nozzle temperature after the first layer"); @@ -6633,14 +6847,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionFloatOrPercent(0., false)); - def = this->add("top_surface_speed", coFloat); + def = this->add("top_surface_speed", coFloats); def->label = L("Top surface"); def->category = L("Speed"); def->tooltip = L("This is the speed for solid top surface infill."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(100)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{100}); def = this->add("top_shell_layers", coInt); def->label = L("Top shell layers"); @@ -6660,39 +6875,59 @@ void PrintConfigDef::init_fff_params() def->min = 0; def->set_default_value(new ConfigOptionFloat(0.6)); - def = this->add("top_surface_density", coPercent); - def->label = L("Top surface density"); + def = this->add("anisotropic_surfaces", coBool); + def->label = L("Anisotropic surfaces"); def->category = L("Strength"); - def->tooltip = L("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."); - def->sidetext = ("%"); - def->min = 0; - def->max = 100; - def->set_default_value(new ConfigOptionPercent(100)); + def->tooltip = L("Anisotropic patterns on the top and bottom surfaces.\n" + "Co-directional printing mode will be applied. For certain patterns, omni-directional filling provides color " + "dispersion when using multi-colored or silk plastics.\n" + "This option disable the gap fill.\n" + "This option can increase a printing time."); + def->mode = comExpert; + def->set_default_value(new ConfigOptionBool(false)); - def = this->add("bottom_surface_density", coPercent); - def->label = L("Bottom surface density"); + def = this->add("separated_infills", coBool); + def->label = L("Separated infills"); def->category = L("Strength"); - def->tooltip = L("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."); - def->sidetext = ("%"); - def->min = 10; - def->max = 100; - def->set_default_value(new ConfigOptionPercent(100)); + def->tooltip = L("Aligns the internal infill pattern of each part independently instead of across the whole object or assembly.\n" + "By default, aligned infill patterns share a single origin for the entire object, so the pattern of every " + "part is referenced to the same point. When enabled, each connected body is aligned on its own: parts that " + "touch or overlap are treated as one body and share an origin, while parts detached from the rest each get " + "their own.\n Useful when an assembly groups several distinct objects that should each keep a self-centered infill.\n" + "Only affects centered infill patterns (Archimedean Chords, Octagram Spiral) and patterns driven by an " + "infill rotation template."); + def->mode = comExpert; + def->set_default_value(new ConfigOptionBool(false)); + def = this->add("center_of_surface_pattern", coEnum); + def->label = L("Center surface pattern on"); + def->category = L("Strength"); + def->tooltip = L("Chooses where the centering point of centered top/bottom surface patterns (Archimedean Chords, " + "Octagram Spiral) is placed.\n" + " - Each Surface: centers the pattern on every individual surface region, so each island is symmetric on its own.\n" + " - Each Model: centers the pattern on each connected body. Parts that touch or overlap share one center; " + "parts detached from the rest each get their own.\n" + " - Each Assembly: uses a single shared center for the whole object or assembly."); + def->enum_keys_map = &ConfigOptionEnum::get_enum_values(); + def->enum_values.push_back("each_surface"); + def->enum_values.push_back("each_model"); + def->enum_values.push_back("each_assembly"); + def->enum_labels.push_back(L("Each Surface")); + def->enum_labels.push_back(L("Each Model")); + def->enum_labels.push_back(L("Each Assembly")); + def->mode = comExpert; + def->set_default_value(new ConfigOptionEnum(CenterOfSurfacePattern::Each_Surface)); - def = this->add("travel_speed", coFloat); + def = this->add("travel_speed", coFloats); def->label = L("Travel"); def->tooltip = L("This is the speed at which traveling is done."); def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 1; def->mode = comAdvanced; - def->set_default_value(new ConfigOptionFloat(120)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{120}); - def = this->add("travel_speed_z", coFloat); + def = this->add("travel_speed_z", coFloats); //def->label = L("Z travel"); //def->tooltip = L("Speed of vertical travel along z axis. " // "This is typically lower because build plate or gantry is hard to be moved. " @@ -6700,7 +6935,8 @@ void PrintConfigDef::init_fff_params() def->sidetext = L("mm/s"); // millimeters per second, CIS languages need translation def->min = 0; def->mode = comDevelop; - def->set_default_value(new ConfigOptionFloat(0.)); + def->nullable = true; + def->set_default_value(new ConfigOptionFloatsNullable{0.}); def = this->add("wipe", coBools); def->label = L("Wipe while retracting"); @@ -7019,6 +7255,15 @@ void PrintConfigDef::init_fff_params() def->mode = comAdvanced; def->set_default_value(new ConfigOptionBool(true)); + def = this->add("hole_to_polyhole_max_edges", coInt); + def->label = L("Maximum Polyhole edge count"); + def->category = L("Quality"); + def->tooltip = L("Maximum number of polyhole edges" + "\nThis setting limits the amount of edges a polyhole can have"); + def->mode = comExpert; + def->min = 3; + def->set_default_value(new ConfigOptionInt(50)); + def = this->add("thumbnails", coString); def->label = L("G-code thumbnails"); def->tooltip = L("Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\""); @@ -8238,32 +8483,48 @@ const PrintConfigDef print_config_def; //todo std::set print_options_with_variant = { - //"initial_layer_speed", - //"initial_layer_infill_speed", - //"outer_wall_speed", - //"inner_wall_speed", - //"small_perimeter_speed", //coFloatsOrPercents - //"small_perimeter_threshold", - //"sparse_infill_speed", - //"internal_solid_infill_speed", - //"top_surface_speed", - //"enable_overhang_speed", //coBools - //"overhang_1_4_speed", - //"overhang_2_4_speed", - //"overhang_3_4_speed", - //"overhang_4_4_speed", - //"bridge_speed", - //"gap_infill_speed", - //"support_speed", - //"support_interface_speed", - //"travel_speed", - //"travel_speed_z", - //"default_acceleration", - //"initial_layer_acceleration", - //"outer_wall_acceleration", - //"inner_wall_acceleration", - //"sparse_infill_acceleration", //coFloatsOrPercents - //"top_surface_acceleration", + "initial_layer_speed", + "initial_layer_infill_speed", + "outer_wall_speed", + "inner_wall_speed", + "small_perimeter_speed", //coFloatsOrPercents + "small_perimeter_threshold", + "sparse_infill_speed", + "internal_solid_infill_speed", + "top_surface_speed", + "enable_overhang_speed", //coBools + "overhang_1_4_speed", + "overhang_2_4_speed", + "overhang_3_4_speed", + "overhang_4_4_speed", + "slowdown_for_curled_perimeters", + "bridge_speed", + "internal_bridge_speed", + "gap_infill_speed", + "support_speed", + "support_interface_speed", + "travel_speed", + "travel_speed_z", + "initial_layer_travel_speed", + "default_acceleration", + "bridge_acceleration", + "travel_acceleration", + "initial_layer_travel_acceleration", + "initial_layer_acceleration", + "outer_wall_acceleration", + "inner_wall_acceleration", + "sparse_infill_acceleration", //coFloatsOrPercents + "internal_solid_infill_acceleration", //coFloatsOrPercents + "top_surface_acceleration", + "default_jerk", + "outer_wall_jerk", + "inner_wall_jerk", + "infill_jerk", + "top_surface_jerk", + "initial_layer_jerk", + "travel_jerk", + "initial_layer_travel_jerk", + "default_junction_deviation", "print_extruder_id", //coInts "print_extruder_variant" //coStrings }; @@ -8284,7 +8545,7 @@ std::set filament_options_with_variant = { "filament_deretraction_speed", "filament_retraction_minimum_travel", "filament_retract_when_changing_layer", - "filament_wipe", + "filament_wipe", //BBS "filament_wipe_distance", "filament_retract_before_wipe", @@ -8365,7 +8626,8 @@ std::set printer_options_with_variant_2 = { "machine_max_jerk_x", "machine_max_jerk_y", "machine_max_jerk_z", - "machine_max_jerk_e" + "machine_max_jerk_e", + "machine_max_junction_deviation", }; std::set empty_options; @@ -8874,7 +9136,7 @@ bool DynamicPrintConfig::is_using_different_extruders() return ret; } -bool DynamicPrintConfig::support_different_extruders(int& extruder_count) +bool DynamicPrintConfig::support_different_extruders(int& extruder_count) const { std::set variant_set; @@ -11202,6 +11464,7 @@ TemperaturesConfigDef::TemperaturesConfigDef() new_def("bed_temperature_initial_layer", coInts, "First layer bed temperature", "Vector of first layer bed temperatures for each extruder/filament. Provides the same value as first_layer_bed_temperature.") new_def("bed_temperature_initial_layer_single", coInt, "First layer bed temperature (initial extruder)", "First layer bed temperature for the initial extruder. Same as bed_temperature_initial_layer[initial_extruder]") new_def("chamber_temperature", coInts, "Chamber temperature", "Vector of chamber temperatures for each extruder/filament.") + new_def("chamber_minimal_temperature", coInts, "Chamber minimal temperature", "Vector of minimal chamber temperatures for each extruder/filament.") new_def("overall_chamber_temperature", coInt, "Overall chamber temperature", "Overall chamber temperature. This value is the maximum chamber temperature of any extruder/filament used.") new_def("first_layer_bed_temperature", coInts, "First layer bed temperature", "Vector of first layer bed temperatures for each extruder/filament. Provides the same value as bed_temperature_initial_layer.") new_def("first_layer_temperature", coInts, "First layer temperature", "Vector of first layer temperatures for each extruder/filament.") diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp index 45281d5ce1..f36076da45 100644 --- a/src/libslic3r/PrintConfig.hpp +++ b/src/libslic3r/PrintConfig.hpp @@ -62,6 +62,19 @@ enum class FuzzySkinMode { Combined, }; +// ORCA: direction in which top_surface_expansion grows the top surfaces. +enum class TopSurfaceExpansionDirection { + InwardAndOutward, + Inward, + Outward, +}; + +enum class CenterOfSurfacePattern { + Each_Surface, + Each_Model, + Each_Assembly, +}; + enum class NoiseType { Classic, Perlin, @@ -300,6 +313,12 @@ enum class PerimeterGeneratorType Arachne }; +enum class ToolChangeOrderingType +{ + Default, + Cyclic, +}; + // BBS enum OverhangFanThreshold { Overhang_threshold_none = 0, @@ -430,6 +449,17 @@ enum FilamentMapMode { extern std::string get_extruder_variant_string(ExtruderType extruder_type, NozzleVolumeType nozzle_volume_type); +static std::set get_valid_nozzle_volume_type() { + std::set type; + for (int i = 0; i <= nvtMaxNozzleVolumeType; ++i) { + auto t = static_cast(i); + // TODO: Orca: Support hybrid + //if (t == nvtHybrid) continue; + type.insert(t); + } + return type; +} + std::string get_nozzle_volume_type_string(NozzleVolumeType nozzle_volume_type); static std::string bed_type_to_gcode_string(const BedType type) @@ -523,6 +553,7 @@ CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(PrinterTechnology) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(GCodeFlavor) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(FuzzySkinType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(FuzzySkinMode) +CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(TopSurfaceExpansionDirection) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(WipeTowerType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(NoiseType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(InfillPattern) @@ -550,6 +581,7 @@ CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(PrintHostType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(AuthorizationType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(WipeTowerWallType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(PerimeterGeneratorType) +CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(ToolChangeOrderingType) CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS(PowerLossRecoveryMode) #undef CONFIG_OPTION_ENUM_DECLARE_STATIC_MAPS @@ -658,7 +690,7 @@ public: //BBS bool is_using_different_extruders(); - bool support_different_extruders(int& extruder_count); + bool support_different_extruders(int& extruder_count) const; int get_index_for_extruder(int extruder_or_filament_id, std::string id_name, ExtruderType extruder_type, NozzleVolumeType nozzle_volume_type, std::string variant_name, unsigned int stride = 1) const; void update_values_to_printer_extruders(DynamicPrintConfig& printer_config, std::set& key_set, std::string id_name, std::string variant_name, unsigned int stride = 1, unsigned int extruder_id = 0); void update_values_to_printer_extruders_for_multiple_filaments(DynamicPrintConfig& printer_config, std::set& key_set, std::string id_name, std::string variant_name); @@ -965,13 +997,13 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionInt, support_interface_bottom_layers)) // Spacing between interface lines (the hatching distance). Set zero to get a solid interface. ((ConfigOptionFloat, support_interface_spacing)) - ((ConfigOptionFloat, support_interface_speed)) + ((ConfigOptionFloatsNullable, support_interface_speed)) ((ConfigOptionEnum, support_base_pattern)) ((ConfigOptionEnum, support_interface_pattern)) // Spacing between support material lines (the hatching distance). ((ConfigOptionFloat, support_base_pattern_spacing)) ((ConfigOptionFloat, support_expansion)) - ((ConfigOptionFloat, support_speed)) + ((ConfigOptionFloatsNullable, support_speed)) ((ConfigOptionEnum, support_style)) // Orca: a flag enabling the ability to override flow ratios @@ -1039,25 +1071,25 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloat, min_length_factor)) // Move all acceleration and jerk settings to object - ((ConfigOptionFloat, default_acceleration)) - ((ConfigOptionFloat, outer_wall_acceleration)) - ((ConfigOptionFloat, inner_wall_acceleration)) - ((ConfigOptionFloat, top_surface_acceleration)) - ((ConfigOptionFloat, initial_layer_acceleration)) - ((ConfigOptionFloatOrPercent, bridge_acceleration)) - ((ConfigOptionFloat, travel_acceleration)) - ((ConfigOptionFloatOrPercent, sparse_infill_acceleration)) - ((ConfigOptionFloatOrPercent, internal_solid_infill_acceleration)) + ((ConfigOptionFloatsNullable, default_acceleration)) + ((ConfigOptionFloatsNullable, outer_wall_acceleration)) + ((ConfigOptionFloatsNullable, inner_wall_acceleration)) + ((ConfigOptionFloatsNullable, top_surface_acceleration)) + ((ConfigOptionFloatsNullable, initial_layer_acceleration)) + ((ConfigOptionFloatsOrPercentsNullable, bridge_acceleration)) + ((ConfigOptionFloatsNullable, travel_acceleration)) + ((ConfigOptionFloatsOrPercentsNullable, sparse_infill_acceleration)) + ((ConfigOptionFloatsOrPercentsNullable, internal_solid_infill_acceleration)) - ((ConfigOptionFloat, default_jerk)) - ((ConfigOptionFloat, outer_wall_jerk)) - ((ConfigOptionFloat, inner_wall_jerk)) - ((ConfigOptionFloat, infill_jerk)) - ((ConfigOptionFloat, top_surface_jerk)) - ((ConfigOptionFloat, initial_layer_jerk)) - ((ConfigOptionFloat, travel_jerk)) + ((ConfigOptionFloatsNullable, default_jerk)) + ((ConfigOptionFloatsNullable, outer_wall_jerk)) + ((ConfigOptionFloatsNullable, inner_wall_jerk)) + ((ConfigOptionFloatsNullable, infill_jerk)) + ((ConfigOptionFloatsNullable, top_surface_jerk)) + ((ConfigOptionFloatsNullable, initial_layer_jerk)) + ((ConfigOptionFloatsNullable, travel_jerk)) ((ConfigOptionBool, precise_z_height)) - ((ConfigOptionFloat, default_junction_deviation)) + ((ConfigOptionFloatsNullable, default_junction_deviation)) ((ConfigOptionBool, interlocking_beam)) ((ConfigOptionFloat,interlocking_beam_width)) @@ -1084,8 +1116,8 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloat, bridge_flow)) ((ConfigOptionFloatOrPercent, bridge_line_width)) ((ConfigOptionFloat, internal_bridge_flow)) - ((ConfigOptionFloat, bridge_speed)) - ((ConfigOptionFloatOrPercent, internal_bridge_speed)) + ((ConfigOptionFloatsNullable, bridge_speed)) + ((ConfigOptionFloatsOrPercentsNullable, internal_bridge_speed)) ((ConfigOptionEnum, ensure_vertical_shell_thickness)) ((ConfigOptionPercent, top_surface_density)) ((ConfigOptionPercent, bottom_surface_density)) @@ -1093,9 +1125,11 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionEnum, bottom_surface_pattern)) ((ConfigOptionEnum, internal_solid_infill_pattern)) ((ConfigOptionFloatOrPercent, outer_wall_line_width)) - ((ConfigOptionFloat, outer_wall_speed)) + ((ConfigOptionFloatsNullable, outer_wall_speed)) ((ConfigOptionFloat, infill_direction)) ((ConfigOptionFloat, solid_infill_direction)) + ((ConfigOptionFloat, top_layer_direction)) + ((ConfigOptionFloat, bottom_layer_direction)) ((ConfigOptionString, solid_infill_rotate_template)) ((ConfigOptionBool, symmetric_infill_y_axis)) ((ConfigOptionFloat, infill_shift_step)) @@ -1109,6 +1143,9 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloat, lightning_prune_angle)) ((ConfigOptionFloat, lightning_straightening_angle)) ((ConfigOptionBool, align_infill_direction_to_model)) + ((ConfigOptionBool, anisotropic_surfaces)) + ((ConfigOptionEnum, center_of_surface_pattern)) + ((ConfigOptionBool, separated_infills)) ((ConfigOptionString, extra_solid_infills)) ((ConfigOptionEnum, fuzzy_skin)) ((ConfigOptionFloat, fuzzy_skin_thickness)) @@ -1122,12 +1159,12 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionInt, fuzzy_skin_ripples_per_layer)) ((ConfigOptionPercent, fuzzy_skin_ripple_offset)) ((ConfigOptionInt, fuzzy_skin_layers_between_ripple_offset)) - ((ConfigOptionFloat, gap_infill_speed)) + ((ConfigOptionFloatsNullable, gap_infill_speed)) ((ConfigOptionInt, sparse_infill_filament_id)) ((ConfigOptionFloatOrPercent, sparse_infill_line_width)) ((ConfigOptionPercent, infill_wall_overlap)) ((ConfigOptionPercent, top_bottom_infill_wall_overlap)) - ((ConfigOptionFloat, sparse_infill_speed)) + ((ConfigOptionFloatsNullable, sparse_infill_speed)) ((ConfigOptionPercent, skeleton_infill_density)) ((ConfigOptionPercent, skin_infill_density)) ((ConfigOptionFloat, infill_lock_depth)) @@ -1159,7 +1196,7 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionInt, outer_wall_filament_id)) ((ConfigOptionInt, inner_wall_filament_id)) ((ConfigOptionFloatOrPercent, inner_wall_line_width)) - ((ConfigOptionFloat, inner_wall_speed)) + ((ConfigOptionFloatsNullable, inner_wall_speed)) // Total number of perimeters. ((ConfigOptionInt, wall_loops)) ((ConfigOptionBool, alternate_extra_wall)) @@ -1168,19 +1205,22 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionInt, top_surface_filament_id)) ((ConfigOptionInt, bottom_surface_filament_id)) ((ConfigOptionFloatOrPercent, internal_solid_infill_line_width)) - ((ConfigOptionFloat, internal_solid_infill_speed)) + ((ConfigOptionFloatsNullable, internal_solid_infill_speed)) // Detect thin walls. ((ConfigOptionBool, detect_thin_wall)) ((ConfigOptionFloatOrPercent, top_surface_line_width)) ((ConfigOptionInt, top_shell_layers)) ((ConfigOptionFloat, top_shell_thickness)) - ((ConfigOptionFloat, top_surface_speed)) + ((ConfigOptionFloat, top_surface_expansion)) + ((ConfigOptionFloat, top_surface_expansion_margin)) + ((ConfigOptionEnum, top_surface_expansion_direction)) + ((ConfigOptionFloatsNullable, top_surface_speed)) //BBS - ((ConfigOptionBool, enable_overhang_speed)) - ((ConfigOptionFloatOrPercent, overhang_1_4_speed)) - ((ConfigOptionFloatOrPercent, overhang_2_4_speed)) - ((ConfigOptionFloatOrPercent, overhang_3_4_speed)) - ((ConfigOptionFloatOrPercent, overhang_4_4_speed)) + ((ConfigOptionBoolsNullable, enable_overhang_speed)) + ((ConfigOptionFloatsOrPercentsNullable, overhang_1_4_speed)) + ((ConfigOptionFloatsOrPercentsNullable, overhang_2_4_speed)) + ((ConfigOptionFloatsOrPercentsNullable, overhang_3_4_speed)) + ((ConfigOptionFloatsOrPercentsNullable, overhang_4_4_speed)) ((ConfigOptionBool, only_one_wall_top)) //SoftFever @@ -1196,8 +1236,10 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionBool, precise_outer_wall)) ((ConfigOptionPercent, bridge_density)) ((ConfigOptionFloat, filter_out_gap_fill)) - ((ConfigOptionFloatOrPercent, small_perimeter_speed)) - ((ConfigOptionFloat, small_perimeter_threshold)) + ((ConfigOptionFloatsOrPercentsNullable, small_perimeter_speed)) + ((ConfigOptionFloatsNullable, small_perimeter_threshold)) + ((ConfigOptionFloatsOrPercentsNullable, small_support_perimeter_speed)) + ((ConfigOptionFloatsNullable, small_support_perimeter_threshold)) ((ConfigOptionFloat, top_solid_infill_flow_ratio)) ((ConfigOptionFloat, bottom_solid_infill_flow_ratio)) ((ConfigOptionFloatOrPercent, infill_anchor)) @@ -1206,10 +1248,12 @@ PRINT_CONFIG_CLASS_DEFINE( // Orca ((ConfigOptionBool, make_overhang_printable)) ((ConfigOptionBool, extra_perimeters_on_overhangs)) - ((ConfigOptionBool, slowdown_for_curled_perimeters)) + ((ConfigOptionBoolsNullable, slowdown_for_curled_perimeters)) ((ConfigOptionBool, hole_to_polyhole)) ((ConfigOptionFloatOrPercent, hole_to_polyhole_threshold)) ((ConfigOptionBool, hole_to_polyhole_twisted)) + ((ConfigOptionInt, hole_to_polyhole_max_edges)) + ((ConfigOptionBool, overhang_reverse)) ((ConfigOptionBool, overhang_reverse_internal_only)) ((ConfigOptionFloatOrPercent, overhang_reverse_threshold)) @@ -1369,7 +1413,7 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionFloat, max_volumetric_extrusion_rate_slope)) ((ConfigOptionFloat, max_volumetric_extrusion_rate_slope_segment_length)) - ((ConfigOptionBool, extrusion_rate_smoothing_external_perimeter_only)) + ((ConfigOptionBool, extrusion_rate_smoothing_external_perimeter_only)) ((ConfigOptionPercents, retract_before_wipe)) @@ -1396,13 +1440,14 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionBool, single_extruder_multi_material)) ((ConfigOptionBool, manual_filament_change)) ((ConfigOptionBool, single_extruder_multi_material_priming)) + ((ConfigOptionEnum, toolchange_ordering)) ((ConfigOptionBool, wipe_tower_no_sparse_layers)) ((ConfigOptionString, change_filament_gcode)) ((ConfigOptionString, change_extrusion_role_gcode)) ((ConfigOptionString, process_change_extrusion_role_gcode)) ((ConfigOptionStrings, filament_change_extrusion_role_gcode)) - ((ConfigOptionFloat, travel_speed)) - ((ConfigOptionFloat, travel_speed_z)) + ((ConfigOptionFloatsNullable, travel_speed)) + ((ConfigOptionFloatsNullable, travel_speed_z)) ((ConfigOptionBool, silent_mode)) ((ConfigOptionString, machine_pause_gcode)) ((ConfigOptionString, template_custom_gcode)) @@ -1426,9 +1471,9 @@ PRINT_CONFIG_CLASS_DEFINE( ((ConfigOptionBool, use_relative_e_distances)) ((ConfigOptionBool, accel_to_decel_enable)) ((ConfigOptionPercent, accel_to_decel_factor)) - ((ConfigOptionFloatOrPercent, initial_layer_travel_speed)) - ((ConfigOptionFloatOrPercent, initial_layer_travel_acceleration)) - ((ConfigOptionFloatOrPercent, initial_layer_travel_jerk)) + ((ConfigOptionFloatsOrPercentsNullable, initial_layer_travel_speed)) + ((ConfigOptionFloatsOrPercentsNullable, initial_layer_travel_acceleration)) + ((ConfigOptionFloatsOrPercentsNullable, initial_layer_travel_jerk)) ((ConfigOptionBool, bbl_calib_mark_logo)) ((ConfigOptionBool, disable_m73)) @@ -1538,12 +1583,14 @@ PRINT_CONFIG_CLASS_DERIVED_DEFINE( ((ConfigOptionInts, complete_print_exhaust_fan_speed)) ((ConfigOptionFloatOrPercent, initial_layer_line_width)) ((ConfigOptionFloat, initial_layer_print_height)) - ((ConfigOptionFloat, initial_layer_speed)) + ((ConfigOptionFloatsNullable, initial_layer_speed)) //BBS - ((ConfigOptionFloat, initial_layer_infill_speed)) + ((ConfigOptionFloatsNullable, initial_layer_infill_speed)) ((ConfigOptionInts, nozzle_temperature_initial_layer)) ((ConfigOptionInts, full_fan_speed_layer)) + // ORCA: explicit override for the part cooling fan speed on the first printed layer. + ((ConfigOptionInts, initial_layer_fan_speed)) ((ConfigOptionFloats, fan_max_speed)) ((ConfigOptionFloats, max_layer_height)) ((ConfigOptionFloats, fan_min_speed)) @@ -1647,7 +1694,8 @@ PRINT_CONFIG_CLASS_DERIVED_DEFINE( ((ConfigOptionBools, activate_chamber_temp_control)) ((ConfigOptionInts , chamber_temperature)) - + ((ConfigOptionInts , chamber_minimal_temperature)) + // Orca: support adaptive bed mesh ((ConfigOptionFloat, preferred_orientation)) ((ConfigOptionPoint, bed_mesh_min)) diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp index 925da0c564..d977a5419b 100644 --- a/src/libslic3r/PrintObject.cpp +++ b/src/libslic3r/PrintObject.cpp @@ -4,6 +4,7 @@ #include "Print.hpp" #include "BoundingBox.hpp" #include "ClipperUtils.hpp" +#include "Clipper2Utils.hpp" #include "ElephantFootCompensation.hpp" #include "Geometry.hpp" #include "I18N.hpp" @@ -157,10 +158,10 @@ std::vector> PrintObject::all_regions( return out; } -Polygons create_polyholes(const Point center, const coord_t radius, const coord_t nozzle_diameter, bool multiple) +Polygons create_polyholes(const Point center, const coord_t radius, const coord_t nozzle_diameter, bool multiple, int max_edges) { // n = max(round(2 * d), 3); // for 0.4mm nozzle - size_t nb_edges = (int)std::max(3, (int)std::round(4.0 * unscaled(radius) * 0.4 / unscaled(nozzle_diameter))); + size_t nb_edges = (int)std::min(max_edges, std::max(3, (int)std::round(4.0 * unscaled(radius) * 0.4 / unscaled(nozzle_diameter)))); // cylinder(h = h, r = d / cos (180 / n), $fn = n); //create x polyholes by rotation if multiple int nb_polyhole = 1; @@ -190,8 +191,8 @@ void PrintObject::_transform_hole_to_polyholes() { // get all circular holes for each layer // the id is center-diameter-extruderid - //the tuple is Point center; float diameter_max; int extruder_id; coord_t max_variation; bool twist; - std::vector, Polygon*>>> layerid2center; + //the tuple is Point center; float diameter_max; int extruder_id; coord_t max_variation; bool twist; int max_edges; + std::vector, Polygon*>>> layerid2center; for (size_t i = 0; i < this->m_layers.size(); i++) layerid2center.emplace_back(); tbb::parallel_for( tbb::blocked_range(0, m_layers.size()), @@ -230,9 +231,10 @@ void PrintObject::_transform_hole_to_polyholes() // SCALED_EPSILON was a bit too harsh. Now using a config, as some may want some harsh setting and some don't. coord_t max_variation = std::max(SCALED_EPSILON, scale_(this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_threshold.get_abs_value(unscaled(diameter_sum / hole.points.size())))); bool twist = this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_twisted.value; + int max_edges = this->m_layers[layer_idx]->m_regions[region_idx]->region().config().hole_to_polyhole_max_edges.value; if (diameter_max - diameter_min < max_variation * 2 && diameter_line_max - diameter_line_min < max_variation * 2) { layerid2center[layer_idx].emplace_back( - std::tuple{center, diameter_max, layer->m_regions[region_idx]->region().config().outer_wall_filament_id.value, max_variation, twist}, & hole); + std::tuple{center, diameter_max, layer->m_regions[region_idx]->region().config().outer_wall_filament_id.value, max_variation, twist, max_edges}, & hole); } } } @@ -243,14 +245,14 @@ void PrintObject::_transform_hole_to_polyholes() } }); //sort holes per center-diameter - std::map, std::vector>> id2layerz2hole; + std::map, std::vector>> id2layerz2hole; //search & find hole that span at least X layers const size_t min_nb_layers = 2; for (size_t layer_idx = 0; layer_idx < this->m_layers.size(); ++layer_idx) { for (size_t hole_idx = 0; hole_idx < layerid2center[layer_idx].size(); ++hole_idx) { //get all other same polygons - std::tuple& id = layerid2center[layer_idx][hole_idx].first; + std::tuple& id = layerid2center[layer_idx][hole_idx].first; float max_z = layers()[layer_idx]->print_z; std::vector> holes; holes.emplace_back(layerid2center[layer_idx][hole_idx].second, layer_idx); @@ -258,7 +260,7 @@ void PrintObject::_transform_hole_to_polyholes() if (layers()[search_layer_idx]->print_z - layers()[search_layer_idx]->height - max_z > EPSILON) break; //search an other polygon with same id for (size_t search_hole_idx = 0; search_hole_idx < layerid2center[search_layer_idx].size(); ++search_hole_idx) { - std::tuple& search_id = layerid2center[search_layer_idx][search_hole_idx].first; + std::tuple& search_id = layerid2center[search_layer_idx][search_hole_idx].first; if (std::get<2>(id) == std::get<2>(search_id) && std::get<0>(id).distance_to(std::get<0>(search_id)) < std::get<3>(id) && std::abs(std::get<1>(id) - std::get<1>(search_id)) < std::get<3>(id) @@ -279,7 +281,7 @@ void PrintObject::_transform_hole_to_polyholes() } //create a polyhole per id and replace holes points by it. for (auto entry : id2layerz2hole) { - Polygons polyholes = create_polyholes(std::get<0>(entry.first), std::get<1>(entry.first), scale_(print()->config().nozzle_diameter.get_at(std::get<2>(entry.first) - 1)), std::get<4>(entry.first)); + Polygons polyholes = create_polyholes(std::get<0>(entry.first), std::get<1>(entry.first), scale_(print()->config().nozzle_diameter.get_at(std::get<2>(entry.first) - 1)), std::get<4>(entry.first), std::get<5>(entry.first)); for (auto& poly_to_replace : entry.second) { Polygon polyhole = polyholes[poly_to_replace.second % polyholes.size()]; //search the clone in layers->slices @@ -561,6 +563,11 @@ void PrintObject::prepare_infill() { if (! this->set_started(posPrepareInfill)) return; + + // Orca: clear all volume bbox caches + for (auto volume : this->model_object()->volumes) + volume->reset_volume_bbox(); + m_print->set_status(25, L("Generating infill regions")); if (m_typed_slices) { // To improve robustness of detect_surfaces_type() when reslicing (working with typed slices), see GH issue #7442. @@ -897,13 +904,15 @@ void PrintObject::generate_support_material() void PrintObject::estimate_curled_extrusions() { if (this->set_started(posEstimateCurledExtrusions)) { - if ( std::any_of(this->print()->m_print_regions.begin(), this->print()->m_print_regions.end(), - [](const PrintRegion *region) { return region->config().enable_overhang_speed.getBool(); })) { + if ( std::any_of(this->print()->m_print_regions.begin(), this->print()->m_print_regions.end(), [](const PrintRegion* region) { + const auto& cfg = region->config().enable_overhang_speed.values; + return std::any_of(cfg.begin(), cfg.end(), [](const unsigned char v) { return (bool) v; }); + })) { // Estimate curling of support material and add it to the malformaition lines of each layer float support_flow_width = support_material_flow(this, this->config().layer_height).width(); SupportSpotsGenerator::Params params{this->print()->m_config.filament_type.values, - float(this->print()->default_object_config().inner_wall_acceleration.getFloat()), + /*float(this->print()->default_object_config().inner_wall_acceleration.getFloat()),*/ this->config().raft_layers.getInt(), this->config().brim_type.value, float(this->config().brim_width.getFloat())}; SupportSpotsGenerator::estimate_malformations(this->layers(), params); @@ -1109,6 +1118,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "outer_wall_speed" || opt_key == "small_perimeter_speed" || opt_key == "small_perimeter_threshold" + || opt_key == "small_support_perimeter_speed" + || opt_key == "small_support_perimeter_threshold" || opt_key == "sparse_infill_speed" || opt_key == "inner_wall_speed" || opt_key == "support_speed" @@ -1150,11 +1161,11 @@ bool PrintObject::invalidate_state_by_config_options( // todo multi_extruders: Parameter migration between single and double extruder printers auto is_gap_fill_changed_state_due_to_speed = [&opt_key, &old_config, &new_config]() -> bool { if (opt_key == "gap_infill_speed") { - const auto *old_gap_fill_speed = old_config.option(opt_key); - const auto *new_gap_fill_speed = new_config.option(opt_key); + const auto *old_gap_fill_speed = old_config.option(opt_key); + const auto *new_gap_fill_speed = new_config.option(opt_key); assert(old_gap_fill_speed && new_gap_fill_speed); - return (old_gap_fill_speed->value > 0.f && new_gap_fill_speed->value == 0.f) || - (old_gap_fill_speed->value == 0.f && new_gap_fill_speed->value > 0.f); + return (old_gap_fill_speed->values.size() != new_gap_fill_speed->values.size()) + || (old_gap_fill_speed->values != new_gap_fill_speed->values); } return false; }; @@ -1201,6 +1212,7 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "hole_to_polyhole" || opt_key == "hole_to_polyhole_threshold" || opt_key == "hole_to_polyhole_twisted" + || opt_key == "hole_to_polyhole_max_edges" ) { steps.emplace_back(posSlice); } else if (opt_key == "enable_support") { @@ -1291,6 +1303,9 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "infill_combination_max_layer_height" || opt_key == "bottom_shell_thickness" || opt_key == "top_shell_thickness" + || opt_key == "top_surface_expansion" + || opt_key == "top_surface_expansion_margin" + || opt_key == "top_surface_expansion_direction" || opt_key == "minimum_sparse_infill_area" || opt_key == "sparse_infill_filament_id" || opt_key == "internal_solid_filament_id" @@ -1301,6 +1316,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "skeleton_infill_line_width" || opt_key == "infill_direction" || opt_key == "solid_infill_direction" + || opt_key == "top_layer_direction" + || opt_key == "bottom_layer_direction" || opt_key == "align_infill_direction_to_model" || opt_key == "extra_solid_infills" || opt_key == "ensure_vertical_shell_thickness" @@ -1322,6 +1339,9 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "top_surface_line_width" || opt_key == "top_surface_density" || opt_key == "bottom_surface_density" + || opt_key == "anisotropic_surfaces" + || opt_key == "center_of_surface_pattern" + || opt_key == "separated_infills" || opt_key == "initial_layer_line_width" || opt_key == "small_area_infill_flow_compensation" || opt_key == "lateral_lattice_angle_1" @@ -1422,6 +1442,8 @@ bool PrintObject::invalidate_state_by_config_options( || opt_key == "outer_wall_speed" || opt_key == "small_perimeter_speed" || opt_key == "small_perimeter_threshold" + || opt_key == "small_support_perimeter_speed" + || opt_key == "small_support_perimeter_threshold" || opt_key == "sparse_infill_speed" || opt_key == "inner_wall_speed" || opt_key == "internal_solid_infill_speed" @@ -1676,6 +1698,69 @@ void PrintObject::detect_surfaces_type() } } + // ORCA: Expand the top surfaces outward by top_surface_expansion in every direction. This + // enlarges the top solid infill and, in particular, grows it over the covered material left + // by features rising from the middle of a top surface (filling holes and joining tops so the + // features rest on it). The expansion stays inside the section it belongs to: each connected + // solid island has its own outer wall, so the top is grown within each island separately and + // clipped to it - growing one island's top across the gap into another island (which may have + // no top surface, leaving a partially filled layer) is never allowed. The top infill sits + // inside the perimeters, so the margin is measured from the walls: the island is inset by the + // band the walls consume (outer wall + inner walls) plus the configured margin, making that + // value the real clearance between the expanded top and the walls (avoiding a hull line). The + // original top is unioned back in, so where it already sits within that band it is kept as-is. + // Never claims a bottom surface. + const double top_expansion = layerm->region().config().top_surface_expansion.value; + if (top_expansion > 0. && ! top.empty()) { + const double d = scale_(top_expansion); + const auto jt = Clipper2Lib::JoinType::Miter; + const ExPolygons T = union_ex(to_expolygons(top)); + const int wall_loops = layerm->region().config().wall_loops.value; + const double wall_band = wall_loops <= 0 ? 0. : + double(layerm->flow(frExternalPerimeter).scaled_width()) + + double(layerm->flow(frPerimeter).scaled_width()) * double(wall_loops - 1); + const double margin = scale_(layerm->region().config().top_surface_expansion_margin.value); + // minimum real top to act on: ignore anything thinner than ~2 top-infill lines + const float min_top = float(layerm->flow(frTopSolidInfill).scaled_width()); + const auto direction = layerm->region().config().top_surface_expansion_direction.value; + + ExPolygons grown; + for (const ExPolygon &island : union_ex(layerm_slices_surfaces)) { + // The top infill only exists inside the perimeters, so seed and measure from the infill + // region (the island minus the wall band), not the raw slice. A section whose only + // exposed top lies in the wall band - i.e. a layer where the top is just the walls + // themselves - has no infill here and is skipped, instead of being flooded inward by + // the expansion. Thin slivers inside the infill region are dropped by the opening too. + const ExPolygons infill_region = wall_band > 0. ? offset_ex(island, -float(wall_band)) : ExPolygons{ island }; + const ExPolygons island_top = intersection_ex(T, infill_region); + if (opening_ex(island_top, min_top).empty()) + continue; // no real top infill in this section - never expand into it + + // grow by d, then keep only the part allowed by the configured direction: inward fills + // the holes/gaps left by features (clip the growth back to the top's own filled outline, + // which leaves the outer edge fixed), outward grows the outer edge toward the walls (drop + // the growth that fell into the original holes), and inward+outward keeps both. + ExPolygons expanded = offset_ex_2(island_top, d, jt); + if (direction != TopSurfaceExpansionDirection::InwardAndOutward) { + ExPolygons outline; // the top with its holes filled (same outer edge) + outline.reserve(island_top.size()); + for (const ExPolygon &ex : island_top) + outline.emplace_back(ex.contour); + outline = union_ex(outline); + expanded = direction == TopSurfaceExpansionDirection::Inward ? + intersection_ex(expanded, outline) : // only growth into the holes + diff_ex(expanded, diff_ex(outline, island_top)); // only growth past the outer edge + } + // hold the expansion clear of the walls by the configured margin + const ExPolygons allowed = margin > 0. ? offset_ex(infill_region, -float(margin)) : infill_region; + append(grown, intersection_ex(expanded, allowed)); + } + + ExPolygons new_top = diff_ex(union_ex(T, grown), to_expolygons(bottom)); + top.clear(); + surfaces_append(top, std::move(new_top), stTop); + } + #ifdef SLIC3R_DEBUG_SLICE_PROCESSING { static int iRun = 0; diff --git a/src/libslic3r/Support/SupportSpotsGenerator.hpp b/src/libslic3r/Support/SupportSpotsGenerator.hpp index 48f07d52aa..22e85c021e 100644 --- a/src/libslic3r/Support/SupportSpotsGenerator.hpp +++ b/src/libslic3r/Support/SupportSpotsGenerator.hpp @@ -18,8 +18,8 @@ namespace SupportSpotsGenerator { struct Params { Params( - const std::vector &filament_types, float max_acceleration, int raft_layers_count, BrimType brim_type, float brim_width) - : max_acceleration(max_acceleration), raft_layers_count(raft_layers_count), brim_type(brim_type), brim_width(brim_width) + const std::vector &filament_types/*, float max_acceleration*/, int raft_layers_count, BrimType brim_type, float brim_width) + : /*max_acceleration(max_acceleration), */raft_layers_count(raft_layers_count), brim_type(brim_type), brim_width(brim_width) { if (filament_types.size() > 1) { BOOST_LOG_TRIVIAL(warning) @@ -36,8 +36,8 @@ struct Params // the algorithm should use the following units for all computations: distance [mm], mass [g], time [s], force [g*mm/s^2] const float bridge_distance = 16.0f; // mm - const float max_acceleration; // mm/s^2 ; max acceleration of object in XY -- should be applicable only to printers with bed slinger, - // however we do not have such info yet. The force is usually small anyway, so not such a big deal to include it everytime + // const float max_acceleration; // mm/s^2 ; max acceleration of object in XY -- should be applicable only to printers with bed slinger, + // // however we do not have such info yet. The force is usually small anyway, so not such a big deal to include it everytime const int raft_layers_count; std::string filament_type; diff --git a/src/libslic3r/Utils.hpp b/src/libslic3r/Utils.hpp index f1bdd89712..a76857dc4b 100644 --- a/src/libslic3r/Utils.hpp +++ b/src/libslic3r/Utils.hpp @@ -194,6 +194,7 @@ std::string debug_out_path(const char *name, ...); // smaller level means less log. level=5 means saving all logs. void set_log_path_and_level(const std::string& file, unsigned int level); void flush_logs(); +void shutdown_console_logging(); boost::filesystem::path get_log_file_name(); // A special type for strings encoded in the local Windows 8-bit code page. @@ -299,6 +300,10 @@ std::string header_gcodeviewer_generated(); // getpid platform wrapper extern unsigned get_current_pid(); +// Per-user id for isolating temp dirs; empty on Windows (its temp dir is already per-user). +std::string per_user_temp_id(); +// Per-user temp root under `base`; an empty `user_id` returns `base` unchanged. +std::string per_user_temp_dir(const std::string &base, const std::string &user_id); // BBS: backup & restore std::string get_process_name(int pid); diff --git a/src/libslic3r/calib.cpp b/src/libslic3r/calib.cpp index 4b3e05df8d..9f33b4459a 100644 --- a/src/libslic3r/calib.cpp +++ b/src/libslic3r/calib.cpp @@ -16,7 +16,7 @@ float CalibPressureAdvance::find_optimal_PA_speed(const DynamicPrintConfig &conf const float nozzle_diameter = config.option("nozzle_diameter")->get_at(extruder_id); if (line_width <= 0.) line_width = Flow::auto_extrusion_width(frPerimeter, nozzle_diameter); Flow pattern_line = Flow(line_width, layer_height, nozzle_diameter); - auto pa_speed = std::min(std::max(general_suggested_min_speed, config.option("outer_wall_speed")->value), + auto pa_speed = std::min(std::max(general_suggested_min_speed, config.option("outer_wall_speed")->get_at(extruder_id)), filament_max_volumetric_speed / pattern_line.mm3_per_mm()); return std::floor(pa_speed); @@ -756,6 +756,16 @@ Vec3d CalibPressureAdvancePattern::get_start_offset() return m_starting_point; } +double CalibPressureAdvancePattern::line_width_first_layer() const +{ + // TODO: FIXME: find out current filament/extruder? + const double nozzle_diameter = m_config.opt_float("nozzle_diameter", m_params.extruder_id); + const double width = m_config.get_abs_value("initial_layer_line_width", nozzle_diameter); + if (width <= 0.) + return Flow::auto_extrusion_width(frExternalPerimeter, nozzle_diameter); + return width; +}; + double CalibPressureAdvancePattern::line_width() const { // TODO: FIXME: find out current filament/extruder? diff --git a/src/libslic3r/calib.hpp b/src/libslic3r/calib.hpp index cbac1d3f86..f69ad3e1a3 100644 --- a/src/libslic3r/calib.hpp +++ b/src/libslic3r/calib.hpp @@ -280,7 +280,7 @@ private: struct SuggestedConfigCalibPAPattern { - const std::vector> float_pairs{{"initial_layer_speed", 30}}; + const std::vector>> floats_pairs{{"initial_layer_speed", {30}}}; const std::vector> nozzle_ratio_pairs{{"line_width", 112.5}, {"initial_layer_line_width", 140}}; @@ -312,15 +312,10 @@ public: protected: // todo multi_extruders: - double speed_first_layer() const { return m_config.option("initial_layer_speed")->value; }; - double speed_perimeter() const { return m_config.option("outer_wall_speed")->value; }; - double accel_perimeter() const { return m_config.option("outer_wall_acceleration")->value; } - double line_width_first_layer() const - { - // TODO: FIXME: find out current filament/extruder? - const double nozzle_diameter = m_config.opt_float("nozzle_diameter", 0); - return m_config.get_abs_value("initial_layer_line_width", nozzle_diameter); - }; + double speed_first_layer() const { return m_config.get_abs_value_at("initial_layer_speed", m_params.extruder_id); }; + double speed_perimeter() const { return m_config.get_abs_value_at("outer_wall_speed", m_params.extruder_id); }; + double accel_perimeter() const { return m_config.get_abs_value_at("outer_wall_acceleration", m_params.extruder_id); } + double line_width_first_layer() const; double line_width() const; int wall_count() const { return m_config.option("wall_loops")->value; }; diff --git a/src/libslic3r/miniz_extension.cpp b/src/libslic3r/miniz_extension.cpp index 424e76462c..53a4a8e9de 100644 --- a/src/libslic3r/miniz_extension.cpp +++ b/src/libslic3r/miniz_extension.cpp @@ -1,6 +1,8 @@ #include +#include #include "miniz_extension.hpp" +#include "Utils.hpp" #if defined(_MSC_VER) || defined(__MINGW64__) #include "boost/nowide/cstdio.hpp" @@ -15,6 +17,33 @@ namespace Slic3r { namespace { +std::string decode_zip_unicode_path_extra_field(const std::string& extra, const std::string& path) +{ + size_t offset = 0; + const mz_uint32 path_crc = mz_crc32(0, reinterpret_cast(path.data()), path.size()); + + while (offset + 4 <= extra.size()) { + const unsigned char* field = reinterpret_cast(extra.data() + offset); + const std::uint16_t len = field[2] | (static_cast(field[3]) << 8); + if (offset + 4 + len > extra.size()) + break; + + if (field[0] == 0x75 && field[1] == 0x70 && len >= 5 && field[4] == 0x01) { + const mz_uint32 stored_crc = + static_cast(field[5]) | + (static_cast(field[6]) << 8) | + (static_cast(field[7]) << 16) | + (static_cast(field[8]) << 24); + if (stored_crc == path_crc) + return std::string(extra.data() + offset + 9, extra.data() + offset + 4 + len); + } + + offset += 4 + len; + } + + return Slic3r::decode_path(path.c_str()); +} + bool open_zip(mz_zip_archive *zip, const char *fname, bool isread) { if (!zip) return false; @@ -76,6 +105,16 @@ bool open_zip_writer(mz_zip_archive *zip, const std::string &fname) bool close_zip_reader(mz_zip_archive *zip) { return close_zip(zip, true); } bool close_zip_writer(mz_zip_archive *zip) { return close_zip(zip, false); } +std::string decode_archive_entry_path(mz_zip_archive *zip, const mz_zip_archive_file_stat &stat) +{ + if (stat.m_is_utf8) + return stat.m_filename; + + std::string extra(1024, 0); + const size_t extra_size = mz_zip_reader_get_extra(zip, stat.m_file_index, extra.data(), extra.size()); + return decode_zip_unicode_path_extra_field(extra.substr(0, extra_size > 0 ? extra_size - 1 : 0), stat.m_filename); +} + MZ_Archive::MZ_Archive() { mz_zip_zero_struct(&arch); diff --git a/src/libslic3r/miniz_extension.hpp b/src/libslic3r/miniz_extension.hpp index 006226bf24..1a1c96689f 100644 --- a/src/libslic3r/miniz_extension.hpp +++ b/src/libslic3r/miniz_extension.hpp @@ -10,6 +10,7 @@ bool open_zip_reader(mz_zip_archive *zip, const std::string &fname_utf8); bool open_zip_writer(mz_zip_archive *zip, const std::string &fname_utf8); bool close_zip_reader(mz_zip_archive *zip); bool close_zip_writer(mz_zip_archive *zip); +std::string decode_archive_entry_path(mz_zip_archive *zip, const mz_zip_archive_file_stat &stat); class MZ_Archive { public: diff --git a/src/libslic3r/utils.cpp b/src/libslic3r/utils.cpp index 42dcc14878..131369d212 100644 --- a/src/libslic3r/utils.cpp +++ b/src/libslic3r/utils.cpp @@ -5,6 +5,7 @@ #include #include #include +#include #include #include @@ -46,14 +47,19 @@ #include #include #include +#include #include +#include #include #include #include #include #include +#include #include +#include +#include #include #include @@ -174,6 +180,7 @@ unsigned get_logging_level() } boost::shared_ptr> g_log_sink; +boost::shared_ptr> g_console_log_sink; // Force set_logging_level(<=error) after loading of the DLL. // This is currently only needed if libslic3r is loaded as a shared library into Perl interpreter @@ -346,6 +353,19 @@ namespace src = boost::log::sources; namespace expr = boost::log::expressions; namespace keywords = boost::log::keywords; namespace attrs = boost::log::attributes; +namespace sinks = boost::log::sinks; + +void shutdown_console_logging() +{ + if (!g_console_log_sink) + return; + + auto console_sink = g_console_log_sink; + boost::log::core::get()->remove_sink(console_sink); + console_sink->stop(); + g_console_log_sink.reset(); +} + void set_log_path_and_level(const std::string& file, unsigned int level) { #ifdef __APPLE__ @@ -377,6 +397,24 @@ void set_log_path_and_level(const std::string& file, unsigned int level) keywords::auto_flush = true ); + shutdown_console_logging(); + +#ifdef SLIC3R_CONSOLE_LOG + auto console_backend = boost::make_shared(); + console_backend->add_stream(boost::shared_ptr(&std::cout, boost::null_deleter())); + console_backend->auto_flush(true); + + g_console_log_sink = boost::make_shared>(console_backend); + g_console_log_sink->set_formatter( + expr::stream + << "[" << expr::attr< logging::trivial::severity_level >("Severity") << "]\t" + << expr::format_date_time< boost::posix_time::ptime >("TimeStamp", "%Y-%m-%d %H:%M:%S.%f") << " " + <<"[Thread " << expr::attr("ThreadID") << "]" + << ": " << expr::smessage + ); + boost::log::core::get()->add_sink(g_console_log_sink); +#endif + logging::add_common_attributes(); set_logging_level(level); @@ -1247,6 +1285,24 @@ unsigned get_current_pid() #endif } +std::string per_user_temp_id() +{ +#ifdef WIN32 + return {}; +#else + return std::to_string(static_cast(::getuid())); +#endif +} + +std::string per_user_temp_dir(const std::string &base, const std::string &user_id) +{ + if (user_id.empty()) + return base; + // Keep the id at the top level so each user's dir sits directly in the world-writable temp + // root; a shared parent dir would be owned by whichever user created it first. + return base + "/orcaslicer_" + user_id; +} + // BBS: backup & restore std::string get_process_name(int pid) { diff --git a/src/slic3r/GUI/ConfigManipulation.cpp b/src/slic3r/GUI/ConfigManipulation.cpp index d39a3fdfcb..edae8c6c79 100644 --- a/src/slic3r/GUI/ConfigManipulation.cpp +++ b/src/slic3r/GUI/ConfigManipulation.cpp @@ -220,6 +220,30 @@ void ConfigManipulation::check_chamber_temperature(DynamicPrintConfig* config) } } +void ConfigManipulation::check_chamber_minimal_temperature(DynamicPrintConfig* config) +{ + // Orca: the minimal chamber temperature is a "start printing" threshold that is passed to the + // print start macro. It must not exceed the target chamber temperature, otherwise the macro + // could wait forever for a temperature the heater is never asked to reach. + if (config->has("chamber_minimal_temperature") && config->has("chamber_temperature")) { + const int chamber_min_temp = config->option("chamber_minimal_temperature")->get_at(0); + const int chamber_target_temp = config->option("chamber_temperature")->get_at(0); + if (chamber_min_temp > chamber_target_temp) { + wxString msg_text = wxString::Format(_L("The minimal chamber temperature (%d℃) is higher than the target chamber temperature (%d℃). " + "The minimal value is the threshold at which printing starts while the chamber keeps heating toward the target, " + "so it should not exceed it. It will be clamped to the target."), + chamber_min_temp, chamber_target_temp); + MessageDialog dialog(m_msg_dlg_parent, msg_text, "", wxICON_WARNING | wxOK); + DynamicPrintConfig new_conf = *config; + is_msg_dlg_already_exist = true; + dialog.ShowModal(); + new_conf.set_key_value("chamber_minimal_temperature", new ConfigOptionInts({chamber_target_temp})); + apply(config, &new_conf); + is_msg_dlg_already_exist = false; + } + } +} + void ConfigManipulation::update_print_fff_config(DynamicPrintConfig* config, const bool is_global_config, const bool is_plate_config) { // #ys_FIXME_to_delete @@ -595,7 +619,7 @@ void ConfigManipulation::apply_null_fff_config(DynamicPrintConfig *config, std:: } } -void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, const bool is_global_config) +void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, int variant_index, const bool is_global_config) { PresetBundle *preset_bundle = wxGetApp().preset_bundle; @@ -619,9 +643,10 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co bool have_perimeters = config->opt_int("wall_loops") > 0; for (auto el : { "extra_perimeters_on_overhangs", "ensure_vertical_shell_thickness", "detect_thin_wall", "detect_overhang_wall", - "seam_position", "staggered_inner_seams", "wall_sequence", "outer_wall_line_width", - "inner_wall_speed", "outer_wall_speed", "small_perimeter_speed", "small_perimeter_threshold" }) + "seam_position", "staggered_inner_seams", "wall_sequence", "outer_wall_line_width" }) toggle_field(el, have_perimeters); + for (auto el : { "inner_wall_speed", "outer_wall_speed", "small_perimeter_speed", "small_perimeter_threshold" }) + toggle_field(el, have_perimeters, variant_index); bool have_infill = config->option("sparse_infill_density")->value > 0; // sparse_infill_filament_id uses the same logic as in Print::extruders() @@ -685,52 +710,81 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co toggle_field("bottom_surface_pattern", has_bottom_shell); toggle_field("top_surface_density", has_top_shell); toggle_field("bottom_surface_density", has_bottom_shell); + toggle_field("top_layer_direction", has_top_shell); + toggle_field("bottom_layer_direction", has_bottom_shell); + + toggle_line("top_surface_expansion", has_top_shell); + toggle_line("top_surface_expansion_margin", has_top_shell); + bool has_top_surface_expansion = config->opt_float("top_surface_expansion") > 0; + toggle_field("top_surface_expansion_margin", has_top_surface_expansion); + toggle_line("top_surface_expansion_direction", has_top_shell); + toggle_field("top_surface_expansion_direction", has_top_surface_expansion); + + // Orca: Archimedean Chords and Octagram Spiral are the centered surface patterns that the + // pattern-centering, anisotropic-surface and separated-infill features act on. + auto is_centered_pattern = [](InfillPattern p) { + return p == InfillPattern::ipArchimedeanChords || p == InfillPattern::ipOctagramSpiral; + }; + bool is_top_centered = is_centered_pattern(config->option>("top_surface_pattern")->value); + bool is_bottom_centered = is_centered_pattern(config->option>("bottom_surface_pattern")->value); + bool has_centered_surface = (has_top_shell && is_top_centered) || (has_bottom_shell && is_bottom_centered); + + // Orca: center of surface pattern / anisotropic surfaces + toggle_line("center_of_surface_pattern", has_centered_surface); + toggle_line("anisotropic_surfaces", has_centered_surface); + + // Orca: separate infills + bool is_internal_infill_centered = is_centered_pattern(config->option>("sparse_infill_pattern")->value) || + config->opt_string("sparse_infill_rotate_template") != "" || + config->opt_string("solid_infill_rotate_template") != ""; + toggle_line("separated_infills", is_internal_infill_centered); + + // Orca: no need gaps + for (auto el : {"gap_fill_target", "filter_out_gap_fill"}) + toggle_field(el, !config->opt_bool("anisotropic_surfaces")); for (auto el : { "infill_direction", "sparse_infill_line_width", "gap_fill_target","filter_out_gap_fill","infill_wall_overlap", - "sparse_infill_speed", "bridge_speed", "internal_bridge_speed", "bridge_angle", "internal_bridge_angle", "relative_bridge_angle", + "bridge_angle", "internal_bridge_angle", "relative_bridge_angle", "solid_infill_direction", "solid_infill_rotate_template", "internal_solid_infill_pattern", "internal_solid_filament_id", "top_surface_filament_id", "bottom_surface_filament_id", }) toggle_field(el, have_infill || has_solid_infill); + for (auto el : { "sparse_infill_speed", "bridge_speed", "internal_bridge_speed"}) + toggle_field(el, have_infill || has_solid_infill, variant_index); toggle_field("top_shell_thickness", ! has_spiral_vase && has_top_shell); toggle_field("bottom_shell_thickness", ! has_spiral_vase && has_bottom_shell); // Gap fill is newly allowed in between perimeter lines even for empty infill (see GH #1476). - toggle_field("gap_infill_speed", have_perimeters); + toggle_field("gap_infill_speed", have_perimeters, variant_index); + + toggle_field("top_surface_line_width", has_top_shell); + toggle_field("top_surface_speed", has_top_shell, variant_index); - for (auto el : { "top_surface_line_width", "top_surface_speed" }) - toggle_field(el, has_top_shell); - - bool have_default_acceleration = config->opt_float("default_acceleration") > 0; + bool have_default_acceleration = config->opt_float_nullable("default_acceleration", variant_index) > 0; for (auto el : {"outer_wall_acceleration", "inner_wall_acceleration", "initial_layer_acceleration", "initial_layer_travel_acceleration", "top_surface_acceleration", "travel_acceleration", "bridge_acceleration", "sparse_infill_acceleration", "internal_solid_infill_acceleration"}) - toggle_field(el, have_default_acceleration); + toggle_field(el, have_default_acceleration, variant_index); - const bool junction_deviation_enabled = - gcf_is_marlin_firmware && - [&]() { - const auto *machine_jd = preset_bundle->printers.get_edited_preset().config.option("machine_max_junction_deviation"); - return machine_jd && !machine_jd->values.empty() && machine_jd->values.front() > 0.0; - }(); - - toggle_line("default_junction_deviation", gcf_is_marlin_firmware); - toggle_field("default_junction_deviation", junction_deviation_enabled); - toggle_field("default_jerk", !junction_deviation_enabled); - - const std::initializer_list jerk_options = { - "outer_wall_jerk", "inner_wall_jerk", "initial_layer_jerk", - "initial_layer_travel_jerk", "top_surface_jerk", "travel_jerk", "infill_jerk" - }; - - if (junction_deviation_enabled) { - for (auto el : jerk_options) - toggle_line(el, false); + bool machine_supports_junction_deviation = false; + if (gcf_is_marlin_firmware) { + if (const auto *machine_jd = preset_bundle->printers.get_edited_preset().config.option("machine_max_junction_deviation")) { + machine_supports_junction_deviation = !machine_jd->values.empty() && machine_jd->values.front() > 0.0; + } + } + toggle_line("default_junction_deviation", gcf_is_marlin_firmware, variant_index); + if (machine_supports_junction_deviation) { + toggle_field("default_junction_deviation", true, variant_index); + toggle_field("default_jerk", false, variant_index); + for (auto el : { "outer_wall_jerk", "inner_wall_jerk", "initial_layer_jerk", "initial_layer_travel_jerk", "top_surface_jerk", "travel_jerk", "infill_jerk"}) + toggle_line(el, false, variant_index); } else { - const bool have_default_jerk = config->has("default_jerk") && config->opt_float("default_jerk") > 0; - for (auto el : jerk_options) { - toggle_line(el, true); - toggle_field(el, have_default_jerk); + toggle_field("default_junction_deviation", false, variant_index); + toggle_field("default_jerk", true, variant_index); + bool have_default_jerk = config->has("default_jerk") && config->opt_float_nullable("default_jerk", variant_index) > 0; + for (auto el : { "outer_wall_jerk", "inner_wall_jerk", "initial_layer_jerk", "initial_layer_travel_jerk", "top_surface_jerk", "travel_jerk", "infill_jerk"}) { + toggle_line(el, true, variant_index); + toggle_field(el, have_default_jerk, variant_index); } } @@ -822,6 +876,10 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co // toggle_line("support_speed", have_support_material || have_skirt_height); // toggle_line("support_interface_speed", have_support_material && have_support_interface); + // Orca: + for (auto el : {"small_support_perimeter_speed", "small_support_perimeter_threshold"}) + toggle_field(el, config->opt_bool("enable_support")); + // BBS //toggle_field("support_material_synchronize_layers", have_support_soluble); @@ -888,7 +946,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co toggle_line("wipe_tower_extra_rib_length", have_rib_wall); toggle_line("wipe_tower_rib_width", have_rib_wall); toggle_line("wipe_tower_fillet_wall", have_rib_wall); - toggle_field("prime_tower_width", have_prime_tower && (supports_wipe_tower_2 || have_rib_wall)); + toggle_field("prime_tower_width", have_prime_tower && !have_rib_wall); toggle_line("single_extruder_multi_material_priming", !bSEMM && have_prime_tower && supports_wipe_tower_2); @@ -904,11 +962,11 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co for (auto el : {"first_layer_flow_ratio", "outer_wall_flow_ratio", "inner_wall_flow_ratio", "overhang_flow_ratio", "sparse_infill_flow_ratio", "internal_solid_infill_flow_ratio", "gap_fill_flow_ratio", "support_flow_ratio", "support_interface_flow_ratio"}) toggle_line(el, has_set_other_flow_ratios); - bool has_overhang_speed = config->opt_bool("enable_overhang_speed"); + bool has_overhang_speed = config->opt_bool_nullable("enable_overhang_speed", variant_index); for (auto el : {"overhang_1_4_speed", "overhang_2_4_speed", "overhang_3_4_speed", "overhang_4_4_speed"}) - toggle_line(el, has_overhang_speed); + toggle_line(el, has_overhang_speed, variant_index); - toggle_line("slowdown_for_curled_perimeters", has_overhang_speed); + toggle_line("slowdown_for_curled_perimeters", has_overhang_speed, variant_index); toggle_line("flush_into_objects", !is_global_config); @@ -952,7 +1010,7 @@ void ConfigManipulation::toggle_print_fff_options(DynamicPrintConfig *config, co toggle_line("min_width_top_surface", config->opt_bool("only_one_wall_top") || ((config->opt_float("min_length_factor") > 0.5f) && have_arachne)); // 0.5 is default value - for (auto el : { "hole_to_polyhole_threshold", "hole_to_polyhole_twisted" }) + for (auto el : { "hole_to_polyhole_threshold", "hole_to_polyhole_twisted", "hole_to_polyhole_max_edges" }) toggle_line(el, config->opt_bool("hole_to_polyhole")); bool has_detect_overhang_wall = config->opt_bool("detect_overhang_wall"); diff --git a/src/slic3r/GUI/ConfigManipulation.hpp b/src/slic3r/GUI/ConfigManipulation.hpp index 1224f1a6de..0ad1fb0b7c 100644 --- a/src/slic3r/GUI/ConfigManipulation.hpp +++ b/src/slic3r/GUI/ConfigManipulation.hpp @@ -70,7 +70,7 @@ public: // FFF print void update_print_fff_config(DynamicPrintConfig* config, const bool is_global_config = false, const bool is_plate_config = false); - void toggle_print_fff_options(DynamicPrintConfig* config, const bool is_global_config = false); + void toggle_print_fff_options(DynamicPrintConfig* config, int variant_index, const bool is_global_config = false); void apply_null_fff_config(DynamicPrintConfig *config, std::vector const &keys, std::map const & configs); //BBS: FFF filament nozzle temperature range @@ -80,6 +80,7 @@ public: void check_adaptive_pressure_advance_model(DynamicPrintConfig* config); void check_filament_max_volumetric_speed(DynamicPrintConfig *config); void check_chamber_temperature(DynamicPrintConfig* config); + void check_chamber_minimal_temperature(DynamicPrintConfig* config); void set_is_BBL_Printer(bool is_bbl_printer) { is_BBL_Printer = is_bbl_printer; }; bool get_is_BBL_Printer() { return is_BBL_Printer; }; // SLA print diff --git a/src/slic3r/GUI/ConfigWizard.cpp b/src/slic3r/GUI/ConfigWizard.cpp index be2f7278ee..9d2a6e9905 100644 --- a/src/slic3r/GUI/ConfigWizard.cpp +++ b/src/slic3r/GUI/ConfigWizard.cpp @@ -1876,12 +1876,6 @@ void ConfigWizard::priv::load_vendors() for (auto &bundle : bundles) { const PresetCollection &materials = bundle.second.preset_bundle->materials(technology); const Preset *preset = materials.find_preset(material_name); - if (preset == nullptr) { - // Not found. Maybe the material preset is there, bu it was was renamed? - const std::string *new_name = materials.get_preset_name_renamed(material_name); - if (new_name != nullptr) - preset = materials.find_preset(*new_name); - } if (preset != nullptr) { // Materal preset was found, mark it as installed. section_new[preset->name] = "true"; diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp index af73ed65f4..1bd80d5f00 100644 --- a/src/slic3r/GUI/CreatePresetsDialog.cpp +++ b/src/slic3r/GUI/CreatePresetsDialog.cpp @@ -2216,8 +2216,13 @@ bool CreatePrinterPresetDialog::load_system_and_user_presets_with_curr_model(Pre } try { - temp_preset_bundle.load_vendor_configs_from_json(preset_path, selected_vendor_id, PresetBundle::LoadConfigBundleAttribute::LoadSystem, - ForwardCompatibilitySubstitutionRule::EnableSilent); + // Pass the app's preset bundle (which already holds OrcaFilamentLibrary) as the base + // bundle so vendor filaments that inherit OFL bases resolve via the existing + // cross-vendor inheritance path. + temp_preset_bundle.load_vendor_configs_from_json(preset_path, selected_vendor_id, + PresetBundle::LoadConfigBundleAttribute::LoadSystem, + ForwardCompatibilitySubstitutionRule::EnableSilent, + wxGetApp().preset_bundle); } catch (...) { BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << "load vendor fonfigs form json failed"; MessageDialog dlg(this, _L("The printer model was not found, please reselect."), wxString(SLIC3R_APP_FULL_NAME) + " - " + _L("Info"), diff --git a/src/slic3r/GUI/ExtrusionCalibration.cpp b/src/slic3r/GUI/ExtrusionCalibration.cpp index 28255f37e4..cd3f49e977 100644 --- a/src/slic3r/GUI/ExtrusionCalibration.cpp +++ b/src/slic3r/GUI/ExtrusionCalibration.cpp @@ -239,7 +239,7 @@ void ExtrusionCalibration::create() m_button_save_result->SetStyle(ButtonStyle::Confirm, ButtonType::Choice); m_button_save_result->Bind(wxEVT_BUTTON, &ExtrusionCalibration::on_click_save, this); - m_button_last_step = new Button(m_step_2_panel, _L("Back")); // Back for english + m_button_last_step = new Button(m_step_2_panel, _CTX("Back", "Navigation")); // Back for english m_button_last_step->SetStyle(ButtonStyle::Regular, ButtonType::Choice); m_button_last_step->Bind(wxEVT_BUTTON, &ExtrusionCalibration::on_click_last, this); diff --git a/src/slic3r/GUI/FileArchiveDialog.cpp b/src/slic3r/GUI/FileArchiveDialog.cpp index 18c804196f..982187211c 100644 --- a/src/slic3r/GUI/FileArchiveDialog.cpp +++ b/src/slic3r/GUI/FileArchiveDialog.cpp @@ -221,16 +221,7 @@ FileArchiveDialog::FileArchiveDialog(wxWindow* parent_window, mz_zip_archive* ar std::vector> filtered_entries; // second is unzipped size for (mz_uint i = 0; i < num_entries; ++i) { if (mz_zip_reader_file_stat(archive, i, &stat)) { - std::string extra(1024, 0); - boost::filesystem::path path; - size_t extra_size = mz_zip_reader_get_filename_from_extra(archive, i, extra.data(), extra.size()); - if (extra_size > 0) { - path = boost::filesystem::path(extra.substr(0, extra_size)); - } else { - wxString wname = boost::nowide::widen(stat.m_filename); - std::string name = into_u8(wname); - path = boost::filesystem::path(name); - } + boost::filesystem::path path = Slic3r::decode_archive_entry_path(archive, stat); assert(!path.empty()); if (!path.has_extension()) continue; diff --git a/src/slic3r/GUI/GCodeViewer.cpp b/src/slic3r/GUI/GCodeViewer.cpp index 150a40dc0d..bb9de4976f 100644 --- a/src/slic3r/GUI/GCodeViewer.cpp +++ b/src/slic3r/GUI/GCodeViewer.cpp @@ -4258,7 +4258,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv }; auto append_print = [&imgui, imperial_units](const ColorRGBA& color, const std::array& offsets, const Times& times, std::pair used_filament) { - imgui.text(_u8L("Print")); + imgui.text(_CTX_utf8("Print", "Noun")); ImGui::SameLine(); float icon_size = ImGui::GetTextLineHeight(); @@ -4292,7 +4292,7 @@ void GCodeViewer::render_legend(float &legend_height, int canvas_width, int canv for (const PartialTime& item : partial_times) { switch (item.type) { - case PartialTime::EType::Print: { labels.push_back(_u8L("Print")); break; } + case PartialTime::EType::Print: { labels.push_back(_CTX_utf8("Print", "Noun")); break; } case PartialTime::EType::Pause: { labels.push_back(_u8L("Pause")); break; } case PartialTime::EType::ColorChange: { labels.push_back(_u8L("Color change")); break; } } diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp index eb657953dc..c250d96f44 100644 --- a/src/slic3r/GUI/GLCanvas3D.cpp +++ b/src/slic3r/GUI/GLCanvas3D.cpp @@ -2062,6 +2062,7 @@ void GLCanvas3D::render(bool only_init) _render_sla_slices(); _render_selection(); _render_objects(GLVolumeCollection::ERenderType::Transparent, !m_gizmos.is_running()); + _render_wireframe_overlay(); } /* preview render */ else if (m_canvas_type == ECanvasType::CanvasPreview && m_render_preview) { @@ -2087,6 +2088,7 @@ void GLCanvas3D::render(bool only_init) //_render_selection(); // BBS: add outline logic _render_objects(GLVolumeCollection::ERenderType::Transparent, !m_gizmos.is_running()); + _render_wireframe_overlay(); } _render_sequential_clearance(); @@ -6034,11 +6036,11 @@ void GLCanvas3D::_render_3d_navigator() strcpy(style.AxisLabels[ImGuizmo::Axis::Axis_Y], "Z"); // ORCA use uppercase to match text on tranform widgets strcpy(style.AxisLabels[ImGuizmo::Axis::Axis_Z], "X"); // ORCA use uppercase to match text on tranform widgets strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_FRONT], _utf8("Front").c_str()); - strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_BACK], _utf8("Back").c_str()); + strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_BACK], _CTX_utf8("Back", "Camera View").c_str()); strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_TOP], _utf8("Top").c_str()); strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_BOTTOM], _utf8("Bottom").c_str()); - strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_LEFT], _CTX_utf8(L_CONTEXT("Left", "Camera"), "Camera").c_str()); - strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_RIGHT], _CTX_utf8(L_CONTEXT("Right", "Camera"), "Camera").c_str()); + strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_LEFT], _CTX_utf8("Left", "Camera View").c_str()); + strcpy(style.FaceLabels[ImGuizmo::FACES::FACE_RIGHT], _CTX_utf8("Right", "Camera View").c_str()); float sc = get_scale(); #ifdef WIN32 @@ -8237,6 +8239,46 @@ void GLCanvas3D::_render_objects(GLVolumeCollection::ERenderType type, bool with m_camera_clipping_plane = ClippingPlane::ClipsNothing(); } +void GLCanvas3D::_render_wireframe_overlay() +{ + if (!wxGetApp().plater()->is_show_wireframe()) + return; + if (m_volumes.empty()) + return; + +#if SLIC3R_OPENGL_ES + GLShaderProgram* shader = wxGetApp().get_shader("wireframe"); +#else + GLShaderProgram* shader = wxGetApp().get_shader("mm_contour"); +#endif + if (shader == nullptr) + return; + + const Camera& camera = wxGetApp().plater()->get_camera(); + const Transform3d& view_matrix = camera.get_view_matrix(); + const Transform3d& proj_matrix = camera.get_projection_matrix(); + const Size sz = get_canvas_size(); + + shader->start_using(); + shader->set_uniform("offset", OpenGLManager::get_gl_info().is_mesa() ? 0.0005 : 0.00001); + shader->set_uniform("view_model_matrix", view_matrix); + shader->set_uniform("projection_matrix", proj_matrix); + + glsafe(::glEnable(GL_DEPTH_TEST)); +#if !SLIC3R_OPENGL_ES + if (!OpenGLManager::get_gl_info().is_core_profile()) + glsafe(::glLineWidth(1.0f)); + glsafe(::glPolygonMode(GL_FRONT_AND_BACK, GL_LINE)); +#endif + + m_volumes.render(GLVolumeCollection::ERenderType::Opaque, false, view_matrix, proj_matrix, sz); + +#if !SLIC3R_OPENGL_ES + glsafe(::glPolygonMode(GL_FRONT_AND_BACK, GL_FILL)); +#endif + shader->stop_using(); +} + //BBS: GUI refactor: add canvas size as parameters void GLCanvas3D::_render_gcode(int canvas_width, int canvas_height) { @@ -8644,14 +8686,17 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() m_sel_plate_toolbar.m_items[i]->percent = plate_list.get_plate(i)->get_slicing_percent(); + bool can_slice = plate_list.get_plate(i)->can_slice(); + bool is_empty = plate_list.get_plate(i)->empty(); + if (plate_list.get_plate(i)->is_slice_result_valid()) { - if (plate_list.get_plate(i)->is_slice_result_ready_for_print()) + if ((!is_empty && can_slice) && plate_list.get_plate(i)->is_slice_result_ready_for_print()) m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICED; else m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; } else { - if (plate_list.get_plate(i)->has_printable_instances() && !plate_list.get_plate(i)->can_slice()) + if ((!is_empty && !can_slice) || (plate_list.get_plate(i)->has_printable_instances() && !plate_list.get_plate(i)->can_slice())) m_sel_plate_toolbar.m_items[i]->slice_state = IMToolbarItem::SliceState::SLICE_FAILED; else { if (plate_list.get_plate(i)->get_slicing_percent() < 0.0f) @@ -8714,8 +8759,6 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() auto canvas_w = float(cnv_size.get_width()); auto canvas_h = float(cnv_size.get_height()); - bool is_hovered = false; - m_sel_plate_toolbar.set_icon_size(100.0f * f_scale, 100.0f * f_scale); float button_width = m_sel_plate_toolbar.icon_width; @@ -8751,6 +8794,8 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() ImVec4 window_bg = m_is_dark ? ImVec4(.13f, .13f, .15f, .5f) : ImVec4(1.f, 1.f, 1.f, .7f); ImVec4 button_active = ImGuiWrapper::COL_ORCA; // ORCA: Use orca color for selected sliced plate border ImVec4 button_hover = ImVec4(0.67f, 0.67f, 0.67, m_is_dark ? .6f : 1.0f); + ImVec4 orca_active = m_is_dark ? ImGuiWrapper::COL_ORCA_DARK : ImGuiWrapper::COL_ORCA; + ImVec4 orca_hover = m_is_dark ? ImGuiWrapper::COL_ORCA_HOVER_DARK : ImGuiWrapper::COL_ORCA_HOVER; ImVec4 scroll_col = ImVec4(0.77f, 0.77f, 0.77f, m_is_dark ? .6f : 1.0f); ImU32 plate_bg = m_is_dark ? IM_COL32(255, 255, 255, 10) : IM_COL32(0, 0, 0, 10); ImU32 plate_dim = m_is_dark ? IM_COL32(30, 30, 30, 100) : IM_COL32(0, 0, 0, 50); @@ -8792,10 +8837,14 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() // draw image ImVec2 button_start_pos = ImGui::GetCursorScreenPos(); + auto stats_hover_rect = button_start_pos + ImGui::GetWindowPos() - ImGui::GetCurrentWindow()->Scroll; + bool is_stats_hovered = ImGui::IsMouseHoveringRect(stats_hover_rect, stats_hover_rect + size); + if (all_plates_stats_item->selected) { - ImGui::PushStyleColor(ImGuiCol_Button, button_active); - ImGui::PushStyleColor(ImGuiCol_ButtonHovered, button_active); - ImGui::PushStyleColor(ImGuiCol_ButtonActive, button_active); + auto border_color = is_stats_hovered ? ImGuiWrapper::COL_ORCA_HOVER : ImGuiWrapper::COL_ORCA; + ImGui::PushStyleColor(ImGuiCol_Button , border_color); + ImGui::PushStyleColor(ImGuiCol_ButtonHovered, border_color); + ImGui::PushStyleColor(ImGuiCol_ButtonActive , border_color); } else { ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(128.0f, 128.0f, 128.0f, 0.0f)); @@ -8892,6 +8941,10 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() for (int i = 0; i < m_sel_plate_toolbar.m_items.size(); i++) { IMToolbarItem* item = m_sel_plate_toolbar.m_items[i]; + auto current_plate = plate_list.get_plate(i); + bool can_slice = current_plate->can_slice(); + bool is_empty = current_plate->empty(); + // draw image ImVec2 button_start_pos = ImGui::GetCursorScreenPos(); ImGui::PushID(i); @@ -8911,27 +8964,49 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); - if (item->selected) { - ImGui::PushStyleColor(ImGuiCol_Border, button_active); - } - else { - // Translate window pos to abs pos, also account for the window scrolling - auto hover_rect = button_pos + ImGui::GetWindowPos() - ImGui::GetCurrentWindow()->Scroll; - if (ImGui::IsMouseHoveringRect(hover_rect, hover_rect + button_size)) { - ImGui::PushStyleColor(ImGuiCol_Border, button_hover); - } - else { - ImGui::PushStyleColor(ImGuiCol_Border, ImVec4(.0f, .0f, .0f, .0f)); - } - } + // Translate window pos to abs pos, also account for the window scrolling + auto hover_rect = button_pos + ImGui::GetWindowPos() - ImGui::GetCurrentWindow()->Scroll; + bool is_plate_hovered = ImGui::IsMouseHoveringRect(hover_rect, hover_rect + button_size); + + if (item->selected) + ImGui::PushStyleColor(ImGuiCol_Border, is_plate_hovered ? ImGuiWrapper::COL_ORCA_HOVER : ImGuiWrapper::COL_ORCA); + else + ImGui::PushStyleColor(ImGuiCol_Border, is_plate_hovered ? button_hover : ImVec4(.0f, .0f, .0f, .0f)); + if(ImGui::Button("##invisible_button", button_size)){ - if (m_process && !m_process->running()) { + // ORCA switch back to prepare tab when clicked failed plates + if (!is_empty && item->slice_state == IMToolbarItem::SliceState::SLICE_FAILED){ + if (m_canvas != nullptr && !wxGetApp().is_closing()) { + m_canvas->CallAfter([this, i]() { + auto& app = wxGetApp(); + if (!app.is_closing()){ + auto* plater = app.plater(); + if (plater){ + plater->select_view_3D("3D"); // ensure its in 3D view + plater->select_plate(i); + zoom_to_bed(); + auto* view3d_canvas = plater->get_view3D_canvas3D(); + if(view3d_canvas){ + view3d_canvas->get_gizmos_manager().reset_all_states(); // close all gizmos + view3d_canvas->reload_scene(true); + } + app.mainframe->select_tab((size_t)MainFrame::TabPosition::tp3DEditor); + } + } + }); + } + } + else if (m_process && !m_process->running()) { all_plates_stats_item->selected = false; + bool was_active = item->selected; item->selected = true; // begin to slicing plate if (item->slice_state != IMToolbarItem::SliceState::SLICED) wxGetApp().plater()->update(true, true); wxCommandEvent* evt = new wxCommandEvent(EVT_GLTOOLBAR_SELECT_SLICED_PLATE); + // ORCA dont reset viewing angle if item was active and non sliced to allow making comparisons on parameter changes + if(!was_active || (was_active && item->slice_state == IMToolbarItem::SliceState::SLICED)) + evt->SetExtraLong(1); // 1 = skip zooming plate evt->SetInt(i); wxQueueEvent(wxGetApp().plater(), evt); } @@ -8940,29 +9015,58 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() ImGui::PopStyleVar(); ImVec2 start_pos = ImVec2(button_start_pos.x + frame_padding + margin.x, button_start_pos.y + frame_padding + margin.y); - if (item->slice_state == IMToolbarItem::SliceState::UNSLICED) { - ImVec2 size = ImVec2(button_width, button_height); - ImVec2 end_pos = ImVec2(start_pos.x + size.x, start_pos.y + size.y); + ImVec2 size = ImVec2(button_width, button_height); + ImVec2 end_pos = ImVec2(start_pos.x + size.x, start_pos.y + size.y); + // ORCA show additional information depends on state + auto draw_info_btn = [end_pos, f_scale, margin, window_bg](std::string str, ImVec4 bg_color, ImVec4 fg_color){ + GImGui->FontSize = 15.0f * f_scale; + ImVec2 txt_slice_sz = ImGui::CalcTextSize(str.c_str()); + ImVec2 btn_pad = ImVec2(8.f, 1.f) * f_scale; + ImVec2 txt_slice_pos = end_pos - txt_slice_sz - margin - btn_pad; + ImVec2 txt_slice_end = end_pos - margin - btn_pad; + ImGui::GetWindowDrawList()->AddRectFilled(txt_slice_pos - btn_pad, txt_slice_end + btn_pad, ImGui::GetColorU32(bg_color), (txt_slice_sz.y + btn_pad.y) * .5f); + ImGui::PushStyleColor(ImGuiCol_Text, fg_color); + ImGui::RenderText(txt_slice_pos, str.c_str()); + ImGui::PopStyleColor(1); + ImGui::SetWindowFontScale(1.2f); + }; + + if (is_empty){ ImGui::GetWindowDrawList()->AddRectFilled(start_pos, end_pos, plate_dim, button_radius); + } else if (can_slice && item->slice_state == IMToolbarItem::SliceState::UNSLICED) { + ImGui::GetWindowDrawList()->AddRectFilled(start_pos, end_pos, plate_dim, button_radius); + // ORCA add slice button to guide user + bool is_processing = m_process && m_process->running() ; + draw_info_btn(_u8L("Slice"), + is_processing ? window_bg : (is_plate_hovered ? orca_hover : orca_active), + m_is_dark ? ImVec4(.9f, .9f, .9f, 1) : (is_processing ? ImVec4(.3f, .3f, .3f, 1) : ImVec4(1, 1, 1, 1)) + ); } else if (item->slice_state == IMToolbarItem::SliceState::SLICING) { - ImVec2 size = ImVec2(button_width, button_height * item->percent / 100.0f); - ImVec2 rect_start_pos = ImVec2(start_pos.x, start_pos.y + size.y); - ImVec2 rect_end_pos = ImVec2(start_pos.x + button_width, start_pos.y + button_height); - ImGui::GetWindowDrawList()->AddRectFilled(start_pos, rect_end_pos, plate_bg, button_radius); + // ORCA use bottom to top for shade animation that matches with printing / slicing orientation + ImVec2 rect_size = ImVec2(button_width, button_height * item->percent / 100.0f); + ImVec2 rect_start_pos = ImVec2(start_pos.x, start_pos.y); + ImVec2 rect_end_pos = ImVec2(start_pos.x + button_width, start_pos.y + button_height - rect_size.y); + ImGui::GetWindowDrawList()->AddRectFilled(start_pos, end_pos, plate_bg, button_radius); ImGui::GetWindowDrawList()->AddRectFilled(rect_start_pos, rect_end_pos, plate_dim, button_radius); - } else if (item->slice_state == IMToolbarItem::SliceState::SLICE_FAILED) { + // ORCA show percentage as text + draw_info_btn(std::to_string(int(item->percent)) + "%", + window_bg, + m_is_dark ? ImVec4(.9f, .9f, .9f, 1) : ImVec4(.3f, .3f, .3f, 1) + ); + } else if (!is_empty && (!can_slice || item->slice_state == IMToolbarItem::SliceState::SLICE_FAILED)) { // Draw exclamation mark that matches with icon - ImVec2 end_pos = ImVec2(start_pos.x + button_width, start_pos.y + button_height); - ImVec2 center = ImVec2(start_pos.x + button_width/2, start_pos.y + button_height/2); + ImVec2 center = ImVec2(start_pos.x + button_width/2, start_pos.y + button_height/2 - ImGui::GetTextLineHeight() * .5f); auto draw_list =ImGui::GetWindowDrawList(); auto clr = m_is_dark ? IM_COL32(60, 44, 48, 255) : IM_COL32(202, 186, 186, 255); draw_list->AddRectFilled(start_pos, end_pos, IM_COL32(64, 1, 1, 64), button_radius); draw_list->AddCircleFilled(center, 14.f * f_scale,IM_COL32(225, 74, 74, 255)); draw_list->AddRectFilled(center - ImVec2(2.f, 10.f) * f_scale, center + ImVec2(2.f, 4.f) * f_scale, clr, 2.f * f_scale); draw_list->AddCircleFilled(center + ImVec2(0, 8.f * f_scale),2.f * f_scale, clr); + draw_info_btn(_u8L("Review"), + ImGui::ColorConvertU32ToFloat4(is_plate_hovered ? IM_COL32(239, 88, 88, 255) : IM_COL32(225, 74, 74, 255)), + m_is_dark ? ImVec4(.9f, .9f, .9f, 1) : ImVec4(1, 1, 1, 1) + ); } else if (item->slice_state == IMToolbarItem::SliceState::SLICED) { - ImVec2 size = ImVec2(button_width, button_height); - ImVec2 end_pos = ImVec2(start_pos.x + size.x, start_pos.y + size.y); ImGui::GetWindowDrawList()->AddRectFilled(start_pos, end_pos, plate_bg, button_radius); } @@ -8978,11 +9082,10 @@ void GLCanvas3D::_render_imgui_select_plate_toolbar() ImGui::PopStyleColor(8); ImGui::PopStyleVar(7); - if (ImGui::IsWindowHovered() || is_hovered) { - m_sel_plate_toolbar.is_display_scrollbar = true; - } else { - m_sel_plate_toolbar.is_display_scrollbar = false; - } + //ORCA ImGui::IsWindowHovered() returns false when left_down events on buttons that causes scrollbar disappears for a short time + auto win_pos = ImGui::GetWindowPos(); + bool is_win_hovered = ImGui::IsMouseHoveringRect(win_pos, win_pos + ImVec2(window_width + (show_scroll ? scrollbar_size : 0), window_height), !show_scroll); // use non clipped rectangle to reserve clickable area for scrollbar track + m_sel_plate_toolbar.is_display_scrollbar = is_win_hovered; imgui.end(); m_sel_plate_toolbar.is_render_finish = true; @@ -9214,6 +9317,12 @@ void GLCanvas3D::_render_canvas_toolbar() [this]{wxGetApp().toggle_show_outline();} ); + create_menu_item( _utf8(L("Wireframe")), + m_canvas_type != ECanvasType::CanvasPreview, // not work on preview + p->is_show_wireframe(), + [this, p]{p->toggle_show_wireframe(); m_dirty = true;} + ); + create_menu_item( _utf8(L("Realistic View")), true, cfg->get_bool(SETTING_OPENGL_REALISTIC_MODE), diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp index 72e7f1f8e2..a3209dcc1c 100644 --- a/src/slic3r/GUI/GLCanvas3D.hpp +++ b/src/slic3r/GUI/GLCanvas3D.hpp @@ -1256,6 +1256,7 @@ private: void _render_platelist(const Transform3d& view_matrix, const Transform3d& projection_matrix, bool bottom, bool only_current, bool only_body = false, int hover_id = -1, bool render_cali = false, bool show_grid = true); //BBS: add outline drawing logic void _render_objects(GLVolumeCollection::ERenderType type, bool with_outline = true); + void _render_wireframe_overlay(); //BBS: GUI refactor: add canvas size as parameters void _render_gcode(int canvas_width, int canvas_height); //BBS: render a plane for assemble diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp index d3aa486d09..7b7a0868da 100644 --- a/src/slic3r/GUI/GUI_App.cpp +++ b/src/slic3r/GUI/GUI_App.cpp @@ -304,6 +304,9 @@ public: m_bg_color = StateColor::darkModeColorFor(wxColour("#FFFFFF")); m_fg_color = StateColor::darkModeColorFor(wxColour("#6B6A6A")); + m_progress_bg_color = StateColor::darkModeColorFor(wxColour("#DFDFDF")); + m_progress_fg_color = StateColor::darkModeColorFor(wxColour("#009688")); + m_progress_h = FromDIP(6); bool dark_mode = m_fg_color != wxColour("#6B6A6A"); wxSize sz = m_window->GetClientSize(); BitmapCache bmp_cache; @@ -333,20 +336,34 @@ public: dc.DrawLabel(m_text_version, rc, wxALIGN_CENTER); dc.SetFont(m_font_action); - rc.y = c_sz.GetHeight() * 0.88; + rc.y = c_sz.GetHeight() * 0.85; rc.height = dc.GetTextExtent(m_text_action).GetHeight(); dc.DrawLabel(m_text_action, rc, wxALIGN_CENTER); + + const wxRect progress_rc(0, c_sz.GetHeight() - m_progress_h, c_sz.GetWidth(), m_progress_h); + + dc.SetPen(*wxTRANSPARENT_PEN); + dc.SetBrush(wxBrush(m_progress_bg_color)); + dc.DrawRectangle(progress_rc); + + const int fill_width = progress_rc.GetWidth() * m_progress * 0.01; + if (fill_width > 0) { + dc.SetBrush(wxBrush(m_progress_fg_color)); + dc.DrawRectangle(0, progress_rc.GetTop(), fill_width, m_progress_h); + } } - void SetText(const wxString& text) + void SetText(const wxString& text, int progress) { - if (!text.empty()) { + int calc_progress = std::max(m_progress, std::clamp(progress, 0, 100)); + if (m_text_action != text || m_progress != calc_progress){ m_text_action = text; + m_progress = calc_progress; m_window->Refresh(); m_window->Update(); #ifdef __WXOSX__ - // without this code splash screen wouldn't be updated under OSX - wxYield(); + // without this code splash screen wouldn't be updated under OSX + wxYield(); #endif } } @@ -383,9 +400,13 @@ private: wxBitmap m_logo_bmp; wxColour m_fg_color; wxColour m_bg_color; + wxColour m_progress_bg_color; + wxColour m_progress_fg_color; wxString m_text_version = GUI_App::format_display_version(); wxString m_text_action = _L("Loading configuration") + dots; + int m_progress = 0; + int m_progress_h = 6; wxFont m_font_version = Label::Body_16; wxFont m_font_action = Label::Body_16; @@ -743,6 +764,15 @@ void GUI_App::post_init() if (! this->initialized()) throw Slic3r::RuntimeError("Calling post_init() while not yet initialized"); +#if wxUSE_WEBVIEW_EDGE + // Ensure the Microsoft WebView2 runtime is installed before any WebView is + // created. The setup wizard and several dialogs render entirely through + // WebView2; without the runtime they come up blank. This runs here (not in the + // constructor) so that wxWidgets is fully initialized and the event loop is + // running, and so it precedes the first WebView creation (the setup wizard). + init_webview_runtime(); +#endif + m_open_method = "double_click"; bool switch_to_3d = false; @@ -940,6 +970,33 @@ void GUI_App::post_init() }); } + // Orca: notify users upgrading from a pre-2.4.0 version that profile syncing + // moved from Bambu Cloud to Orca Cloud. + if (is_editor() && m_last_config_version && m_last_config_version->valid() + && *m_last_config_version < Semver(2, 4, 0)) { + CallAfter([] { + const wxString wiki_url = "https://www.orcaslicer.com/wiki/user_profiles/user_profiles.html#profiles-missing-after-updating-from-bambu-cloud"; + MessageDialog dlg(nullptr, + _L("Since version 2.4.0, OrcaSlicer syncs user profiles through Orca Cloud instead of Bambu Cloud.\n\n" + "To migrate your existing profiles, log in to Orca Cloud and they will be transferred automatically. " + "To learn more about how OrcaSlicer stores and syncs your profiles, or to migrate your presets manually, check out our wiki.\n\n" + "If you did not use Bambu Cloud to sync profiles, this change does not affect you and you can safely ignore this message."), + _L("Profile syncing change"), + wxOK, + "", + _L("Learn more"), + [wiki_url](const wxString &) { wxLaunchDefaultBrowser(wiki_url); }); + // Hack: the "Learn more" link renders the message in a wxHtmlWindow whose + // height is underestimated for multi-paragraph text, leaving a scrollbar. + // The html sits in a proportion-1 sizer chain, so grow the dialog (never + // shrink it below its content width) to give the text enough room. + const wxSize sz = dlg.GetSize(); + dlg.SetSize(std::max(sz.x, dlg.FromDIP(280)), std::max(sz.y, dlg.FromDIP(200))); + dlg.CenterOnParent(); + dlg.ShowModal(); + }); + } + if(!m_networking_need_update && m_agent) { m_agent->set_on_ssdp_msg_fn( [this](std::string json_str) { @@ -1030,9 +1087,10 @@ GUI_App::GUI_App() //app config initializes early becasuse it is used in instance checking in OrcaSlicer.cpp this->init_app_config(); this->init_download_path(); -#if wxUSE_WEBVIEW_EDGE - this->init_webview_runtime(); -#endif + // Note: the WebView2 runtime check (init_webview_runtime) used to run here, but + // the constructor executes before wxWidgets is fully initialized and before the + // event loop starts, so its modal prompt/installer could silently fail to appear. + // It now runs in post_init(), before the first WebView (the setup wizard) is created. reset_to_active(); } @@ -1116,7 +1174,7 @@ std::string GUI_App::get_plugin_url(std::string name, std::string country_code) std::string url = get_http_url(country_code); std::string curr_version; - if (NetworkAgent::use_legacy_network) { + if (use_legacy_network_plugin()) { curr_version = BAMBU_NETWORK_AGENT_VERSION_LEGACY; } else if (name == "plugins" && app_config) { std::string user_version = app_config->get_network_plugin_version(); @@ -1171,7 +1229,7 @@ int GUI_App::download_plugin(std::string name, std::string package_name, Install // Determine OS type for plugin download (must be set per-request since global // extra headers are no longer initialised on this branch). #if defined(__WINDOWS__) - std::string os_type = (is_running_on_arm64() && !NetworkAgent::use_legacy_network) ? "windows_arm" : "windows"; + std::string os_type = (is_running_on_arm64() && !use_legacy_network_plugin()) ? "windows_arm" : "windows"; #elif defined(__APPLE__) std::string os_type = "macos"; #elif defined(__linux__) @@ -1400,8 +1458,32 @@ int GUI_App::install_plugin(std::string name, std::string package_name, InstallP boost::filesystem::create_directories(dest_path.parent_path()); std::string dest_zip_file = encode_path(dest_path.string().c_str()); try { - if (fs::exists(dest_path)) - fs::remove(dest_path); + if (fs::exists(dest_path)) { + boost::system::error_code ec; + fs::remove(dest_path, ec); + if (ec) { + // On Windows a currently-loaded DLL (e.g. BambuSource.dll, or the + // networking library in legacy mode) cannot be deleted or overwritten + // in place, which failed the whole install with "The plug-in file may + // be in use" (issue #14373). It CAN however be renamed aside: the + // running module keeps mapping the renamed file while we write the new + // one. The stale ".old" copy is cleared on the next install/launch. + boost::filesystem::path aside = dest_path; + aside += ".old"; + boost::system::error_code ec2; + fs::remove(aside, ec2); + fs::rename(dest_path, aside, ec2); + if (ec2) { + close_zip_reader(&archive); + BOOST_LOG_TRIVIAL(error) << "[install_plugin] cannot replace in-use file " + << dest_path.string() << ": " << ec2.message(); + if (pro_fn) { pro_fn(InstallStatusUnzipFailed, 0, cancel); } + return InstallStatusUnzipFailed; + } + BOOST_LOG_TRIVIAL(warning) << "[install_plugin] " << dest_path.filename().string() + << " was in use, renamed aside to .old"; + } + } mz_bool res = 0; #ifndef WIN32 if (S_ISLNK(stat.m_external_attr >> 16)) { @@ -1850,7 +1932,7 @@ bool GUI_App::check_networking_version() } std::string studio_ver; - if (NetworkAgent::use_legacy_network) { + if (use_legacy_network_plugin()) { studio_ver = BAMBU_NETWORK_AGENT_VERSION_LEGACY; } else if (app_config) { std::string user_version = app_config->get_network_plugin_version(); @@ -1872,6 +1954,11 @@ bool GUI_App::check_networking_version() return false; } +bool GUI_App::use_legacy_network_plugin() const +{ + return app_config && BBLNetworkPlugin::is_legacy_version(app_config->get_network_plugin_version()); +} + bool GUI_App::is_compatibility_version() { BOOST_LOG_TRIVIAL(info) << __FUNCTION__<< boost::format(": m_networking_compatible=%1%")%m_networking_compatible; @@ -2174,6 +2261,7 @@ GUI_App::~GUI_App() BOOST_LOG_TRIVIAL(info) << __FUNCTION__<< boost::format(": exit"); + shutdown_console_logging(); } bool GUI_App::is_blocking_printing(MachineObject *obj_) @@ -2274,13 +2362,37 @@ void GUI_App::init_download_path() #if wxUSE_WEBVIEW_EDGE void GUI_App::init_webview_runtime() { - // Check WebView Runtime - if (!WebView::CheckWebViewRuntime()) { - int nRet = wxMessageBox(_L("Orca Slicer requires the Microsoft WebView2 Runtime to operate certain features.\nClick Yes to install it now."), - _L("WebView2 Runtime"), wxYES_NO); - if (nRet == wxYES) { - WebView::DownloadAndInstallWebViewRuntime(); - } + // Check whether the Microsoft WebView2 runtime is already present. + if (WebView::CheckWebViewRuntime()) { + BOOST_LOG_TRIVIAL(info) << "WebView2 runtime detected."; + return; + } + + BOOST_LOG_TRIVIAL(warning) << "WebView2 runtime not found; prompting user to install."; + int nRet = wxMessageBox(_L("Orca Slicer requires the Microsoft WebView2 Runtime to operate certain features.\nClick Yes to install it now."), + _L("WebView2 Runtime"), wxYES_NO); + if (nRet != wxYES) { + BOOST_LOG_TRIVIAL(warning) << "User declined WebView2 runtime installation."; + return; + } + + // The bootstrapper auto-detects the device architecture (x64/x86/ARM64) and + // installs the matching runtime. The install is synchronous, and because this + // runs before the first WebView is created, a successful install takes effect + // in this same process without a restart. + bool installed = WebView::DownloadAndInstallWebViewRuntime(); + + // Re-check: the install can still fail (declined UAC elevation, no network, + // etc.). Without the runtime the setup wizard and other WebView dialogs render + // blank, so surface an explicit message rather than failing silently. + if (installed && WebView::CheckWebViewRuntime()) { + BOOST_LOG_TRIVIAL(info) << "WebView2 runtime installed successfully."; + } else { + BOOST_LOG_TRIVIAL(error) << "WebView2 runtime installation failed or still not detected."; + wxMessageBox(_L("The Microsoft WebView2 Runtime could not be installed.\n" + "Some features, including the setup wizard, may appear blank until it is installed.\n" + "Please install it manually from https://developer.microsoft.com/microsoft-edge/webview2/ and restart Orca Slicer."), + _L("WebView2 Runtime"), wxOK | wxICON_WARNING); } } #endif @@ -2749,31 +2861,35 @@ bool GUI_App::on_init_inner() //update_label_colours_from_appconfig(); } if (bool new_sys_menu_enabled = app_config->get("sys_menu_enabled") == "1"; - init_sys_menu_enabled != new_sys_menu_enabled) + init_sys_menu_enabled != new_sys_menu_enabled) { #ifdef __WINDOWS__ NppDarkMode::SetSystemMenuForApp(new_sys_menu_enabled); #endif + } #endif - if (m_last_config_version) { - int last_major = m_last_config_version->maj(); - int last_minor = m_last_config_version->min(); - int last_patch = m_last_config_version->patch()/100; - std::string studio_ver = SLIC3R_VERSION; - int cur_major = atoi(studio_ver.substr(0,2).c_str()); - int cur_minor = atoi(studio_ver.substr(3,2).c_str()); - int cur_patch = atoi(studio_ver.substr(6,2).c_str()); - BOOST_LOG_TRIVIAL(info) << boost::format("last app version {%1%.%2%.%3%}, current version {%4%.%5%.%6%}") - %last_major%last_minor%last_patch%cur_major%cur_minor%cur_patch; - if ((last_major != cur_major) - ||(last_minor != cur_minor) - ||(last_patch != cur_patch)) { - remove_old_networking_plugins(); - } - } + // Orca: we allow user to pin the version of plugin, so we don't need to remove old networking plugins when the app version is updated + // + // if (m_last_config_version) { + // int last_major = m_last_config_version->maj(); + // int last_minor = m_last_config_version->min(); + // int last_patch = m_last_config_version->patch()/100; + // std::string studio_ver = SLIC3R_VERSION; + // int cur_major = atoi(studio_ver.substr(0,2).c_str()); + // int cur_minor = atoi(studio_ver.substr(3,2).c_str()); + // int cur_patch = atoi(studio_ver.substr(6,2).c_str()); + // BOOST_LOG_TRIVIAL(info) << boost::format("last app version {%1%.%2%.%3%}, current version {%4%.%5%.%6%}") + // %last_major%last_minor%last_patch%cur_major%cur_minor%cur_patch; + // if ((last_major != cur_major) + // ||(last_minor != cur_minor) + // ||(last_patch != cur_patch)) { + // remove_old_networking_plugins(); + // } + // } - if(app_config->get("version") != SLIC3R_VERSION) { - app_config->set("version", SLIC3R_VERSION); + //Orca: write OrcaSlicer version + if(app_config->get("version") != SoftFever_VERSION) { + app_config->set("version", SoftFever_VERSION); } // Orca: use wxWeakRef to provent wild pointer. @@ -2792,7 +2908,7 @@ bool GUI_App::on_init_inner() //BBS use BBL splashScreen scrn = new SplashScreen(splashscreen_pos); wxYield(); - scrn->SetText(_L("Loading configuration") + dots); + scrn->SetText(_L("Loading configuration") + dots, 5); } BOOST_LOG_TRIVIAL(info) << "loading systen presets..."; @@ -2939,9 +3055,8 @@ bool GUI_App::on_init_inner() // Orca: select network plugin version based on configured version string std::string configured_version = app_config->get_network_plugin_version(); - NetworkAgent::use_legacy_network = (configured_version == BAMBU_NETWORK_AGENT_VERSION_LEGACY); BOOST_LOG_TRIVIAL(info) << "Network plugin mode: " - << (NetworkAgent::use_legacy_network ? ("legacy (version: " + std::string(BAMBU_NETWORK_AGENT_VERSION_LEGACY) + ")") : ("modern (version: " + configured_version + ")")); + << (use_legacy_network_plugin() ? ("legacy (version: " + std::string(BAMBU_NETWORK_AGENT_VERSION_LEGACY) + ")") : ("modern (version: " + configured_version + ")")); // Force legacy network plugin if debugger attached // See https://github.com/bambulab/BambuStudio/issues/6726 /* if (!NetworkAgent::use_legacy_network) { @@ -2971,7 +3086,7 @@ bool GUI_App::on_init_inner() // Enable all substitutions (in both user and system profiles), but log the substitutions in user profiles only. // If there are substitutions in system profiles, then a "reconfigure" event shall be triggered, which will force // installation of a compatible system preset, thus nullifying the system preset substitutions. - if (scrn) { scrn->SetText(_L("Loading printer & filament profiles") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Loading printer & filament profiles") + dots, 30); wxYield(); } init_params->preset_substitutions = preset_bundle->load_presets(*app_config, ForwardCompatibilitySubstitutionRule::EnableSystemSilent); } catch (const std::exception& ex) { @@ -3002,7 +3117,7 @@ bool GUI_App::on_init_inner() if (scrn) { const auto scrn_txt = _L("Creating main window") + dots; - scrn->SetText(scrn_txt); + scrn->SetText(scrn_txt, 70); wxYield(); } BOOST_LOG_TRIVIAL(info) << "create the main window"; @@ -3030,7 +3145,7 @@ bool GUI_App::on_init_inner() plater_->set_printer_technology(ptFFF); } else { - if (scrn) { scrn->SetText(_L("Loading current preset") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Loading current preset") + dots, 85); wxYield(); } load_current_presets(); } @@ -3044,10 +3159,10 @@ bool GUI_App::on_init_inner() #ifdef __WINDOWS__ mainframe->topbar()->SaveNormalRect(); #endif - if (scrn) { scrn->SetText(_L("Showing main window") + dots); wxYield(); } + if (scrn) { scrn->SetText(_L("Showing main window") + dots, 95); wxYield(); } mainframe->Show(true); // Close the splash now that the main UI is visible. - if (scrn) { scrn->Destroy(); scrn = nullptr; } + if (scrn) { scrn->SetText(_L("Showing main window") + dots, 100); scrn->Destroy(); scrn = nullptr; } BOOST_LOG_TRIVIAL(info) << "main frame firstly shown"; //#if BBL_HAS_FIRST_PAGE @@ -3220,7 +3335,7 @@ void GUI_App::copy_network_if_available() fs::remove(network_library); BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": Copying network library from " << network_library << " to " << network_library_dst << " successfully."; - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, cached_version); + app_config->set_network_plugin_version(cached_version); app_config->save(); } @@ -3256,6 +3371,26 @@ void GUI_App::copy_network_if_available() bool GUI_App::on_init_network(bool try_backup) { + // Clean up stale ".old" files left by install_plugin() when it had to rename an in-use + // DLL aside (see the rename-aside path in install_plugin). This runs before the plug-in + // is (re)loaded - at startup nothing is mapped yet, and on a hot reload the previous + // module has already been unloaded - so the previously locked files can now be removed. + { + boost::filesystem::path plugin_folder = boost::filesystem::path(data_dir()) / "plugins"; + boost::system::error_code ec; + if (boost::filesystem::is_directory(plugin_folder, ec)) { + for (boost::filesystem::directory_iterator it(plugin_folder, ec), end; !ec && it != end; it.increment(ec)) { + if (it->path().extension() == ".old") { + boost::system::error_code rm_ec; + boost::filesystem::remove(it->path(), rm_ec); + if (rm_ec) + BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": could not remove stale " << it->path().filename().string() + << " (" << rm_ec.message() << "), will retry next launch"; + } + } + } + } + auto should_load_networking_plugin = app_config->get_bool("installed_networking"); std::string config_version = app_config->get_network_plugin_version(); @@ -3285,7 +3420,7 @@ bool GUI_App::on_init_network(bool try_backup) if (config_base != loaded_version) { BOOST_LOG_TRIVIAL(info) << __FUNCTION__ << ": syncing config version from " << config_version << " to loaded " << loaded_version; - app_config->set(SETTING_NETWORK_PLUGIN_VERSION, loaded_version); + app_config->set_network_plugin_version(loaded_version); app_config->save(); } } @@ -3411,7 +3546,7 @@ bool GUI_App::on_init_network(bool try_backup) m_user_manager = new Slic3r::UserManager(); } - if (should_load_networking_plugin && m_networking_compatible && !NetworkAgent::use_legacy_network) { + if (should_load_networking_plugin && m_networking_compatible && !use_legacy_network_plugin()) { app_config->clear_remind_network_update_later(); if (has_network_update_available()) { @@ -4965,21 +5100,28 @@ void GUI_App::on_http_error(wxCommandEvent &evt) if (plater != nullptr && wxGetApp().imgui()->display_initialized()) { std::string text; + // Name the specific preset in the header so the user knows which one conflicts. + // The agent injects the local preset name into every 409 conflict body, so this is + // normally populated; fall back to a generic header if it is somehow missing. + const std::string header = conflict_preset_name.empty() + ? _u8L("Cloud sync conflict:") + : format(_u8L("Cloud sync conflict for preset \"%s\":"), conflict_preset_name); + switch (conflict_code) { case -1: - text = _u8L("Cloud sync conflict: this preset has a newer version in OrcaCloud.\n" + text = header + " " + _u8L("This preset has a newer version in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; case -2: - text = _u8L("Cloud sync conflict: a preset with this name already exists in OrcaCloud.\n" + text = header + " " + _u8L("A preset with this name already exists in OrcaCloud.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; case -3: - text = _u8L("Cloud sync conflict: a preset with the same name was previously deleted from the cloud.\n" + text = header + " " + _u8L("A preset with the same name was previously deleted from the cloud.\n" "Delete will delete your local preset. Force push overwrites it with your local preset."); break; default: - text = _u8L("Cloud sync conflict: there was an unexpected or unidentified preset conflict.\n" + text = header + " " + _u8L("There was an unexpected or unidentified preset conflict.\n" "Pull downloads the cloud copy. Force push overwrites it with your local preset."); break; }; @@ -4998,10 +5140,12 @@ void GUI_App::on_http_error(wxCommandEvent &evt) [this, conflict_setting_id, conflict_preset_name, conflict_user_id](wxEvtHandler*) { if (mainframe == nullptr) return false; - MessageDialog - dlg(mainframe, - _L("Force push will overwrite the cloud copy with your local preset changes.\nDo you want to continue?"), - _L("Resolve cloud sync conflict"), wxCENTER | wxYES_NO | wxNO_DEFAULT | wxICON_WARNING); + const wxString confirm_msg = conflict_preset_name.empty() + ? _L("Force push will overwrite the cloud copy with your local preset changes.\nDo you want to continue?") + : format_wxstr(_L("Force push will overwrite the cloud copy of preset \"%s\" with your local changes.\nDo you want to continue?"), + conflict_preset_name); + MessageDialog dlg(mainframe, confirm_msg, _L("Resolve cloud sync conflict"), + wxCENTER | wxYES_NO | wxNO_DEFAULT | wxICON_WARNING); if (dlg.ShowModal() != wxID_YES) return false; @@ -6437,14 +6581,14 @@ void GUI_App::sync_preset(Preset* preset, bool force) result = 0; // Set to 0 so the sync_info gets saved below // Show user notification - CallAfter([this] { + CallAfter([this, name = preset->name] { static bool size_limit_dialog_notified = false; if (size_limit_dialog_notified) return; size_limit_dialog_notified = true; if (mainframe == nullptr) return; - auto msg = _L("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."); + auto msg = format_wxstr(_L("The preset \"%s\" is too large to sync to the cloud (exceeds 1MB). Please reduce the preset size by removing custom configurations or use it locally only."), name); MessageDialog(mainframe, msg, _L("Sync user presets"), wxICON_WARNING | wxOK).ShowModal(); }); // NOTE: Don't return here - let execution continue to save the sync_info @@ -6821,6 +6965,10 @@ void GUI_App::start_sync_user_preset(bool with_progress_dlg) // finishFn tears down the progress dialog (and clears the re-entrancy guard), so it // must run on every exit path — otherwise an early bail-out would leak the modal // dialog and leave the guard stuck, blocking all later manual syncs. + // Guard the whole thread body: an uncaught exception here (e.g. a transient + // boost::filesystem error while scanning the preset folder) would otherwise + // propagate out of the thread and terminate the entire application. + try { if (!m_agent) { finishFn(false); return; } // One-time scan for orphaned .info files left over from offline deletions; queues HTTP DELETEs. @@ -7062,6 +7210,11 @@ void GUI_App::start_sync_user_preset(bool with_progress_dlg) boost::this_thread::sleep_for(boost::chrono::milliseconds(500)); } } + } catch (const std::exception& e) { + BOOST_LOG_TRIVIAL(error) << "user preset sync thread terminated by exception: " << e.what(); + } catch (...) { + BOOST_LOG_TRIVIAL(error) << "user preset sync thread terminated by unknown exception"; + } }); } @@ -8382,8 +8535,13 @@ void GUI_App::scan_orphaned_info_files() if (!fs::exists(type_dir)) continue; - // Iterate through all .info files - for (auto& entry : boost::filesystem::directory_iterator(type_dir)) { + // Iterate through all .info files. Use the error_code-based iterator so a transient + // directory-read failure (e.g. macOS readdir returning ENOTSUP) is logged and skipped + // instead of throwing an uncaught exception that would terminate the app from the + // background sync thread this runs on. + boost::system::error_code ec; + for (boost::filesystem::directory_iterator it(type_dir, ec), end; !ec && it != end; it.increment(ec)) { + const auto& entry = *it; if (entry.path().extension() != ".info") continue; @@ -8402,6 +8560,8 @@ void GUI_App::scan_orphaned_info_files() } } } + if (ec) + BOOST_LOG_TRIVIAL(warning) << "scan_orphaned_info_files: failed to scan " << type_dir.string() << ": " << ec.message(); } } diff --git a/src/slic3r/GUI/GUI_App.hpp b/src/slic3r/GUI/GUI_App.hpp index c749280ed3..2260417649 100644 --- a/src/slic3r/GUI/GUI_App.hpp +++ b/src/slic3r/GUI/GUI_App.hpp @@ -742,6 +742,7 @@ public: int install_plugin(std::string name, std::string package_name, InstallProgressFn pro_fn = nullptr, WasCancelledFn cancel_fn = nullptr); std::string get_http_url(std::string country_code, std::string path = {}); std::string get_model_http_url(std::string country_code); + bool use_legacy_network_plugin() const; bool is_compatibility_version(); bool check_networking_version(); void cancel_networking_install(); diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp index e7f789820c..75dc44add6 100644 --- a/src/slic3r/GUI/GUI_Factories.cpp +++ b/src/slic3r/GUI/GUI_Factories.cpp @@ -132,6 +132,9 @@ std::map> SettingsFactory::PART_CATE {"infill_anchor", "", 1}, {"infill_anchor_max", "", 1}, {"top_surface_pattern", "", 1}, + {"top_surface_expansion", "", 1}, + {"top_surface_expansion_margin", "", 1}, + {"top_surface_expansion_direction", "", 1}, {"bottom_surface_pattern", "", 1}, {"internal_solid_infill_pattern", "", 1}, {"align_infill_direction_to_model", "", 1}, @@ -141,6 +144,8 @@ std::map> SettingsFactory::PART_CATE {"infill_wall_overlap", "", 1}, {"top_bottom_infill_wall_overlap", "", 1}, {"solid_infill_direction", "", 1}, + {"top_layer_direction", "", 1}, + {"bottom_layer_direction", "", 1}, {"infill_direction", "", 1}, {"bridge_angle", "", 1}, {"internal_bridge_angle", "", 1}, @@ -185,7 +190,7 @@ std::vector SettingsFactory::get_visible_options(const std::s //Quality "wall_infill_order", "ironing_type", "inner_wall_line_width", "outer_wall_line_width", "top_surface_line_width", //Shell - "wall_loops", "top_shell_layers", "bottom_shell_layers", "top_shell_thickness", "bottom_shell_thickness", + "wall_loops", "top_shell_layers", "bottom_shell_layers", "top_shell_thickness", "bottom_shell_thickness", "top_surface_expansion", "top_surface_expansion_margin", "top_surface_expansion_direction", //Infill "sparse_infill_density", "sparse_infill_pattern", "top_surface_pattern", "bottom_surface_pattern", "infill_combination", "infill_direction", "infill_wall_overlap", //speed @@ -590,6 +595,7 @@ wxMenu* MenuFactory::append_submenu_add_handy_model(wxMenu* menu, ModelVolumeTyp static const std::vector handy_models = { {L("Orca Cube"), {"OrcaCube_v2.drc", "OrcaPlug_v2.drc"}, true}, {L("OrcaSliced Combo"), {"OrcaSliced.3mf", "OrcaCube_v2.drc", "OrcaPlug_v2.drc"}, true}, + {L("Orca Badge"), {"OrcaBadge.3mf"}}, {L("Orca Tolerance Test"), {"OrcaToleranceTest.drc"}}, {L("3DBenchy"), {"3DBenchy.drc"}}, {L("Cali Cat"), {"calicat.drc"}}, diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp index d56439f05a..fcdf005aad 100644 --- a/src/slic3r/GUI/GUI_ObjectList.cpp +++ b/src/slic3r/GUI/GUI_ObjectList.cpp @@ -2316,9 +2316,9 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo try { if (boost::iends_with(input_file, ".stp") || boost::iends_with(input_file, ".step")) { - double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_defletion")); + double linear = string_to_double_decimal_point(wxGetApp().app_config->get("linear_deflection")); if (linear <= 0) linear = 0.003; - double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_defletion")); + double angle = string_to_double_decimal_point(wxGetApp().app_config->get("angle_deflection")); if (angle <= 0) angle = 0.5; bool split_compound = wxGetApp().app_config->get_bool("is_split_compound"); model = Model::read_from_step( @@ -2328,8 +2328,8 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo if (wxGetApp().app_config->get_bool("enable_step_mesh_setting")) { StepMeshDialog mesh_dlg(nullptr, file, linear, angle); if (mesh_dlg.ShowModal() == wxID_OK) { - linear_value = mesh_dlg.get_linear_defletion(); - angle_value = mesh_dlg.get_angle_defletion(); + linear_value = mesh_dlg.get_linear_deflection(); + angle_value = mesh_dlg.get_angle_deflection(); is_split = mesh_dlg.get_split_compound_value(); return 1; } diff --git a/src/slic3r/GUI/GUI_ObjectSettings.cpp b/src/slic3r/GUI/GUI_ObjectSettings.cpp index 9073a19df2..65cd99a2fa 100644 --- a/src/slic3r/GUI/GUI_ObjectSettings.cpp +++ b/src/slic3r/GUI/GUI_ObjectSettings.cpp @@ -406,7 +406,7 @@ void ObjectSettings::update_config_values(ModelConfig* config) printer_technology == ptFFF ? config_manipulation.update_print_fff_config(&main_config) : config_manipulation.update_print_sla_config(&main_config) ; - printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&main_config) : + printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&main_config, 0) : config_manipulation.toggle_print_sla_options(&main_config) ; } diff --git a/src/slic3r/GUI/GUI_ObjectTable.cpp b/src/slic3r/GUI/GUI_ObjectTable.cpp index aa3408ba29..1fc07bf5a2 100644 --- a/src/slic3r/GUI/GUI_ObjectTable.cpp +++ b/src/slic3r/GUI/GUI_ObjectTable.cpp @@ -1393,8 +1393,10 @@ wxString ObjectGridTable::GetValue (int row, int col) else if (grid_col->type == coInt) { ConfigOptionInt& option_value = dynamic_cast(option); return wxString::Format("%d", option_value.value); - } - else if (grid_col->type == coFloat) { + } else if (grid_col->type == coFloat) { + if (auto option_values = dynamic_cast(&option)) { + return wxString::Format("%.2f", option_values->get_at(0)); + } ConfigOptionFloat& option_value = dynamic_cast(option); return wxString::Format("%.2f", option_value.value); } @@ -1592,16 +1594,25 @@ void ObjectGridTable::SetValue( int row, int col, const wxString& value ) else { update_value_to_object(m_panel->m_model, grid_row, col); } - } - else if (grid_col->type == coFloat) { - ConfigOptionFloat &option_value = dynamic_cast((*grid_row)[(GridColType)col]); - ConfigOptionFloat &option_ori_value = dynamic_cast((*grid_row)[(GridColType)(col+1)]); + } else if (grid_col->type == coFloat) { + if (auto option_values = dynamic_cast(&(*grid_row)[(GridColType) col])) { + ConfigOptionFloatsNullable& option_ori_values = dynamic_cast((*grid_row)[(GridColType) (col + 1)]); - double double_value; - value.ToDouble(&double_value); - option_value.value = (float)double_value; + double double_value; + value.ToDouble(&double_value); + option_values->values.at(0) = (float) double_value; - update_value_to_config(grid_row->config, grid_col->key, option_value, option_ori_value); + update_value_to_config(grid_row->config, grid_col->key, *option_values, option_ori_values); + } else { + ConfigOptionFloat& option_value = dynamic_cast((*grid_row)[(GridColType) col]); + ConfigOptionFloat& option_ori_value = dynamic_cast((*grid_row)[(GridColType) (col + 1)]); + + double double_value; + value.ToDouble(&double_value); + option_value.value = (float) double_value; + + update_value_to_config(grid_row->config, grid_col->key, option_value, option_ori_value); + } } else if (grid_col->type == coInt) { ConfigOptionInt &option_value = dynamic_cast((*grid_row)[(GridColType)col]); @@ -1676,8 +1687,11 @@ double ObjectGridTable::GetValueAsDouble( int row, int col ) return 0; ObjectGridRow* grid_row = m_grid_data[row - 1]; - ConfigOptionFloat &option_value = dynamic_cast((*grid_row)[(GridColType)col]); - return (double )option_value.getFloat(); + if (auto option_values = dynamic_cast(&(*grid_row)[(GridColType) col])) { + return (double) option_values->get_at(0); + } + ConfigOptionFloat& option_value = dynamic_cast((*grid_row)[(GridColType) col]); + return (double) option_value.getFloat(); } void ObjectGridTable::SetValueAsLong( int row, int col, long value ) @@ -1722,6 +1736,17 @@ void ObjectGridTable::SetValueAsDouble(int row, int col, double value) if ((value > 100.f) || (value < 0.f)) return; } + + if (auto option_values = dynamic_cast(&(*grid_row)[(GridColType) col])) { + ConfigOptionFloatsNullable &option_ori_values = dynamic_cast((*grid_row)[(GridColType) (col + 1)]); + + option_values->values.at(0) = (float) value; + + update_value_to_config(grid_row->config, grid_col->key, *option_values, option_ori_values); + + return; + } + ConfigOptionFloat &option_value = dynamic_cast((*grid_row)[(GridColType)col]); ConfigOptionFloat &option_ori_value = dynamic_cast((*grid_row)[(GridColType)(col+1)]); @@ -1905,7 +1930,8 @@ void ObjectGridTable::init_cols(ObjectGrid *object_grid) //reset icon for Bed Adhesion col = new ObjectGridCol(coEnum, "brim_type_reset", L("Support"), true, true, false, false, wxALIGN_LEFT); m_col_data.push_back(col); - + + // todo mutli_extruders: //object/volume speed col = new ObjectGridCol(coFloat, "outer_wall_speed", L("Speed"), false, false, true, true, wxALIGN_LEFT); col->size = object_grid->GetTextExtent(L("Outer wall speed")).x; @@ -1980,8 +2006,8 @@ void ObjectGridTable::construct_object_configs(ObjectGrid *object_grid) object_grid->ori_enable_support = *(global_config.option(m_col_data[col_enable_support]->key)); object_grid->brim_type = *(get_object_config_value>(global_config, object_grid->config, m_col_data[col_brim_type]->key)); object_grid->ori_brim_type = *(global_config.option>(m_col_data[col_brim_type]->key)); - object_grid->speed_perimeter = *(get_object_config_value(global_config, object_grid->config, m_col_data[col_speed_perimeter]->key)); - object_grid->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); + object_grid->speed_perimeter = *(get_object_config_value(global_config, object_grid->config, m_col_data[col_speed_perimeter]->key)); + object_grid->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); m_grid_data.push_back(object_grid); int volume_count = object->volumes.size(); @@ -2030,7 +2056,7 @@ void ObjectGridTable::construct_object_configs(ObjectGrid *object_grid) volume_grid->ori_enable_support = object_grid->enable_support; volume_grid->brim_type = *(get_volume_config_value>(global_config, object_grid->config, volume_grid->config, m_col_data[col_brim_type]->key)); volume_grid->ori_brim_type = object_grid->brim_type; - volume_grid->speed_perimeter = *(get_volume_config_value(global_config, object_grid->config, volume_grid->config, m_col_data[col_speed_perimeter]->key)); + volume_grid->speed_perimeter = *(get_volume_config_value(global_config, object_grid->config, volume_grid->config, m_col_data[col_speed_perimeter]->key)); volume_grid->ori_speed_perimeter = object_grid->speed_perimeter; m_grid_data.push_back(volume_grid); } @@ -2076,8 +2102,8 @@ void ObjectGridTable::reload_object_data(ObjectGridRow* grid_row, const std::str grid_row->ori_enable_support = *(global_config.option(m_col_data[col_enable_support]->key)); grid_row->brim_type = *(get_object_config_value>(global_config, grid_row->config, m_col_data[col_brim_type]->key)); grid_row->ori_brim_type = *(global_config.option>(m_col_data[col_brim_type]->key)); - grid_row->speed_perimeter = *(get_object_config_value(global_config, grid_row->config, m_col_data[col_speed_perimeter]->key)); - grid_row->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); + grid_row->speed_perimeter = *(get_object_config_value(global_config, grid_row->config, m_col_data[col_speed_perimeter]->key)); + grid_row->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); } else if (category == L("Quality")) { grid_row->layer_height = *(get_object_config_value(global_config, grid_row->config, m_col_data[col_layer_height]->key)); @@ -2098,8 +2124,8 @@ void ObjectGridTable::reload_object_data(ObjectGridRow* grid_row, const std::str grid_row->ori_brim_type = *(global_config.option>(m_col_data[col_brim_type]->key)); } else if (category == L("Speed")) { - grid_row->speed_perimeter = *(get_object_config_value(global_config, grid_row->config, m_col_data[col_speed_perimeter]->key)); - grid_row->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); + grid_row->speed_perimeter = *(get_object_config_value(global_config, grid_row->config, m_col_data[col_speed_perimeter]->key)); + grid_row->ori_speed_perimeter = *(global_config.option(m_col_data[col_speed_perimeter]->key)); } } @@ -2116,7 +2142,7 @@ void ObjectGridTable::reload_part_data(ObjectGridRow* volume_row, ObjectGridRow* volume_row->ori_enable_support = object_row->enable_support; volume_row->brim_type = *(get_volume_config_value>(global_config, object_row->config, volume_row->config, m_col_data[col_brim_type]->key)); volume_row->ori_brim_type = object_row->brim_type; - volume_row->speed_perimeter = *(get_volume_config_value(global_config, object_row->config, volume_row->config, m_col_data[col_speed_perimeter]->key)); + volume_row->speed_perimeter = *(get_volume_config_value(global_config, object_row->config, volume_row->config, m_col_data[col_speed_perimeter]->key)); volume_row->ori_speed_perimeter = object_row->speed_perimeter; } else if (category == L("Quality")) { @@ -2153,7 +2179,7 @@ void ObjectGridTable::reload_part_data(ObjectGridRow* volume_row, ObjectGridRow* volume_row->ori_brim_type = object_row->brim_type; } else if (category == L("Speed")) { - volume_row->speed_perimeter = *(get_volume_config_value(global_config, object_row->config, volume_row->config, m_col_data[col_speed_perimeter]->key)); + volume_row->speed_perimeter = *(get_volume_config_value(global_config, object_row->config, volume_row->config, m_col_data[col_speed_perimeter]->key)); if (volume_row->speed_perimeter == object_row->speed_perimeter) { volume_row->config->erase(m_col_data[col_speed_perimeter]->key); } @@ -2548,6 +2574,8 @@ bool ObjectGridTable::OnCellLeftClick(int row, int col, ConfigOptionType &type) void ObjectGridTable::OnSelectCell(int row, int col) { m_selected_cells.clear(); + if (!m_panel->m_side_window) + return; m_panel->m_side_window->Freeze(); if (row == 0 || col == col_filaments) { m_panel->m_object_settings->UpdateAndShow(row, false, false, false, nullptr, nullptr, std::string()); diff --git a/src/slic3r/GUI/GUI_ObjectTable.hpp b/src/slic3r/GUI/GUI_ObjectTable.hpp index a21436fe0e..a5a0059e1b 100644 --- a/src/slic3r/GUI/GUI_ObjectTable.hpp +++ b/src/slic3r/GUI/GUI_ObjectTable.hpp @@ -344,8 +344,8 @@ public: ConfigOptionBool ori_enable_support; ConfigOptionEnum brim_type; ConfigOptionEnum ori_brim_type; - ConfigOptionFloat speed_perimeter; - ConfigOptionFloat ori_speed_perimeter; + ConfigOptionFloatsNullable speed_perimeter; + ConfigOptionFloatsNullable ori_speed_perimeter; ModelConfig* config; ModelVolumeType model_volume_type; diff --git a/src/slic3r/GUI/GUI_ObjectTableSettings.cpp b/src/slic3r/GUI/GUI_ObjectTableSettings.cpp index 11cd00cdc8..37ccfb8e41 100644 --- a/src/slic3r/GUI/GUI_ObjectTableSettings.cpp +++ b/src/slic3r/GUI/GUI_ObjectTableSettings.cpp @@ -300,7 +300,7 @@ bool ObjectTableSettings::update_settings_list(bool is_object, bool is_multiple_ bool is_BBL_printer = wxGetApp().preset_bundle->is_bbl_vendor(); config_manipulation.set_is_BBL_Printer(is_BBL_printer); - printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&m_current_config) : + printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&m_current_config, 0) : config_manipulation.toggle_print_sla_options(&m_current_config) ; optgroup->update_visibility(wxGetApp().get_mode()); } @@ -406,7 +406,7 @@ void ObjectTableSettings::update_config_values(bool is_object, ModelObject* obje printer_technology == ptFFF ? config_manipulation.update_print_fff_config(&main_config) : config_manipulation.update_print_sla_config(&main_config) ; - printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&main_config) : + printer_technology == ptFFF ? config_manipulation.toggle_print_fff_options(&main_config, 0) : config_manipulation.toggle_print_sla_options(&main_config) ; for (auto og : m_og_settings) { og->update_visibility(wxGetApp().get_mode()); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoAdvancedCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoAdvancedCut.cpp index 992c28c119..2d448df164 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoAdvancedCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoAdvancedCut.cpp @@ -1905,7 +1905,7 @@ bool GLGizmoAdvancedCut::render_slider_double_input(const std::string &label, fl mean_size *= float(units_mm_to_in); min_size *= float(units_mm_to_in); } - std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _u8L("in") : "%.2f " + _u8L("mm"); + std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _CTX_utf8("in", "inches") : "%.2f " + _u8L("mm"); m_imgui->bbl_slider_float_style(("##" + label).c_str(), &value, min_size, mean_size, format.c_str()); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp index 414c520ded..353301995f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoCut.cpp @@ -241,7 +241,7 @@ std::string GLGizmoCut3D::get_tooltip() const std::string tooltip; if (m_hover_id == Z || (m_dragging && m_hover_id == CutPlane)) { double koef = m_imperial_units ? GizmoObjectManipulation::mm_to_in : 1.0; - std::string unit_str = " " + (m_imperial_units ? _u8L("in") : _u8L("mm")); + std::string unit_str = " " + (m_imperial_units ? _CTX_utf8("in", "inches") : _u8L("mm")); const BoundingBoxf3& tbb = m_transformed_bounding_box; const std::string name = m_keep_as_parts ? _u8L("Part") : _u8L("Object"); @@ -541,7 +541,7 @@ bool GLGizmoCut3D::render_double_input(const std::string& label, double& value_i ImGui::InputDouble(("##" + label).c_str(), &value, 0.0f, 0.0f, "%.2f", ImGuiInputTextFlags_CharsDecimal); ImGui::SameLine(); - m_imgui->text(m_imperial_units ? _L("in") : _L("mm")); + m_imgui->text(m_imperial_units ? _CTX("in", "inches") : _L("mm")); value_in = value * (m_imperial_units ? GizmoObjectManipulation::in_to_mm : 1.0); return !is_approx(old_val, value); @@ -582,7 +582,7 @@ bool GLGizmoCut3D::render_slider_two_input(const std::string& label, float& valu if (m_imperial_units) { min_size *= f_mm_to_in; } - std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _u8L("in") : "%.2f " + _u8L("mm"); + std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _CTX_utf8("in", "inches") : "%.2f " + _u8L("mm"); m_imgui->bbl_slider_float_style(("##" + label).c_str(), &value, min_size, mean_size, format.c_str()); @@ -653,7 +653,7 @@ bool GLGizmoCut3D::render_slider_input(const std::string& label, float& value_in if (m_imperial_units) { min_size *= f_mm_to_in; } - std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _u8L("in") : "%.2f " + _u8L("mm"); + std::string format = value_in < 0.f ? " " : m_imperial_units ? "%.4f " + _CTX_utf8("in", "inches") : "%.2f " + _u8L("mm"); m_imgui->bbl_slider_float_style(("##" + label).c_str(), &value, min_size, max_value, format.c_str()); @@ -2472,7 +2472,7 @@ void GLGizmoCut3D::render_connectors_input_window(CutConnectors &connectors, flo void GLGizmoCut3D::render_build_size() { double koef = m_imperial_units ? GizmoObjectManipulation::mm_to_in : 1.0; - wxString unit_str = m_imperial_units ? _L("in") : _L("mm"); + wxString unit_str = m_imperial_units ? _CTX("in", "inches") : _L("mm"); Vec3d tbb_sz = m_transformed_bounding_box.size() * koef; // ORCA ImGui::AlignTextToFramePadding(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp b/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp index dc2ec0d46e..f190e1ad97 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoFdmSupports.cpp @@ -315,6 +315,17 @@ void GLGizmoFdmSupports::on_render_input_window(float x, float y, float bottom_l ImGui::SameLine(drag_left_width + sliders_left_width); ImGui::PushItemWidth(1.5 * slider_icon_width); ImGui::BBLDragFloat("##cursor_radius_input", &m_cursor_radius, 0.05f, 0.0f, 0.0f, "%.2f"); + + if (m_imgui->bbl_checkbox(_L("Vertical"), m_vertical_only)) { + if (m_vertical_only) { + m_horizontal_only = false; + } + } + if (m_imgui->bbl_checkbox(_L("Horizontal"), m_horizontal_only)) { + if (m_horizontal_only) { + m_vertical_only = false; + } + } } else if (m_current_tool == ImGui::SphereButtonIcon) { m_cursor_type = TriangleSelector::CursorType::SPHERE; m_tool_type = ToolType::BRUSH; @@ -327,6 +338,17 @@ void GLGizmoFdmSupports::on_render_input_window(float x, float y, float bottom_l ImGui::SameLine(drag_left_width + sliders_left_width); ImGui::PushItemWidth(1.5 * slider_icon_width); ImGui::BBLDragFloat("##cursor_radius_input", &m_cursor_radius, 0.05f, 0.0f, 0.0f, "%.2f"); + + if (m_imgui->bbl_checkbox(_L("Vertical"), m_vertical_only)) { + if (m_vertical_only) { + m_horizontal_only = false; + } + } + if (m_imgui->bbl_checkbox(_L("Horizontal"), m_horizontal_only)) { + if (m_horizontal_only) { + m_vertical_only = false; + } + } } else if (m_current_tool == ImGui::FillButtonIcon) { m_cursor_type = TriangleSelector::CursorType::POINTER; m_tool_type = ToolType::SMART_FILL; diff --git a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp index 6c6f913276..a99b68340d 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp @@ -91,9 +91,14 @@ Vec3d GLGizmoMeasure::get_feature_offset(const Measure::SurfaceFeature &feature) } case Measure::SurfaceFeatureType::Edge: { - std::optional p = feature.get_extra_point(); - assert(p.has_value()); - ret = *p; + // Only polygon edges store an extra point (the polygon centre); plain edges have none. + const std::optional extra = feature.get_extra_point(); + if (extra.has_value()) + ret = *extra; + else { + const auto [pt1, pt2] = feature.get_edge(); + ret = 0.5 * (pt1 + pt2); + } break; } case Measure::SurfaceFeatureType::Point: @@ -1065,7 +1070,7 @@ void GLGizmoMeasure::on_render() if (requires_raycaster_update) { if (m_gripper_id_raycast_map.find(GripperType::SPHERE_2) != m_gripper_id_raycast_map.end()) { - m_gripper_id_raycast_map[GripperType::SPHERE_2]->set_transform(Geometry::translation_transform(get_feature_offset(*m_selected_features.first.feature)) * + m_gripper_id_raycast_map[GripperType::SPHERE_2]->set_transform(Geometry::translation_transform(get_feature_offset(*m_selected_features.second.feature)) * Geometry::scale_transform(inv_zoom)); } } @@ -1247,7 +1252,7 @@ void GLGizmoMeasure::render_dimensioning() const bool use_inches = wxGetApp().app_config->get_bool("use_inches"); const double curr_value = use_inches ? GizmoObjectManipulation::mm_to_in * distance : distance; const std::string curr_value_str = format_double(curr_value); - const std::string units = use_inches ? _u8L("in") : _u8L("mm"); + const std::string units = use_inches ? _CTX_utf8("in", "inches") : _u8L("mm"); const float value_str_width = 20.0f + ImGui::CalcTextSize(curr_value_str.c_str()).x; static double edit_value = 0.0; @@ -1298,7 +1303,7 @@ void GLGizmoMeasure::render_dimensioning() return; const double ratio = new_value / old_value; - wxGetApp().plater()->take_snapshot(_u8L("Scale"), UndoRedo::SnapshotType::GizmoAction); + wxGetApp().plater()->take_snapshot(_CTX_utf8("Scale", "Verb"), UndoRedo::SnapshotType::GizmoAction); // apply scale TransformationType type; type.set_world(); @@ -2125,7 +2130,7 @@ void GLGizmoMeasure::show_face_face_assembly_senior() void GLGizmoMeasure::init_render_input_window() { m_use_inches = wxGetApp().app_config->get_bool("use_inches"); - m_units = m_use_inches ? " " + _u8L("in") : " " + _u8L("mm"); + m_units = " " + (m_use_inches ? _CTX_utf8("in", "inches") : _u8L("mm")); m_space_size = ImGui::CalcTextSize(" ").x * 2; m_input_size_max = ImGui::CalcTextSize("-100.00").x * 1.2; m_same_model_object = is_two_volume_in_same_model_object(); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp index 68f353e606..c43a02da9f 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp @@ -1704,7 +1704,7 @@ void GLGizmoSVG::draw_size() if (m_keep_ratio) { std::stringstream ss; - ss << std::setprecision(2) << std::fixed << width << " x " << height << " " << (use_inch ? "in" : "mm"); + ss << std::setprecision(2) << std::fixed << width << " x " << height << " " << (use_inch ? _CTX("in", "inches") : _L("mm")); ImGui::SameLine(m_gui_cfg->input_offset); ImGui::SetNextItemWidth(m_gui_cfg->input_width); diff --git a/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp b/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp index 77fc7ef46c..ebbb76f348 100644 --- a/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp +++ b/src/slic3r/GUI/Gizmos/GLGizmoScale.cpp @@ -143,9 +143,9 @@ bool GLGizmoScale3D::on_init() std::string GLGizmoScale3D::on_get_name() const { if (!on_is_activable() && m_state == EState::Off) { - return _u8L("Scale") + ":\n" + _u8L("Please select at least one object."); + return _CTX_utf8("Scale", "Verb") + ":\n" + _u8L("Please select at least one object."); } else { - return _u8L("Scale"); + return _CTX_utf8("Scale", "Verb"); } } diff --git a/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.cpp b/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.cpp index 6dcf289789..3f82777a2a 100644 --- a/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.cpp +++ b/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.cpp @@ -54,7 +54,7 @@ GizmoObjectManipulation::GizmoObjectManipulation(GLCanvas3D& glcanvas) : m_glcanvas(glcanvas) { m_imperial_units = wxGetApp().app_config->get("use_inches") == "1"; - m_new_unit_string = m_imperial_units ? L("in") : L("mm"); + m_new_unit_string = m_imperial_units ? L_CONTEXT("in", "inches") : L("mm"); const wxString shift = GUI::shortkey_shift_prefix(); const wxString alt = GUI::shortkey_alt_prefix(); @@ -92,7 +92,7 @@ void GizmoObjectManipulation::update_ui_from_settings() if (m_imperial_units != (wxGetApp().app_config->get("use_inches") == "1")) { m_imperial_units = wxGetApp().app_config->get("use_inches") == "1"; - m_new_unit_string = m_imperial_units ? L("in") : L("mm"); + m_new_unit_string = m_imperial_units ? L_CONTEXT("in", "inches") : L("mm"); update_buffered_value(); } @@ -504,9 +504,12 @@ void GizmoObjectManipulation::on_change(const std::string &opt_key, int axis, do bool GizmoObjectManipulation::render_combo( ImGuiWrapper *imgui_wrapper, const std::string &label, const std::vector &lines, size_t &selection_idx, float label_width, float item_width) { - ImGui::AlignTextToFramePadding(); - imgui_wrapper->text(label); - ImGui::SameLine(label_width); + if(!label.empty()){ + ImGui::AlignTextToFramePadding(); + imgui_wrapper->text(label); + ImGui::SameLine(label_width); + } + ImGui::PushItemWidth(item_width); size_t selection_out = selection_idx; @@ -642,8 +645,9 @@ static const char* label_scale_values[2][3] = { { "##size_x", "##size_y", "##size_z"} }; -bool GizmoObjectManipulation::reset_button(ImGuiWrapper *imgui_wrapper, float caption_max, float unit_size, float space_size, float end_text_size) +bool GizmoObjectManipulation::reset_button(ImGuiWrapper *imgui_wrapper, bool enabled) { + imgui_wrapper->disabled_begin(!enabled); bool pressed = false; ImTextureID normal_id = m_glcanvas.get_gizmos_manager().get_icon_texture_id(GLGizmosManager::MENU_ICON_NAME::IC_TOOLBAR_RESET); ImTextureID hover_id = m_glcanvas.get_gizmos_manager().get_icon_texture_id(GLGizmosManager::MENU_ICON_NAME::IC_TOOLBAR_RESET_HOVER); @@ -657,14 +661,17 @@ bool GizmoObjectManipulation::reset_button(ImGuiWrapper *imgui_wrapper, float ca ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - pressed = ImGui::ImageButton3(normal_id, hover_id, button_size); + pressed = ImGui::ImageButton3(normal_id, hover_id, button_size, {0,0}, {1,1}, -1, {0,0,0,0}, {1,1,1, enabled ? 1.f : 0.f}); // ORCA make icon invisible to prevent changes on layout ImGui::PopStyleVar(1); + + imgui_wrapper->disabled_end(); return pressed; } -bool GizmoObjectManipulation::reset_zero_button(ImGuiWrapper *imgui_wrapper, float caption_max, float unit_size, float space_size, float end_text_size) +bool GizmoObjectManipulation::reset_zero_button(ImGuiWrapper *imgui_wrapper, bool enabled) { + imgui_wrapper->disabled_begin(!enabled); bool pressed = false; ImTextureID normal_id = m_glcanvas.get_gizmos_manager().get_icon_texture_id(GLGizmosManager::MENU_ICON_NAME::IC_TOOLBAR_RESET_ZERO); ImTextureID hover_id = m_glcanvas.get_gizmos_manager().get_icon_texture_id(GLGizmosManager::MENU_ICON_NAME::IC_TOOLBAR_RESET_ZERO_HOVER); @@ -678,9 +685,11 @@ bool GizmoObjectManipulation::reset_zero_button(ImGuiWrapper *imgui_wrapper, flo ImGui::PushStyleVar(ImGuiStyleVar_FrameBorderSize, 0.0f); - pressed = ImGui::ImageButton3(normal_id, hover_id, button_size); + pressed = ImGui::ImageButton3(normal_id, hover_id, button_size, {0,0}, {1,1}, -1, {0,0,0,0}, {1,1,1, enabled ? 1.f : 0.f}); // ORCA make icon invisible to prevent changes on layout ImGui::PopStyleVar(1); + + imgui_wrapper->disabled_end(); return pressed; } @@ -765,8 +774,17 @@ void GizmoObjectManipulation::do_render_move_window(ImGuiWrapper *imgui_wrapper, }; float space_size = imgui_wrapper->get_style_scaling() * 8; - float position_size = imgui_wrapper->calc_text_size(_L("Position")).x + space_size; - float caption_max = imgui_wrapper->calc_text_size(_L("Object coordinates")).x + 2 * space_size; + //ORCA + float coord_combo_width = std::max({ + imgui_wrapper->calc_text_size(_L("World")).x, + imgui_wrapper->calc_text_size(_L("Object")).x, + imgui_wrapper->calc_text_size(_L("Part")).x + }) + imgui_wrapper->calc_text_size("xxx"sv).x + imgui_wrapper->scaled(3.5f); + float label_max = std::max({ + imgui_wrapper->calc_text_size(_L("Position")).x, + imgui_wrapper->calc_text_size(_L("Relative")).x + }); + float caption_max = std::max(label_max, coord_combo_width - 3 * space_size); float end_text_size = imgui_wrapper->calc_text_size(this->m_new_unit_string).x; // position @@ -786,7 +804,7 @@ void GizmoObjectManipulation::do_render_move_window(ImGuiWrapper *imgui_wrapper, unsigned int current_active_id = ImGui::GetActiveID(); Selection & selection = m_glcanvas.get_selection(); - std::vector modes = {_u8L("World coordinates"), _u8L("Object coordinates")};//_u8L("Part coordinates") + std::vector modes = {_u8L("World"), _u8L("Object")};//_u8L("Part") // ORCA use shorter terms to make UI more compact if (selection.is_multiple_full_object() || selection.is_wipe_tower()) { modes.pop_back(); } @@ -796,16 +814,17 @@ void GizmoObjectManipulation::do_render_move_window(ImGuiWrapper *imgui_wrapper, selection_idx = 0; } - float caption_cs_size = imgui_wrapper->calc_text_size(""sv).x; - float caption_size = caption_cs_size + 2 * space_size; - float combox_content_size = imgui_wrapper->calc_text_size(_L("Object coordinates")).x * 1.2 + imgui_wrapper->calc_text_size("xxx"sv).x + imgui_wrapper->scaled(3); ImGuiWrapper::push_combo_style(m_glcanvas.get_scale()); bool combox_changed = false; - if (render_combo(imgui_wrapper, "", modes, selection_idx, caption_size, combox_content_size)) { + if (render_combo(imgui_wrapper, "", modes, selection_idx, 0, coord_combo_width)) { combox_changed = true; } + if (ImGui::IsItemHovered()) { + auto tooltip_str = _L("Coordinate system used for transform actions."); + imgui_wrapper->tooltip(tooltip_str, imgui_wrapper->calc_text_size(tooltip_str).x + 3 * space_size); + } ImGuiWrapper::pop_combo_style(); - caption_max = combox_content_size - 4 * space_size; + // ORCA use TextColored to match axes color float offset_to_center = (unit_size - ImGui::CalcTextSize("O").x) / 2; ImGui::SameLine(caption_max + index * space_size + offset_to_center); @@ -819,7 +838,7 @@ void GizmoObjectManipulation::do_render_move_window(ImGuiWrapper *imgui_wrapper, index_unit = 1; ImGui::AlignTextToFramePadding(); if (selection.is_single_full_instance() && is_instance_coordinates()) { - imgui_wrapper->text(_L("Translate(Relative)")); + imgui_wrapper->text(_L("Relative")); // ORCA } else { imgui_wrapper->text(_L("Position")); @@ -924,10 +943,15 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe }; float space_size = imgui_wrapper->get_style_scaling() * 8; - float position_size = imgui_wrapper->calc_text_size(_L("Rotate (relative)")).x + space_size; - float World_size = imgui_wrapper->calc_text_size(_L("World coordinates")).x + space_size; - float caption_max = std::max(position_size, World_size) + 2 * space_size; - float end_text_size = imgui_wrapper->calc_text_size(this->m_new_unit_string).x; + // ORCA + float caption_max = std::max({ + imgui_wrapper->calc_text_size(_L("Relative")).x, + imgui_wrapper->calc_text_size(_L("Absolute")).x, + imgui_wrapper->calc_text_size(_L("World")).x + //imgui_wrapper->calc_text_size(_L("Object")).x, + //imgui_wrapper->calc_text_size(_L("Part")).x + }) + 3.f * space_size; + float end_text_size = ImGui::CalcTextSize("°").x; // ORCA rotate gizmo not uses mm or inch // position Vec3d original_position; @@ -946,7 +970,11 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe ImGui::AlignTextToFramePadding(); unsigned int current_active_id = ImGui::GetActiveID(); ImGui::PushItemWidth(caption_max); - imgui_wrapper->text(_L("World coordinates")); + imgui_wrapper->text(_L("World")); // ORCA + if (ImGui::IsItemHovered()) { + auto tooltip_str = _L("Coordinate system used for transform actions."); + imgui_wrapper->tooltip(tooltip_str, imgui_wrapper->calc_text_size(tooltip_str).x + 3 * space_size); + } // ORCA use TextColored to match axes color float offset_to_center = (unit_size - ImGui::CalcTextSize("O").x) / 2; ImGui::SameLine(caption_max + index * space_size + offset_to_center); @@ -962,7 +990,7 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe // ImGui::PushItemWidth(unit_size * 2); bool is_relative_input = false; ImGui::AlignTextToFramePadding(); - imgui_wrapper->text(_L("Rotate (relative)")); + imgui_wrapper->text(_L("Relative")); // ORCA ImGui::SameLine(caption_max + index * space_size); ImGui::PushItemWidth(unit_size); if (ImGui::BBLInputDouble(label_values[1][0], &rotation[0], 0.0f, 0.0f, "%.2f")) { @@ -991,19 +1019,14 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe } } - if (m_show_clear_rotation) { - ImGui::SameLine(caption_max + 3 * unit_size + 4 * space_size + end_text_size); - if (reset_button(imgui_wrapper, caption_max, unit_size, space_size, end_text_size)) { - reset_rotation_value(true); - } - if (ImGui::IsItemHovered()) { - float tooltip_size = imgui_wrapper->calc_text_size(_L("Reset current rotation to the value when open the rotation tool.")).x + 3 * space_size; - imgui_wrapper->tooltip(_u8L("Reset current rotation to the value when open the rotation tool."), tooltip_size); - } - } else { - ImGui::SameLine(caption_max + 3 * unit_size + 5 * space_size + end_text_size); - ImGui::InvisibleButton("", ImVec2(ImGui::GetFontSize(), ImGui::GetFontSize())); + ImGui::SameLine(caption_max + index_unit * unit_size + (++index) * space_size + end_text_size); + if (reset_button(imgui_wrapper, m_show_clear_rotation)) // ORCA reserve icon space to prevent changes on layout + reset_rotation_value(true); + if (m_show_clear_rotation && ImGui::IsItemHovered()) { + float tooltip_size = imgui_wrapper->calc_text_size(_L("Reset current rotation to the value when open the rotation tool.")).x + 3 * space_size; + imgui_wrapper->tooltip(_u8L("Reset current rotation to the value when open the rotation tool."), tooltip_size); } + // send focus to m_glcanvas bool focued_on_text = false; for (int j = 0; j < 3; j++) { @@ -1018,7 +1041,7 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe index = 1; index_unit = 1; ImGui::AlignTextToFramePadding(); - imgui_wrapper->text(_L("Rotate (absolute)")); + imgui_wrapper->text(_L("Absolute")); ImGui::SameLine(caption_max + index * space_size); ImGui::PushItemWidth(unit_size); bool is_absolute_input = false; @@ -1048,13 +1071,12 @@ void GizmoObjectManipulation::do_render_rotate_window(ImGuiWrapper *imgui_wrappe } } - if (m_show_reset_0_rotation) { - ImGui::SameLine(caption_max + 3 * unit_size + 4 * space_size + end_text_size); - if (reset_zero_button(imgui_wrapper, caption_max, unit_size, space_size, end_text_size)) { reset_rotation_value(false); } - if (ImGui::IsItemHovered()) { - float tooltip_size = imgui_wrapper->calc_text_size(_L("Reset current rotation to real zeros.")).x + 3 * space_size; - imgui_wrapper->tooltip(_L("Reset current rotation to real zeros."), tooltip_size); - } + ImGui::SameLine(caption_max + index_unit * unit_size + (++index) * space_size + end_text_size); + if (reset_zero_button(imgui_wrapper, m_show_reset_0_rotation)) // ORCA reserve icon space to prevent changes on layout + reset_rotation_value(false); + if (m_show_reset_0_rotation && ImGui::IsItemHovered()) { + float tooltip_size = imgui_wrapper->calc_text_size(_L("Reset current rotation to real zeros.")).x + 3 * space_size; + imgui_wrapper->tooltip(_L("Reset current rotation to real zeros."), tooltip_size); } // send focus to m_glcanvas bool absolute_focued_on_text = false; @@ -1132,8 +1154,17 @@ void GizmoObjectManipulation::do_render_scale_input_window(ImGuiWrapper* imgui_w }; float space_size = imgui_wrapper->get_style_scaling() * 8; - float scale_size = imgui_wrapper->calc_text_size(_L("Scale")).x + space_size; - float caption_max = imgui_wrapper->calc_text_size(_L("Object coordinates")).x + 2 * space_size; + // ORCA + float coord_combo_width = std::max({ + imgui_wrapper->calc_text_size(_L("World")).x, + imgui_wrapper->calc_text_size(_L("Object")).x, + imgui_wrapper->calc_text_size(_L("Part")).x + }) + imgui_wrapper->calc_text_size("xxx"sv).x + imgui_wrapper->scaled(3.5f); + float label_max = std::max({ + imgui_wrapper->calc_text_size(_CTX("Scale", "Noun")).x, + imgui_wrapper->calc_text_size(_L("Size")).x + }); + float caption_max = std::max(label_max, coord_combo_width - 3 * space_size); float end_text_size = imgui_wrapper->calc_text_size(this->m_new_unit_string).x; ImGui::AlignTextToFramePadding(); unsigned int current_active_id = ImGui::GetActiveID(); @@ -1150,7 +1181,7 @@ void GizmoObjectManipulation::do_render_scale_input_window(ImGuiWrapper* imgui_w int index_unit = 1; Selection & selection = m_glcanvas.get_selection(); - std::vector modes = {_u8L("World coordinates"), _u8L("Object coordinates"), _u8L("Part coordinates")}; + std::vector modes = {_u8L("World"), _u8L("Object"), _u8L("Part")}; // ORCA use shorter terms to make UI more compact if (selection.is_single_full_object()) { modes.pop_back(); } if (selection.is_multiple_full_object()) { modes.pop_back(); @@ -1162,17 +1193,17 @@ void GizmoObjectManipulation::do_render_scale_input_window(ImGuiWrapper* imgui_w selection_idx = 0; } - float caption_cs_size = imgui_wrapper->calc_text_size(""sv).x; - float caption_size = caption_cs_size + 2 * space_size; - float combox_content_size = imgui_wrapper->calc_text_size(_L("Object coordinates")).x * 1.2 + imgui_wrapper->calc_text_size("xxx"sv).x + imgui_wrapper->scaled(3); ImGuiWrapper::push_combo_style(m_glcanvas.get_scale()); bool combox_changed = false; - if (render_combo(imgui_wrapper, "", modes, selection_idx, caption_size, combox_content_size)) { + if (render_combo(imgui_wrapper, "", modes, selection_idx, 0, coord_combo_width)) { combox_changed = true; } + if (ImGui::IsItemHovered()) { + auto tooltip_str = _L("Coordinate system used for transform actions."); + imgui_wrapper->tooltip(tooltip_str, imgui_wrapper->calc_text_size(tooltip_str).x + 3 * space_size); + } ImGuiWrapper::pop_combo_style(); - caption_max = combox_content_size - 4 * space_size; - //ImGui::Dummy(ImVec2(caption_max, -1)); + // ORCA use TextColored to match axes color float offset_to_center = (unit_size - ImGui::CalcTextSize("O").x) / 2; ImGui::SameLine(caption_max + space_size + offset_to_center); @@ -1187,7 +1218,7 @@ void GizmoObjectManipulation::do_render_scale_input_window(ImGuiWrapper* imgui_w //ImGui::PushItemWidth(unit_size * 2); ImGui::AlignTextToFramePadding(); - imgui_wrapper->text(_L("Scale")); + imgui_wrapper->text(_CTX("Scale", "Noun")); ImGui::SameLine(caption_max + space_size); ImGui::PushItemWidth(unit_size); ImGui::BBLInputDouble(label_scale_values[0][0], &scale[0], 0.0f, 0.0f, "%.2f"); @@ -1203,14 +1234,9 @@ void GizmoObjectManipulation::do_render_scale_input_window(ImGuiWrapper* imgui_w m_buffered_scale = scale; } - if (m_show_clear_scale) { - ImGui::SameLine(caption_max + 3 * unit_size + 4 * space_size + end_text_size); - if (reset_button(imgui_wrapper, caption_max, unit_size, space_size, end_text_size)) - reset_scale_value(); - } else { - ImGui::SameLine(caption_max + 3 * unit_size + 5 * space_size + end_text_size); - ImGui::InvisibleButton("", ImVec2(ImGui::GetFontSize(), ImGui::GetFontSize())); - } + ImGui::SameLine(caption_max + 3 * unit_size + 4 * space_size + end_text_size); + if (reset_button(imgui_wrapper, m_show_clear_scale)) + reset_scale_value(); //Size Vec3d original_size; diff --git a/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.hpp b/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.hpp index 2f8b532733..84ff8ebe62 100644 --- a/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.hpp +++ b/src/slic3r/GUI/Gizmos/GizmoObjectManipulation.hpp @@ -139,8 +139,8 @@ public: void do_render_rotate_window(ImGuiWrapper *imgui_wrapper, std::string window_name, float x, float y, float bottom_limit); void do_render_scale_input_window(ImGuiWrapper* imgui_wrapper, std::string window_name, float x, float y, float bottom_limit); float max_unit_size(int number, Vec3d &vec1, Vec3d &vec2,std::string str); - bool reset_button(ImGuiWrapper *imgui_wrapper, float caption_max, float unit_size, float space_size, float end_text_size); - bool reset_zero_button(ImGuiWrapper *imgui_wrapper, float caption_max, float unit_size, float space_size, float end_text_size); + bool reset_button(ImGuiWrapper *imgui_wrapper, bool enabled); + bool reset_zero_button(ImGuiWrapper *imgui_wrapper, bool enabled); bool bbl_checkbox(const wxString &label, bool &value); void set_init_rotation(const Geometry::Transformation &value); diff --git a/src/slic3r/GUI/ImGuiWrapper.cpp b/src/slic3r/GUI/ImGuiWrapper.cpp index 5a39826c83..d4d08aa84f 100644 --- a/src/slic3r/GUI/ImGuiWrapper.cpp +++ b/src/slic3r/GUI/ImGuiWrapper.cpp @@ -184,6 +184,9 @@ const ImVec4 ImGuiWrapper::COL_WINDOW_BG_DARK = { 45 / 255.f, 45 / 255.f, 49 const ImVec4 ImGuiWrapper::COL_TOOLBAR_BG = { 250 / 255.f, 250 / 255.f, 250 / 255.f, 1.f }; // ORCA color matches with toolbar_background.png const ImVec4 ImGuiWrapper::COL_TOOLBAR_BG_DARK = { 57 / 255.f, 60 / 255.f, 66 / 255.f, 1.f }; // ORCA color matches with toolbar_background_dark.png const ImVec4 ImGuiWrapper::COL_ORCA = to_ImVec4(ColorRGBA::ORCA()); +const ImVec4 ImGuiWrapper::COL_ORCA_DARK = { 0.f , 103 / 255.f, 91 / 255.f, 1.f }; +const ImVec4 ImGuiWrapper::COL_ORCA_HOVER = { 38 / 255.f, 166 / 255.f, 154 / 255.f, 1.f }; +const ImVec4 ImGuiWrapper::COL_ORCA_HOVER_DARK = { 0.f , 129 / 255.f, 114 / 255.f, 1.f }; const ImVec4 ImGuiWrapper::COL_MODIFIED = { 253.f / 255.f, 111.f / 255.f, 40.f / 255.f, 1}; // ORCA same color with m_color_label_modified const ImVec4 ImGuiWrapper::COL_WARNING = to_ImVec4(ColorRGB::WARNING()); diff --git a/src/slic3r/GUI/ImGuiWrapper.hpp b/src/slic3r/GUI/ImGuiWrapper.hpp index af92140379..b586094ab3 100644 --- a/src/slic3r/GUI/ImGuiWrapper.hpp +++ b/src/slic3r/GUI/ImGuiWrapper.hpp @@ -348,6 +348,9 @@ public: static const ImVec4 COL_SEPARATOR; static const ImVec4 COL_SEPARATOR_DARK; static const ImVec4 COL_ORCA; + static const ImVec4 COL_ORCA_DARK; + static const ImVec4 COL_ORCA_HOVER; + static const ImVec4 COL_ORCA_HOVER_DARK; static const ImVec4 COL_MODIFIED; static const ImVec4 COL_WARNING; diff --git a/src/slic3r/GUI/ImageGrid.cpp b/src/slic3r/GUI/ImageGrid.cpp index 77fd7b132e..3c333c93fb 100644 --- a/src/slic3r/GUI/ImageGrid.cpp +++ b/src/slic3r/GUI/ImageGrid.cpp @@ -644,7 +644,7 @@ void Slic3r::GUI::ImageGrid::renderContent1(wxDC &dc, wxPoint const &pt, int ind if (m_file_sys->GetFileType() == PrinterFileSystem::F_MODEL) { if (secondAction != _L("Play")) thirdAction = secondAction; - secondAction = _L("Print"); + secondAction = _CTX("Print", "Verb"); } // Draw buttons on hovered item wxRect rect{pt.x, pt.y + m_content_rect.GetBottom() - m_buttons_background.GetHeight(), m_content_rect.GetWidth(), m_buttons_background.GetHeight()}; diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp index 66d7d87835..c2753f0bb1 100644 --- a/src/slic3r/GUI/MainFrame.cpp +++ b/src/slic3r/GUI/MainFrame.cpp @@ -2013,10 +2013,10 @@ wxBoxSizer* MainFrame::create_side_tools() }); // upload and print - SideButton* send_gcode_btn = new SideButton(p, _L("Print"), ""); + SideButton* send_gcode_btn = new SideButton(p, _CTX("Print", "Verb"), ""); send_gcode_btn->SetCornerRadius(0); send_gcode_btn->Bind(wxEVT_BUTTON, [this, p](wxCommandEvent&) { - m_print_btn->SetLabel(_L("Print")); + m_print_btn->SetLabel(_CTX("Print", "Verb")); m_print_select = eSendGcode; m_print_enable = get_enable_print_status(); m_print_btn->Enable(m_print_enable); @@ -2662,9 +2662,9 @@ static void add_common_view_menu_items(wxMenu* view_menu, MainFrame* mainFrame, "", nullptr, [can_change_view]() { return can_change_view(); }, mainFrame); append_menu_item(view_menu, wxID_ANY, _L("Rear") + "\t" + ctrl + "4", _L("Rear View"), [mainFrame](wxCommandEvent&) { mainFrame->select_view("rear"); }, "", nullptr, [can_change_view]() { return can_change_view(); }, mainFrame); - append_menu_item(view_menu, wxID_ANY, _CTX(L_CONTEXT("Left", "Camera"), "Camera") + "\t" + ctrl + "5", _L("Left View"),[mainFrame](wxCommandEvent &) {mainFrame->select_view("left"); }, + append_menu_item(view_menu, wxID_ANY, _CTX("Left", "Camera View") + "\t" + ctrl + "5", _L("Left View"),[mainFrame](wxCommandEvent &) {mainFrame->select_view("left"); }, "", nullptr, [can_change_view]() { return can_change_view(); }, mainFrame); - append_menu_item(view_menu, wxID_ANY, _CTX(L_CONTEXT("Right", "Camera"), "Camera") + "\t" + ctrl + "6", _L("Right View"),[mainFrame](wxCommandEvent &) { mainFrame->select_view("right"); }, + append_menu_item(view_menu, wxID_ANY, _CTX("Right", "Camera View") + "\t" + ctrl + "6", _L("Right View"),[mainFrame](wxCommandEvent &) { mainFrame->select_view("right"); }, "", nullptr, [can_change_view]() { return can_change_view(); }, mainFrame); } @@ -4040,7 +4040,7 @@ void MainFrame::set_print_button_to_default(PrintSelectType select_type) m_print_btn->Enable(m_print_enable); this->Layout(); } else if (select_type == PrintSelectType::eSendGcode) { - m_print_btn->SetLabel(_L("Print")); + m_print_btn->SetLabel(_CTX("Print", "Verb")); m_print_select = eSendGcode; if (m_print_enable) m_print_enable = get_enable_print_status() && can_send_gcode(); diff --git a/src/slic3r/GUI/MediaFilePanel.cpp b/src/slic3r/GUI/MediaFilePanel.cpp index 1fca47e7c4..6c1a261966 100644 --- a/src/slic3r/GUI/MediaFilePanel.cpp +++ b/src/slic3r/GUI/MediaFilePanel.cpp @@ -520,7 +520,7 @@ void MediaFilePanel::fetchUrl(boost::weak_ptr wfs) fs->SetUrl(res); } }); - }); + }, wxGetApp().get_printer_cloud_provider()); } } @@ -556,7 +556,7 @@ void MediaFilePanel::doAction(size_t index, int action) } else if (action == 1) { if (fs->GetFileType() == PrinterFileSystem::F_MODEL) { if (index != -1) { - auto dlg = new MediaProgressDialog(_L("Print"), this, [fs] { fs->FetchModelCancel(); }); + auto dlg = new MediaProgressDialog(_CTX("Print", "Verb"), this, [fs] { fs->FetchModelCancel(); }); dlg->Update(0, _L("Fetching model information...")); fs->FetchModel(index, [this, fs, dlg, index](int result, std::string const &data) { dlg->Destroy(); @@ -566,7 +566,7 @@ void MediaFilePanel::doAction(size_t index, int action) wxString msg = data.empty() ? _L("Failed to fetch model information from printer.") : from_u8(data); CallAfter([this, msg] { - MessageDialog(this, msg, _L("Print"), wxOK).ShowModal(); + MessageDialog(this, msg, _CTX("Print", "Verb"), wxOK).ShowModal(); }); return; } @@ -579,7 +579,7 @@ void MediaFilePanel::doAction(size_t index, int action) || plate_data_list.empty()) { MessageDialog(this, _L("Failed to parse model information."), - _L("Print"), wxOK).ShowModal(); + _CTX("Print", "Verb"), wxOK).ShowModal(); return; } diff --git a/src/slic3r/GUI/MediaPlayCtrl.cpp b/src/slic3r/GUI/MediaPlayCtrl.cpp index 5737484960..8878d1f3ad 100644 --- a/src/slic3r/GUI/MediaPlayCtrl.cpp +++ b/src/slic3r/GUI/MediaPlayCtrl.cpp @@ -7,7 +7,7 @@ #include "I18N.hpp" #include "MsgDialog.hpp" #include "DownloadProgressDialog.hpp" -#include "slic3r/Utils/NetworkAgent.hpp" +#include "slic3r/Utils/BBLNetworkPlugin.hpp" #include @@ -161,7 +161,7 @@ void MediaPlayCtrl::SetMachineObject(MachineObject* obj) m_device_busy = obj->is_camera_busy_off(); m_tutk_state = obj->tutk_state; - if (DevPrinterConfigUtil::get_printer_series_str(obj->printer_type) == "series_o" && NetworkAgent::use_legacy_network) { + if (DevPrinterConfigUtil::get_printer_series_str(obj->printer_type) == "series_o" && BBLNetworkPlugin::instance().use_legacy_network()) { // Legacy plugin cannot support remote play for H2D, force using local mode m_remote_proto = MachineObject::LVR_None; } diff --git a/src/slic3r/GUI/NotificationManager.cpp b/src/slic3r/GUI/NotificationManager.cpp index 2e8d22ebee..0b184710c2 100644 --- a/src/slic3r/GUI/NotificationManager.cpp +++ b/src/slic3r/GUI/NotificationManager.cpp @@ -2299,9 +2299,17 @@ void NotificationManager::push_import_finished_notification(const std::string& p void NotificationManager::SharedProfilesNotification::init() { PopNotification::init(); - // Add two extra lines for the hyperlink row ("Browse shared profiles" + "Don't show again") - // and 1 more additional line for adding spacing between them to make it easier to click - m_lines_count = m_lines_count + 2; // ORCA + + // PopNotification::count_lines() may append a duplicate "hypertext doesn't fit inline" placeholder endline (same value as the previous entry) + // for the generic renderer's benefit. This class always renders its hyperlink on its own dedicated line regardless, + // so that placeholder is meaningless here and would otherwise be drawn as a spurious blank text row. + if (!m_hypertext.empty() && m_endlines.size() >= 2 && m_endlines.back() == m_endlines[m_endlines.size() - 2]) { + m_endlines.pop_back(); + m_lines_count--; + } + + // Reserve rows for: "Browse shared profiles" hyperlink, spacing, "Don't show again" + m_lines_count += 3; } void NotificationManager::SharedProfilesNotification::render_text(ImGuiWrapper& imgui, @@ -2327,22 +2335,26 @@ void NotificationManager::SharedProfilesNotification::render_text(ImGuiWrapper& } } - // Render "Browse shared profiles" hyperlink on the next line - float hyper_y = starting_y + m_endlines.size() * shift_y - m_line_height / 2.f; - render_hypertext(imgui, x_offset, hyper_y, m_hypertext); - - // Render "Don't show again" hyperlink after the browse link { - float dont_show_y = hyper_y + ImGui::CalcTextSize((m_hypertext + " ").c_str()).y + m_line_height / 2.f; - std::string dont_show_text = _u8L("Don't show again"); + float hyper_y = starting_y + m_endlines.size() * shift_y + m_line_height * .5f; + float dont_show_y = hyper_y + ImGui::CalcTextSize((m_hypertext + " ").c_str()).y + m_line_height * .5f; + std::string dont_show_text = _u8L("Don't show again") + std::to_string(m_endlines.size()); ImVec2 part_size = ImGui::CalcTextSize(dont_show_text.c_str()); + if (!m_multiline && m_lines_count > 2) { + render_hypertext(imgui, x_offset + (m_endlines.size() == 1 ? 0 : ImGui::CalcTextSize((line + " ").c_str()).x) , starting_y + shift_y, _u8L("More"), true); + } + else { + // Render "Browse shared profiles" hyperlink on the next line + render_hypertext(imgui, x_offset, hyper_y, m_hypertext); + // Invisible button ImGui::SetCursorPosX(x_offset); // ORCA render on new line to prevent long translations from being cut off ImGui::SetCursorPosY(dont_show_y); ImGui::PushStyleColor(ImGuiCol_Button, ImVec4(.0f, .0f, .0f, .0f)); ImGui::PushStyleColor(ImGuiCol_ButtonHovered, ImVec4(.0f, .0f, .0f, .0f)); ImGui::PushStyleColor(ImGuiCol_ButtonActive, ImVec4(.0f, .0f, .0f, .0f)); + // Render "Don't show again" hyperlink after the browse link if (imgui.button("##dont_show_btn", part_size.x + 6, part_size.y + 10)) { wxGetApp().app_config->set_bool("show_shared_profiles_notification", false); wxGetApp().app_config->save(); @@ -2370,6 +2382,7 @@ void NotificationManager::SharedProfilesNotification::render_text(ImGuiWrapper& ImGui::GetWindowDrawList()->AddLine(lineStart, lineEnd, IM_COL32((int)(color.x * 255), (int)(color.y * 255), (int)(color.z * 255), (int)(color.w * 255.f * (m_state == EState::FadingOut ? m_current_fade_opacity : 1.f)))); + } } } @@ -2382,8 +2395,10 @@ bool NotificationManager::SharedProfilesNotification::on_text_click() void NotificationManager::SharedProfilesNotification::render_hypertext(ImGuiWrapper& imgui, const float text_x, const float text_y, const std::string text, bool more) { - render_hyperlink_action(imgui, text_x, text_y, text, "##browse_btn", - [this] { if (on_text_click()) close(); }); + if (more) + PopNotification::render_hypertext(imgui, text_x, text_y, text, true); + else + render_hyperlink_action(imgui, text_x, text_y, text, "##browse_btn", [this] { if (on_text_click()) close(); }); } void NotificationManager::OrcaSyncConflictNotification::init() diff --git a/src/slic3r/GUI/OG_CustomCtrl.cpp b/src/slic3r/GUI/OG_CustomCtrl.cpp index 331d4a5db8..56ad3b6b12 100644 --- a/src/slic3r/GUI/OG_CustomCtrl.cpp +++ b/src/slic3r/GUI/OG_CustomCtrl.cpp @@ -121,7 +121,7 @@ int OG_CustomCtrl::get_height(const Line& line) for (auto ctrl_line : ctrl_lines) if (&ctrl_line.og_line == &line) return ctrl_line.height; - + return 0; } @@ -366,7 +366,7 @@ void OG_CustomCtrl::OnMotion(wxMouseEvent& event) tooltip += line.og_line.label_tooltip; // BBS: markdown tip focusedLine = &line; - markdowntip = line.og_line.label.empty() + markdowntip = line.og_line.label.empty() ? line.og_line.get_options().front().opt_id : into_u8(line.og_line.label); markdowntip.erase(0, markdowntip.find_last_of('#') + 1); // BBS @@ -801,9 +801,18 @@ void OG_CustomCtrl::CtrlLine::render(wxDC& dc, wxCoord h_pos, wxCoord v_pos) break; } } + bool is_multi_extruder = false; + if (ctrl->opt_group->draw_multi_extruder) + for (const Option& opt : option_set) + is_multi_extruder |= opt.opt_id.find_last_of('#') != std::string::npos; + wxCoord icon_pos = h_pos; + if (is_multi_extruder) { + static ScalableBitmap multi_extruder(ctrl, "multi_extruder"); + h_pos = draw_act_bmps(dc, wxPoint(h_pos, v_pos), multi_extruder.bmp(), multi_extruder.bmp(), false, 0, true).x; + } is_url_string = !suppress_hyperlinks && !og_line.label_path.empty(); // BBS - h_pos = draw_text(dc, wxPoint(h_pos, v_pos), label /* + ":" */, text_clr, ctrl->opt_group->label_width * ctrl->m_em_unit, is_url_string, true); + h_pos = draw_text(dc, wxPoint(h_pos, v_pos), label /* + ":" */, text_clr, icon_pos + ctrl->opt_group->label_width * ctrl->m_em_unit - h_pos, is_url_string, true); } // If there's a widget, build it and set result to the correct position. @@ -837,7 +846,7 @@ void OG_CustomCtrl::CtrlLine::render(wxDC& dc, wxCoord h_pos, wxCoord v_pos) h_pos = draw_act_bmps(dc, wxPoint(h_pos, v_pos), field->undo_to_sys_bitmap()->bmp(), field->undo_bitmap()->bmp(), field->blink(), bmp_rect_id).x; } #ifndef DISABLE_BLINKING - else if (field && !field->undo_to_sys_bitmap() && field->blink()) + else if (field && !field->undo_to_sys_bitmap() && field->blink()) draw_blinking_bmp(dc, wxPoint(h_pos, v_pos), field->blink()); #endif }; @@ -943,7 +952,7 @@ wxCoord OG_CustomCtrl::CtrlLine::draw_text(wxDC &dc, wxPoint pos, const wxString dc.SetFont(old_font.Underlined()); #else dc.SetFont(old_font.Bold().Underlined()); -#endif +#endif color = &clr_url; } dc.SetTextForeground(color ? *color : @@ -977,12 +986,12 @@ wxPoint OG_CustomCtrl::CtrlLine::draw_blinking_bmp(wxDC& dc, wxPoint pos, bool i return wxPoint(h_pos, v_pos); } -wxPoint OG_CustomCtrl::CtrlLine::draw_act_bmps(wxDC& dc, wxPoint pos, const wxBitmap& bmp_undo_to_sys, const wxBitmap& bmp_undo, bool is_blinking, size_t rect_id) +wxPoint OG_CustomCtrl::CtrlLine::draw_act_bmps(wxDC& dc, wxPoint pos, const wxBitmap& bmp_undo_to_sys, const wxBitmap& bmp_undo, bool is_blinking, size_t rect_id, bool is_main) { #ifndef DISABLE_BLINKING pos = draw_blinking_bmp(dc, pos, is_blinking); #else - if (ctrl->opt_group->split_multi_line) { // BBS + if (ctrl->opt_group->split_multi_line && !is_main) { // BBS const std::vector